Code Monkey home page Code Monkey logo

lapce's Introduction

Lightning-fast And Powerful Code Editor


Lapce (IPA: /læps/) is written in pure Rust with a UI in Floem. It is designed with Rope Science from the Xi-Editor which makes for lightning-fast computation, and leverages Wgpu for rendering. More information about the features of Lapce can be found on the main website and user documentation can be found on GitBook.

Features

  • Built-in LSP (Language Server Protocol) support to give you intelligent code features such as: completion, diagnostics and code actions
  • Modal editing support as first class citizen (Vim-like, and toggleable)
  • Built-in remote development support inspired by VSCode Remote Development. Enjoy the benefits of a "local" experience, and seamlessly gain the full power of a remote system. We also have lapdev which can help manage your remote dev environments.
  • Plugins can be written in programming languages that can compile to the WASI format (C, Rust, AssemblyScript)
  • Built-in terminal, so you can execute commands in your workspace, without leaving Lapce.

Installation

You can find pre-built releases for Windows, Linux and macOS here, or installing with a package manager. If you'd like to compile from source, you can find the guide.

Contributing

Guidelines for contributing to Lapce can be found in CONTRIBUTING.md.

Feedback & Contact

The most popular place for Lapce developers and users is on the Discord server.

Or, join the discussion on Reddit where we are just getting started.

There is also a Matrix Space, which is linked to the content from the Discord server.

License

Lapce is released under the Apache License Version 2, which is an open source license. You may contribute to this project, or use the code as you please as long as you adhere to its conditions. You can find a copy of the license text here: LICENSE.

lapce's People

Contributors

bbrabbitt avatar bugadani avatar camc314 avatar dakata1337 avatar dependabot[bot] avatar djmcnab avatar dzhou121 avatar ghishadow avatar hbina avatar informaticalex avatar jm-observer avatar justforfun88 avatar lukaslihotzki avatar minusgix avatar mrxiaozhuox avatar nheuillet avatar nicesieve avatar oknozor avatar panekj avatar philipdaniels avatar riverbl avatar rtsuk avatar sebastian-de avatar titaniumtown avatar tk103331 avatar varlad avatar vixietsq avatar yonip23 avatar zarathir avatar zhaojiangbin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

lapce's Issues

Error building dmg target on M1 Mac

make error:

Finished release [optimized] target(s) in 1.05s
Created 'Lapce.app' in 'target/release/macos'
xattr -c target/release/macos/Lapce.app/Contents/Info.plist
xattr -c target/release/macos/Lapce.app/Contents/Resources/lapce.icns
/usr/bin/codesign -vvv --deep --strict --options=runtime --force -s FAC8FBEA99169DC1980731029648F110628D6A32 target/release/macos/Lapce.app
FAC8FBEA99169DC1980731029648F110628D6A32: no identity found
make: *** [Lapce.app-native] Error 1

System Info: M1 MacBook Air, macOS Monterey v12.0.1.

(cargo build --release works well. It is the dmg building part that failed.)

: keyboard shortcut not working on linux

I was able to compile and run Lapce on Garuda linux, but when running it I press : to list commands and nothing happens.
The terminal and git commit editor work fine

Unable to install Lapce on Windows

I tried installing Lapce on my Windows 11 PC using the lapce-windows.msi package, and this is what I get:

image

FYI, this is the first time I'm installing Lapce.

Line numbering is not working

It happens so that there are two sections of numbering

  1. Upto the current line ( where my cursor currently is )
  2. From the next line

The character ":" is not identified on Keyboard Abnt2

The app don't identify the key ":" on my ABNT2 (Brazil) keyboard, I tracked this problem to the lapce druid fork.

This problem do not happen on the linebender/druid.

I was able to partially fix with the patch:

diff --git a/druid-shell/src/keyboard.rs b/druid-shell/src/keyboard.rs
index dfd49d6c..56eed6e1 100644
--- a/druid-shell/src/keyboard.rs
+++ b/druid-shell/src/keyboard.rs
@@ -331,7 +331,7 @@ pub fn winit_keycode(input: &winit::event::VirtualKeyCode) -> Code {
         winit::event::VirtualKeyCode::Backslash => Code::Backslash,
         winit::event::VirtualKeyCode::Calculator => Code::Unidentified,
         winit::event::VirtualKeyCode::Capital => Code::Unidentified,
-        winit::event::VirtualKeyCode::Colon => Code::Unidentified,
+        winit::event::VirtualKeyCode::Colon => Code::Slash,
         winit::event::VirtualKeyCode::Comma => Code::Comma,
         winit::event::VirtualKeyCode::Convert => Code::Convert,
         winit::event::VirtualKeyCode::Equals => Code::Equal,
@@ -729,7 +729,7 @@ pub fn winit_key(input: &winit::event::KeyboardInput, shift: bool) -> KbKey {
             }
             VirtualKeyCode::Calculator => KbKey::Unidentified,
             VirtualKeyCode::Capital => KbKey::CapsLock,
-            VirtualKeyCode::Colon => KbKey::Unidentified,
+            VirtualKeyCode::Colon => KbKey::Character(":".to_string()),
             VirtualKeyCode::Comma => {
                 if !shift {
                     KbKey::Character(",".to_string())

[Linux] Failing to start with "thread 'main' panicked"

OS: Arch Linux

Rust version:

$ rustc -V
rustc 1.57.0 (f1edd0429 2021-11-29)

Toolchain:

$ rustup toolchain list
stable-x86_64-unknown-linux-gnu (default)

Commit:

5059101 - (HEAD -> master, tag: v0.0.1, origin/master, origin/HEAD) undo redo jump improvement (2021-12-01 11:43:38) <Dongdong Zhou>

Output:

$ RUST_BACKTRACE=1 target/release/lapce
start to watch path "/home/<name>/.config/lapce/settings.toml"
2021-12-14T11:12:57.482224Z DEBUG druid::localization: available locales [], current en-US
2021-12-14T11:12:57.482276Z DEBUG druid::localization: resolved: [en-US]
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: NotSupported', /home/<name>/.cargo/git/checkouts/druid-f6980810fb848923/c42de0b/druid/src/window.rs:88:55
stack backtrace:
   0: rust_begin_unwind
             at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:517:5
   1: core::panicking::panic_fmt
             at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/core/src/panicking.rs:100:14
   2: core::result::unwrap_failed
             at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/core/src/result.rs:1616:5
   3: druid::window::Window<T>::new
   4: druid::win_handler::AppState<T>::build_native_window
   5: druid::app::AppLauncher<T>::launch
   6: lapce_core::app::lanuch
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
palette update process stopped
buffer update process stopped

Lapce v0.0.2 installation failure on Windows 10

When trying to install Laplace v0.0.2 on Windows 10, the following error is displayed:-

image

---------------------------
lapce.exe - System Error
---------------------------
The code execution cannot proceed because VCRUNTIME140.dll was not found. Reinstalling the program may fix this problem. 
---------------------------
OK   
---------------------------

[Linux] Crashes on resize

WARNING: lavapipe is not a conformant vulkan implementation, testing use only.
primitives buffer size 80000
size is (800×600)
2021-12-20T09:00:52.933737Z  WARN event: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (613.0, -299.0), window_pos: (613.0, -299.0), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
plugin reload from paths
proxy mainfiest paths []
size is (826×620)
size is (838×628)
size is (847×634)
size is (857×639)
size is (858×640)
size is (859×640)
size is (859×641)
size is (863×643)
size is (864×643)
Segmentation fault (core dump created)
No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 20.04.3 LTS
Release:	20.04
Codename:	focal

Edit: compiled using make binary using latest release tarball

Edit without scrolling

re: your comment on IRC earlier: what you're describing isn't currently possible. It sounds like you probably want a plugin, although I appreciate that it's a bit annoying to write plugins right now. If you can explain what you're trying to do a little bit maybe I can be more useful?

Can't build

cargo build --release
    Updating crates.io index
error: failed to select a version for the requirement `reqwest = "=0.11.8"`
candidate versions found which didn't match: 0.11.6, 0.11.5, 0.11.4, ...
location searched: crates.io index

[Linux] Failing to launch on Wayland.

Building from latest updates. Same problem before last commit. Running on Void Linux with Wayfire on only Wayland.

lapce/target/release on  master ❯ git status 
On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean
thread 'main' panicked at 'launch failed: WindowDropped', core/src/app.rs:35:10
stack backtrace:
   0:     0x5603266ac34c - std::backtrace_rs::backtrace::libunwind::trace::hf6a6dfd7da937cb0
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/../../backtrace/src/backtrace/libunwind.rs:90:5
   1:     0x5603266ac34c - std::backtrace_rs::backtrace::trace_unsynchronized::hc596a19e4891f7f3
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
   2:     0x5603266ac34c - std::sys_common::backtrace::_print_fmt::hb16700db31584325
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/sys_common/backtrace.rs:67:5
   3:     0x5603266ac34c - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::h231c4190cfa75162
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/sys_common/backtrace.rs:46:22
   4:     0x5603266d3e4c - core::fmt::write::h2a1462b5f8eea807
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/core/src/fmt/mod.rs:1163:17
   5:     0x5603266a76a5 - std::io::Write::write_fmt::h71ddfebc68685972
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/io/mod.rs:1696:15
   6:     0x5603266ae390 - std::sys_common::backtrace::_print::hcc197d4bebf2b369
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/sys_common/backtrace.rs:49:5
   7:     0x5603266ae390 - std::sys_common::backtrace::print::h335a66af06738c7c
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/sys_common/backtrace.rs:36:9
   8:     0x5603266ae390 - std::panicking::default_hook::{{closure}}::h6fac9ac9c8b79e52
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:210:50
   9:     0x5603266adf45 - std::panicking::default_hook::h341c1030c6a1161b
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:227:9
  10:     0x5603266aea44 - std::panicking::rust_panic_with_hook::h50680ff4b44510c6
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:624:17
  11:     0x5603266ae520 - std::panicking::begin_panic_handler::{{closure}}::h9371c0fbb1e8465a
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:521:13
  12:     0x5603266ac7f4 - std::sys_common::backtrace::__rust_end_short_backtrace::h9b3efa22a5768c0f
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/sys_common/backtrace.rs:139:18
  13:     0x5603266ae489 - rust_begin_unwind
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:517:5
  14:     0x560325b7b4b1 - core::panicking::panic_fmt::h23b9203e89cc61cf
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/core/src/panicking.rs:100:14
  15:     0x560325b7b5a3 - core::result::unwrap_failed::h32ef6b3156e8fc57
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/core/src/result.rs:1616:5
  16:     0x560325ba7b11 - lapce_core::app::lanuch::hd9f4b138311b5a25
  17:     0x560325b7bd53 - std::sys_common::backtrace::__rust_begin_short_backtrace::hae14c923337f1a99
  18:     0x560325b7bda9 - std::rt::lang_start::{{closure}}::h6cf88baa40b84873
  19:     0x5603266ac02b - core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::hc56adab7a77ec6e3
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/core/src/ops/function.rs:259:13
  20:     0x5603266ac02b - std::panicking::try::do_call::h29f013120c5abc65
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:403:40
  21:     0x5603266ac02b - std::panicking::try::h86d5b2b66caec4cf
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:367:19
  22:     0x5603266ac02b - std::panic::catch_unwind::h7dd136d787f51397
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panic.rs:133:14
  23:     0x5603266ac02b - std::rt::lang_start_internal::{{closure}}::h4a199351e630a8a5
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/rt.rs:128:48
  24:     0x5603266ac02b - std::panicking::try::do_call::h20ceb9e5dff838c6
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:403:40
  25:     0x5603266ac02b - std::panicking::try::hc2abb46a5e41bd43
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panicking.rs:367:19
  26:     0x5603266ac02b - std::panic::catch_unwind::h52c3eb4408ad6dfb
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/panic.rs:133:14
  27:     0x5603266ac02b - std::rt::lang_start_internal::hd15a47be08101c28
                               at /rustc/f1edd0429582dd29cccacaf50fd134b05593bd9c/library/std/src/rt.rs:128:20
  28:     0x560325b7bd92 - main
  29:     0x7f585d7c4e0a - __libc_start_main
                               at /builddir/glibc-2.32/csu/../csu/libc-start.c:314:16
  30:     0x560325b7bc8a - _start
                               at /builddir/glibc-2.32/csu/../sysdeps/x86_64/start.S:120
  31:                0x0 - <unknown>

Doesn't work on Windows

On either v0.0.2 release or the latest master (9373703):

  • Cannot drag-n-drop
  • Doesn't respond to any of Ctrl-O, Ctrl-N, Ctrl-T
  • Window freezes after resize
  • The big red close button doesn't close the window
  • Terminal doesn't receive Enter

Is this project targeting macOS only?

App failed on start

Error:

Running `target/debug/lapce`
start to watch path "/home/balrog/.config/lapce/settings.toml"
palette update process stopped
buffer update process stopped
thread 'main' panicked at 'launch failed: WindowDropped', core/src/app.rs:35:10

OS: ArchLinux
WM: Sway
Lapce: build from source, commit a61d3b2

is the Zulip group intended to be invite-only, or is it a bug?

the link to the zulip group says that the organisation requires an input, i've added a screenshot to show the issue:

image

Is this intended behaviour, or is it something that needs to be fixed? being able to use something like zulip to coordinate in realtime would help a lot of people to contribute more easily, which is why i asked.

panic in macOS

macOs Big sur 11.1
Process:               lapce [35888]
Path:                  /Applications/Lapce.app/Contents/MacOS/lapce
Identifier:            io.lapce
Version:               0.10.0-dev (1)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           lapce [35888]
User ID:               501

Date/Time:             2021-12-14 18:54:16.070 +0800
OS Version:            macOS 11.1 (20C69)
Report Version:        12
Bridge OS Version:     5.1 (18P3030)
Anonymous UUID:        31DE345B-A152-0F96-890F-914BAB6BFA93

Sleep/Wake UUID:       56E51309-DABC-4BA5-9C85-10FDE16CFB8D

Time Awake Since Boot: 60000 seconds
Time Since Wake:       270 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Application Specific Information:
abort() called

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	0x00007fff2034b462 __pthread_kill + 10
1   libsystem_pthread.dylib       	0x00007fff20379610 pthread_kill + 263
2   libsystem_c.dylib             	0x00007fff202cc720 abort + 120
3   io.lapce                      	0x0000000109175419 std::sys::unix::abort_internal::hc1867b034a35e72f + 9
4   io.lapce                      	0x00000001091e2ca9 std::process::abort::h8bae04419096b309 + 9
5   io.lapce                      	0x000000010916e0a0 rust_oom + 32
6   io.lapce                      	0x0000000109185359 __rg_oom + 9
7   io.lapce                      	0x00000001091e3819 alloc::alloc::handle_alloc_error::hbd58ef4cace41bf6 + 9
8   io.lapce                      	0x0000000109195917 alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::do_reserve_and_handle::h5576ace476262fdf + 151
9   io.lapce                      	0x00000001089620ff alacritty_terminal::term::Term$LT$T$GT$::resize::hfd3c9226af96fd32 + 959
10  io.lapce                      	0x0000000108aa36ae lapce_core::terminal::LapceTerminalData::resize::h008e231d9738a648 + 222
11  io.lapce                      	0x0000000108aa5d13 _$LT$lapce_core..terminal..LapceTerminal$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::h1d5d7e8f831573ee + 371
12  io.lapce                      	0x00000001088a3d08 druid::core::WidgetPod$LT$T$C$W$GT$::layout::hde0645b08877a57d + 600
13  io.lapce                      	0x0000000108907785 _$LT$lapce_core..scroll..LapcePadding$LT$T$C$W$GT$$u20$as$u20$druid..widget..widget..Widget$LT$T$GT$$GT$::layout::h1bffdf6d139bf0c9 + 357
14  io.lapce                      	0x000000010889ce2a druid::core::WidgetPod$LT$T$C$W$GT$::layout::h40eca0aaaf891f07 + 602
15  io.lapce                      	0x0000000108aa413c _$LT$lapce_core..terminal..LapceTerminalView$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::hee0f6a3379aa2341 + 332
16  io.lapce                      	0x000000010889ce2a druid::core::WidgetPod$LT$T$C$W$GT$::layout::h40eca0aaaf891f07 + 602
17  io.lapce                      	0x0000000108a76bf9 _$LT$lapce_core..split..LapceSplitNew$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::he7982d77dd0abecc + 793
18  io.lapce                      	0x000000010889e9b6 druid::core::WidgetPod$LT$T$C$W$GT$::layout::h58711a3425a9a2ff + 614
19  io.lapce                      	0x0000000108aa3bbd _$LT$lapce_core..terminal..TerminalPanel$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::h192f7ad9bd863306 + 45
20  io.lapce                      	0x000000010889ce2a druid::core::WidgetPod$LT$T$C$W$GT$::layout::h40eca0aaaf891f07 + 602
21  io.lapce                      	0x0000000108af2cab _$LT$lapce_core..tab..LapceTabNew$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::h737692f83ccbe454 + 2315
22  io.lapce                      	0x000000010890fac1 _$LT$druid..widget..lens_wrap..LensWrap$LT$T$C$U$C$L$C$W$GT$$u20$as$u20$druid..widget..widget..Widget$LT$T$GT$$GT$::layout::h4901a9a45a2a723e + 289
23  io.lapce                      	0x000000010889a94d druid::core::WidgetPod$LT$T$C$W$GT$::layout::h1d53aefd58288c48 + 605
24  io.lapce                      	0x0000000108aac20c _$LT$lapce_core..window..LapceWindowNew$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceWindowData$GT$$GT$::layout::hb014c74aa962e81e + 1436
25  io.lapce                      	0x000000010890f8de _$LT$druid..widget..lens_wrap..LensWrap$LT$T$C$U$C$L$C$W$GT$$u20$as$u20$druid..widget..widget..Widget$LT$T$GT$$GT$::layout::h04d83490da72700d + 286
26  io.lapce                      	0x000000010889f329 druid::core::WidgetPod$LT$T$C$W$GT$::layout::h599397370793d2a7 + 617
27  io.lapce                      	0x000000010893a8c6 _$LT$druid..widget..env_scope..EnvScope$LT$T$C$W$GT$$u20$as$u20$druid..widget..widget..Widget$LT$T$GT$$GT$::layout::h62c3a959b161786a + 326
28  io.lapce                      	0x000000010889a00d druid::core::WidgetPod$LT$T$C$W$GT$::layout::h08c6c6133799254d + 605
29  io.lapce                      	0x0000000108981bf8 druid::window::Window$LT$T$GT$::layout::hdd75edd1685a4fb5 + 776
30  io.lapce                      	0x00000001089822ba druid::window::Window$LT$T$GT$::do_paint::h54f53a6b1ac91fff + 58
31  io.lapce                      	0x0000000108b375ee druid::win_handler::AppState$LT$T$GT$::paint_winit_window::h6e717a2798808b20 + 318
32  io.lapce                      	0x00000001089ed739 druid::app::AppLauncher$LT$T$GT$::launch::_$u7b$$u7b$closure$u7d$$u7d$::he694bfad8faac8e5 + 633
33  io.lapce                      	0x00000001089dad38 _$LT$winit..platform_impl..platform..app_state..EventLoopHandler$LT$T$GT$$u20$as$u20$winit..platform_impl..platform..app_state..EventHandler$GT$::handle_nonuser_event::h52a7e407a7bb428b + 328
34  io.lapce                      	0x0000000108e3a49e winit::platform_impl::platform::app_state::Handler::handle_nonuser_event::hc7816a47e72e3793 + 782
35  io.lapce                      	0x0000000108e3c615 winit::platform_impl::platform::app_state::AppState::cleared::h397a3b33fa6cf266 + 1925
36  io.lapce                      	0x0000000108e3f197 winit::platform_impl::platform::observer::control_flow_end_handler::hd5370a8a0990ff5d + 135
37  com.apple.CoreFoundation      	0x00007fff20470dad __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
38  com.apple.CoreFoundation      	0x00007fff20470c3d __CFRunLoopDoObservers + 549
39  com.apple.CoreFoundation      	0x00007fff20470221 __CFRunLoopRun + 1146
40  com.apple.CoreFoundation      	0x00007fff2046f6ce CFRunLoopRunSpecific + 563
41  com.apple.HIToolbox           	0x00007fff286f46d0 RunCurrentEventLoopInMode + 292
42  com.apple.HIToolbox           	0x00007fff286f44cc ReceiveNextEventCommon + 709
43  com.apple.HIToolbox           	0x00007fff286f41ef _BlockUntilNextEventMatchingListInModeWithFilter + 64
44  com.apple.AppKit              	0x00007fff22c8cde9 _DPSNextEvent + 883
45  com.apple.AppKit              	0x00007fff22c8b5af -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1366
46  com.apple.AppKit              	0x00007fff22c7db0a -[NSApplication run] + 586
47  io.lapce                      	0x00000001089f0581 winit::platform_impl::platform::event_loop::EventLoop$LT$T$GT$::run::h9af3b5e14b6fbe34 + 913
48  io.lapce                      	0x0000000108947ecb winit::event_loop::EventLoop$LT$T$GT$::run::h214d73c50b20f8a9 + 91
49  io.lapce                      	0x0000000108946f8e druid::app::AppLauncher$LT$T$GT$::launch::h23605b49c1e82aa0 + 2430
50  io.lapce                      	0x0000000108b1b92c lapce_core::app::lanuch::hafb5b64927f3e587 + 1932
51  io.lapce                      	0x0000000108869036 std::sys_common::backtrace::__rust_begin_short_backtrace::h838dd963cca09347 + 6
52  io.lapce                      	0x000000010886900c std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h1e5d91a479e28a79 + 12
53  io.lapce                      	0x000000010916f67a std::rt::lang_start_internal::hf65df31c3ffe3b9a + 650
54  io.lapce                      	0x0000000108869079 main + 41
55  libdyld.dylib                 	0x00007fff20394621 start + 1

Thread 1:
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x0000000109163c11 std::thread::park::h06c44c4d2ced7b76 + 209
3   io.lapce                      	0x00000001088e7cb1 crossbeam_channel::context::Context::wait_until::hfdfa72c0f4af7400 + 289
4   io.lapce                      	0x00000001088e7d7a crossbeam_channel::context::Context::with::_$u7b$$u7b$closure$u7d$$u7d$::h1fb670c184b3b391 + 138
5   io.lapce                      	0x00000001088ea9ab crossbeam_channel::flavors::list::Channel$LT$T$GT$::recv::hf7deba4ad423140f + 795
6   io.lapce                      	0x0000000108911bae crossbeam_channel::channel::Receiver$LT$T$GT$::recv::h4c75757b96f933f4 + 94
7   io.lapce                      	0x0000000108b21b8d std::sys_common::backtrace::__rust_begin_short_backtrace::h6c40d2a46b3e66f3 + 141
8   io.lapce                      	0x0000000108917250 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hbbc6f7fab1e869db + 160
9   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
10  libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
11  libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 2:: sled-io-0
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x00000001090f99cf parking_lot::condvar::Condvar::wait_until_internal::ha0967e31c8943374 + 815
3   io.lapce                      	0x0000000108b64189 sled::threadpool::perform_work::hb070c96dbb4ac875 + 153
4   io.lapce                      	0x0000000108bb3dad std::sys_common::backtrace::__rust_begin_short_backtrace::ha87f25b38af0ed93 + 29
5   io.lapce                      	0x0000000108b8c4ca core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h23b6bebcc3b95a9d + 106
6   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 3:: sled-io-1
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x00000001090f99cf parking_lot::condvar::Condvar::wait_until_internal::ha0967e31c8943374 + 815
3   io.lapce                      	0x0000000108b64189 sled::threadpool::perform_work::hb070c96dbb4ac875 + 153
4   io.lapce                      	0x0000000108bb3dad std::sys_common::backtrace::__rust_begin_short_backtrace::ha87f25b38af0ed93 + 29
5   io.lapce                      	0x0000000108b8c4ca core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h23b6bebcc3b95a9d + 106
6   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 4:: sled-io-2
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x00000001090f99cf parking_lot::condvar::Condvar::wait_until_internal::ha0967e31c8943374 + 815
3   io.lapce                      	0x0000000108b64189 sled::threadpool::perform_work::hb070c96dbb4ac875 + 153
4   io.lapce                      	0x0000000108bb3dad std::sys_common::backtrace::__rust_begin_short_backtrace::ha87f25b38af0ed93 + 29
5   io.lapce                      	0x0000000108b8c4ca core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h23b6bebcc3b95a9d + 106
6   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 5:: sled-io-3
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x00000001090f99cf parking_lot::condvar::Condvar::wait_until_internal::ha0967e31c8943374 + 815
3   io.lapce                      	0x0000000108b64189 sled::threadpool::perform_work::hb070c96dbb4ac875 + 153
4   io.lapce                      	0x0000000108bb3dad std::sys_common::backtrace::__rust_begin_short_backtrace::ha87f25b38af0ed93 + 29
5   io.lapce                      	0x0000000108b8c4ca core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h23b6bebcc3b95a9d + 106
6   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 6:: sled-io-4
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x00000001090f99cf parking_lot::condvar::Condvar::wait_until_internal::ha0967e31c8943374 + 815
3   io.lapce                      	0x0000000108b64189 sled::threadpool::perform_work::hb070c96dbb4ac875 + 153
4   io.lapce                      	0x0000000108bb3dad std::sys_common::backtrace::__rust_begin_short_backtrace::ha87f25b38af0ed93 + 29
5   io.lapce                      	0x0000000108b8c4ca core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h23b6bebcc3b95a9d + 106
6   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 7:: sled-io-5
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x00000001090f99cf parking_lot::condvar::Condvar::wait_until_internal::ha0967e31c8943374 + 815
3   io.lapce                      	0x0000000108b64189 sled::threadpool::perform_work::hb070c96dbb4ac875 + 153
4   io.lapce                      	0x0000000108bb3dad std::sys_common::backtrace::__rust_begin_short_backtrace::ha87f25b38af0ed93 + 29
5   io.lapce                      	0x0000000108b8c4ca core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h23b6bebcc3b95a9d + 106
6   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 8:: sled-io-6
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x00000001090f99cf parking_lot::condvar::Condvar::wait_until_internal::ha0967e31c8943374 + 815
3   io.lapce                      	0x0000000108b64189 sled::threadpool::perform_work::hb070c96dbb4ac875 + 153
4   io.lapce                      	0x0000000108bb3dad std::sys_common::backtrace::__rust_begin_short_backtrace::ha87f25b38af0ed93 + 29
5   io.lapce                      	0x0000000108b8c4ca core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h23b6bebcc3b95a9d + 106
6   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 9:
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x0000000109163c11 std::thread::park::h06c44c4d2ced7b76 + 209
3   io.lapce                      	0x00000001088e7cb1 crossbeam_channel::context::Context::wait_until::hfdfa72c0f4af7400 + 289
4   io.lapce                      	0x00000001088e7d7a crossbeam_channel::context::Context::with::_$u7b$$u7b$closure$u7d$$u7d$::h1fb670c184b3b391 + 138
5   io.lapce                      	0x00000001088e991b crossbeam_channel::flavors::list::Channel$LT$T$GT$::recv::h14308a62489cc20e + 523
6   io.lapce                      	0x0000000108911dab crossbeam_channel::channel::Receiver$LT$T$GT$::recv::h7ff43b9e57e4f6de + 91
7   io.lapce                      	0x0000000108a2f273 lapce_core::data::LapceTabData::buffer_update_process::hfcdc73f83f13450d + 435
8   io.lapce                      	0x0000000108b22513 std::sys_common::backtrace::__rust_begin_short_backtrace::he8c3686a9aa615cb + 35
9   io.lapce                      	0x0000000108916f41 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h5ce9df3a46bb8611 + 145
10  io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
11  libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
12  libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 10:
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x0000000109163c11 std::thread::park::h06c44c4d2ced7b76 + 209
3   io.lapce                      	0x00000001088e7cb1 crossbeam_channel::context::Context::wait_until::hfdfa72c0f4af7400 + 289
4   io.lapce                      	0x00000001088e7d7a crossbeam_channel::context::Context::with::_$u7b$$u7b$closure$u7d$$u7d$::h1fb670c184b3b391 + 138
5   io.lapce                      	0x00000001088ea5bb crossbeam_channel::flavors::list::Channel$LT$T$GT$::recv::h9aaaa7bb58d5a495 + 507
6   io.lapce                      	0x0000000108911f82 crossbeam_channel::channel::Receiver$LT$T$GT$::recv::h8d2c175ca4baf0f3 + 82
7   io.lapce                      	0x0000000108a2ea48 lapce_core::data::LapceTabData::terminal_update_process::hca9d2c4ccfb241e0 + 280
8   io.lapce                      	0x0000000108b224ad std::sys_common::backtrace::__rust_begin_short_backtrace::hd69dbbdae0ab22a2 + 45
9   io.lapce                      	0x0000000108916db9 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h4abe79d87f9a3afc + 169
10  io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
11  libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
12  libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 11:
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x0000000109163c11 std::thread::park::h06c44c4d2ced7b76 + 209
3   io.lapce                      	0x00000001088e7cb1 crossbeam_channel::context::Context::wait_until::hfdfa72c0f4af7400 + 289
4   io.lapce                      	0x00000001088e7d7a crossbeam_channel::context::Context::with::_$u7b$$u7b$closure$u7d$$u7d$::h1fb670c184b3b391 + 138
5   io.lapce                      	0x00000001088ea30b crossbeam_channel::flavors::list::Channel$LT$T$GT$::recv::h92d28db4dd921ee4 + 539
6   io.lapce                      	0x0000000108912162 crossbeam_channel::channel::Receiver$LT$T$GT$::recv::hd17899e871f96223 + 82
7   io.lapce                      	0x00000001089519bb lapce_core::palette::PaletteViewData::update_process::h60e3f49168223956 + 123
8   io.lapce                      	0x0000000108b213b3 std::sys_common::backtrace::__rust_begin_short_backtrace::h2551e385c50aaf06 + 35
9   io.lapce                      	0x0000000108917731 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcec116d54d452ede + 145
10  io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
11  libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
12  libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 12:
0   libsystem_kernel.dylib        	0x00007fff203477b6 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff202c4c92 nanosleep + 196
2   io.lapce                      	0x0000000109163ad0 std::thread::sleep::h2c90f58bfe90ab56 + 80
3   io.lapce                      	0x0000000108b2268b std::sys_common::backtrace::__rust_begin_short_backtrace::hf71e62533bb580f6 + 315
4   io.lapce                      	0x00000001089173ed core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hc3c2a95dc5bf636c + 109
5   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
6   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 13:
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x0000000108c7bd66 notify::debounce::timer::ScheduleWorker::run::h49d0b6a1b8aa3e4b + 838
3   io.lapce                      	0x0000000108c7cf03 std::sys_common::backtrace::__rust_begin_short_backtrace::h7bb5d522da9d425b + 51
4   io.lapce                      	0x0000000108c7e489 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hc8cba7e6dc7363c9 + 137
5   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
6   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 14:
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x0000000109163c11 std::thread::park::h06c44c4d2ced7b76 + 209
3   io.lapce                      	0x000000010916bed5 std::sync::mpsc::blocking::WaitToken::wait::h0c3dbe5a803b35d1 + 37
4   io.lapce                      	0x0000000108965c68 std::sync::mpsc::shared::Packet$LT$T$GT$::recv::h4189dc83cc7136ee + 520
5   io.lapce                      	0x000000010893c58e std::sync::mpsc::Receiver$LT$T$GT$::recv::h8c5a20e74574c9ab + 1038
6   io.lapce                      	0x0000000108b217f0 std::sys_common::backtrace::__rust_begin_short_backtrace::h2ff7d15226f5e2ad + 96
7   io.lapce                      	0x0000000108916c11 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h43148e054997fbb4 + 145
8   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
9   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
10  libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 15:
0   libsystem_pthread.dylib       	0x00007fff20375458 start_wqthread + 0

Thread 16:
0   libsystem_pthread.dylib       	0x00007fff20375458 start_wqthread + 0

Thread 17:
0   libsystem_pthread.dylib       	0x00007fff20375458 start_wqthread + 0

Thread 18:
0   libsystem_pthread.dylib       	0x00007fff20375458 start_wqthread + 0

Thread 19:
0   libsystem_kernel.dylib        	0x00007fff203478e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20379e6f _pthread_cond_wait + 1254
2   io.lapce                      	0x000000010917091e std::sys::unix::condvar::Condvar::wait_timeout::h036834cebf86f74c + 254
3   io.lapce                      	0x0000000108990a3d xi_rpc::next_read::hd37f39b3d06cc2e8 + 685
4   io.lapce                      	0x0000000108b1ee5b _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h838c17362fbf9615 + 299
5   io.lapce                      	0x0000000108a5876d crossbeam_utils::thread::scope::h8d1eb07b806ddcf7 + 301
6   io.lapce                      	0x000000010899054c xi_rpc::RpcLoop$LT$W$GT$::mainloop::h8ed6ea4974f6ca98 + 44
7   io.lapce                      	0x0000000108b20eae std::sys_common::backtrace::__rust_begin_short_backtrace::h1346fcd8904be172 + 2158
8   io.lapce                      	0x0000000108917596 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hca3e29b293ffd7ff + 166
9   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
10  libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
11  libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 20:
0   libsystem_kernel.dylib        	0x00007fff2034589e read + 10
1   io.lapce                      	0x00000001091657f6 _$LT$std..fs..File$u20$as$u20$std..io..Read$GT$::read::hb2d64a3eacb76e02 + 38
2   io.lapce                      	0x000000010893bc66 std::io::append_to_string::h8861bcebd01588d1 + 118
3   io.lapce                      	0x0000000108a57934 crossbeam_utils::thread::ScopedThreadBuilder::spawn::_$u7b$$u7b$closure$u7d$$u7d$::h26920e9f71600835 + 436
4   io.lapce                      	0x0000000108b205ee std::sys_common::backtrace::__rust_begin_short_backtrace::h0af7bdcb90684341 + 30
5   io.lapce                      	0x00000001089170ad core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hb03e57ec9769cff6 + 109
6   io.lapce                      	0x0000000109174fa7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 21:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff20344e7e mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff203451f0 mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff20471bf7 __CFRunLoopServiceMachPort + 316
3   com.apple.CoreFoundation      	0x00007fff204702ca __CFRunLoopRun + 1315
4   com.apple.CoreFoundation      	0x00007fff2046f6ce CFRunLoopRunSpecific + 563
5   com.apple.AppKit              	0x00007fff22e12c16 _NSEventThread + 124
6   libsystem_pthread.dylib       	0x00007fff20379950 _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff2037547b thread_start + 15

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x00000001106d6e00  rcx: 0x00007ffee7394c08  rdx: 0x0000000000000000
  rdi: 0x0000000000000307  rsi: 0x0000000000000006  rbp: 0x00007ffee7394c30  rsp: 0x00007ffee7394c08
   r8: 0x00007ffee7394b0c   r9: 0x0000000000000000  r10: 0x00000001106d6e00  r11: 0x0000000000000246
  r12: 0x0000000000000307  r13: 0x00007fd25807c9f8  r14: 0x0000000000000006  r15: 0x0000000000000016
  rip: 0x00007fff2034b462  rfl: 0x0000000000000246  cr2: 0x0000000108962000
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133

Thread 0 instruction stream not available.

Thread 0 last branch register state not available.


Binary Images:
       0x108866000 -        0x109b75fff +io.lapce (0.10.0-dev - 1) <71D87E74-E003-37FF-95BA-86EB6E8CB237> /Applications/Lapce.app/Contents/MacOS/lapce
       0x10d308000 -        0x10d317fff  libobjc-trampolines.dylib (818.2) <12B587A2-8631-3B7A-B862-5091C411AC2C> /usr/lib/libobjc-trampolines.dylib
       0x1105ff000 -        0x11069afff  dyld (832.7.1) <DEA51514-B4E8-3368-979B-89D0F8397ABC> /usr/lib/dyld
    0x7fff200af000 -     0x7fff200b0fff  libsystem_blocks.dylib (78) <9CF131C6-16FB-3DD0-B046-9E0B6AB99935> /usr/lib/system/libsystem_blocks.dylib
    0x7fff200b1000 -     0x7fff200e6fff  libxpc.dylib (2038.40.38) <003A027D-9CE3-3794-A319-88495844662D> /usr/lib/system/libxpc.dylib
    0x7fff200e7000 -     0x7fff200fefff  libsystem_trace.dylib (1277.50.1) <48C14376-626E-3C81-B0F5-7416E64580C7> /usr/lib/system/libsystem_trace.dylib
    0x7fff200ff000 -     0x7fff2019dfff  libcorecrypto.dylib (1000.60.19) <92F0211E-506E-3760-A3C2-808BF3905C07> /usr/lib/system/libcorecrypto.dylib
    0x7fff2019e000 -     0x7fff201cafff  libsystem_malloc.dylib (317.40.8) <2EF43B96-90FB-3C50-B73E-035238504E33> /usr/lib/system/libsystem_malloc.dylib
    0x7fff201cb000 -     0x7fff2020ffff  libdispatch.dylib (1271.40.12) <CEF1460B-1362-381A-AE69-6BCE2D8C215B> /usr/lib/system/libdispatch.dylib
    0x7fff20210000 -     0x7fff20248fff  libobjc.A.dylib (818.2) <45EA2DE2-B612-3486-B156-2359CE279159> /usr/lib/libobjc.A.dylib
    0x7fff20249000 -     0x7fff2024bfff  libsystem_featureflags.dylib (28.60.1) <7B4EBDDB-244E-3F78-8895-566FE22288F3> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff2024c000 -     0x7fff202d4fff  libsystem_c.dylib (1439.40.11) <06D9F593-C815-385D-957F-2B5BCC223A8A> /usr/lib/system/libsystem_c.dylib
    0x7fff202d5000 -     0x7fff2032afff  libc++.1.dylib (904.4) <AE3A940A-7A9C-3F99-B175-3511528D8DFE> /usr/lib/libc++.1.dylib
    0x7fff2032b000 -     0x7fff20343fff  libc++abi.dylib (904.4) <DDFCBF9C-432D-3B8A-8641-578D2EDDCAD8> /usr/lib/libc++abi.dylib
    0x7fff20344000 -     0x7fff20372fff  libsystem_kernel.dylib (7195.60.75) <4BD61365-29AF-3234-8002-D989D295FDBB> /usr/lib/system/libsystem_kernel.dylib
    0x7fff20373000 -     0x7fff2037efff  libsystem_pthread.dylib (454.60.1) <8DD3A0BC-2C92-31E3-BBAB-CE923A4342E4> /usr/lib/system/libsystem_pthread.dylib
    0x7fff2037f000 -     0x7fff203b9fff  libdyld.dylib (832.7.1) <2F8A14F5-7CB8-3EDD-85EA-7FA960BBC04E> /usr/lib/system/libdyld.dylib
    0x7fff203ba000 -     0x7fff203c3fff  libsystem_platform.dylib (254.60.1) <3F7F6461-7B5C-3197-ACD7-C8A0CFCC6F55> /usr/lib/system/libsystem_platform.dylib
    0x7fff203c4000 -     0x7fff203effff  libsystem_info.dylib (542.40.3) <0979757C-5F0D-3F5A-9E0E-EBF234B310AF> /usr/lib/system/libsystem_info.dylib
    0x7fff203f0000 -     0x7fff2088bfff  com.apple.CoreFoundation (6.9 - 1770.300) <EAC298C4-CE3E-3551-A832-42ED9A13EF74> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff2088c000 -     0x7fff20abbfff  com.apple.LaunchServices (1122.11 - 1122.11) <CAEEC254-68AE-39B5-8452-EC3E1EE8577B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff20abc000 -     0x7fff20b8ffff  com.apple.gpusw.MetalTools (1.0 - 1) <C235D5FA-0B9D-3E72-A8CE-67174E1B9E7C> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff20b90000 -     0x7fff20df3fff  libBLAS.dylib (1336.40.1) <AD2D155C-1294-3D10-817A-F6A581E6ACF1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff20df4000 -     0x7fff20e41fff  com.apple.Lexicon-framework (1.0 - 86.1) <D54364A6-1C4C-33D7-8B24-C753777B3654> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff20e42000 -     0x7fff20eb0fff  libSparse.dylib (106) <60559226-6E4B-3601-B6CA-E3B85B5EB27B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff20eb1000 -     0x7fff20f2efff  com.apple.SystemConfiguration (1.20 - 1.20) <8524EE4C-628F-315A-9531-44DD83CE275E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff20f2f000 -     0x7fff20f64fff  libCRFSuite.dylib (50) <6CA29EAA-0585-3682-9AD2-DFD3D87A74D4> /usr/lib/libCRFSuite.dylib
    0x7fff20f65000 -     0x7fff2119cfff  libmecabra.dylib (929.1.1) <39F5AD50-3AF2-3CFB-BD21-2DC45AA92A91> /usr/lib/libmecabra.dylib
    0x7fff2119d000 -     0x7fff21500fff  com.apple.Foundation (6.9 - 1770.300) <44A7115B-7FF0-3300-B61B-0FA71B63C715> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff21501000 -     0x7fff215edfff  com.apple.LanguageModeling (1.0 - 247.1) <BCB1F8A7-54B9-36D1-B742-70DF7657BF0B> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff215ee000 -     0x7fff21724fff  com.apple.CoreDisplay (231.3 - 231.3) <229BF97A-1D56-3CB4-8338-E0D464F73A33> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff21725000 -     0x7fff2199afff  com.apple.audio.AudioToolboxCore (1.0 - 1180.23) <56821802-07B9-3FA9-AF73-D943BAE0DE57> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff2199b000 -     0x7fff21b83fff  com.apple.CoreText (677.2.0.5 - 677.2.0.5) <B0B2A8DD-A6F1-3EF7-9351-1BA604353A11> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff21b84000 -     0x7fff22227fff  com.apple.audio.CoreAudio (5.0 - 5.0) <DF623EC9-FC55-3B3C-94FF-6A5C50A981B3> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff22228000 -     0x7fff22579fff  com.apple.security (7.0 - 59754.60.13) <A20AB68D-51DA-340B-B813-F2AFC81F7143> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff2257a000 -     0x7fff227dbfff  libicucore.A.dylib (66109) <6C0A0196-2778-3035-81CE-7CA48D6C0628> /usr/lib/libicucore.A.dylib
    0x7fff227dc000 -     0x7fff227e5fff  libsystem_darwin.dylib (1439.40.11) <BD269412-C9D0-32EE-B42B-B09A187A9B95> /usr/lib/system/libsystem_darwin.dylib
    0x7fff227e6000 -     0x7fff22acdfff  com.apple.CoreServices.CarbonCore (1307 - 1307) <9C615967-6D8E-307F-B028-6278A4FA7C8C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff22ace000 -     0x7fff22b0cfff  com.apple.CoreServicesInternal (476 - 476) <FD1692F7-A4B4-3FE5-B9C8-E0840D53C7D0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff22b0d000 -     0x7fff22b47fff  com.apple.CSStore (1122.11 - 1122.11) <088D0108-AA14-3610-86A0-89D0C605384F> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff22b48000 -     0x7fff22bf5fff  com.apple.framework.IOKit (2.0.2 - 1845.60.2) <F2299682-5884-363F-9069-AA804E712C74> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff22bf6000 -     0x7fff22c01fff  libsystem_notify.dylib (279.40.4) <98D74EEF-60D9-3665-B877-7BE1558BA83E> /usr/lib/system/libsystem_notify.dylib
    0x7fff22c02000 -     0x7fff22c4dfff  libsandbox.1.dylib (1441.60.4) <243C983D-0AEF-3A09-9489-CF1FC75925CC> /usr/lib/libsandbox.1.dylib
    0x7fff22c4e000 -     0x7fff239b0fff  com.apple.AppKit (6.9 - 2022.20.119) <4CB42914-672D-3AF0-A0A5-2209088A3DA0> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff239b1000 -     0x7fff23c04fff  com.apple.UIFoundation (1.0 - 726.11) <71C63CE5-094D-34AF-B538-8DCAB3B66DE9> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff23c05000 -     0x7fff23c17fff  com.apple.UniformTypeIdentifiers (633.0.2 - 633.0.2) <7BEC7DDC-2B7A-3B5D-B994-5FA352FC485A> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
    0x7fff23c18000 -     0x7fff23da2fff  com.apple.desktopservices (1.17 - 1346.2.1) <732C8A0C-E7F8-372D-AE5B-84497067135E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff2406f000 -     0x7fff246b2fff  libnetwork.dylib (2288.60.5) <180FE916-8DD6-3385-B231-0C423B7D2BD3> /usr/lib/libnetwork.dylib
    0x7fff246b3000 -     0x7fff24b50fff  com.apple.CFNetwork (1209.1 - 1209.1) <60DE4CD6-B5AF-3E0E-8AF1-39ECFC1B8C98> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff24b51000 -     0x7fff24b5ffff  libsystem_networkextension.dylib (1295.60.5) <F476B1CB-3561-30C5-A78E-44E99B1720A3> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff24b60000 -     0x7fff24b60fff  libenergytrace.dylib (22) <9BE5E51A-F531-3D59-BBBC-486FFF97BD30> /usr/lib/libenergytrace.dylib
    0x7fff24b61000 -     0x7fff24bbcfff  libMobileGestalt.dylib (978.60.2) <F721B185-0E6A-396B-A50F-0F55810D9A67> /usr/lib/libMobileGestalt.dylib
    0x7fff24bbd000 -     0x7fff24bd3fff  libsystem_asl.dylib (385) <940C5BB9-4928-3A63-97F2-132797C8B7E5> /usr/lib/system/libsystem_asl.dylib
    0x7fff24bd4000 -     0x7fff24bebfff  com.apple.TCC (1.0 - 1) <457D5F24-A346-38FC-8FA1-43B0C835E035> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff24bec000 -     0x7fff24f51fff  com.apple.SkyLight (1.600.0 - 569.6) <35876384-45F9-3C62-995B-38EC31BE75D7> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff24f52000 -     0x7fff255e5fff  com.apple.CoreGraphics (2.0 - 1463.2.2) <323F725F-CB03-3AAD-AFBC-37B430B3FD4E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff255e6000 -     0x7fff256dcfff  com.apple.ColorSync (4.13.0 - 3472) <7387EBC7-CBD9-34FE-B4A3-345E4750FD81> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff256dd000 -     0x7fff25738fff  com.apple.HIServices (1.22 - 713) <9AF2CDD9-8B68-3606-8C9E-1842420ACDA7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff25ae4000 -     0x7fff25f02fff  com.apple.CoreData (120 - 1044.3) <76179A55-CA89-3967-A0A7-C419DB735983> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff25f03000 -     0x7fff25f19fff  com.apple.ProtocolBuffer (1 - 285.20.8.8.1) <8EE538E7-2BB1-3E29-8FC3-938335998B22> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff25f1a000 -     0x7fff260d9fff  libsqlite3.dylib (321.1) <D7017429-8D46-3ECB-8B70-4625C74918F3> /usr/lib/libsqlite3.dylib
    0x7fff260da000 -     0x7fff26156fff  com.apple.Accounts (113 - 113) <99421243-019F-3A2F-A671-092026FA2F74> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff26157000 -     0x7fff2616ffff  com.apple.commonutilities (8.0 - 900) <76711775-FF46-38CA-88F3-B4201C285C7F> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff26170000 -     0x7fff261f1fff  com.apple.BaseBoard (526 - 526) <38C24B3A-8226-3FD5-8C28-B11D02747B56> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff261f2000 -     0x7fff2623dfff  com.apple.RunningBoardServices (1.0 - 505.60.2) <F99A0D0C-D063-3E3F-8D1F-0E0B35E7CE2C> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff2623e000 -     0x7fff262b3fff  com.apple.AE (918.0.1 - 918.0.1) <3A298716-A130-345E-B8FF-74194849015E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff262b4000 -     0x7fff262bafff  libdns_services.dylib (1310.60.4) <61EB26AD-C09E-3140-955E-16BF7DD2D6E3> /usr/lib/libdns_services.dylib
    0x7fff262bb000 -     0x7fff262c2fff  libsystem_symptoms.dylib (1431.60.1) <88F35AAC-746F-3176-81DF-49CE3D285636> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff262c3000 -     0x7fff26447fff  com.apple.Network (1.0 - 1) <EED4099E-B17C-3E0B-AA8F-78A2D4F26CBF> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff26448000 -     0x7fff2646cfff  com.apple.analyticsd (1.0 - 1) <99FE0234-454F-36FF-9DE9-36B94D8753F9> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff2646d000 -     0x7fff2646ffff  libDiagnosticMessagesClient.dylib (112) <1014A32B-89EE-3ADD-971F-9CB973172F69> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff26470000 -     0x7fff264bcfff  com.apple.spotlight.metadata.utilities (1.0 - 2150.7.2) <37A1E760-2006-366C-9FAC-FB70227393FB> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff264bd000 -     0x7fff26557fff  com.apple.Metadata (10.7.0 - 2150.7.2) <509C6597-ABB2-3B81-8E09-C51A755CCDA2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff26558000 -     0x7fff2655efff  com.apple.DiskArbitration (2.7 - 2.7) <83DED679-BE65-3475-8AFF-D664BBAFA60A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff2655f000 -     0x7fff26c05fff  com.apple.vImage (8.1 - 544) <305D97CC-B47C-32FD-9EC5-43259A469A14> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff26c06000 -     0x7fff26ed3fff  com.apple.QuartzCore (1.11 - 925.5) <D59138DC-10CD-3DF8-9F04-CCDB6102C370> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff26ed4000 -     0x7fff26f15fff  libFontRegistry.dylib (309) <790676A3-2B74-3239-A60D-429069933542> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff26f16000 -     0x7fff27057fff  com.apple.coreui (2.1 - 689.4) <0DA8F4E0-9473-374E-8B48-F0A40AEC63CE> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff27058000 -     0x7fff27143fff  com.apple.ViewBridge (551.3 - 551.3) <36D0DCA7-CAAE-33C1-90F6-98876CB8BCF3> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff27144000 -     0x7fff2714ffff  com.apple.PerformanceAnalysis (1.275 - 275) <2F811EE6-D4D4-347E-B4A0-961F0DF050E5> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff27150000 -     0x7fff2715ffff  com.apple.OpenDirectory (11.1 - 230.40.1) <7710743E-6F55-342E-88FA-18796CF83700> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff27160000 -     0x7fff2717ffff  com.apple.CFOpenDirectory (11.1 - 230.40.1) <32ECCB06-56D8-3704-935B-7D5363B2988E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff27180000 -     0x7fff27188fff  com.apple.CoreServices.FSEvents (1290.40.2 - 1290.40.2) <FB18B8D7-C7F5-3CAB-B538-3F4B4E85D1F1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff27189000 -     0x7fff271adfff  com.apple.coreservices.SharedFileList (144 - 144) <93D2192D-7A27-3FD4-B3AB-A4DCBF8419B7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff271ae000 -     0x7fff271b0fff  libapp_launch_measurement.dylib (14.1) <9E2700C3-E993-3695-988E-FEF798B75E34> /usr/lib/libapp_launch_measurement.dylib
    0x7fff271b1000 -     0x7fff271f9fff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <998BC461-F4F5-396E-9798-1C8126AD61DA> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff271fa000 -     0x7fff272dcfff  libxml2.2.dylib (34.8) <68396181-8100-390C-8886-EFB79F5B484C> /usr/lib/libxml2.2.dylib
    0x7fff272dd000 -     0x7fff27329fff  com.apple.CoreVideo (1.8 - 408.4) <0D5AD16E-A871-3ACB-B910-39B87928E937> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff2732a000 -     0x7fff2732cfff  com.apple.loginsupport (1.0 - 1) <4F860927-F6F5-3A99-A103-744CF365634F> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff27356000 -     0x7fff27373fff  com.apple.UserManagement (1.0 - 1) <B5CEAA26-4C5F-3AF4-BDFE-35DE7C8DE1BE> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff2830d000 -     0x7fff2831dfff  libsystem_containermanager.dylib (318.60.1) <4ED09A19-04CC-3464-9EFB-F674932020B5> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff2831e000 -     0x7fff2832ffff  com.apple.IOSurface (289.3 - 289.3) <A3B10665-5909-30EE-BE34-F3284D6D5975> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff28330000 -     0x7fff28338fff  com.apple.IOAccelerator (439.52 - 439.52) <3944C92D-7838-3D2F-A453-9DB15C815D7B> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff28339000 -     0x7fff2845efff  com.apple.Metal (244.32.7 - 244.32.7) <413B81AE-653F-3CF7-B5A4-A4391436E6D1> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff2845f000 -     0x7fff2847bfff  com.apple.audio.caulk (1.0 - 70) <952BA9D4-BAD3-3319-8C17-F7BB2655F80C> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff2847c000 -     0x7fff28565fff  com.apple.CoreMedia (1.0 - 2760.6.4.6) <CBCD783B-B3C9-37B8-835C-A3BACEC35BB5> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff28566000 -     0x7fff286c2fff  libFontParser.dylib (305.2.0.6) <76C6C92A-1B16-3FB7-9EA2-7227D379C20F> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff286c3000 -     0x7fff289c2fff  com.apple.HIToolbox (2.1.1 - 1060.4) <93518490-429F-3E31-8344-15D479C2F4CE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff289c3000 -     0x7fff289d6fff  com.apple.framework.DFRFoundation (1.0 - 265) <FB85651D-6221-38AF-BD6D-29BFF5830D36> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff289d7000 -     0x7fff289dafff  com.apple.dt.XCTTargetBootstrap (1.0 - 17500) <13ADD312-F6F5-3C03-BD3B-9331B3851285> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff289db000 -     0x7fff28a04fff  com.apple.CoreSVG (1.0 - 149) <A0DAE6AE-9DDA-37B4-A087-545A242CF982> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff28a05000 -     0x7fff28c3efff  com.apple.ImageIO (3.3.0 - 2130.2.7) <0FE3D51B-EC76-3558-BD56-7BFF61A6793D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff28c3f000 -     0x7fff28fbcfff  com.apple.CoreImage (16.1.0 - 1120.10) <46F1E4F5-DF8F-32D4-8D0C-6FCF2C27A5CD> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff28fbd000 -     0x7fff29018fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <E2377275-53D7-31A0-AEAF-0A0273B99B92> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff29019000 -     0x7fff2901cfff  libsystem_configuration.dylib (1109.60.2) <C57B346B-0A03-3F87-BCAC-87B702FA0719> /usr/lib/system/libsystem_configuration.dylib
    0x7fff2901d000 -     0x7fff29021fff  libsystem_sandbox.dylib (1441.60.4) <8CE27199-D633-31D2-AB08-56380A1DA9FB> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff29022000 -     0x7fff29023fff  com.apple.AggregateDictionary (1.0 - 1) <7F2AFEBB-FF06-3194-B691-B411F3456962> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff29024000 -     0x7fff29027fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <250CD2CA-E796-3CB0-9ADD-054998903B1D> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff29028000 -     0x7fff29029fff  liblangid.dylib (136) <224DC045-2B60-39AF-B89E-E524175667F5> /usr/lib/liblangid.dylib
    0x7fff2902a000 -     0x7fff290cafff  com.apple.CoreNLP (1.0 - 245) <F876FD71-F077-3CF7-B94D-9E05A17E03D7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff290cb000 -     0x7fff290d1fff  com.apple.LinguisticData (1.0 - 399) <D1B7F1D5-EB9E-3555-BA57-3611FA153C44> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff290d2000 -     0x7fff2978efff  libBNNS.dylib (288.60.2) <E3FF47D5-7DD9-3A9E-A819-C79B0CC17C03> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff2978f000 -     0x7fff29962fff  libvDSP.dylib (760.40.6) <9434101D-E001-357F-9503-9896C6011F52> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff29963000 -     0x7fff29975fff  com.apple.CoreEmoji (1.0 - 128) <7CCFC59A-8746-3E52-AF1D-1B67798E940C> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff29976000 -     0x7fff29980fff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <9A6F913C-EC79-3FC1-A92C-3A1BA96D8DFB> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff29981000 -     0x7fff29a53fff  com.apple.framework.CoreWLAN (16.0 - 1657) <AB3F880B-52C5-3006-82FE-9E6857C09DE7> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff29a54000 -     0x7fff29c53fff  com.apple.CoreUtils (6.5 - 650.5) <198A4273-5B92-3A05-A99D-7FD4914A959A> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff29c54000 -     0x7fff29c76fff  com.apple.MobileKeyBag (2.0 - 1.0) <2B6BF51A-68B0-3108-9597-8B618E6B457B> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff29c77000 -     0x7fff29c87fff  com.apple.AssertionServices (1.0 - 505.60.2) <9F8620BD-A58D-3A42-9B9E-DEC21517EF1A> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff29c88000 -     0x7fff29d14fff  com.apple.securityfoundation (6.0 - 55240.40.4) <5F06D141-62F4-3405-BA72-24673B170A16> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff29d15000 -     0x7fff29d1efff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <C5E4B35C-FFDA-3423-890F-06DAD1F684F5> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff29d1f000 -     0x7fff29d23fff  com.apple.xpc.ServiceManagement (1.0 - 1) <2C03BEB7-915C-3A3A-A44F-A77775E1BFD5> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff29d24000 -     0x7fff29d26fff  libquarantine.dylib (119.40.2) <19D42B9D-3336-3543-AF75-6E605EA31599> /usr/lib/system/libquarantine.dylib
    0x7fff29d27000 -     0x7fff29d32fff  libCheckFix.dylib (31) <3381FC93-F188-348C-9345-5567A7116CEF> /usr/lib/libCheckFix.dylib
    0x7fff29d33000 -     0x7fff29d4afff  libcoretls.dylib (169) <9C244029-6B45-3583-B27F-BB7BBF84D814> /usr/lib/libcoretls.dylib
    0x7fff29d4b000 -     0x7fff29d5bfff  libbsm.0.dylib (68.40.1) <DC652D50-FA69-3801-9361-004D4D6832D0> /usr/lib/libbsm.0.dylib
    0x7fff29d5c000 -     0x7fff29da5fff  libmecab.dylib (929.1.1) <B5D8C96C-D3B8-32F8-84F9-A432CEAD4E5C> /usr/lib/libmecab.dylib
    0x7fff29da6000 -     0x7fff29dabfff  libgermantok.dylib (24) <F9772A76-7AFA-3E0B-A02C-A61FC6CA8D8B> /usr/lib/libgermantok.dylib
    0x7fff29dac000 -     0x7fff29dc1fff  libLinearAlgebra.dylib (1336.40.1) <D2826FAB-174C-3CD6-A765-06D83A9A0EDB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff29dc2000 -     0x7fff29fe9fff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <231CF580-952A-32BC-A423-9B9756AC9744> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff29fea000 -     0x7fff2a039fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <65A993E4-3DC2-3152-98D5-A1DF3DB4573F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff2a03a000 -     0x7fff2a180fff  com.apple.MLCompute (1.0 - 1) <BCEA1149-197E-398F-9424-E29B0AD0829F> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2a181000 -     0x7fff2a1b7fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <F719DA57-EAAA-3527-B859-21025722932F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2a1b8000 -     0x7fff2a1f5fff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <FCCC0D3F-74D2-3107-82B3-E2B500E36AAE> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2a1f6000 -     0x7fff2a286fff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <21527A17-2D6F-3BDF-9A74-F90FA6E26BB3> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2a287000 -     0x7fff2a296fff  com.apple.AppleFSCompression (125 - 1.0) <D1E7DC71-1929-30A8-B73E-268387110608> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff2a297000 -     0x7fff2a2a4fff  libbz2.1.0.dylib (44) <0575C0D0-B107-3E53-857F-DEC55998197B> /usr/lib/libbz2.1.0.dylib
    0x7fff2a2a5000 -     0x7fff2a2a9fff  libsystem_coreservices.dylib (127) <A2D875B9-8BA8-33AD-BE92-ADAB915A8D5B> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff2a2aa000 -     0x7fff2a2d7fff  com.apple.CoreServices.OSServices (1122.11 - 1122.11) <870F34BE-C0ED-318B-858D-5F1E4757D552> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2a2d8000 -     0x7fff2a409fff  com.apple.AuthKit (1.0 - 1) <8239C235-54DE-39F3-98DC-920AF2BE6187> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff2a4ad000 -     0x7fff2a4bffff  libz.1.dylib (76) <9F89FD60-03F7-3175-AB34-5112B99E2B8A> /usr/lib/libz.1.dylib
    0x7fff2a4c0000 -     0x7fff2a507fff  libsystem_m.dylib (3186.40.2) <79820D9E-0FF1-3F20-AF4F-F87EE20CE8C9> /usr/lib/system/libsystem_m.dylib
    0x7fff2a508000 -     0x7fff2a508fff  libcharset.1.dylib (59) <414F6A1C-1EBC-3956-AC2D-CCB0458F31AF> /usr/lib/libcharset.1.dylib
    0x7fff2a509000 -     0x7fff2a50efff  libmacho.dylib (973.4) <28AE1649-22ED-3C4D-A232-29D37F821C39> /usr/lib/system/libmacho.dylib
    0x7fff2a50f000 -     0x7fff2a52afff  libkxld.dylib (7195.60.75) <3600A314-332A-343D-B45D-D9D8B302545D> /usr/lib/system/libkxld.dylib
    0x7fff2a52b000 -     0x7fff2a536fff  libcommonCrypto.dylib (60178.40.2) <1D0A75A5-DEC5-39C6-AB3D-E789B8866712> /usr/lib/system/libcommonCrypto.dylib
    0x7fff2a537000 -     0x7fff2a541fff  libunwind.dylib (200.10) <C5792A9C-DF0F-3821-BC14-238A78462E8A> /usr/lib/system/libunwind.dylib
    0x7fff2a542000 -     0x7fff2a549fff  liboah.dylib (203.13.2) <FF72E19B-3B02-34D4-A821-3397BB28AC02> /usr/lib/liboah.dylib
    0x7fff2a54a000 -     0x7fff2a554fff  libcopyfile.dylib (173.40.2) <89483CD4-DA46-3AF2-AE78-FC37CED05ACC> /usr/lib/system/libcopyfile.dylib
    0x7fff2a555000 -     0x7fff2a55cfff  libcompiler_rt.dylib (102.2) <0DB26EC8-B4CD-3268-B865-C2FC07E4D2AA> /usr/lib/system/libcompiler_rt.dylib
    0x7fff2a55d000 -     0x7fff2a55ffff  libsystem_collections.dylib (1439.40.11) <D40D8097-0ABF-3645-B065-168F43ACFF4C> /usr/lib/system/libsystem_collections.dylib
    0x7fff2a560000 -     0x7fff2a562fff  libsystem_secinit.dylib (87.60.1) <99B5FD99-1A8B-37C1-BD70-04990FA33B1C> /usr/lib/system/libsystem_secinit.dylib
    0x7fff2a563000 -     0x7fff2a565fff  libremovefile.dylib (49.40.3) <750012C2-7097-33C3-B796-2766E6CDE8C1> /usr/lib/system/libremovefile.dylib
    0x7fff2a566000 -     0x7fff2a566fff  libkeymgr.dylib (31) <2C7B58B0-BE54-3A50-B399-AA49C19083A9> /usr/lib/system/libkeymgr.dylib
    0x7fff2a567000 -     0x7fff2a56efff  libsystem_dnssd.dylib (1310.60.4) <81EFC44D-450E-3AA3-AC8F-D7EF68F464B4> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff2a56f000 -     0x7fff2a574fff  libcache.dylib (83) <2F7F7303-DB23-359E-85CD-8B2F93223E2A> /usr/lib/system/libcache.dylib
    0x7fff2a575000 -     0x7fff2a576fff  libSystem.B.dylib (1292.60.1) <A7FB4899-9E04-37ED-9DD8-8FFF0400879C> /usr/lib/libSystem.B.dylib
    0x7fff2a577000 -     0x7fff2a57afff  libfakelink.dylib (3) <34B6DC95-E19A-37C0-B9D0-558F692D85F5> /usr/lib/libfakelink.dylib
    0x7fff2a57b000 -     0x7fff2a57bfff  com.apple.SoftLinking (1.0 - 1) <90D679B3-DFFD-3604-B89F-1BCF70B3EBA4> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff2a57c000 -     0x7fff2a5b3fff  libpcap.A.dylib (98.40.1) <E1995A1C-7EEB-3340-B1E1-DD45FA625C12> /usr/lib/libpcap.A.dylib
    0x7fff2a5b4000 -     0x7fff2a6a4fff  libiconv.2.dylib (59) <3E53F735-1D7E-3ABB-BC45-AAA37F535830> /usr/lib/libiconv.2.dylib
    0x7fff2a6a5000 -     0x7fff2a6b6fff  libcmph.dylib (8) <865FA425-831D-3E49-BD1B-14188D2A98AA> /usr/lib/libcmph.dylib
    0x7fff2a6b7000 -     0x7fff2a728fff  libarchive.2.dylib (83.40.4) <76B2F421-5335-37FB-9CD5-1018878B9E74> /usr/lib/libarchive.2.dylib
    0x7fff2a729000 -     0x7fff2a790fff  com.apple.SearchKit (1.4.1 - 1.4.1) <7BDD2800-BDDC-3DE0-A4A8-B1E855130E3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2a791000 -     0x7fff2a792fff  libThaiTokenizer.dylib (3) <513547CD-5C7F-37BE-A2AD-55A22F279588> /usr/lib/libThaiTokenizer.dylib
    0x7fff2a793000 -     0x7fff2a7bafff  com.apple.applesauce (1.0 - 16.26) <AE525243-2CE7-373E-994E-C2457611EB3C> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff2a7bb000 -     0x7fff2a7d2fff  libapple_nghttp2.dylib (1.41) <CC004768-6E3B-3D80-9431-61149EBE2E10> /usr/lib/libapple_nghttp2.dylib
    0x7fff2a7d3000 -     0x7fff2a7e5fff  libSparseBLAS.dylib (1336.40.1) <CEBD7B0F-A54D-3A43-BD7E-E8BC2C7B7F0C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2a7e6000 -     0x7fff2a7e7fff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <1BFEB124-CF05-342F-BC65-B233EAB661D9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff2a7e8000 -     0x7fff2a7ecfff  libpam.2.dylib (28.40.1) <AE84F5FA-DDB0-3028-AF25-D6B6A12DBA6A> /usr/lib/libpam.2.dylib
    0x7fff2a7ed000 -     0x7fff2a805fff  libcompression.dylib (96.40.6) <45B8B821-8EB6-34FE-92E9-5CBA474499E2> /usr/lib/libcompression.dylib
    0x7fff2a806000 -     0x7fff2a80bfff  libQuadrature.dylib (7) <FB21F53D-4A40-327F-BD3B-C7C8D08C6A86> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2a80c000 -     0x7fff2aba8fff  libLAPACK.dylib (1336.40.1) <509FBCC6-4ECB-3192-98A6-D0C030E4E9D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2aba9000 -     0x7fff2abf7fff  com.apple.DictionaryServices (1.2 - 341) <83CDCE83-6B48-35F1-BACF-83240D940777> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2abf8000 -     0x7fff2ac10fff  liblzma.5.dylib (16) <A45348BC-AA9C-39D6-A7C3-2246A3EFA34C> /usr/lib/liblzma.5.dylib
    0x7fff2ac11000 -     0x7fff2ac12fff  libcoretls_cfhelpers.dylib (169) <C0F19E92-DACB-3100-8610-62DEC5E5FB81> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff2ac13000 -     0x7fff2ad0cfff  com.apple.APFS (1677.60.23 - 1677.60.23) <8271EE40-CDF5-3E0B-9F42-B49DC7C46C98> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff2ad0d000 -     0x7fff2ad1afff  libxar.1.dylib (452) <3F3DA942-DC7B-31EF-BCF1-38F99F59A660> /usr/lib/libxar.1.dylib
    0x7fff2ad1b000 -     0x7fff2ad1efff  libutil.dylib (58.40.2) <85CF2B3B-6BEB-381D-8683-1DE2B0167ECC> /usr/lib/libutil.dylib
    0x7fff2ad1f000 -     0x7fff2ad47fff  libxslt.1.dylib (17.2) <2C881E82-6E2C-3E92-8DC5-3C2D05FE7C95> /usr/lib/libxslt.1.dylib
    0x7fff2ad48000 -     0x7fff2ad52fff  libChineseTokenizer.dylib (37) <36891BB5-4A83-33A3-9995-CC5DB2AB53CE> /usr/lib/libChineseTokenizer.dylib
    0x7fff2ad53000 -     0x7fff2ae11fff  libvMisc.dylib (760.40.6) <219319E1-BDBD-34D1-97B7-E46256785D3C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2ae12000 -     0x7fff2aeaafff  libate.dylib (3.0.4) <51D50D08-F614-3929-AFB1-BF4ED9BE4751> /usr/lib/libate.dylib
    0x7fff2aeab000 -     0x7fff2aeb2fff  libIOReport.dylib (64) <3C26FBDC-931E-3318-8225-C10849CF1D60> /usr/lib/libIOReport.dylib
    0x7fff2aeb3000 -     0x7fff2aee1fff  com.apple.CrashReporterSupport (10.13 - 15047) <5377E0C9-5D89-38C0-B129-1A086716F3E9> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff2afce000 -     0x7fff2afd5fff  libMatch.1.dylib (38) <DC1E67E0-2690-3EE0-840D-461DA2980D9D> /usr/lib/libMatch.1.dylib
    0x7fff2afd6000 -     0x7fff2b061fff  libCoreStorage.dylib (554) <8EEB1047-EFC1-3C1B-8E33-A446EB043AD5> /usr/lib/libCoreStorage.dylib
    0x7fff2b062000 -     0x7fff2b0b5fff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <8A5B1C42-DD83-303B-85DE-754FB6C10E1A> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff2b0b6000 -     0x7fff2b0cffff  libexpat.1.dylib (26) <4408FC72-BDAA-33AE-BE14-4008642794ED> /usr/lib/libexpat.1.dylib
    0x7fff2b0d0000 -     0x7fff2b0d9fff  libheimdal-asn1.dylib (597.40.10) <032931C8-B042-3B3D-93D3-5B3E27431FEA> /usr/lib/libheimdal-asn1.dylib
    0x7fff2b0da000 -     0x7fff2b0eefff  com.apple.IconFoundation (479.3 - 479.3) <650C91C9-D6A1-3FF7-964B-DE1065F2243C> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
    0x7fff2b0ef000 -     0x7fff2b15cfff  com.apple.IconServices (479.3 - 479.3) <63CAB1AB-C485-382A-9088-F6E3937BB8E9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff2b15d000 -     0x7fff2b1fafff  com.apple.MediaExperience (1.0 - 1) <A7A754CE-61AB-39B8-AA31-3AEB14695F55> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff2b1fb000 -     0x7fff2b224fff  com.apple.persistentconnection (1.0 - 1.0) <C3F975D3-A87C-353C-BA1F-072825E60E8C> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff2b225000 -     0x7fff2b233fff  com.apple.GraphVisualizer (1.0 - 100.1) <7035CCDF-5B9D-365C-A1FA-1D961EBEE44D> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff2b234000 -     0x7fff2b64ffff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <E0518821-B65D-31A4-8C37-DF3569CF8867> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff2b650000 -     0x7fff2b69afff  com.apple.OTSVG (1.0 - 677.2.0.5) <D2722431-6C71-3144-A024-6ED06334AEE0> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff2b69b000 -     0x7fff2b6a1fff  com.apple.xpc.AppServerSupport (1.0 - 2038.40.38) <27B96AA0-421E-3E5A-B9D8-9BA3F0D133E9> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
    0x7fff2b6a2000 -     0x7fff2b6b3fff  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <CAD78803-0F56-316E-A7F1-D2BF26CA2DD6> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff2b6b4000 -     0x7fff2b6b6fff  libspindump.dylib (295) <C6F804A3-5682-3766-A324-76667364873D> /usr/lib/libspindump.dylib
    0x7fff2b6b7000 -     0x7fff2b777fff  com.apple.Heimdal (4.0 - 2.0) <8BB18335-5DD3-3154-85C8-0145C64556A2> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff2b778000 -     0x7fff2b792fff  com.apple.login (3.0 - 3.0) <343A182A-F6C9-366E-BF0C-2124E5367F19> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff2b916000 -     0x7fff2b980fff  com.apple.bom (14.0 - 233) <A62EEEE5-3027-3F25-BCD9-32D36922106E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff2b981000 -     0x7fff2b9cbfff  com.apple.AppleJPEG (1.0 - 1) <A2E9E2A4-AEDC-3481-BDC9-05D9AD84FC25> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff2b9cc000 -     0x7fff2baaafff  libJP2.dylib (2130.2.7) <9D837C01-3D6C-3D71-8E92-3673CE06A21F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff2baab000 -     0x7fff2baaefff  com.apple.WatchdogClient.framework (1.0 - 98.60.1) <8374BBBB-65CB-3D46-9AD6-0DD1FB99AD88> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff2baaf000 -     0x7fff2bae2fff  com.apple.MultitouchSupport.framework (4400.28 - 4400.28) <E9A95272-5E84-3B64-8263-8C7F84456269> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff2bae3000 -     0x7fff2bc35fff  com.apple.VideoToolbox (1.0 - 2760.6.4.6) <35098775-A188-3BE0-B0B1-7CE0027BA295> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff2bc36000 -     0x7fff2bc68fff  libAudioToolboxUtility.dylib (1180.23) <58B4505B-F0EA-37FC-9F5A-6F9F05B0F2A5> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff2bc69000 -     0x7fff2bc8ffff  libPng.dylib (2130.2.7) <1F3FED3B-FB07-3F43-8EAD-6100017FBAB5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff2bc90000 -     0x7fff2bcedfff  libTIFF.dylib (2130.2.7) <27E9A2D3-003D-3D97-AD85-BE595EA0516F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff2bcee000 -     0x7fff2bd08fff  com.apple.IOPresentment (53 - 37) <070919DC-978E-3DB3-80FD-FB0C1BAAE80A> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff2bd09000 -     0x7fff2bd0ffff  com.apple.GPUWrangler (6.2.2 - 6.2.2) <F4B3905F-C024-33C1-82C8-F1744AF8516E> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff2bd10000 -     0x7fff2bd13fff  libRadiance.dylib (2130.2.7) <7ABF94D2-5281-363F-A613-9C945D77AAE8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff2bd14000 -     0x7fff2bd19fff  com.apple.DSExternalDisplay (3.1 - 380) <BA802582-F1EB-35B8-902F-3D0F426124E0> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff2bd1a000 -     0x7fff2bd3efff  libJPEG.dylib (2130.2.7) <FDD55379-6673-31E4-B916-7949459B60AE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff2bd3f000 -     0x7fff2bd6efff  com.apple.ATSUI (1.0 - 1) <B82D099B-4F53-3B60-8BAA-975C41EFD356> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2bd6f000 -     0x7fff2bd73fff  libGIF.dylib (2130.2.7) <C51FB0BA-E5C0-335B-9C64-185B1DDC9166> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff2bd74000 -     0x7fff2bd7dfff  com.apple.CMCaptureCore (1.0 - 80.17.1.1) <A0D43E58-B960-3A80-8807-4115F0E1EF74> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
    0x7fff2bd7e000 -     0x7fff2bdc5fff  com.apple.print.framework.PrintCore (16 - 531) <FC56A643-F502-3578-9EFF-375BE6B87691> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2bdc6000 -     0x7fff2be92fff  com.apple.TextureIO (3.10.9 - 3.10.9) <0AC15003-4B6A-3FB3-9B41-3EF61A2BD430> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff2be93000 -     0x7fff2be9bfff  com.apple.InternationalSupport (1.0 - 60) <5485FFDC-CE44-37F4-865F-91B2EFBC6CAF> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff2be9c000 -     0x7fff2bf17fff  com.apple.datadetectorscore (8.0 - 674) <A2DEEF63-7643-37AA-9420-ED875629D1B2> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff2bf18000 -     0x7fff2bf76fff  com.apple.UserActivity (435 - 435) <075FD354-28FD-3A13-881C-955FA9106D5C> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
    0x7fff2cbc4000 -     0x7fff2cbf5fff  libSessionUtility.dylib (76.7) <95615EDE-46B9-32AE-96EC-7F6E5EB6A932> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
    0x7fff2cbf6000 -     0x7fff2cd26fff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <D0F9F628-F241-3FA2-A785-7B9DCBB2FEC4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2cd27000 -     0x7fff2cd8efff  com.apple.audio.AudioSession (1.0 - 76.7) <C0B1C9EB-A594-31E3-ADDF-118583840E6F> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
    0x7fff2cd8f000 -     0x7fff2cda1fff  libAudioStatistics.dylib (25.1) <1D07EA54-BE7C-37C4-AA73-5224D402F0C3> /usr/lib/libAudioStatistics.dylib
    0x7fff2cda2000 -     0x7fff2cdb1fff  com.apple.speech.synthesis.framework (9.0.51 - 9.0.51) <B86A2136-8DD7-395D-BB9F-9416C56DD2D6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2cdb2000 -     0x7fff2ce1dfff  com.apple.ApplicationServices.ATS (377 - 516) <3A435648-CC5F-387E-AB37-391AAEABE314> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2ce1e000 -     0x7fff2ce36fff  libresolv.9.dylib (68) <9957A6F4-8B66-3429-86CD-6DF4993EB6F5> /usr/lib/libresolv.9.dylib
    0x7fff2cf69000 -     0x7fff2d048fff  libSMC.dylib (20) <CE5162B7-379E-3DF0-9D1E-44BC98BD2422> /usr/lib/libSMC.dylib
    0x7fff2d049000 -     0x7fff2d0a8fff  libcups.2.dylib (494.1) <04A4801E-E1B5-3919-9F14-100F0C2D049B> /usr/lib/libcups.2.dylib
    0x7fff2d0a9000 -     0x7fff2d0b8fff  com.apple.LangAnalysis (1.7.0 - 254) <120945D9-B74D-3A6F-B160-2678E6B6481D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2d0b9000 -     0x7fff2d0c3fff  com.apple.NetAuth (6.2 - 6.2) <C65B2F54-67EA-3E4D-B84A-BBA94998BD6B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff2d0c4000 -     0x7fff2d0cbfff  com.apple.ColorSyncLegacy (4.13.0 - 1) <33DA9348-EADF-36D2-B999-56854481D272> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2d0cc000 -     0x7fff2d0d7fff  com.apple.QD (4.0 - 416) <7FFC9049-7E42-372B-9105-1C4C94DE0110> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2d0d8000 -     0x7fff2d746fff  com.apple.audio.AudioResourceArbitration (1.0 - 1) <098FD431-D302-3DD5-9AD1-453615A73E68> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff2d747000 -     0x7fff2d753fff  com.apple.perfdata (1.0 - 67.40.1) <85A57A67-8721-3035-BCEE-D4AC98332D2C> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
    0x7fff2d754000 -     0x7fff2d762fff  libperfcheck.dylib (41) <67113817-A463-360A-B321-9286DC50FEDA> /usr/lib/libperfcheck.dylib
    0x7fff2d763000 -     0x7fff2d772fff  com.apple.Kerberos (3.0 - 1) <2E872705-0841-3695-AF79-4160D2A436AB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff2d773000 -     0x7fff2d7c2fff  com.apple.GSS (4.0 - 2.0) <2A38D59F-5F3A-3779-A421-2F8128F22B95> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff2d7c3000 -     0x7fff2d7d3fff  com.apple.CommonAuth (4.0 - 2.0) <D9431F22-A16B-3237-9676-B6159B36F5EA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff2d828000 -     0x7fff2d84afff  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <3554A1B0-A9AD-3D89-A755-1C9CC7CEA239> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff2d84b000 -     0x7fff2d853fff  com.apple.CorePhoneNumbers (1.0 - 1) <0DF4C527-E7D3-30E0-9402-4C43B29729CB> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff2d9a8000 -     0x7fff2d9a8fff  liblaunch.dylib (2038.40.38) <05A7EFDD-4111-3E4D-B668-239B69DE3D0F> /usr/lib/system/liblaunch.dylib
    0x7fff2e1a3000 -     0x7fff2e2eafff  com.apple.Sharing (1575 - 1575) <4E590A26-5934-33EE-BFD9-391A64686FDE> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff2e2eb000 -     0x7fff2e40bfff  com.apple.Bluetooth (8.0.2 - 8.0.2f9) <E3CF73C4-B439-3E30-B74D-3344C2EA2FC9> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff2e40c000 -     0x7fff2e420fff  com.apple.AppContainer (4.0 - 509.60.2) <A9D28E73-B08F-34E3-AE7B-0855DBA96C3C> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff2e421000 -     0x7fff2e424fff  com.apple.SecCodeWrapper (4.0 - 509.60.2) <55B0C208-B176-3FE4-8CA2-9F28CA59F8F1> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff2e425000 -     0x7fff2e47efff  com.apple.ProtectedCloudStorage (1.0 - 1) <C84C9C98-5382-3E27-8275-AC9816AA28E8> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff2fbce000 -     0x7fff2fbf9fff  com.apple.RemoteViewServices (2.0 - 163) <AC6E2D2F-8131-3A40-97D7-E24E2A45CD66> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff2fbfa000 -     0x7fff2fc09fff  com.apple.SpeechRecognitionCore (6.1.12 - 6.1.12) <F2A0E41A-7976-3175-959A-98DC24AAFFCC> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff2fc0a000 -     0x7fff2fc11fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <9C14FA0A-D905-375B-8C32-E311ED59B6AD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2fe55000 -     0x7fff2fe55fff  libsystem_product_info_filter.dylib (8.40.1) <7CCAF1A8-F570-341E-B275-0C80B092F8E0> /usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff2ff30000 -     0x7fff2ff30fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <510A463F-5CA5-3585-969F-2D44583B71C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2ff57000 -     0x7fff2ff57fff  com.apple.CoreServices (1122.11 - 1122.11) <5DDB040C-6E92-3DBE-9049-873F510F26E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff30225000 -     0x7fff30225fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <F2FFCC7B-EE3D-3768-A73B-342851B53741> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff30a9c000 -     0x7fff30afefff  com.apple.CoreBluetooth (1.0 - 1) <0FF4CFB1-B8DD-31C3-A000-5016CFE45EB9> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff30aff000 -     0x7fff30b08fff  com.apple.SymptomDiagnosticReporter (1.0 - 79.40.12) <4536FFDF-598E-3085-8DDD-26798E1EEBD6> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff30b1d000 -     0x7fff30b29fff  com.apple.AppleIDAuthSupport (1.0 - 1) <1EE88692-4059-3A33-B492-E7D7112EFB0C> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff30b2a000 -     0x7fff30bd2fff  com.apple.DiscRecording (9.0.3 - 9030.4.5) <8676CDCB-15CC-3723-9411-8B8AFA3B370A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff30bd3000 -     0x7fff30c06fff  com.apple.MediaKit (16 - 927.40.2) <C7FB3929-E0E1-3A6C-B138-EE504CCE9EF0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff30c07000 -     0x7fff30cf2fff  com.apple.DiskManagement (14.0 - 1733.60.1) <328DB6AD-221B-35FA-8E31-2E5CD860A0F3> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff310e0000 -     0x7fff31200fff  com.apple.FileProvider (326 - 326) <B2A33B9E-66D9-30B5-A18C-AD0D7F3592C5> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff31201000 -     0x7fff31224fff  com.apple.GenerationalStorage (2.0 - 322) <F2740CA7-334B-3F24-AFE8-2451D1A041C2> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff31b83000 -     0x7fff31bbffff  com.apple.DebugSymbols (195.1 - 195.1) <6AA76BBC-B0F2-3F37-A6EE-19014DCD06D9> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff31bc0000 -     0x7fff31c7dfff  com.apple.CoreSymbolication (12.2 - 64541.4) <A100000D-F881-3C3C-ABC5-3EAC7A272579> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff32b13000 -     0x7fff32b76fff  com.apple.framework.Apple80211 (17.0 - 1728) <2DBC65AC-A7DF-38F9-9174-3382667FBF0F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff32b77000 -     0x7fff32cc9fff  com.apple.CoreWiFi (3.0 - 341) <C18D2E57-A964-380F-A74B-AEFDB3B3ADEC> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff32f36000 -     0x7fff32f45fff  com.apple.xpc.RemoteServiceDiscovery (1.0 - 2038.40.38) <EFEFC279-E73A-3557-A4AE-BF67E7C96962> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
    0x7fff32f46000 -     0x7fff32f5dfff  com.apple.xpc.RemoteXPC (1.0 - 2038.40.38) <DC43AED2-6DD7-31AB-8186-EF69ED7027C4> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
    0x7fff32fa9000 -     0x7fff32fb0fff  com.apple.EFILogin (2.0 - 2) <B94BFCCA-45B6-3E80-84E7-758350D7CAFD> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff32fb1000 -     0x7fff32fbcfff  libcsfde.dylib (554) <1F4DFF13-17EC-3672-8A41-056F4E44A377> /usr/lib/libcsfde.dylib
    0x7fff331ea000 -     0x7fff331eafff  com.apple.ApplicationServices (48 - 50) <7B536871-3F10-3138-B06B-9C2A3C07EC1E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff334ea000 -     0x7fff334eafff  libHeimdalProxy.dylib (79) <1BD94BF6-8E63-3B21-95DC-E5EEEBFB8AE8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff3359d000 -     0x7fff3359dfff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <F5EC07DD-8937-37CB-84DF-C7475FFA573E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff34553000 -     0x7fff345a3fff  com.apple.ChunkingLibrary (334 - 334) <E392AB7F-6EAC-3E2E-93F8-01BA240FEACD> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff39443000 -     0x7fff39446fff  com.apple.OSAServicesClient (1.0 - 1) <44E39868-F624-3644-B453-962D34737998> /System/Library/PrivateFrameworks/OSAServicesClient.framework/Versions/A/OSAServicesClient
    0x7fff3d3d4000 -     0x7fff3d3f3fff  com.apple.private.SystemPolicy (1.0 - 1) <CFE0B0C6-DF5B-31EB-9D79-B23E00A80B05> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
    0x7fff3dd1d000 -     0x7fff3dd28fff  com.apple.MallocStackLogging (1.0 - 1) <C1A21524-381D-39CA-AD63-A3B9F67FC6CA> /System/Library/PrivateFrameworks/MallocStackLogging.framework/Versions/A/MallocStackLogging
    0x7fff3dd3e000 -     0x7fff3dd50fff  libmis.dylib (274.60.2) <54387457-A60B-3390-AD6D-3B380792CD79> /usr/lib/libmis.dylib
    0x7fff3dd51000 -     0x7fff3dd54fff  com.apple.gpusw.GPURawCounter (12.25 - 12.0) <17751B3E-2CF3-3944-BA02-124E56A10426> /System/Library/PrivateFrameworks/GPURawCounter.framework/Versions/A/GPURawCounter
    0x7fff41944000 -     0x7fff41962fff  libCGInterfaces.dylib (544) <488D608D-374C-3A2F-B8AC-D78E2F6E6DB7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff482b6000 -     0x7fff48304fff  com.apple.osanalytics.OSAnalytics (1.0 - 1) <EF7537E3-982B-3FA2-BFFC-F8071EFF0B31> /System/Library/PrivateFrameworks/OSAnalytics.framework/Versions/A/OSAnalytics
    0x7fff52274000 -     0x7fff52306fff  com.apple.Symbolication (12.2 - 64541.7.1) <EC806042-5249-35DC-90BA-953A86D1854A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff5dca3000 -     0x7fff5dcb2fff  libSimplifiedChineseConverter.dylib (90) <7B0D1DCF-888E-3578-8AC6-2B409CAF3B69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x7fff66029000 -     0x7fff6655efff  com.apple.driver.AppleIntelICLGraphicsMTLDriver (16.1.7.1 - 16.0.1) <1CE6FE05-98EF-350F-856F-0655C0DCA597> /System/Library/Extensions/AppleIntelICLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelICLGraphicsMTLDriver
    0x7fff6a3da000 -     0x7fff6a3defff  libmetal_timestamp.dylib (31001.160) <2EC7EA90-5313-3812-8E72-910C643A996C> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libmetal_timestamp.dylib
    0x7fff6c848000 -     0x7fff6c84efff  libCoreFSCache.dylib (177.22) <4ECE128D-5E79-3ADF-8FE7-4FE8F565F8AA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff6c84f000 -     0x7fff6c853fff  libCoreVMClient.dylib (177.22) <E0DBED1D-39B4-3E51-9EA8-D1ECAED93EAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff6c854000 -     0x7fff6c863fff  com.apple.opengl (18.1.1 - 18.1.1) <D8EE3AD0-C0D0-32F7-9C6D-39341099EB55> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff6c864000 -     0x7fff6c866fff  libCVMSPluginSupport.dylib (18.1.1) <5F020D32-8663-3CB8-A50C-F939D4D4C31F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff6c867000 -     0x7fff6c86ffff  libGFXShared.dylib (18.1.1) <2271532D-E2B3-3D4D-ADF0-0935F8DCE89B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff6c870000 -     0x7fff6c8a3fff  libGLImage.dylib (18.1.1) <528E53A3-33E1-34C7-8EE3-C42AE5255553> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff6c8a4000 -     0x7fff6c8e0fff  libGLU.dylib (18.1.1) <15CBDF20-8A87-3D84-90F8-D19F4A2B06E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff6ca76000 -     0x7fff6ca80fff  libGL.dylib (18.1.1) <157B74E1-F30D-3F9D-9AF8-AAA333D2812D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff6deb7000 -     0x7fff6df0ffff  com.apple.opencl (4.5 - 4.5) <8A3D06D5-4E82-355C-AE1B-E2C91DB58233> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff783cf000 -     0x7fff783d6fff  libRosetta.dylib (203.13.2) <FF72E19B-3B02-34D4-A821-3397BB28AC02> /usr/lib/libRosetta.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 224464
    thread_create: 0
    thread_set_state: 85

VM Region Summary:
ReadOnly portion of Libraries: Total=707.0M resident=0K(0%) swapped_out_or_unallocated=707.0M(100%)
Writable regions: Total=1.6G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.6G(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               256K        2 
Activity Tracing                   256K        1 
CG backing stores                 4320K       12 
CG image                            36K        2 
CoreAnimation                       44K        6 
CoreGraphics                        16K        3 
CoreServices                        40K        1 
CoreUI image data                  828K        7 
Foundation                          16K        1 
Kernel Alloc Once                    8K        1 
MALLOC                           303.2M       51 
MALLOC guard page                   48K        9 
MALLOC_MEDIUM (reserved)         936.0M        8         reserved VM address space (unallocated)
MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)
STACK GUARD                         84K       21 
Stack                             42.7M       22 
Stack Guard                       56.0M        1 
VM_ALLOCATE                        932K       60 
VM_ALLOCATE (reserved)            2176K       17         reserved VM address space (unallocated)
__CTF                               759        1 
__DATA                            13.4M      296 
__DATA_CONST                      11.7M      164 
__DATA_DIRTY                       539K       97 
__FONT_DATA                          4K        1 
__LINKEDIT                       493.3M        7 
__OBJC_RO                         60.5M        1 
__OBJC_RW                         2452K        2 
__TEXT                           213.8M      301 
__UNICODE                          588K        1 
mapped file                       72.4M       20 
shared memory                       40K        4 
===========                     =======  ======= 
TOTAL                              2.5G     1121 
TOTAL, minus reserved VM space     1.2G     1121 

Model: MacBookPro16,2, BootROM 1554.60.15.0.0 (iBridge: 18.16.13030.0.0,0), 4 processors, Quad-Core Intel Core i7, 2.3 GHz, 32 GB, SMC 
Graphics: kHW_IntelIrisPlusGraphicsItem, Intel Iris Plus Graphics, spdisplays_builtin
Memory Module: BANK 0/ChannelA-DIMM0, 16 GB, LPDDR4X, 3733 MHz, Micron, -
Memory Module: BANK 2/ChannelB-DIMM0, 16 GB, LPDDR4X, 3733 MHz, Micron, -
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Sep 11 2020 17:01:15 version 9.30.440.2.32.5.61 FWID 01-1d69e4b4
Bluetooth: Version 8.0.2f9, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.1 Bus
USB Device: USB 2.0 BILLBOARD
USB Device: USB 3.1 Bus
USB Device: Apple T2 Bus
USB Device: Touch Bar Backlight
USB Device: Touch Bar Display
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: Ambient Light Sensor
USB Device: FaceTime HD Camera (Built-in)
USB Device: Apple T2 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 85.0
Thunderbolt Bus: MacBook Pro, Apple Inc., 85.0


unable to launch -- core dump on launch -- mac

steps taken:

clone tag v.0.0.1 of the repo
make clean
make binary
find target in target/release folder

run with ./lapace
core dump

core dump below:

Process:               lapce [24100]
Path:                  /Users/USER/*/lapce
Identifier:            lapce
Version:               0
Code Type:             X86-64 (Native)
Parent Process:        zsh [71506]
Responsible:           iTerm2 [64807]
User ID:               1526776272

Date/Time:             2021-12-14 10:02:33.618 +0100
OS Version:            macOS 11.5.1 (20G80)
Report Version:        12
Bridge OS Version:     6.0 (19P548)
Anonymous UUID:        170A6616-A44B-71A9-3C91-F00C29C5D669

Sleep/Wake UUID:       B030D5AF-1B6B-4970-9F3D-E3E16248BEF9

Time Awake Since Boot: 190000 seconds
Time Since Wake:       42000 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Application Specific Information:
abort() called

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	0x00007fff2045192e __pthread_kill + 10
1   libsystem_pthread.dylib       	0x00007fff204805bd pthread_kill + 263
2   libsystem_c.dylib             	0x00007fff203d5406 abort + 125
3   lapce                         	0x0000000100c0b329 std::sys::unix::abort_internal::hc1867b034a35e72f + 9
4   lapce                         	0x0000000100c78be9 std::process::abort::h8bae04419096b309 + 9
5   lapce                         	0x0000000100c03fb0 rust_oom + 32
6   lapce                         	0x0000000100c1b269 __rg_oom + 9
7   lapce                         	0x0000000100c79759 alloc::alloc::handle_alloc_error::hbd58ef4cace41bf6 + 9
8   lapce                         	0x0000000100c2b697 alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::do_reserve_and_handle::h478b47c946f6455a + 151
9   lapce                         	0x00000001003f5eef alacritty_terminal::term::Term$LT$T$GT$::resize::h27cf7fb6aed43176 + 959
10  lapce                         	0x000000010053772e lapce_core::terminal::LapceTerminalData::resize::h08c2730200e93cba + 222
11  lapce                         	0x0000000100539df3 _$LT$lapce_core..terminal..LapceTerminal$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::h5ace91d0d4419090 + 371
12  lapce                         	0x0000000100333c38 druid::core::WidgetPod$LT$T$C$W$GT$::layout::h9e17cd3b5de23f31 + 600
13  lapce                         	0x000000010039b755 _$LT$lapce_core..scroll..LapcePadding$LT$T$C$W$GT$$u20$as$u20$druid..widget..widget..Widget$LT$T$GT$$GT$::layout::h9bdf45eee398de62 + 357
14  lapce                         	0x0000000100337cca druid::core::WidgetPod$LT$T$C$W$GT$::layout::he408f48beca60a1d + 602
15  lapce                         	0x00000001005381bc _$LT$lapce_core..terminal..LapceTerminalView$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::h88b6cf8b0f44db97 + 332
16  lapce                         	0x0000000100337cca druid::core::WidgetPod$LT$T$C$W$GT$::layout::he408f48beca60a1d + 602
17  lapce                         	0x000000010050ac79 _$LT$lapce_core..split..LapceSplitNew$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::h7410ecd801cde2ed + 793
18  lapce                         	0x000000010032f296 druid::core::WidgetPod$LT$T$C$W$GT$::layout::h44e8f2b0046dc52c + 614
19  lapce                         	0x0000000100537c3d _$LT$lapce_core..terminal..TerminalPanel$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::h6aa5a53d459d9e23 + 45
20  lapce                         	0x0000000100337cca druid::core::WidgetPod$LT$T$C$W$GT$::layout::he408f48beca60a1d + 602
21  lapce                         	0x0000000100586e6b _$LT$lapce_core..tab..LapceTabNew$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceTabData$GT$$GT$::layout::h2e6a6fd4ae2d78b1 + 2315
22  lapce                         	0x00000001003a3de1 _$LT$druid..widget..lens_wrap..LensWrap$LT$T$C$U$C$L$C$W$GT$$u20$as$u20$druid..widget..widget..Widget$LT$T$GT$$GT$::layout::h43224d2f41d88ef3 + 289
23  lapce                         	0x000000010032e02d druid::core::WidgetPod$LT$T$C$W$GT$::layout::h20ec3d8cc4373eb9 + 605
24  lapce                         	0x000000010054038c _$LT$lapce_core..window..LapceWindowNew$u20$as$u20$druid..widget..widget..Widget$LT$lapce_core..data..LapceWindowData$GT$$GT$::layout::h3c79c77554f42edb + 1436
25  lapce                         	0x00000001003a3fbe _$LT$druid..widget..lens_wrap..LensWrap$LT$T$C$U$C$L$C$W$GT$$u20$as$u20$druid..widget..widget..Widget$LT$T$GT$$GT$::layout::hc6da741755e38c44 + 286
26  lapce                         	0x000000010032fc09 druid::core::WidgetPod$LT$T$C$W$GT$::layout::h45c85ae484c94375 + 617
27  lapce                         	0x00000001003ce6f6 _$LT$druid..widget..env_scope..EnvScope$LT$T$C$W$GT$$u20$as$u20$druid..widget..widget..Widget$LT$T$GT$$GT$::layout::h06a823a2eaeab49a + 326
28  lapce                         	0x000000010033203d druid::core::WidgetPod$LT$T$C$W$GT$::layout::h790194d7292c9ad3 + 605
29  lapce                         	0x0000000100415ce8 druid::window::Window$LT$T$GT$::layout::h9a942703e83ab760 + 776
30  lapce                         	0x00000001004163aa druid::window::Window$LT$T$GT$::do_paint::h8db486a14762f479 + 58
31  lapce                         	0x00000001005cbe0e druid::win_handler::AppState$LT$T$GT$::paint_winit_window::ha4ab97ee1aca5857 + 318
32  lapce                         	0x0000000100481539 druid::app::AppLauncher$LT$T$GT$::launch::_$u7b$$u7b$closure$u7d$$u7d$::h0c55d917332a8b4f + 633
33  lapce                         	0x000000010046eac8 _$LT$winit..platform_impl..platform..app_state..EventLoopHandler$LT$T$GT$$u20$as$u20$winit..platform_impl..platform..app_state..EventHandler$GT$::handle_nonuser_event::h4550436b6bfbeb0c + 328
34  lapce                         	0x00000001008d041e winit::platform_impl::platform::app_state::Handler::handle_nonuser_event::h2de07d6c4e62f7a5 + 782
35  lapce                         	0x00000001008d25a5 winit::platform_impl::platform::app_state::AppState::cleared::h8df6f27d3becc876 + 1925
36  lapce                         	0x00000001008d5137 winit::platform_impl::platform::observer::control_flow_end_handler::h1c01f31f5f999bb9 + 135
37  com.apple.CoreFoundation      	0x00007fff20578d01 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
38  com.apple.CoreFoundation      	0x00007fff20578b95 __CFRunLoopDoObservers + 543
39  com.apple.CoreFoundation      	0x00007fff20578166 __CFRunLoopRun + 1159
40  com.apple.CoreFoundation      	0x00007fff2057761c CFRunLoopRunSpecific + 563
41  com.apple.HIToolbox           	0x00007fff287bca83 RunCurrentEventLoopInMode + 292
42  com.apple.HIToolbox           	0x00007fff287bc7e5 ReceiveNextEventCommon + 587
43  com.apple.HIToolbox           	0x00007fff287bc583 _BlockUntilNextEventMatchingListInModeWithFilter + 70
44  com.apple.AppKit              	0x00007fff22d7e502 _DPSNextEvent + 864
45  com.apple.AppKit              	0x00007fff22d7ccd5 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1364
46  com.apple.AppKit              	0x00007fff22d6f049 -[NSApplication run] + 586
47  lapce                         	0x0000000100484522 winit::platform_impl::platform::event_loop::EventLoop$LT$T$GT$::run::h743694583166ef31 + 946
48  lapce                         	0x00000001003dbc5b winit::event_loop::EventLoop$LT$T$GT$::run::hd28dc139440e0109 + 91
49  lapce                         	0x00000001003dad1e druid::app::AppLauncher$LT$T$GT$::launch::hd0262c6fd92c5cf9 + 2478
50  lapce                         	0x00000001005afb8c lapce_core::app::lanuch::h039fbbed00efdba2 + 1932
51  lapce                         	0x00000001002fd076 std::sys_common::backtrace::__rust_begin_short_backtrace::ha8ef787315bbb01f + 6
52  lapce                         	0x00000001002fd04c std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::hb92171ddcc670f7f + 12
53  lapce                         	0x0000000100c0558a std::rt::lang_start_internal::hf65df31c3ffe3b9a + 650
54  lapce                         	0x00000001002fd039 main + 41
55  libdyld.dylib                 	0x00007fff2049bf3d start + 1

Thread 1:
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100bf9b21 std::thread::park::h06c44c4d2ced7b76 + 209
3   lapce                         	0x000000010037bd01 crossbeam_channel::context::Context::wait_until::h4b86a70d608678ec + 289
4   lapce                         	0x000000010037bdca crossbeam_channel::context::Context::with::_$u7b$$u7b$closure$u7d$$u7d$::h275bc3022309ca5d + 138
5   lapce                         	0x000000010037e18b crossbeam_channel::flavors::list::Channel$LT$T$GT$::recv::h883c1b215d9d8a95 + 795
6   lapce                         	0x00000001003a5e1e crossbeam_channel::channel::Receiver$LT$T$GT$::recv::h3674d9f97b2d0e1c + 94
7   lapce                         	0x00000001005b5e1d std::sys_common::backtrace::__rust_begin_short_backtrace::hdcc2d90e0c600796 + 141
8   lapce                         	0x00000001003aae60 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h785c1de0cdcc14c7 + 160
9   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
10  libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
11  libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 2:: sled-io-0
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100b8f8df parking_lot::condvar::Condvar::wait_until_internal::ha2e69dd1a1b9faf4 + 815
3   lapce                         	0x00000001005f8b99 sled::threadpool::perform_work::h6b2b29bfd0e8eea8 + 153
4   lapce                         	0x00000001006487bd std::sys_common::backtrace::__rust_begin_short_backtrace::h5bb209b46ead99cf + 29
5   lapce                         	0x0000000100620eda core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8e1305dbc7994961 + 106
6   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 3:: sled-io-1
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100b8f8df parking_lot::condvar::Condvar::wait_until_internal::ha2e69dd1a1b9faf4 + 815
3   lapce                         	0x00000001005f8b99 sled::threadpool::perform_work::h6b2b29bfd0e8eea8 + 153
4   lapce                         	0x00000001006487bd std::sys_common::backtrace::__rust_begin_short_backtrace::h5bb209b46ead99cf + 29
5   lapce                         	0x0000000100620eda core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8e1305dbc7994961 + 106
6   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 4:: sled-io-2
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100b8f8df parking_lot::condvar::Condvar::wait_until_internal::ha2e69dd1a1b9faf4 + 815
3   lapce                         	0x00000001005f8b99 sled::threadpool::perform_work::h6b2b29bfd0e8eea8 + 153
4   lapce                         	0x00000001006487bd std::sys_common::backtrace::__rust_begin_short_backtrace::h5bb209b46ead99cf + 29
5   lapce                         	0x0000000100620eda core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8e1305dbc7994961 + 106
6   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 5:: sled-io-3
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100b8f8df parking_lot::condvar::Condvar::wait_until_internal::ha2e69dd1a1b9faf4 + 815
3   lapce                         	0x00000001005f8b99 sled::threadpool::perform_work::h6b2b29bfd0e8eea8 + 153
4   lapce                         	0x00000001006487bd std::sys_common::backtrace::__rust_begin_short_backtrace::h5bb209b46ead99cf + 29
5   lapce                         	0x0000000100620eda core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8e1305dbc7994961 + 106
6   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 6:: sled-io-4
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100b8f8df parking_lot::condvar::Condvar::wait_until_internal::ha2e69dd1a1b9faf4 + 815
3   lapce                         	0x00000001005f8b99 sled::threadpool::perform_work::h6b2b29bfd0e8eea8 + 153
4   lapce                         	0x00000001006487bd std::sys_common::backtrace::__rust_begin_short_backtrace::h5bb209b46ead99cf + 29
5   lapce                         	0x0000000100620eda core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8e1305dbc7994961 + 106
6   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 7:: sled-io-5
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100b8f8df parking_lot::condvar::Condvar::wait_until_internal::ha2e69dd1a1b9faf4 + 815
3   lapce                         	0x00000001005f8b99 sled::threadpool::perform_work::h6b2b29bfd0e8eea8 + 153
4   lapce                         	0x00000001006487bd std::sys_common::backtrace::__rust_begin_short_backtrace::h5bb209b46ead99cf + 29
5   lapce                         	0x0000000100620eda core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8e1305dbc7994961 + 106
6   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 8:: sled-io-6
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100b8f8df parking_lot::condvar::Condvar::wait_until_internal::ha2e69dd1a1b9faf4 + 815
3   lapce                         	0x00000001005f8b99 sled::threadpool::perform_work::h6b2b29bfd0e8eea8 + 153
4   lapce                         	0x00000001006487bd std::sys_common::backtrace::__rust_begin_short_backtrace::h5bb209b46ead99cf + 29
5   lapce                         	0x0000000100620eda core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8e1305dbc7994961 + 106
6   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 9:
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100bf9b21 std::thread::park::h06c44c4d2ced7b76 + 209
3   lapce                         	0x000000010037bd01 crossbeam_channel::context::Context::wait_until::h4b86a70d608678ec + 289
4   lapce                         	0x000000010037bdca crossbeam_channel::context::Context::with::_$u7b$$u7b$closure$u7d$$u7d$::h275bc3022309ca5d + 138
5   lapce                         	0x000000010037ed1b crossbeam_channel::flavors::list::Channel$LT$T$GT$::recv::hd33ba81944c7799f + 523
6   lapce                         	0x00000001003a5c3b crossbeam_channel::channel::Receiver$LT$T$GT$::recv::h2d2c36cecf6fa007 + 91
7   lapce                         	0x00000001004c3213 lapce_core::data::LapceTabData::buffer_update_process::h8201865e111268ff + 435
8   lapce                         	0x00000001005b5b83 std::sys_common::backtrace::__rust_begin_short_backtrace::h8507b820ef95de8b + 35
9   lapce                         	0x00000001003ab941 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hc71cf698bd038030 + 145
10  lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
11  libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
12  libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 10:
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100bf9b21 std::thread::park::h06c44c4d2ced7b76 + 209
3   lapce                         	0x000000010037bd01 crossbeam_channel::context::Context::wait_until::h4b86a70d608678ec + 289
4   lapce                         	0x000000010037bdca crossbeam_channel::context::Context::with::_$u7b$$u7b$closure$u7d$$u7d$::h275bc3022309ca5d + 138
5   lapce                         	0x000000010037ea3b crossbeam_channel::flavors::list::Channel$LT$T$GT$::recv::hc34237e90aa5dec0 + 507
6   lapce                         	0x00000001003a6012 crossbeam_channel::channel::Receiver$LT$T$GT$::recv::h816dc770700db0b3 + 82
7   lapce                         	0x00000001004c29e8 lapce_core::data::LapceTabData::terminal_update_process::h24a6c5619489e9fd + 280
8   lapce                         	0x00000001005b5b1d std::sys_common::backtrace::__rust_begin_short_backtrace::h7b6b235d30f5bde7 + 45
9   lapce                         	0x00000001003ab7b9 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hc2b3f4bb2bc2ca6b + 169
10  lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
11  libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
12  libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 11:
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100bf9b21 std::thread::park::h06c44c4d2ced7b76 + 209
3   lapce                         	0x000000010037bd01 crossbeam_channel::context::Context::wait_until::h4b86a70d608678ec + 289
4   lapce                         	0x000000010037bdca crossbeam_channel::context::Context::with::_$u7b$$u7b$closure$u7d$$u7d$::h275bc3022309ca5d + 138
5   lapce                         	0x000000010037e78b crossbeam_channel::flavors::list::Channel$LT$T$GT$::recv::hb84f4020f3768d7a + 539
6   lapce                         	0x00000001003a61f2 crossbeam_channel::channel::Receiver$LT$T$GT$::recv::h9fc51a757770389a + 82
7   lapce                         	0x00000001003e574b lapce_core::palette::PaletteViewData::update_process::hb4e659cebb005ac6 + 123
8   lapce                         	0x00000001005b4853 std::sys_common::backtrace::__rust_begin_short_backtrace::h2f8e37203d501f9e + 35
9   lapce                         	0x00000001003ab4a1 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::haa2ddfff25d97ebe + 145
10  lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
11  libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
12  libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 12:
0   libsystem_kernel.dylib        	0x00007fff2044dbb2 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff203cdc1a nanosleep + 196
2   lapce                         	0x0000000100bf99e0 std::thread::sleep::h2c90f58bfe90ab56 + 80
3   lapce                         	0x00000001005b5a8b std::sys_common::backtrace::__rust_begin_short_backtrace::h77678bc966e28b2f + 315
4   lapce                         	0x00000001003aab0d core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h54561e5efe38d745 + 109
5   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
6   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 13:
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100711466 notify::debounce::timer::ScheduleWorker::run::h2f071d44e512a36b + 838
3   lapce                         	0x0000000100712713 std::sys_common::backtrace::__rust_begin_short_backtrace::hd0ccbbcaf888063a + 51
4   lapce                         	0x00000001007139f9 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h2ec7c88ae481ba1d + 137
5   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
6   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 14:
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100bf9b21 std::thread::park::h06c44c4d2ced7b76 + 209
3   lapce                         	0x0000000100c01de5 std::sync::mpsc::blocking::WaitToken::wait::h0c3dbe5a803b35d1 + 37
4   lapce                         	0x00000001003fa138 std::sync::mpsc::shared::Packet$LT$T$GT$::recv::hf8f8da01e25b0ba5 + 520
5   lapce                         	0x00000001003d07ce std::sync::mpsc::Receiver$LT$T$GT$::recv::h570098588bf59605 + 1038
6   lapce                         	0x00000001005b48f0 std::sys_common::backtrace::__rust_begin_short_backtrace::h69895b794de2a06d + 96
7   lapce                         	0x00000001003ab021 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8d2d4a86e128b847 + 145
8   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
9   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
10  libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 15:
0   libsystem_pthread.dylib       	0x00007fff2047c420 start_wqthread + 0

Thread 16:
0   libsystem_pthread.dylib       	0x00007fff2047c420 start_wqthread + 0

Thread 17:
0   libsystem_pthread.dylib       	0x00007fff2047c420 start_wqthread + 0

Thread 18:
0   libsystem_kernel.dylib        	0x00007fff2044dcde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff20480e49 _pthread_cond_wait + 1298
2   lapce                         	0x0000000100c0682e std::sys::unix::condvar::Condvar::wait_timeout::h036834cebf86f74c + 254
3   lapce                         	0x0000000100424b2d xi_rpc::next_read::h0176978e071a3b1e + 685
4   lapce                         	0x00000001005b30bb _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h30edb983908437fe + 299
5   lapce                         	0x00000001004ec70d crossbeam_utils::thread::scope::h8987325bba686708 + 301
6   lapce                         	0x000000010042463c xi_rpc::RpcLoop$LT$W$GT$::mainloop::h7e6a360b471c2d26 + 44
7   lapce                         	0x00000001005b546e std::sys_common::backtrace::__rust_begin_short_backtrace::h6e5bf0e1d461ae60 + 2158
8   lapce                         	0x00000001003aacb6 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h6b8521509a66850c + 166
9   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
10  libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
11  libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 19:
0   libsystem_kernel.dylib        	0x00007fff2044bcce read + 10
1   lapce                         	0x0000000100bfb706 _$LT$std..fs..File$u20$as$u20$std..io..Read$GT$::read::hb2d64a3eacb76e02 + 38
2   lapce                         	0x00000001003cfa96 std::io::append_to_string::h61bfd8ea905c37c9 + 118
3   lapce                         	0x00000001004eb8d4 crossbeam_utils::thread::ScopedThreadBuilder::spawn::_$u7b$$u7b$closure$u7d$$u7d$::hbca7db2855ffdd55 + 436
4   lapce                         	0x00000001005b5bde std::sys_common::backtrace::__rust_begin_short_backtrace::h93c87a65dab3a256 + 30
5   lapce                         	0x00000001003ab60d core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hb74cee29505f6d6a + 109
6   lapce                         	0x0000000100c0aeb7 std::sys::unix::thread::Thread::new::thread_start::h7398a19dadad4e33 + 39
7   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 20:
0   libsystem_pthread.dylib       	0x00007fff2047c420 start_wqthread + 0

Thread 21:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff2044b2ba mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff2044b62c mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff20579b2f __CFRunLoopServiceMachPort + 316
3   com.apple.CoreFoundation      	0x00007fff2057820f __CFRunLoopRun + 1328
4   com.apple.CoreFoundation      	0x00007fff2057761c CFRunLoopRunSpecific + 563
5   com.apple.AppKit              	0x00007fff22f045ca _NSEventThread + 124
6   libsystem_pthread.dylib       	0x00007fff204808fc _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff2047c443 thread_start + 15

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000110326e00  rcx: 0x00007ffeef8fe528  rdx: 0x0000000000000000
  rdi: 0x0000000000000103  rsi: 0x0000000000000006  rbp: 0x00007ffeef8fe550  rsp: 0x00007ffeef8fe528
   r8: 0x00007ffeef8fe42c   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000246
  r12: 0x0000000000000103  r13: 0x00007fb88807d7f8  r14: 0x0000000000000006  r15: 0x0000000000000016
  rip: 0x00007fff2045192e  rfl: 0x0000000000000246  cr2: 0x000000014030b000
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133

Thread 0 instruction stream not available.

Thread 0 last branch register state not available.


Binary Images:
       0x1002fc000 -        0x10160bfff +lapce (0) <EA1BF273-6635-389E-BE09-DDCB3135B098> /Users/USER/*/lapce
       0x101e67000 -        0x101e76fff  libobjc-trampolines.dylib (824) <FEFBAFBF-EE76-3E63-84CA-95E5F1F26805> /usr/lib/libobjc-trampolines.dylib
       0x11024f000 -        0x1102eafff  dyld (852.2) <57DB2053-BFD5-3683-97C6-F1DB2A1F1D09> /usr/lib/dyld
    0x7fff201b8000 -     0x7fff201b9fff  libsystem_blocks.dylib (79) <C05B8BD3-ADF0-37BD-BF53-664D03226FD9> /usr/lib/system/libsystem_blocks.dylib
    0x7fff201ba000 -     0x7fff201effff  libxpc.dylib (2038.120.1) <D3D34FC5-2269-399E-A637-4D33E6BAFC64> /usr/lib/system/libxpc.dylib
    0x7fff201f0000 -     0x7fff20207fff  libsystem_trace.dylib (1277.120.1) <5B36BE08-BABA-3F2F-934B-B3FFD10A07A3> /usr/lib/system/libsystem_trace.dylib
    0x7fff20208000 -     0x7fff202a5fff  libcorecrypto.dylib (1000.140.4) <75692EFA-23F5-381B-A2BB-A8C8B78FCFAA> /usr/lib/system/libcorecrypto.dylib
    0x7fff202a6000 -     0x7fff202d2fff  libsystem_malloc.dylib (317.140.5) <0AEDABF0-CFF7-3304-9FF8-EB3BBF0801E6> /usr/lib/system/libsystem_malloc.dylib
    0x7fff202d3000 -     0x7fff20317fff  libdispatch.dylib (1271.120.2) <B0C73267-1BD9-3BEF-97CC-3B3D295FA58A> /usr/lib/system/libdispatch.dylib
    0x7fff20318000 -     0x7fff20351fff  libobjc.A.dylib (824) <551C4322-3921-3703-8CC6-1E8E143BB474> /usr/lib/libobjc.A.dylib
    0x7fff20352000 -     0x7fff20354fff  libsystem_featureflags.dylib (28.60.1) <45D158F7-C4E4-3BDE-A218-AD346686E7AB> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff20355000 -     0x7fff203ddfff  libsystem_c.dylib (1439.141.1) <337F746F-8232-3439-BBFF-BAB9C10731F4> /usr/lib/system/libsystem_c.dylib
    0x7fff203de000 -     0x7fff20433fff  libc++.1.dylib (905.6) <F4EC1A92-1DFC-3228-9868-5377EB375100> /usr/lib/libc++.1.dylib
    0x7fff20434000 -     0x7fff20449fff  libc++abi.dylib (905.6) <2F9B5E97-FD54-342A-8233-A5ECCD949F81> /usr/lib/libc++abi.dylib
    0x7fff2044a000 -     0x7fff20479fff  libsystem_kernel.dylib (7195.141.2) <B51DEA59-1260-35C6-B7B6-AA6D8459ECEC> /usr/lib/system/libsystem_kernel.dylib
    0x7fff2047a000 -     0x7fff20485fff  libsystem_pthread.dylib (454.120.2) <B1A74420-49E9-32FC-BFCB-E53550236A23> /usr/lib/system/libsystem_pthread.dylib
    0x7fff20486000 -     0x7fff204c1fff  libdyld.dylib (852.2) <11007DE4-ABE1-3079-BF1C-4D0EADA884DD> /usr/lib/system/libdyld.dylib
    0x7fff204c2000 -     0x7fff204cbfff  libsystem_platform.dylib (254.80.2) <6F368391-D41B-3A7E-9992-6000FA985F21> /usr/lib/system/libsystem_platform.dylib
    0x7fff204cc000 -     0x7fff204f7fff  libsystem_info.dylib (542.40.3) <3965B574-34FA-3CF8-BB0B-FCEC7DA8C493> /usr/lib/system/libsystem_info.dylib
    0x7fff204f8000 -     0x7fff20995fff  com.apple.CoreFoundation (6.9 - 1777.103) <08B48289-1C59-3259-8D49-F1FA51ED53D2> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff20996000 -     0x7fff20bcbfff  com.apple.LaunchServices (1122.41 - 1122.41) <38848652-473A-32BF-AF80-AE71F486FF7E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff20bcc000 -     0x7fff20ca0fff  com.apple.gpusw.MetalTools (1.0 - 1) <DFBAF21A-52CE-3B24-A42E-4693F9C5E39F> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff20ca1000 -     0x7fff20efdfff  libBLAS.dylib (1336.140.1) <E18A5456-02CF-3D9F-A24A-B7980AA83B4A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff20efe000 -     0x7fff20f4bfff  com.apple.Lexicon-framework (1.0 - 86.2) <0E57E9C3-00A8-307E-B2DE-98720083D3E2> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff20f4c000 -     0x7fff20fbafff  libSparse.dylib (106) <70D44B7A-1D2B-39F1-B606-6423E640D950> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff20fbb000 -     0x7fff21038fff  com.apple.SystemConfiguration (1.20 - 1.20) <C0C8BDF4-5049-33E3-B9BE-38045B039A47> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff21039000 -     0x7fff2106dfff  libCRFSuite.dylib (50) <0CBFE708-F55B-3B66-A06A-8BCB9355F169> /usr/lib/libCRFSuite.dylib
    0x7fff2106e000 -     0x7fff212a6fff  libmecabra.dylib (929.10) <083F04E5-49A8-397C-8014-7DAD0C55C568> /usr/lib/libmecabra.dylib
    0x7fff212a7000 -     0x7fff21605fff  com.apple.Foundation (6.9 - 1777.103) <EE9FDDA7-9E08-3638-864F-078016F032E3> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff21606000 -     0x7fff216eefff  com.apple.LanguageModeling (1.0 - 247.3) <ABC28543-0920-34BE-98B9-15579E29C396> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff216ef000 -     0x7fff21825fff  com.apple.CoreDisplay (237.4 - 237.4) <9E2D1EEA-C99A-3406-BC4B-9153DA78B157> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff21826000 -     0x7fff21a96fff  com.apple.audio.AudioToolboxCore (1.0 - 1181.72) <B89C2EB5-2D51-3A5B-8F18-0794443AAFFC> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff21a97000 -     0x7fff21c7cfff  com.apple.CoreText (677.6.0.2 - 677.6.0.2) <B5FB6280-1D27-3889-86CB-FC659D2D16C3> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff21c7d000 -     0x7fff2230efff  com.apple.audio.CoreAudio (5.0 - 5.0) <3A5F6819-CA35-3C12-870E-325F236FCA20> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff2230f000 -     0x7fff22666fff  com.apple.security (7.0 - 59754.140.13) <DAC1ADE2-4464-3105-B68E-6892E1416455> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff22667000 -     0x7fff228c6fff  libicucore.A.dylib (66112) <0F2D441F-A530-322B-B408-5963ABE0A3DF> /usr/lib/libicucore.A.dylib
    0x7fff228c7000 -     0x7fff228d0fff  libsystem_darwin.dylib (1439.141.1) <3D4F1678-BA4A-3318-8DD0-D391F3AB9986> /usr/lib/system/libsystem_darwin.dylib
    0x7fff228d1000 -     0x7fff22bbcfff  com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <C778B64D-C4C0-32BC-832C-BB5F0AF04764> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff22bbd000 -     0x7fff22bfbfff  com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <CDEE5153-12AA-3A16-9077-D54E0733DB25> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff22bfc000 -     0x7fff22c36fff  com.apple.CSStore (1122.41 - 1122.41) <71140CEC-66B4-3475-84B8-3DEB24167B77> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff22c37000 -     0x7fff22ce5fff  com.apple.framework.IOKit (2.0.2 - 1845.120.6) <67BE2B74-A20F-320C-9484-603D141A47AF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff22ce6000 -     0x7fff22cf1fff  libsystem_notify.dylib (279.40.4) <1AE27156-89B5-3E4A-AB14-A77E91F93DC7> /usr/lib/system/libsystem_notify.dylib
    0x7fff22cf2000 -     0x7fff22d3ffff  libsandbox.1.dylib (1441.141.1) <37533D5B-1AC4-3E2F-B29B-F33D0C463F49> /usr/lib/libsandbox.1.dylib
    0x7fff22d40000 -     0x7fff23a8afff  com.apple.AppKit (6.9 - 2022.60.126) <0A61E40C-0E45-331B-88AA-313DB0B52F62> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff23a8b000 -     0x7fff23cd9fff  com.apple.UIFoundation (1.0 - 728.9) <82EA11F1-7D9B-39F7-8CCE-C3E2E6CCBE68> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff23cda000 -     0x7fff23cecfff  com.apple.UniformTypeIdentifiers (637 - 637) <D1C28560-AB0E-3C53-9A2B-0D01815F977E> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
    0x7fff23ced000 -     0x7fff23e77fff  com.apple.desktopservices (1.21 - 1346.6.1) <FD2F7A55-6308-3495-BC07-A74DDB8F57C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff24157000 -     0x7fff247ddfff  libnetwork.dylib (2288.140.7) <CEB383A9-3D75-3728-B767-2F3FAEFFFA0C> /usr/lib/libnetwork.dylib
    0x7fff247de000 -     0x7fff24c7cfff  com.apple.CFNetwork (1240.0.4 - 1240.0.4) <9256A031-E247-364B-BD8C-6D701A07C85A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff24c7d000 -     0x7fff24c8bfff  libsystem_networkextension.dylib (1295.140.3) <8D9FA7DC-AE37-3C15-B730-B9E3CA879BA7> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff24c8c000 -     0x7fff24c8cfff  libenergytrace.dylib (22.100.1) <E36E40AA-BE1B-36C8-979E-66F21A1686B9> /usr/lib/libenergytrace.dylib
    0x7fff24c8d000 -     0x7fff24ce9fff  libMobileGestalt.dylib (978.140.1) <E5F3370A-09B7-3880-96A9-A2869F0F2949> /usr/lib/libMobileGestalt.dylib
    0x7fff24cea000 -     0x7fff24d00fff  libsystem_asl.dylib (385) <9284A3C6-2AB1-3596-BD6C-0D19C7A0DD99> /usr/lib/system/libsystem_asl.dylib
    0x7fff24d01000 -     0x7fff24d19fff  com.apple.TCC (1.0 - 1) <B9DD9945-2A59-346D-BCAF-8B3781EE036C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff24d1a000 -     0x7fff2507ffff  com.apple.SkyLight (1.600.0 - 588.6) <440E2DEE-FB60-3783-9C3F-8D86110921F2> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff25080000 -     0x7fff25709fff  com.apple.CoreGraphics (2.0 - 1463.16.1) <ECD69252-8C75-3589-BD3E-104DE78AC898> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff2570a000 -     0x7fff25800fff  com.apple.ColorSync (4.13.0 - 3473.4.3) <109E4F48-F6CB-3128-9E00-8CA54AC7ED27> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff25801000 -     0x7fff2585cfff  com.apple.HIServices (1.22 - 716) <6E7F240C-BAD6-34BA-8D41-2E0CF04BF089> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff25c03000 -     0x7fff26022fff  com.apple.CoreData (120 - 1048) <28EADAF4-E5F9-3D99-80C9-1C41C0B2664A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff26023000 -     0x7fff26038fff  com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <E5D16FC2-7200-3208-B540-2F0E59133DFD> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff26039000 -     0x7fff261ecfff  libsqlite3.dylib (321.3) <F231D75B-420F-3A69-BC3A-2AFF7781E15C> /usr/lib/libsqlite3.dylib
    0x7fff261ed000 -     0x7fff26269fff  com.apple.Accounts (113 - 113) <D3091C11-4823-34D7-829D-DBA3C7616DE1> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff2626a000 -     0x7fff26281fff  com.apple.commonutilities (8.0 - 900) <CC149848-18D3-3542-9516-6AAD542B928E> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff26282000 -     0x7fff26301fff  com.apple.BaseBoard (526 - 526) <43C017F2-785C-3B1A-9B75-77CE7D911B34> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff26302000 -     0x7fff2634afff  com.apple.RunningBoardServices (1.0 - 505.100.8) <1A4FCF53-32D3-3E86-A748-4681AD3DBC89> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff2634b000 -     0x7fff263bffff  com.apple.AE (918.6 - 918.6) <9C51A5C3-4443-3E35-9B8B-058522D67014> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff263c0000 -     0x7fff263c6fff  libdns_services.dylib (1310.140.1) <BB68BA13-9C5E-35B3-BC8D-0A43FDD479B1> /usr/lib/libdns_services.dylib
    0x7fff263c7000 -     0x7fff263cefff  libsystem_symptoms.dylib (1431.140.1) <D2EDA831-DD60-318D-B59E-60429F9BF82F> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff263cf000 -     0x7fff2655afff  com.apple.Network (1.0 - 1) <54D14297-AAE0-3F91-AB8E-C279835253F4> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff2655b000 -     0x7fff2658afff  com.apple.analyticsd (1.0 - 1) <A44876CA-D5C6-34EA-9BD0-B2055AB2614A> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff2658b000 -     0x7fff2658dfff  libDiagnosticMessagesClient.dylib (112) <73ADCBBF-4E05-3F3B-B6FD-BAA6D027A3AF> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff2658e000 -     0x7fff265dafff  com.apple.spotlight.metadata.utilities (1.0 - 2150.26) <4E669BF7-7B96-3147-BDCC-97DDB25D8A83> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff265db000 -     0x7fff26675fff  com.apple.Metadata (10.7.0 - 2150.26) <297F20A5-88F2-37EC-916F-10E0256367E1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff26676000 -     0x7fff2667cfff  com.apple.DiskArbitration (2.7 - 2.7) <44EF83F5-B10C-3EB3-BD7E-98ADEC4D4835> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff2667d000 -     0x7fff26ce4fff  com.apple.vImage (8.1 - 544.4) <6812D055-19BD-321F-B3E3-F51EEF3EBF5B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff26ce5000 -     0x7fff26fc2fff  com.apple.QuartzCore (1.11 - 927.23) <850C1D06-818D-386F-B360-2FCA78608B6D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff26fc3000 -     0x7fff27004fff  libFontRegistry.dylib (309) <562EE3DF-A4B8-3601-B5E5-66A247E23C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff27005000 -     0x7fff27145fff  com.apple.coreui (2.1 - 692.1) <34077D62-EC7B-3E65-89F3-7F8CBDAB23AE> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff27146000 -     0x7fff27231fff  com.apple.ViewBridge (553.1 - 553.1) <E03494F6-D023-376D-8177-7600A8CF6873> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff27232000 -     0x7fff2723dfff  com.apple.PerformanceAnalysis (1.278.3 - 278.3) <2E7C10E8-DF57-3627-A3A0-8A658284FAEF> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff2723e000 -     0x7fff2724dfff  com.apple.OpenDirectory (11.5 - 230.40.1) <DB0FB20C-137D-38AF-8F6C-140149735328> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff2724e000 -     0x7fff2726dfff  com.apple.CFOpenDirectory (11.5 - 230.40.1) <3E73B2D0-2BFD-3BCD-ACB0-FB1835634596> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff2726e000 -     0x7fff2727afff  com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5) <FFEE72E4-B13F-36CC-9CCD-37906AA18A3E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff2727b000 -     0x7fff2729ffff  com.apple.coreservices.SharedFileList (144 - 144) <5D0C2E87-9DAE-34D3-8CD4-CA797A96E22D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff272a0000 -     0x7fff272a2fff  libapp_launch_measurement.dylib (14.1) <592E974E-B5CA-3403-AFF1-E85B14F5F499> /usr/lib/libapp_launch_measurement.dylib
    0x7fff272a3000 -     0x7fff272eafff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <926B66A6-602C-3983-A98E-8645DE61ADCE> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff272eb000 -     0x7fff273cdfff  libxml2.2.dylib (34.10) <069D24D9-19F5-3000-AF25-D7162E74B880> /usr/lib/libxml2.2.dylib
    0x7fff273ce000 -     0x7fff2741bfff  com.apple.CoreVideo (1.8 - 414.7) <9EBD539C-AD95-363E-B48C-75DE39D8539A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff2741c000 -     0x7fff2741efff  com.apple.loginsupport (1.0 - 1) <F9C73D63-FF1C-358D-9C8D-2E61AC47272A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff27447000 -     0x7fff27462fff  com.apple.UserManagement (1.0 - 1) <209049A9-BA50-336B-B43E-050998B5E33D> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff283d6000 -     0x7fff283e6fff  libsystem_containermanager.dylib (318.100.4) <6A824A01-6B4C-30DA-907A-580FD51773B8> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff283e7000 -     0x7fff283f8fff  com.apple.IOSurface (290.8.1 - 290.8.1) <1F429DA5-5C44-3CE7-AB92-A1795C6DC8C9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff283f9000 -     0x7fff28402fff  com.apple.IOAccelerator (442.9 - 442.9) <411D0577-C20D-32D0-8AFB-D7FA59D3BEDA> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff28403000 -     0x7fff28526fff  com.apple.Metal (244.303 - 244.303) <385BACC4-E10E-3B01-839A-C1C8323C84E6> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff28527000 -     0x7fff28543fff  com.apple.audio.caulk (1.0 - 70) <57C30294-F8E7-3501-BE60-20FFF8B3B020> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff28544000 -     0x7fff2862efff  com.apple.CoreMedia (1.0 - 2780.10) <39EC2321-F8D6-3A1F-BDA5-EDCF1B5AE0CA> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff2862f000 -     0x7fff2878bfff  libFontParser.dylib (305.6.0.2) <4E2122C1-2092-328A-B8CF-6BFAC82A71C0> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff2878c000 -     0x7fff28a87fff  com.apple.HIToolbox (2.1.1 - 1062) <EC082CDB-4679-3C92-B100-5795FEB21F42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff28a88000 -     0x7fff28a9bfff  com.apple.framework.DFRFoundation (1.0 - 267) <7C7DCD2D-3225-35B8-B28B-AA98AFA7BE13> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff28a9c000 -     0x7fff28a9ffff  com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <9989E4BC-B620-36FC-B752-B2331C7BFC8D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff28aa0000 -     0x7fff28ac9fff  com.apple.CoreSVG (1.0 - 149) <0C750C10-03CC-3234-AC74-3A24458FA0A3> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff28aca000 -     0x7fff28d06fff  com.apple.ImageIO (3.3.0 - 2130.6.5) <323F8F18-16A9-3FD5-B482-4B89C2CC1A26> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff28d07000 -     0x7fff29082fff  com.apple.CoreImage (16.3.0 - 1140.2) <BE36DCE3-7B0C-3C1A-9457-D26A55DF8971> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff29083000 -     0x7fff290e9fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <B64DAC69-19A8-3CAE-89BF-BE69CE2B0CE7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff290ea000 -     0x7fff290edfff  libsystem_configuration.dylib (1109.140.1) <99C91EBA-ADE0-3904-8F9C-38B0E3830936> /usr/lib/system/libsystem_configuration.dylib
    0x7fff290ee000 -     0x7fff290f2fff  libsystem_sandbox.dylib (1441.141.1) <AF683466-5935-369E-A915-006F13CDAD99> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff290f3000 -     0x7fff290f4fff  com.apple.AggregateDictionary (1.0 - 1) <2DF6CF2F-6B64-3C5A-B9ED-3B2DCB099B8F> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff290f5000 -     0x7fff290f8fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <11E3EC99-FF2C-3E32-B8DE-E26B079E18AE> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff290f9000 -     0x7fff290fafff  liblangid.dylib (136) <FDE8672B-5F6A-38DE-B1F1-188AC925696B> /usr/lib/liblangid.dylib
    0x7fff290fb000 -     0x7fff2919ffff  com.apple.CoreNLP (1.0 - 245.2) <9C0122D8-9033-3869-B700-795406405636> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff291a0000 -     0x7fff291a6fff  com.apple.LinguisticData (1.0 - 399) <74450C36-5CDE-3555-AC84-36808BC44E24> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff291a7000 -     0x7fff2984ffff  libBNNS.dylib (288.100.5) <4ED79FE5-2990-3D44-B22B-A47EB4BA1AE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff29850000 -     0x7fff29a22fff  libvDSP.dylib (760.100.3) <3A22F97C-00B9-3AD7-A035-11D098325836> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff29a23000 -     0x7fff29a34fff  com.apple.CoreEmoji (1.0 - 128.4) <47029FAC-57AA-3E25-B883-CAA6CD70B4FA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff29a35000 -     0x7fff29a3ffff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <6D5CDBD5-86A0-354C-898A-FD848750728A> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff29a40000 -     0x7fff29b12fff  com.apple.framework.CoreWLAN (16.0 - 1657) <17C7352E-2EF3-36BE-8BF9-B9AF2541B02D> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff29b13000 -     0x7fff29d14fff  com.apple.CoreUtils (6.6 - 660.37) <5B68EF6B-DE46-36B1-8928-111D92C948CD> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff29d15000 -     0x7fff29d37fff  com.apple.MobileKeyBag (2.0 - 1.0) <DAEF912D-F2E6-34E7-B93C-708A6CCE0F7E> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff29d38000 -     0x7fff29d48fff  com.apple.AssertionServices (1.0 - 505.100.8) <C1441A5B-C79C-33B0-B7BE-1CD71C91C3B9> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff29d49000 -     0x7fff29dd4fff  com.apple.securityfoundation (6.0 - 55240.40.4) <473170CD-FFC4-3452-A141-DC36B506153B> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff29dd5000 -     0x7fff29ddefff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <153F8B7A-E1B3-387B-A663-3BA8D230999C> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff29ddf000 -     0x7fff29de3fff  com.apple.xpc.ServiceManagement (1.0 - 1) <1C9E9892-ED04-33B3-80F1-27F1D528442B> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff29de4000 -     0x7fff29de6fff  libquarantine.dylib (119.40.2) <C34FBC7A-963B-3F1D-BBC1-D3C6BB46E14B> /usr/lib/system/libquarantine.dylib
    0x7fff29de7000 -     0x7fff29df2fff  libCheckFix.dylib (31) <B14F91F8-453D-380E-AF88-58F309035C11> /usr/lib/libCheckFix.dylib
    0x7fff29df3000 -     0x7fff29e0afff  libcoretls.dylib (169.100.1) <2B49E930-0C9E-3F8B-B05E-1CA993B20CC5> /usr/lib/libcoretls.dylib
    0x7fff29e0b000 -     0x7fff29e1bfff  libbsm.0.dylib (68.40.1) <D9F2B5FB-FE7E-35B3-B900-6EFCAC6BDCCF> /usr/lib/libbsm.0.dylib
    0x7fff29e1c000 -     0x7fff29e65fff  libmecab.dylib (929.10) <084B2418-6C2D-3BBD-A3EA-FAB8BCB94AF9> /usr/lib/libmecab.dylib
    0x7fff29e66000 -     0x7fff29e6bfff  libgermantok.dylib (24) <FD4A1C16-6478-3295-AC80-B365A8199023> /usr/lib/libgermantok.dylib
    0x7fff29e6c000 -     0x7fff29e81fff  libLinearAlgebra.dylib (1336.140.1) <CE5D4D9F-E5F7-34ED-98BB-01EB7CF9A5CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff29e82000 -     0x7fff2a0a0fff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <A20B5CF7-3C28-3C77-99C8-E919F9A1F135> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff2a0a1000 -     0x7fff2a0f0fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <E2DFA9D2-EB39-3D4E-9500-2029D35DD4E9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff2a0f1000 -     0x7fff2a252fff  com.apple.MLCompute (1.0 - 1) <AAF0B754-F50C-36EA-A874-059E0EC76E07> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2a253000 -     0x7fff2a289fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <9FA9BD03-841D-31D6-B449-42AD15AB88A1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2a28a000 -     0x7fff2a2e0fff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <790B7ED3-7D2E-3578-A7ED-43CBE2EB12E9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2a2e1000 -     0x7fff2a371fff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <54D32AA9-90F3-3941-8C8B-9C49DC04F625> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2a372000 -     0x7fff2a381fff  com.apple.AppleFSCompression (125 - 1.0) <8EFE966E-3F09-3EF8-A6FD-8CB4AB3077CB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff2a382000 -     0x7fff2a38efff  libbz2.1.0.dylib (44) <C9C2B1CA-D673-3E3E-A39A-31DA87D2BF17> /usr/lib/libbz2.1.0.dylib
    0x7fff2a38f000 -     0x7fff2a393fff  libsystem_coreservices.dylib (127.1) <8F154612-D3F5-3DEB-AF88-48247ABF988E> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff2a394000 -     0x7fff2a3c1fff  com.apple.CoreServices.OSServices (1122.41 - 1122.41) <6C96CE62-A020-30C9-B52A-2577E50E1C56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2a3c2000 -     0x7fff2a4f1fff  com.apple.AuthKit (1.0 - 1) <92FFE128-151C-33EB-9179-234F9F976F32> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff2a590000 -     0x7fff2a5a2fff  libz.1.dylib (76) <DB0CD2A1-D833-31D3-85B1-FA1EDF251074> /usr/lib/libz.1.dylib
    0x7fff2a5a3000 -     0x7fff2a5eafff  libsystem_m.dylib (3186.100.3) <46DC091D-F61F-3D16-A417-51C5D4D6912E> /usr/lib/system/libsystem_m.dylib
    0x7fff2a5eb000 -     0x7fff2a5ebfff  libcharset.1.dylib (59) <DCF853C3-4E07-3298-96A6-A759CB51D828> /usr/lib/libcharset.1.dylib
    0x7fff2a5ec000 -     0x7fff2a5f1fff  libmacho.dylib (980) <2696D4F7-BF83-304F-BDED-9CC268B5FE4E> /usr/lib/system/libmacho.dylib
    0x7fff2a5f2000 -     0x7fff2a60dfff  libkxld.dylib (7195.141.2) <7C773CB5-8521-396A-977B-B5689C6F0F27> /usr/lib/system/libkxld.dylib
    0x7fff2a60e000 -     0x7fff2a619fff  libcommonCrypto.dylib (60178.120.3) <79B2C85C-C388-3AFF-B47C-DF0EE43FD292> /usr/lib/system/libcommonCrypto.dylib
    0x7fff2a61a000 -     0x7fff2a624fff  libunwind.dylib (201) <072F009A-A981-308F-BEC5-06D58CA30BCF> /usr/lib/system/libunwind.dylib
    0x7fff2a625000 -     0x7fff2a62cfff  liboah.dylib (203.58) <A7FFAFB5-B0AB-312E-8EB6-FAF56D76FB7D> /usr/lib/liboah.dylib
    0x7fff2a62d000 -     0x7fff2a637fff  libcopyfile.dylib (173.40.2) <569E5E4E-73BE-3C12-818F-713DA0591E1D> /usr/lib/system/libcopyfile.dylib
    0x7fff2a638000 -     0x7fff2a63ffff  libcompiler_rt.dylib (102.2) <396ECEB9-331A-3100-8FA3-BFF3CFC760D6> /usr/lib/system/libcompiler_rt.dylib
    0x7fff2a640000 -     0x7fff2a642fff  libsystem_collections.dylib (1439.141.1) <AC793F4A-A519-33D5-AE4B-8F903A7B9551> /usr/lib/system/libsystem_collections.dylib
    0x7fff2a643000 -     0x7fff2a645fff  libsystem_secinit.dylib (87.60.1) <FB875594-4026-3AFB-AF61-BCD1A67478CC> /usr/lib/system/libsystem_secinit.dylib
    0x7fff2a646000 -     0x7fff2a648fff  libremovefile.dylib (49.120.1) <9646E2E1-71D1-3463-A556-8CD96059A4A9> /usr/lib/system/libremovefile.dylib
    0x7fff2a649000 -     0x7fff2a649fff  libkeymgr.dylib (31) <07EC6CD6-0DCC-321C-856B-65FF4327E963> /usr/lib/system/libkeymgr.dylib
    0x7fff2a64a000 -     0x7fff2a651fff  libsystem_dnssd.dylib (1310.140.1) <A6F00D58-D64A-35B5-8777-93FC2A690675> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff2a652000 -     0x7fff2a657fff  libcache.dylib (83) <B92F6CCC-FF53-36B1-BBE0-F056080945D7> /usr/lib/system/libcache.dylib
    0x7fff2a658000 -     0x7fff2a659fff  libSystem.B.dylib (1292.120.1) <46BD4B87-AAC4-3070-BF8B-6BE393247BBE> /usr/lib/libSystem.B.dylib
    0x7fff2a65a000 -     0x7fff2a65dfff  libfakelink.dylib (3) <B2261718-E30D-3DC8-B5D0-E41CB356799C> /usr/lib/libfakelink.dylib
    0x7fff2a65e000 -     0x7fff2a65efff  com.apple.SoftLinking (1.0 - 1) <B0F10423-EB4B-3EBE-AAD7-F43F1F29A9CC> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff2a65f000 -     0x7fff2a696fff  libpcap.A.dylib (98.100.3) <33537A04-1FB2-3772-9640-03816375C0E9> /usr/lib/libpcap.A.dylib
    0x7fff2a697000 -     0x7fff2a787fff  libiconv.2.dylib (59) <CDC9F158-F290-38C7-A31D-F25991A2BCAB> /usr/lib/libiconv.2.dylib
    0x7fff2a788000 -     0x7fff2a799fff  libcmph.dylib (8) <5F57A965-7DAF-3B86-96A6-41B281F154C7> /usr/lib/libcmph.dylib
    0x7fff2a79a000 -     0x7fff2a80bfff  libarchive.2.dylib (83.100.2) <69B700E8-8BBC-312E-B54D-A85155059560> /usr/lib/libarchive.2.dylib
    0x7fff2a80c000 -     0x7fff2a873fff  com.apple.SearchKit (1.4.1 - 1.4.1) <6F4AD104-675A-3181-A8EC-07EF356AB334> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2a874000 -     0x7fff2a875fff  libThaiTokenizer.dylib (3) <B6D58E67-3F73-381E-BDEF-650BA800DB94> /usr/lib/libThaiTokenizer.dylib
    0x7fff2a876000 -     0x7fff2a898fff  com.apple.applesauce (1.0 - 16.28) <B45D6F82-0B6C-3A24-AB78-7659C5862198> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff2a899000 -     0x7fff2a8b0fff  libapple_nghttp2.dylib (1.41) <AEB7C3FC-E423-33BE-8788-1A9F8A45629B> /usr/lib/libapple_nghttp2.dylib
    0x7fff2a8b1000 -     0x7fff2a8c7fff  libSparseBLAS.dylib (1336.140.1) <8A71EC0F-BF79-36E7-905E-944B0E0F29C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2a8c8000 -     0x7fff2a8c9fff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <08F6175F-F2C7-3C48-B382-5E5FEF9B17EE> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff2a8ca000 -     0x7fff2a8cefff  libpam.2.dylib (28.40.1) <9DB993FD-A783-3BCD-B3BC-823A69DB2BFD> /usr/lib/libpam.2.dylib
    0x7fff2a8cf000 -     0x7fff2a8eefff  libcompression.dylib (96.120.1) <597995B2-7622-3857-8498-093B0CAF4408> /usr/lib/libcompression.dylib
    0x7fff2a8ef000 -     0x7fff2a8f4fff  libQuadrature.dylib (7) <F0F7D860-8761-3034-B8A0-61ED9BB921E7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2a8f5000 -     0x7fff2ac92fff  libLAPACK.dylib (1336.140.1) <058DC497-DAC4-3EB9-B8ED-519F078C280B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2ac93000 -     0x7fff2ace2fff  com.apple.DictionaryServices (1.2 - 341) <C9F009F3-5E78-33EC-8B04-1A1AC74C7B89> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2ace3000 -     0x7fff2acfbfff  liblzma.5.dylib (16) <C5059802-EC34-3D1F-9CDF-7F5162E96909> /usr/lib/liblzma.5.dylib
    0x7fff2acfc000 -     0x7fff2acfdfff  libcoretls_cfhelpers.dylib (169.100.1) <DBA1F6D8-91E3-332C-BD25-6959731AE107> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff2acfe000 -     0x7fff2adf9fff  com.apple.APFS (1677.141.1 - 1677.141.1) <169D9648-960C-3778-BE32-BE8CDCC7A97D> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff2adfa000 -     0x7fff2ae07fff  libxar.1.dylib (452) <050C4EC2-5398-3A52-80A7-CC39137DF8DD> /usr/lib/libxar.1.dylib
    0x7fff2ae08000 -     0x7fff2ae0bfff  libutil.dylib (58.40.2) <773B03AC-1DE3-33BA-AEFC-A4192BF277EF> /usr/lib/libutil.dylib
    0x7fff2ae0c000 -     0x7fff2ae34fff  libxslt.1.dylib (17.6) <BA9A35D1-F8D8-372A-8567-8D4B0A39A46E> /usr/lib/libxslt.1.dylib
    0x7fff2ae35000 -     0x7fff2ae3ffff  libChineseTokenizer.dylib (37.1) <A6E381DE-8A39-368A-8BF5-EA453166EF28> /usr/lib/libChineseTokenizer.dylib
    0x7fff2ae40000 -     0x7fff2aefdfff  libvMisc.dylib (760.100.3) <512B1000-C4DB-3853-B305-7750CAADA944> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2aefe000 -     0x7fff2af95fff  libate.dylib (3.0.6) <6347E398-982B-3F67-B5B4-3EF87FCCF7A8> /usr/lib/libate.dylib
    0x7fff2af96000 -     0x7fff2af9dfff  libIOReport.dylib (64.100.1) <47E72A6A-2D2A-3E70-B447-CA1D9EA09465> /usr/lib/libIOReport.dylib
    0x7fff2b09f000 -     0x7fff2b0a6fff  libMatch.1.dylib (38) <0391A7F9-5CAD-399A-92E4-5B1A4A2DED43> /usr/lib/libMatch.1.dylib
    0x7fff2b0a7000 -     0x7fff2b132fff  libCoreStorage.dylib (554.140.2) <D84C72BA-171F-37D1-9099-294DF04347A2> /usr/lib/libCoreStorage.dylib
    0x7fff2b133000 -     0x7fff2b186fff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <4FD9371F-1A01-3DC1-AAC1-59B2983D4911> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff2b187000 -     0x7fff2b19ffff  libexpat.1.dylib (26) <8F1614BA-7BC7-3947-93C4-E868A321C5F0> /usr/lib/libexpat.1.dylib
    0x7fff2b1a0000 -     0x7fff2b1a9fff  libheimdal-asn1.dylib (597.140.2) <136B6D17-9A3D-3381-98C5-CB7DC838A5ED> /usr/lib/libheimdal-asn1.dylib
    0x7fff2b1aa000 -     0x7fff2b1befff  com.apple.IconFoundation (479.4 - 479.4) <726448AB-8665-3329-8412-56D01231523A> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
    0x7fff2b1bf000 -     0x7fff2b22bfff  com.apple.IconServices (479.4 - 479.4) <15CFAFE9-F1E7-3BCC-A75A-1842D794CDE3> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff2b22c000 -     0x7fff2b2cafff  com.apple.MediaExperience (1.0 - 1) <ECCD3564-424A-3237-9390-20486DA0D280> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff2b2cb000 -     0x7fff2b2f3fff  com.apple.persistentconnection (1.0 - 1.0) <D22CCD76-3A55-3B17-860A-1D5F476AE852> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff2b2f4000 -     0x7fff2b302fff  com.apple.GraphVisualizer (1.0 - 100.1) <BE3AA11B-E673-31E3-B80F-62AD9D282407> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff2b303000 -     0x7fff2b71efff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <C3D50EC2-1186-33DF-B342-525759BD0D02> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff2b71f000 -     0x7fff2b766fff  com.apple.OTSVG (1.0 - 677.6.0.2) <28043431-F6FF-3614-8E73-FE193439BB4C> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff2b767000 -     0x7fff2b76dfff  com.apple.xpc.AppServerSupport (1.0 - 2038.120.1) <37AFFEA4-2FE4-37EC-A65C-E7796786EB73> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
    0x7fff2b76e000 -     0x7fff2b780fff  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <575E7B70-B1B9-39F0-925D-BE92549E7411> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff2b781000 -     0x7fff2b783fff  libspindump.dylib (295.2) <D51E5FE3-D0AD-3696-81EE-19EFD0FBC61D> /usr/lib/libspindump.dylib
    0x7fff2b784000 -     0x7fff2b844fff  com.apple.Heimdal (4.0 - 2.0) <0D59D4DD-6F15-3FEE-9BCC-7A5451883C94> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff2b845000 -     0x7fff2b85ffff  com.apple.login (3.0 - 3.0) <6FD6B5FC-A78E-357E-8CDB-69D06595B0BE> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff2b9e4000 -     0x7fff2ba20fff  com.apple.bom (14.0 - 235) <CC8201D2-8FD7-3658-A9A8-424366CF71C3> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff2ba21000 -     0x7fff2ba6afff  com.apple.AppleJPEG (1.0 - 1) <C31A79D7-FCF8-3D07-951B-D3FD890109C9> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff2ba6b000 -     0x7fff2bb4afff  libJP2.dylib (2130.6.5) <73B01BAF-D3BD-3D28-8731-EAB21B228EED> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff2bb4b000 -     0x7fff2bb4efff  com.apple.WatchdogClient.framework (1.0 - 98.120.2) <9F6D4926-07D6-3F7A-932F-CBFEF331E34D> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff2bb4f000 -     0x7fff2bb85fff  com.apple.MultitouchSupport.framework (4440.3 - 4440.3) <F9E68F09-919A-347D-903F-2CFF66C78B5A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff2bb86000 -     0x7fff2bce4fff  com.apple.VideoToolbox (1.0 - 2780.10) <BBD958C6-358B-37D5-B2AB-7B6DAF536B9A> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff2bce5000 -     0x7fff2bd18fff  libAudioToolboxUtility.dylib (1181.72) <7F464298-1B15-309E-8C57-D9BA45930CAB> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff2bd19000 -     0x7fff2bd3ffff  libPng.dylib (2130.6.5) <606A6674-0F30-3778-B7A8-852E73BE9864> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff2bd40000 -     0x7fff2bd9ffff  libTIFF.dylib (2130.6.5) <7E294883-5DF8-3730-A202-497AAD61D9A4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff2bda0000 -     0x7fff2bdbcfff  com.apple.IOPresentment (58 - 37) <EC952AB6-60D1-3ECA-B573-9F3E9423C16D> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff2bdbd000 -     0x7fff2bdc4fff  com.apple.GPUWrangler (6.3.5 - 6.3.5) <E9DCD9BD-C42B-3B83-8B99-D81677E7C650> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff2bdc5000 -     0x7fff2bdc8fff  libRadiance.dylib (2130.6.5) <438DD36A-EA14-30E6-A3C7-FF36B7456930> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff2bdc9000 -     0x7fff2bdcefff  com.apple.DSExternalDisplay (3.1 - 380) <820DA2BE-FD83-317B-A859-7EA8EF22BF8C> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff2bdcf000 -     0x7fff2bdf3fff  libJPEG.dylib (2130.6.5) <5A2A9409-0118-34B8-A3C0-1FB05BE1B48C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff2bdf4000 -     0x7fff2be23fff  com.apple.ATSUI (1.0 - 1) <6E71A1C3-BC19-3496-AC1C-90B3CE83A0BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2be24000 -     0x7fff2be28fff  libGIF.dylib (2130.6.5) <F1CCAE85-B9D7-3531-83B6-051B2CED9734> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff2be29000 -     0x7fff2be32fff  com.apple.CMCaptureCore (1.0 - 82.6) <78123EDC-D3B5-39C6-AEA7-DB52CDA3C979> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
    0x7fff2be33000 -     0x7fff2be7afff  com.apple.print.framework.PrintCore (16.1 - 531.1) <DBB75BF2-7263-348D-8949-5AB551075737> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2be7b000 -     0x7fff2bf48fff  com.apple.TextureIO (3.10.9 - 3.10.9) <B13DA4A8-9E6B-3130-83C7-976FE25EB63F> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff2bf49000 -     0x7fff2bf51fff  com.apple.InternationalSupport (1.0 - 61.1) <40F6A37A-EBD3-304B-AF6A-43833A3E7A3E> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff2bf52000 -     0x7fff2bfccfff  com.apple.datadetectorscore (8.0 - 674) <10C32CC2-AF04-35BE-9344-0F5BF97339A5> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff2bfcd000 -     0x7fff2c02afff  com.apple.UserActivity (439 - 439) <23442FB0-6ED9-3F0F-8B7C-D12C85710DDC> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
    0x7fff2cc98000 -     0x7fff2ccc9fff  libSessionUtility.dylib (76.69) <E4273478-786B-3DAA-928E-5D8ECC89DE92> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
    0x7fff2ccca000 -     0x7fff2cdfefff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <2B4043E1-A82B-3E53-8DED-6BF234206BAC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2cdff000 -     0x7fff2ce64fff  com.apple.audio.AudioSession (1.0 - 76.69) <FD4713A3-2938-3B12-BCAE-1C55A8C60AEE> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
    0x7fff2ce65000 -     0x7fff2ce77fff  libAudioStatistics.dylib (27.64) <FE5D1815-638C-3D5D-A34A-498A11E31D52> /usr/lib/libAudioStatistics.dylib
    0x7fff2ce78000 -     0x7fff2ce87fff  com.apple.speech.synthesis.framework (9.0.66 - 9.0.66) <A6BB4299-FC20-33D8-A873-3B1E3EED046D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2ce88000 -     0x7fff2cef4fff  com.apple.ApplicationServices.ATS (377 - 516) <09728391-A9F9-355F-BE99-A64707E8BC03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2cef5000 -     0x7fff2cf0dfff  libresolv.9.dylib (68) <9EE291CF-A18A-3D09-A8CC-682AAF448176> /usr/lib/libresolv.9.dylib
    0x7fff2d040000 -     0x7fff2d11ffff  libSMC.dylib (20) <CC74F0B6-BE07-3B6D-BF92-3EE68EA3C1AD> /usr/lib/libSMC.dylib
    0x7fff2d120000 -     0x7fff2d17ffff  libcups.2.dylib (494.1) <35B61857-D298-3BC9-960A-D2CCAA576DC7> /usr/lib/libcups.2.dylib
    0x7fff2d180000 -     0x7fff2d18ffff  com.apple.LangAnalysis (1.7.0 - 254) <ACFAC900-9AEC-32D1-8F23-804F111C3092> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2d190000 -     0x7fff2d19afff  com.apple.NetAuth (6.2 - 6.2) <5972DC13-D32F-3140-BD91-495AAC2D7550> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff2d19b000 -     0x7fff2d1a2fff  com.apple.ColorSyncLegacy (4.13.0 - 1) <4C440F08-211D-3BF7-A43A-57930751CD78> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2d1a3000 -     0x7fff2d1aefff  com.apple.QD (4.0 - 416) <956ADD05-CF77-32BC-A3ED-E3E62969DA53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2d1af000 -     0x7fff2d803fff  com.apple.audio.AudioResourceArbitration (1.0 - 1) <A698F07E-EE6B-3193-B8AA-FD560ABE8927> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff2d804000 -     0x7fff2d80ffff  com.apple.perfdata (1.0 - 67.40.1) <7DBB06C3-735E-3105-A8D2-DD22C51FE5D4> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
    0x7fff2d810000 -     0x7fff2d81efff  libperfcheck.dylib (41) <515342C4-9932-306C-8A4E-AB2DB9C94D7C> /usr/lib/libperfcheck.dylib
    0x7fff2d81f000 -     0x7fff2d82efff  com.apple.Kerberos (3.0 - 1) <74519634-F3AC-31A3-8880-B01C3F4C955D> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff2d82f000 -     0x7fff2d87ffff  com.apple.GSS (4.0 - 2.0) <4B10E99B-A9C7-3C61-85FD-E4BDDEE38764> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff2d880000 -     0x7fff2d890fff  com.apple.CommonAuth (4.0 - 2.0) <B6300458-84A2-3315-903D-195FD5A6D71A> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff2d8e6000 -     0x7fff2d905fff  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <B1E75E61-0B7E-3036-931E-4D0C8E6307FC> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff2d906000 -     0x7fff2d90efff  com.apple.CorePhoneNumbers (1.0 - 1) <16382BEE-19B6-3AE5-B450-D037B7D7C19F> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff2da61000 -     0x7fff2da61fff  liblaunch.dylib (2038.120.1) <CA5C47E3-5580-3C92-9603-9404291FAE58> /usr/lib/system/liblaunch.dylib
    0x7fff2e243000 -     0x7fff2e38efff  com.apple.Sharing (1630 - 1630) <D3B2F86B-1440-3F86-863D-521EFB5E6BF8> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff2e38f000 -     0x7fff2e4b0fff  com.apple.Bluetooth (8.0.5 - 8.0.5d7) <E5F9D822-9999-3521-A812-6ED6E4B4F7C3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff2e4ca000 -     0x7fff2e523fff  com.apple.ProtectedCloudStorage (1.0 - 1) <87EAE8D8-A80C-3BE3-87EF-A1AA20876D7F> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff2fc8b000 -     0x7fff2fcb2fff  com.apple.RemoteViewServices (2.0 - 163) <E7004CD2-22B4-3270-93D5-65863360C82F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff2fcb3000 -     0x7fff2fcc2fff  com.apple.SpeechRecognitionCore (6.1.25 - 6.1.25) <CA908EFD-C87F-3DF6-9BE9-43F3B6CE05FF> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff2fcc3000 -     0x7fff2fccafff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <613D2BFE-FCD0-3C2F-8B93-4A01D221AF09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2fef8000 -     0x7fff2fef8fff  libsystem_product_info_filter.dylib (8.40.1) <C983DE00-5802-390A-9FEC-703E0E9A2114> /usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff2ffd0000 -     0x7fff2ffd0fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <41FBC9FA-C781-38D3-BA7D-80A0955B350C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2fff6000 -     0x7fff2fff6fff  com.apple.CoreServices (1122.41 - 1122.41) <2E82F706-DA2C-3C97-B244-9053E6E95827> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff301b2000 -     0x7fff301b2fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <3F8EDDF5-80E7-3EDD-8746-89A278F04805> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff309f4000 -     0x7fff30a59fff  com.apple.CoreBluetooth (1.0 - 1) <1A427F92-B95A-3077-853B-09688553DA70> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff30a5a000 -     0x7fff30a63fff  com.apple.SymptomDiagnosticReporter (1.0 - 79.120.1) <DC724AF6-1C92-3913-B6A7-0AA062AE1792> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff30a77000 -     0x7fff30a83fff  com.apple.AppleIDAuthSupport (1.0 - 1) <A3631052-9D44-308F-BF87-E501AB409692> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff30a84000 -     0x7fff30b2cfff  com.apple.DiscRecording (9.0.3 - 9030.4.5) <367204EF-650E-36BE-8D0F-9DF6E79E5DB0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff30b2d000 -     0x7fff30b60fff  com.apple.MediaKit (16 - 927.40.2) <5198B786-444D-3CA6-85AC-6555688B0DBC> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff30b61000 -     0x7fff30c4cfff  com.apple.DiskManagement (14.0 - 1733.140.2) <2D63F3D0-8E51-3337-8EB7-A774020B129C> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff3103a000 -     0x7fff31189fff  com.apple.FileProvider (349.4.2 - 349.4.2) <B8F18BEE-4ACC-38E3-AE8C-C9AB29CF0206> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff3118a000 -     0x7fff311acfff  com.apple.GenerationalStorage (2.0 - 323) <623FEAF8-671F-3812-9EA4-7B30FFC4AE7D> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff31ae8000 -     0x7fff31b23fff  com.apple.DebugSymbols (195.1 - 195.1) <A0FA2F40-271B-3CC7-8083-A34E21093536> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff31b24000 -     0x7fff31bd9fff  com.apple.CoreSymbolication (12.5 - 64544.81.1) <CE5694DC-0351-3F11-8850-19A9AB721893> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff32ae8000 -     0x7fff32b4bfff  com.apple.framework.Apple80211 (17.0 - 1728) <E1BB392A-D496-383C-9B5A-08D695D14FD9> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff32b4c000 -     0x7fff32c9dfff  com.apple.CoreWiFi (3.0 - 341) <30F0EC33-A723-3637-BAEE-746E62173413> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff32f7f000 -     0x7fff32f86fff  com.apple.EFILogin (2.0 - 2) <B6D754F1-9575-3000-BF81-55B0B7A83804> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff32f87000 -     0x7fff32f92fff  libcsfde.dylib (554.140.2) <7D24C26A-8165-33ED-8255-43B52148CD29> /usr/lib/libcsfde.dylib
    0x7fff331d1000 -     0x7fff331d1fff  com.apple.ApplicationServices (48 - 50) <93634C11-D92F-38C7-9A9B-52F39C85FCA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff334e6000 -     0x7fff334e6fff  libHeimdalProxy.dylib (79) <B7E36A80-D5CF-3C92-B71B-AC5B43E2AAFE> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff33599000 -     0x7fff33599fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <097C1991-EEC4-374E-A686-826E479A2A07> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff34569000 -     0x7fff345b9fff  com.apple.ChunkingLibrary (334.1 - 334.1) <95D77D1F-5373-3C85-BA2A-48923BA260FA> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff3ccb0000 -     0x7fff3cccffff  com.apple.private.SystemPolicy (1.0 - 1) <F3DFE619-6CBB-3F1F-A8BC-B733B53AD31F> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
    0x7fff3d60d000 -     0x7fff3d61ffff  libmis.dylib (274.140.2) <AAF43CF3-AA45-3247-B281-4436E849D1EC> /usr/lib/libmis.dylib
    0x7fff3d620000 -     0x7fff3d623fff  com.apple.gpusw.GPURawCounter (20.3 - 12.0) <D3223F20-F183-3D98-967D-AF5E4417E4D3> /System/Library/PrivateFrameworks/GPURawCounter.framework/Versions/A/GPURawCounter
    0x7fff412d4000 -     0x7fff412f2fff  libCGInterfaces.dylib (544.4) <D5D0AD69-E651-3BE2-B87A-4A035DCD9DBF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff65379000 -     0x7fff658aafff  com.apple.driver.AppleIntelICLGraphicsMTLDriver (16.5.2 - 16.0.5) <BF565425-09FA-3CA7-B2D5-5E427AF31505> /System/Library/Extensions/AppleIntelICLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelICLGraphicsMTLDriver
    0x7fff6970a000 -     0x7fff6970efff  libmetal_timestamp.dylib (31001.192.1) <6DF2DFF7-F8BE-3B77-8C85-0FE5E858F67E> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libmetal_timestamp.dylib
    0x7fff6bb55000 -     0x7fff6bb5bfff  libCoreFSCache.dylib (200.10) <D26083D4-A370-3C8D-A13E-32D69EBF73EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff6bb5c000 -     0x7fff6bb60fff  libCoreVMClient.dylib (200.10) <E582E0A3-2898-301C-9B5A-A17978ACFAA7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff6bb61000 -     0x7fff6bb70fff  com.apple.opengl (18.5.9 - 18.5.9) <149F2F08-3FD7-3271-945C-238BDCAA3133> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff6bb71000 -     0x7fff6bb73fff  libCVMSPluginSupport.dylib (18.5.9) <97DC9BD9-1BED-3D17-B499-3967775A011C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff6bb74000 -     0x7fff6bb7cfff  libGFXShared.dylib (18.5.9) <7B502C01-1C03-3388-878B-A0A85223F3A5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff6bb7d000 -     0x7fff6bbb0fff  libGLImage.dylib (18.5.9) <2CCBC785-6F45-33DE-B790-066AF4C69048> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff6bbb1000 -     0x7fff6bbedfff  libGLU.dylib (18.5.9) <53602650-F093-334F-9D96-2B4FE2359E7A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff6bd82000 -     0x7fff6bd8cfff  libGL.dylib (18.5.9) <9E1A856D-D393-3FDC-ABDF-E29282A6B83E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff6d1cc000 -     0x7fff6d224fff  com.apple.opencl (4.6 - 4.6) <5FD1A8D9-17B9-316B-8CA4-6BE553B936CE> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=716.0M resident=0K(0%) swapped_out_or_unallocated=716.0M(100%)
Writable regions: Total=1.2G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.2G(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               128K        1 
Activity Tracing                   256K        1 
CG backing stores                 6768K       18 
CG image                            24K        4 
CoreAnimation                       40K        8 
CoreGraphics                        20K        4 
CoreUI image data                  620K        9 
Dispatch continuations            64.0M        1 
Foundation                          16K        1 
Kernel Alloc Once                    8K        1 
MALLOC                           168.2M       48 
MALLOC guard page                   48K       10 
MALLOC_MEDIUM (reserved)         944.0M        8         reserved VM address space (unallocated)
STACK GUARD                         84K       21 
Stack                             42.7M       22 
Stack Guard                       56.0M        1 
VM_ALLOCATE                        224K       54 
VM_ALLOCATE (reserved)            2176K       17         reserved VM address space (unallocated)
__DATA                            13.3M      285 
__DATA_CONST                      11.7M      160 
__DATA_DIRTY                       540K       97 
__FONT_DATA                          4K        1 
__LINKEDIT                       503.8M        6 
__OBJC_RO                         70.2M        1 
__OBJC_RW                         2496K        2 
__TEXT                           212.2M      288 
__UNICODE                          588K        1 
mapped file                       95.8M       31 
shared memory                      780K       19 
===========                     =======  ======= 
TOTAL                              2.1G     1120 
TOTAL, minus reserved VM space     1.2G     1120 

Model: MacBookPro16,2, BootROM 1715.40.15.0.0 (iBridge: 19.16.10548.0.0,0), 4 processors, Quad-Core Intel Core i7, 2,3 GHz, 32 GB, SMC 
Graphics: kHW_IntelIrisPlusGraphicsItem, Intel Iris Plus Graphics, spdisplays_builtin
Memory Module: BANK 0/ChannelA-DIMM0, 16 GB, LPDDR4X, 3733 MHz, Micron, -
Memory Module: BANK 2/ChannelB-DIMM0, 16 GB, LPDDR4X, 3733 MHz, Micron, -
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Jul  7 2021 02:54:21 version 9.30.444.17.32.5.70 FWID 01-6551fb93
Bluetooth: Version 8.0.5d7, 3 services, 27 devices, 1 incoming serial ports
Network Service: USB 10/100/1000 LAN, Ethernet, en7
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.1 Bus
USB Device: USB3.0 Hub
USB Device: USB 10/100/1000 LAN
USB Device: Hub
USB Device: USB 3.1 Bus
USB Device: AirPods Max
USB Device: USB2.0 Hub
USB Device: Microsoft® LifeCam Cinema(TM)
USB Device: Anker USB-C Hub Device
USB Device: Hub
USB Device: Composite Device
USB Device: Apple T2 Bus
USB Device: Touch Bar Backlight
USB Device: Touch Bar Display
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: Ambient Light Sensor
USB Device: FaceTime HD Camera (Built-in)
USB Device: Apple T2 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 85.0
Thunderbolt Bus: MacBook Pro, Apple Inc., 85.0

Add linux builds for x86_x64

What about to add cross platform builds with github actions and upload them to release page? it will be nice to have it.

DPI/display scaling

Seems like Lapce isn't handling a different display scale than 1.0 very well (at least on macOS):

  1. Resizing the window leaves only a small viewport in the corner, the rest of the window does not get redrawn at all.
  2. Line spacing is off, especially noticeable with box drawing characters like what nushell uses to draw its tables.

Can't resize

version: 0.0.2
os: Monterey 12.1

When I resize or try to make it full screen, Lapce doesn't render correctly and freezes.
Screen Shot 2021-12-15 at 4 55 34 AM

Not starting on windows 10

I've tried installing the latest release on windows 10 from https://github.com/lapce/lapce/releases/tag/v0.0.1.

When launching it the program opens up a couple of windows and dies.

I've tried launching it from a powershell and I'm getting the following output:

PS C:\Program Files\Lapce> .\lapce.exe
start to watch path "C:\\Users\\UTXX\\AppData\\Roaming\\Lapce\\config\\settings.toml"
←[2m2021-12-14T09:08:01.182992Z←[0m ←[34mDEBUG←[0m druid::localization: available locales [], current en-US
←[2m2021-12-14T09:08:01.183337Z←[0m ←[34mDEBUG←[0m druid::localization: resolved: [en-US]
primitives buffer size 80000
←[2m2021-12-14T09:08:01.848993Z←[0m ←[33m WARN←[0m ←[1mevent←[0m: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (343.0, 177.0), window_pos: (343.0, 177.0), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
memory allocation of 18446744073709551615 bytes failed
plugin reload from paths
proxy mainfiest paths []

SIGABRT when starting on linux

Whsn starting, a window briefly pops and then closes. This is the output in the terminal:

martijn@xps15 ~/g/lapce (master)> ./target/release/lapce
start to watch path "/home/martijn/.config/lapce/settings.toml"
2021-12-14T09:33:02.820738Z DEBUG druid::localization: available locales [], current en-US
2021-12-14T09:33:02.820760Z DEBUG druid::localization: resolved: [en-US]
primitives buffer size 80000
size is (800×600)
plugin reload from paths
proxy mainfiest paths []
2021-12-14T09:33:02.969142Z  WARN event: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (703.0, 506.0), window_pos: (703.0, 506.0), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:33:02.972969Z  WARN event: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (703.0, 506.0), window_pos: (703.0, 506.0), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
memory allocation of 18446744073709551615 bytes failed
fish: “./target/release/lapce” terminated by signal SIGABRT (Abort)

fails to start: 'Error in Surface::configure: Both `Surface` width and height must be non-zero. Wait to recreate the `Surface` until the window has non-zero area.

WM is i3, maybe that's relevant
backtrace:


start to watch path "/home/matthias/.config/lapce/settings.toml"
2021-12-14T10:28:29.204677Z DEBUG druid::localization: available locales [], current en-US
2021-12-14T10:28:29.204712Z DEBUG druid::localization: resolved: [en-US]
MESA-INTEL: warning: Performance support disabled, consider sysctl dev.i915.perf_stream_paranoid=0

primitives buffer size 80000
size is (0×0)
plugin reload from paths
thread 'main' panicked at 'Error in Surface::configure: Both `Surface` width and height must be non-zero. Wait to recreate the `Surface` until the window has non-zero area.', /home/matthias/.cargo/registry/src/github.com-1ecc6299db9ec823/wgpu-0.11.0/src/backend/direct.rs:204:9
stack backtrace:
proxy mainfiest paths []
   0:     0x55b36a5b572c - std::backtrace_rs::backtrace::libunwind::trace::hf7449935ead7573e
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
   1:     0x55b36a5b572c - std::backtrace_rs::backtrace::trace_unsynchronized::h221aa2d88d72372a
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
   2:     0x55b36a5b572c - std::sys_common::backtrace::_print_fmt::h1c77e8983e1df895
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/sys_common/backtrace.rs:67:5
   3:     0x55b36a5b572c - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::hd4ec41a9a6b0d22c
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/sys_common/backtrace.rs:46:22
   4:     0x55b36a5de16c - core::fmt::write::h72801a82c94e6ff1
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/core/src/fmt/mod.rs:1149:17
   5:     0x55b36a5b0565 - std::io::Write::write_fmt::haf74340a8cbeaa88
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/io/mod.rs:1660:15
   6:     0x55b36a5b7470 - std::sys_common::backtrace::_print::h2d15cd157796a64a
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/sys_common/backtrace.rs:49:5
   7:     0x55b36a5b7470 - std::sys_common::backtrace::print::h52d286d22e2398eb
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/sys_common/backtrace.rs:36:9
   8:     0x55b36a5b7470 - std::panicking::default_hook::{{closure}}::h6da08fba6306daf2
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panicking.rs:211:50
   9:     0x55b36a5b701b - std::panicking::default_hook::h266f67a22e76b11a
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panicking.rs:228:9
  10:     0x55b36a5b7c54 - std::panicking::rust_panic_with_hook::he55698a957f4fb6d
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panicking.rs:606:17
  11:     0x55b36a5b7700 - std::panicking::begin_panic_handler::{{closure}}::h01f453c3ac181895
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panicking.rs:502:13
  12:     0x55b36a5b5bd4 - std::sys_common::backtrace::__rust_end_short_backtrace::h675d77c6e5a3926d
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/sys_common/backtrace.rs:139:18
  13:     0x55b36a5b7669 - rust_begin_unwind
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panicking.rs:498:5
  14:     0x55b36a5db751 - core::panicking::panic_fmt::h7b8580d81fcbbacd
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/core/src/panicking.rs:107:14
  15:     0x55b36a2f63e9 - wgpu::backend::direct::Context::handle_error_fatal::hf02f94e005734625
  16:     0x55b36a2f6c32 - <wgpu::backend::direct::Context as wgpu::Context>::surface_configure::h1e26a3d305121020
  17:     0x55b36a1c3621 - piet_wgpu::WgpuRenderer::set_size::h39d61a07a27b7409
  18:     0x55b369c57da6 - druid::window::Window<T>::event::hbffdae07b8b371be
  19:     0x55b369aeb670 - druid::win_handler::InnerAppState<T>::do_window_event::h5b4905f76e2f8f9c
  20:     0x55b369ae6f8e - druid::win_handler::AppState<T>::do_window_event::hd07e04d9f73dd55b
  21:     0x55b369ae927e - druid::win_handler::AppState<T>::do_winit_window_event::h31234667683be2d5
  22:     0x55b369c97401 - druid::app::AppLauncher<T>::launch::{{closure}}::h1b95f4ce225a17cb
  23:     0x55b369c98b44 - winit::platform_impl::platform::sticky_exit_callback::hda7583c4bb2e4c40
  24:     0x55b369b0f357 - winit::platform_impl::platform::x11::event_processor::EventProcessor<T>::process_event::hfeb7524d1a0e910d
  25:     0x55b369ceb564 - winit::platform_impl::platform::x11::EventLoop<T>::run::h4f457f983d6cede1
  26:     0x55b369c98a04 - winit::platform_impl::platform::EventLoop<T>::run::h6052ff6f68dc10f4
  27:     0x55b369c5a02e - winit::event_loop::EventLoop<T>::run::h75c8b6279e5a069b
  28:     0x55b369c55c0b - druid::app::AppLauncher<T>::launch::h033724c5b00f19c8
  29:     0x55b369af0422 - lapce_core::app::lanuch::hefb9cbf4ef913ee8
  30:     0x55b369aba2a3 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7ef695c90683f866
  31:     0x55b369aba239 - std::rt::lang_start::{{closure}}::h7ee1b3cb983f9dac
  32:     0x55b36a5b4f71 - core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h3ab949a23c24b3b3
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/core/src/ops/function.rs:259:13
  33:     0x55b36a5b4f71 - std::panicking::try::do_call::hd77545f815897665
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panicking.rs:406:40
  34:     0x55b36a5b4f71 - std::panicking::try::h7ce07831cfe77010
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panicking.rs:370:19
  35:     0x55b36a5b4f71 - std::panic::catch_unwind::h3a6382eb739fc3cb
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panic.rs:133:14
  36:     0x55b36a5b4f71 - std::rt::lang_start_internal::{{closure}}::ha0ce13fbefa6ed19
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/rt.rs:128:48
  37:     0x55b36a5b4f71 - std::panicking::try::do_call::hbacbc27e75105135
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panicking.rs:406:40
  38:     0x55b36a5b4f71 - std::panicking::try::he42832d690a14084
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panicking.rs:370:19
  39:     0x55b36a5b4f71 - std::panic::catch_unwind::h868b7b91fa924314
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/panic.rs:133:14
  40:     0x55b36a5b4f71 - std::rt::lang_start_internal::h7797a51a89d842a3
                               at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c/library/std/src/rt.rs:128:20
  41:     0x55b369aba292 - main
  42:     0x7fa985f3eb25 - __libc_start_main
  43:     0x55b369aba15e - _start
  44:                0x0 - <unknown>
palette update process stopped


Valid settings for the config file

As of now, when you open settings.toml or keymaps.toml the files are completely empty, so there's no indication as to what you can put inside them to change stuff around, so having it prepopulated with a few variables would be nic; if that's not possible, making a documentation page about the settings would also be nice.

Debug build is huge

The main lapce binary is 450MB, while the proxy is 115MB. I've never seen any rust executable this big. You may want to work on reducing the amount of dependencies. This would also improve compilation time. (currently ~7min for a debug build for me)

How to make auto-completion window pop-up?

I downloaded .msi package and installed it on Windows 10. After launching lapce I opened this repos source code and tried editing one of the files to see how lapce performs.

On README.md screenshot you showed autocompletion box, yet I it doesn't show for me. Do I have to make additional steps in order for it to work?

image

Minimising the window crashes the app

System: Windows 10

thread 'main' panicked at 'Error in Surface::configure: Both `Surface` width and height must be non-zero. Wait to recreate the `Surface` until the window has non-zero area.', C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\wgpu-0.11.0\src\backend\direct.rs:204:9
stack backtrace:
   0: std::panicking::begin_panic_handler
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\/library\std\src\panicking.rs:498
   1: core::panicking::panic_fmt
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\/library\core\src\panicking.rs:107
   2: wgpu::backend::direct::Context::handle_error_fatal<enum$<wgpu_core::present::ConfigureSurfaceError> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\wgpu-0.11.0\src\backend\direct.rs:204
   3: wgpu::backend::direct::impl$3::surface_configure
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\wgpu-0.11.0\src\backend\direct.rs:910
   4: wgpu::Surface::configure
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\wgpu-0.11.0\src\lib.rs:3184
   5: piet_wgpu::WgpuRenderer::set_size
             at C:\Users\__\.cargo\git\checkouts\piet-wgpu-913b036275d2afb6\278cdfd\src\lib.rs:120
   6: druid::window::Window<lapce_core::data::LapceData>::event<lapce_core::data::LapceData>
             at C:\Users\__\.cargo\git\checkouts\druid-f6980810fb848923\c42de0b\druid\src\window.rs:267
   7: druid::win_handler::InnerAppState<lapce_core::data::LapceData>::do_window_event<lapce_core::data::LapceData>
             at C:\Users\__\.cargo\git\checkouts\druid-f6980810fb848923\c42de0b\druid\src\win_handler.rs:432   8: druid::win_handler::AppState<lapce_core::data::LapceData>::do_window_event<lapce_core::data::LapceData>
             at C:\Users\__\.cargo\git\checkouts\druid-f6980810fb848923\c42de0b\druid\src\win_handler.rs:680   9: druid::win_handler::AppState<lapce_core::data::LapceData>::do_winit_window_event<lapce_core::data::LapceData>
             at C:\Users\__\.cargo\git\checkouts\druid-f6980810fb848923\c42de0b\druid\src\win_handler.rs:669  10: druid::app::impl$1::launch::closure$1<lapce_core::data::LapceData>
             at C:\Users\__\.cargo\git\checkouts\druid-f6980810fb848923\c42de0b\druid\src\app.rs:334
  11: winit::platform_impl::platform::event_loop::impl$2::run_return::closure$0<enum$<druid_shell::window::WinitEvent>,druid::app::impl$1::launch::closure$1>
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:206
  12: alloc::boxed::impl$45::call_mut<tuple$<enum$<winit::event::Event<enum$<druid_shell::window::WinitEvent> > >,ref_mut$<enum$<winit::event_loop::ControlFlow> > >,dyn$<core::ops::function::FnMut<tuple$<enum$<winit::event::Event<enum$<druid_shell::window::Wini
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\alloc\src\boxed.rs:1818
  13: winit::platform_impl::platform::event_loop::runner::impl$3::call_event_handler::closure$0<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop\runner.rs:245
  14: core::panic::unwind_safe::impl$23::call_once<tuple$<>,winit::platform_impl::platform::event_loop::runner::impl$3::call_event_handler::closure$0>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\core\src\panic\unwind_safe.rs:271
  15: std::panicking::try::do_call<core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::runner::impl$3::call_event_handler::closure$0>,tuple$<> >
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panicking.rs:406
  16: std::panicking::try::do_catch<core::panic::unwind_safe::AssertUnwindSafe<std::thread::impl$0::spawn_unchecked::closure$1::closure$0>,tuple$<> >
  17: std::panicking::try<tuple$<>,core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::runner::impl$3::call_event_handler::closure$0> >
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panicking.rs:370
  18: std::panic::catch_unwind<core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::runner::impl$3::call_event_handler::closure$0>,tuple$<> >
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panic.rs:133
  19: winit::platform_impl::platform::event_loop::runner::EventLoopRunner<enum$<druid_shell::window::WinitEvent> >::catch_unwind<enum$<druid_shell::window::WinitEvent>,tuple$<>,winit::platform_impl::platform::event_loop::runner::impl$3::call_event_handler::clos
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop\runner.rs:152
  20: winit::platform_impl::platform::event_loop::runner::EventLoopRunner<enum$<druid_shell::window::WinitEvent> >::call_event_handler<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop\runner.rs:239
  21: winit::platform_impl::platform::event_loop::runner::EventLoopRunner<enum$<druid_shell::window::WinitEvent> >::send_event<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop\runner.rs:220
  22: winit::platform_impl::platform::event_loop::SubclassInput<enum$<druid_shell::window::WinitEvent> >::send_event<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:96
  23: winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:991
  24: core::ops::function::FnOnce::call_once<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0,tuple$<> >
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\core\src\ops\function.rs:227
  25: core::panic::unwind_safe::impl$23::call_once<isize,winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\core\src\panic\unwind_safe.rs:271
  26: std::panicking::try::do_call<core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>,isize>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panicking.rs:406
  27: std::panicking::try::do_catch<core::panic::unwind_safe::AssertUnwindSafe<std::thread::impl$0::spawn_unchecked::closure$1::closure$0>,tuple$<> >
  28: std::panicking::try<isize,core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0> >
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panicking.rs:370
  29: std::panic::catch_unwind<core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>,isize>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panic.rs:133
  30: winit::platform_impl::platform::event_loop::runner::EventLoopRunner<enum$<druid_shell::window::WinitEvent> >::catch_unwind<enum$<druid_shell::window::WinitEvent>,isize,winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop\runner.rs:152
  31: winit::platform_impl::platform::event_loop::public_window_callback_inner<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:1980
  32: winit::platform_impl::platform::event_loop::public_window_callback<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:791
  33: DefSubclassProc
  34: DefSubclassProc
  35: CallWindowProcW
  36: SendMessageW
  37: GetWindowTextW
  38: IsIconic
  39: IsCompositionActive
  40: IsCompositionActive
  41: GetWindowTextW
  42: CallWindowProcW
  43: CallWindowProcW
  44: DefSubclassProc
  45: DefSubclassProc
  46: winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:965
  47: core::ops::function::FnOnce::call_once<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0,tuple$<> >
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\core\src\ops\function.rs:227
  48: core::panic::unwind_safe::impl$23::call_once<isize,winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\core\src\panic\unwind_safe.rs:271
  49: std::panicking::try::do_call<core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>,isize>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panicking.rs:406
  50: std::panicking::try::do_catch<core::panic::unwind_safe::AssertUnwindSafe<std::thread::impl$0::spawn_unchecked::closure$1::closure$0>,tuple$<> >
  51: std::panicking::try<isize,core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0> >
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panicking.rs:370
  52: std::panic::catch_unwind<core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>,isize>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panic.rs:133
  53: winit::platform_impl::platform::event_loop::runner::EventLoopRunner<enum$<druid_shell::window::WinitEvent> >::catch_unwind<enum$<druid_shell::window::WinitEvent>,isize,winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop\runner.rs:152
  54: winit::platform_impl::platform::event_loop::public_window_callback_inner<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:1980
  55: winit::platform_impl::platform::event_loop::public_window_callback<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:791
  56: DefSubclassProc
  57: DefSubclassProc
  58: CallWindowProcW
  59: DispatchMessageW
  60: LookupIconIdFromDirectoryEx
  61: KiUserCallbackDispatcher
  62: NtUserMessageCall
  63: GetWindowTextW
  64: IsIconic
  65: GetUserColorPreference
  66: Ordinal96
  67: IsCompositionActive
  68: IsCompositionActive
  69: GetWindowTextW
  70: winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:1047
  71: core::ops::function::FnOnce::call_once<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0,tuple$<> >
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\core\src\ops\function.rs:227
  72: core::panic::unwind_safe::impl$23::call_once<isize,winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\core\src\panic\unwind_safe.rs:271
  73: std::panicking::try::do_call<core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>,isize>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panicking.rs:406
  74: std::panicking::try::do_catch<core::panic::unwind_safe::AssertUnwindSafe<std::thread::impl$0::spawn_unchecked::closure$1::closure$0>,tuple$<> >
  75: std::panicking::try<isize,core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0> >
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panicking.rs:370
  76: std::panic::catch_unwind<core::panic::unwind_safe::AssertUnwindSafe<winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>,isize>
             at /rustc/8f117a77d0880ed59afcc1a19c72ec5c1e44b97c\library\std\src\panic.rs:133
  77: winit::platform_impl::platform::event_loop::runner::EventLoopRunner<enum$<druid_shell::window::WinitEvent> >::catch_unwind<enum$<druid_shell::window::WinitEvent>,isize,winit::platform_impl::platform::event_loop::public_window_callback_inner::closure$0>
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop\runner.rs:152
  78: winit::platform_impl::platform::event_loop::public_window_callback_inner<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:1980
  79: winit::platform_impl::platform::event_loop::public_window_callback<enum$<druid_shell::window::WinitEvent> >
             at C:\Users\__\.cargo\registry\src\github.com-1ecc6299db9ec823\winit-0.25.0\src\platform_impl\windows\event_loop.rs:791
  80: DefSubclassProc
  81: DefSubclassProc
  82: CallWindowProcW
  83: DispatchMessageW
  84: SendMessageTimeoutW
  85: KiUserCallbackDispatcher
  86: NtUserMessageCall
  87: GetWindowTextW
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
buffer update process stopped

[Arch Linux] Won't launch after fresh install of lapce

First time trying to launch after installing.

$ lapce
start to watch path "/home/kainoa/.config/lapce/settings.toml"
2021-12-15T05:11:19.544115Z DEBUG druid::localization: available locales [], current en-US
2021-12-15T05:11:19.544126Z DEBUG druid::localization: resolved: [en-US]
primitives buffer size 80000
can't start proxy Err(Os { code: 2, kind: NotFound, message: "No such file or directory" })

Linker fail on linux

During the final link step, the following error occurs:

  = note: /usr/bin/ld: cannot find -lxcb-shape
          /usr/bin/ld: cannot find -lxcb-xfixes
          clang: error: linker command failed with exit code 1 (use -v to see invocation)

On Debian/Ubuntu, this is fixed installing the packages libxcb-xfixes0-dev and libxcb-shape0-dev. Coming from C++ this is strange to me (you'd imagine you need the headers to compile, not to link). Anyway, the error message is unclear.

Ubuntu 21.10 black window

Console output

start to watch path "/home/pisy/.config/lapce/settings.toml"
2021-12-14T09:00:55.594735Z DEBUG druid::localization: available locales [], current en-US
2021-12-14T09:00:55.594825Z DEBUG druid::localization: resolved: [en-US]
Fontconfig warning: line 5: unknown element "its:rules"
Fontconfig warning: line 6: unknown element "its:translateRule"
Fontconfig error: line 6: invalid attribute 'translate'
Fontconfig error: line 6: invalid attribute 'selector'
Fontconfig error: line 7: invalid attribute 'xmlns:its'
Fontconfig error: line 7: invalid attribute 'version'
Fontconfig warning: line 9: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/10-hinting-slight.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/10-hinting-slight.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/10-hinting-slight.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/10-hinting-slight.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/10-hinting-slight.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/10-hinting-slight.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/10-hinting-slight.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/11-lcdfilter-default.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/11-lcdfilter-default.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/11-lcdfilter-default.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/11-lcdfilter-default.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/11-lcdfilter-default.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/11-lcdfilter-default.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/11-lcdfilter-default.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/20-unhint-small-vera.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/20-unhint-small-vera.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/20-unhint-small-vera.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/20-unhint-small-vera.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/20-unhint-small-vera.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/20-unhint-small-vera.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/20-unhint-small-vera.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/30-metric-aliases.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/30-metric-aliases.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/30-metric-aliases.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/30-metric-aliases.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/30-metric-aliases.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/30-metric-aliases.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/30-metric-aliases.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/40-nonlatin.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/40-nonlatin.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/40-nonlatin.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/40-nonlatin.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/40-nonlatin.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/40-nonlatin.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/40-nonlatin.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/45-generic.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/45-generic.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/45-generic.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/45-generic.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/45-generic.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/45-generic.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/45-generic.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/45-latin.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/45-latin.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/45-latin.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/45-latin.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/45-latin.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/45-latin.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/45-latin.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/49-sansserif.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/49-sansserif.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/49-sansserif.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/49-sansserif.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/49-sansserif.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/49-sansserif.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/49-sansserif.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/50-user.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/50-user.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/50-user.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/50-user.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/51-local.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/51-local.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/51-local.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/51-local.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/51-local.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/51-local.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/51-local.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/60-generic.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/60-generic.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/60-generic.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/60-generic.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/60-generic.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/60-generic.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/60-generic.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/60-latin.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/60-latin.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/60-latin.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/60-latin.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/60-latin.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/60-latin.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/60-latin.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/65-fonts-persian.conf", line 34: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/65-fonts-persian.conf", line 35: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/65-fonts-persian.conf", line 35: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/65-fonts-persian.conf", line 35: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/65-fonts-persian.conf", line 36: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/65-fonts-persian.conf", line 36: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/65-nonlatin.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/65-nonlatin.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/65-nonlatin.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/65-nonlatin.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/65-nonlatin.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/65-nonlatin.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/65-nonlatin.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/69-unifont.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/69-unifont.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/69-unifont.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/69-unifont.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/69-unifont.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/69-unifont.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/70-no-bitmaps.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/70-no-bitmaps.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/70-no-bitmaps.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/70-no-bitmaps.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/70-no-bitmaps.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/70-no-bitmaps.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/70-no-bitmaps.conf", line 8: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/80-delicious.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/80-delicious.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/80-delicious.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/80-delicious.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/80-delicious.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/80-delicious.conf", line 6: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/conf.d/90-synthetic.conf", line 4: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/conf.d/90-synthetic.conf", line 5: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/conf.d/90-synthetic.conf", line 5: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/conf.d/90-synthetic.conf", line 5: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/conf.d/90-synthetic.conf", line 6: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/conf.d/90-synthetic.conf", line 6: invalid attribute 'version'
Fontconfig error: Cannot load default config file

primitives buffer size 80000
plugin reload from paths
proxy mainfiest paths []
size is (800×600)
2021-12-14T09:02:26.830484Z  WARN event: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (518.0, 377.0), window_pos: (518.0, 377.0), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.864244Z  WARN event: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (518.0, 377.0), window_pos: (518.0, 377.0), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.865768Z  WARN event: druid::core: WidgetId(51) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.865806Z  WARN event: druid::core: WidgetId(51) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.865841Z  WARN event: druid::core: WidgetId(50) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.865874Z  WARN event: druid::core: WidgetId(2) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.865898Z  WARN event: druid::core: WidgetId(2) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.865918Z  WARN event: druid::core: WidgetId(2) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.865937Z  WARN event: druid::core: WidgetId(2) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.865958Z  WARN event: druid::core: WidgetId(12) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.866019Z  WARN event: druid::core: WidgetId(14) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.866046Z  WARN event: druid::core: WidgetId(14) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.866074Z  WARN event: druid::core: WidgetId(2) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.866102Z  WARN event: druid::core: WidgetId(2) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.866124Z  WARN event: druid::core: WidgetId(2) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.866164Z  WARN event: druid::core: WidgetId(50) received an event (KeyDown(KeyEvent { state: Down, key: Alt, code: AltLeft, location: Standard, mods: Modifiers((empty)), repeat: false, is_composing: false })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.868321Z  WARN event: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (797.0, 600.0), window_pos: (797.0, 600.0), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.868539Z  WARN event: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (798.0, 599.0), window_pos: (798.0, 599.0), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.868646Z  WARN event: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (798.8798828125, 599.5701904296875), window_pos: (798.8798828125, 599.5701904296875), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
2021-12-14T09:02:26.868763Z  WARN event: druid::core: WidgetId(51) received an event (MouseMove(MouseEvent { pos: (799.9102172851563, 599.5701904296875), window_pos: (799.9102172851563, 599.5701904296875), buttons: MouseButtons(00000), mods: Modifiers((empty)), count: 0, focus: false, button: None, wheel_delta: Vec2 { x: 0.0, y: 0.0 } })) without having been laid out. This likely indicates a missed call to set_origin.
memory allocation of 18446744073709551615 bytes failed
Aborted (core dumped)

Screenshot from 2021-12-14 12-01-44

Binaries don't work for Linux

Tested it on Fedora Linux 35

Tried both the pre-built ones and install from source
Ran it with RUST_BACKTRACE=full ./lapce in the directory containing lapce and lapce-proxy

2022-01-05T00:05:23.574145Z DEBUG hyper::client::connect::http: connecting to [2606:50c0:8001::153]:443
primitives buffer size 80000
thread 'main' panicked at 'Error in Surface::configure: requested format Bgra8UnormSrgb is not in list of supported formats: [Bgra8Unorm]', /home/username/.cargo/registry/src/github.com-1ecc6299db9ec823/wgpu-0.11.1/src/backend/direct.rs:204:9
stack backtrace:
   0:     0x5612e0b561bc - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::h3264ad1edb4a78ca
   1:     0x5612e0b7e5ac - core::fmt::write::h85b247e856e081ad
   2:     0x5612e0b4dad5 - std::io::Write::write_fmt::he3b80a66fc2ba5d3
   3:     0x5612e0b58200 - std::panicking::default_hook::{{closure}}::hf2bcdea8e51c0c13
   4:     0x5612e0b57db5 - std::panicking::default_hook::h8864cfaaed08e53a
   5:     0x5612e0b588b4 - std::panicking::rust_panic_with_hook::hb272975096b9f3ce
   6:     0x5612e0b58390 - std::panicking::begin_panic_handler::{{closure}}::hbbd6c4e11858ba52
   7:     0x5612e0b56684 - std::sys_common::backtrace::__rust_end_short_backtrace::hdd56e8729123abc5
   8:     0x5612e0b582f9 - rust_begin_unwind
   9:     0x5612dfcc41bb - std::panicking::begin_panic_fmt::hd76138c622de6537
  10:     0x5612e089b0c9 - wgpu::backend::direct::Context::handle_error_fatal::h2b53a5b30cfcf08d
  11:     0x5612e089b9c2 - <wgpu::backend::direct::Context as wgpu::Context>::surface_configure::he20a1e8a34e24cbb
  12:     0x5612e0796415 - piet_wgpu::WgpuRenderer::set_size::h95f62aa4f100231d
  13:     0x5612dfcf5b25 - druid::window::Window<T>::new::hcdf5f948b0d20ab3
  14:     0x5612dff0f91c - druid::win_handler::AppState<T>::build_native_window::h08bf5a7f5c7457b6
  15:     0x5612dfe35540 - druid::app::AppLauncher<T>::launch::hdae140a75a25f2d6
  16:     0x5612dfcfff6d - lapce_core::app::lanuch::h63fdae4aff85c239
  17:     0x5612dfcc5753 - std::sys_common::backtrace::__rust_begin_short_backtrace::hf9f3ecc31df8f70d
  18:     0x5612dfcc57a9 - std::rt::lang_start::{{closure}}::h9436d6b2c5c2d0a3
  19:     0x5612e0b55e9b - std::rt::lang_start_internal::hcbc5d1079a591413
  20:     0x5612dfcc5792 - main
  21:     0x7fdf26fa6560 - __libc_start_call_main
  22:     0x7fdf26fa660c - __libc_start_main@@GLIBC_2.34
  23:     0x5612dfcc5685 - _start
  24:                0x0 - <unknown>
2022-01-05T00:05:23.822030Z DEBUG hyper::client::connect::http: connected to [2606:50c0:8001::153]:443
palette update process stopped
buffer update process stopped

Cursor jumps 2 lines

When I go up or down with the arrow keys it jumps 2 lines always. I copied the defaults/keymaps-macos.toml to ~/Library/Application Support/Lapce/and renamed it keymaps.toml. Same thing with defaults/settings.toml.

Version 0.0.4
macOS 12.1

OOM error on trying to run appliction on M1 MacOS

Last login: Tue Dec 14 00:11:28 on ttys000
/Applications/Lapce.app/Contents/MacOS/lapce ; exit;                            
➜  ~ /Applications/Lapce.app/Contents/MacOS/lapce ; exit;
start to watch path "/Users/jacksonkearl/Library/Application Support/Lapce/settings.toml"
2021-12-14T08:13:44.029641Z DEBUG druid::localization: available locales [], current en-US
2021-12-14T08:13:44.029668Z DEBUG druid::localization: resolved: [en-US]
primitives buffer size 80000
plugin reload from paths
proxy mainfiest paths []
memory allocation of 18446744073709551615 bytes failed
[1]    2296 abort      /Applications/Lapce.app/Contents/MacOS/lapce
Saving session...completed.

[Process completed]

don't work fedora34

Building
warning: lapce-proxy (lib) generated 80 warnings
warning: lapce-core (lib) generated 712 warnings

[winq@fedora release]$ ./lapce
start to watch path "/home/winq/.config/lapce/settings.toml"
2022-01-07T02:59:12.148157Z DEBUG druid::localization: available locales [], current en-US
2022-01-07T02:59:12.238086Z DEBUG druid::localization: resolved: [en-US]
2022-01-07T02:59:13.597010Z DEBUG hyper::client::connect::dns: resolving host="lapce.github.io"
2022-01-07T02:59:13.922266Z DEBUG hyper::client::connect::http: connecting to 185.199.110.153:443
2022-01-07T02:59:13.946583Z DEBUG hyper::client::connect::http: connected to 185.199.110.153:443
2022-01-07T02:59:15.394017Z DEBUG hyper::proto::h1::io: flushed 66 bytes
2022-01-07T02:59:15.750549Z DEBUG hyper::proto::h1::io: parsed 23 headers
2022-01-07T02:59:15.750644Z DEBUG hyper::proto::h1::conn: incoming body is content-length (22 bytes)
2022-01-07T02:59:15.750880Z DEBUG hyper::proto::h1::conn: incoming body completed
2022-01-07T02:59:15.751562Z DEBUG hyper::client::pool: pooling idle connection for ("https", lapce.github.io)
2022-01-07T02:59:19.203685Z DEBUG hyper::client::connect::dns: resolving host="raw.githubusercontent.com"
2022-01-07T02:59:19.740008Z DEBUG hyper::client::connect::http: connecting to 198.18.0.1:443
2022-01-07T02:59:19.740628Z DEBUG hyper::client::connect::http: connected to 198.18.0.1:443
2022-01-07T02:59:20.852694Z DEBUG hyper::proto::h1::io: flushed 99 bytes
2022-01-07T02:59:21.233730Z DEBUG hyper::proto::h1::io: parsed 23 headers
2022-01-07T02:59:21.233768Z DEBUG hyper::proto::h1::conn: incoming body is content-length (305 bytes)
2022-01-07T02:59:21.233828Z DEBUG hyper::proto::h1::conn: incoming body completed
2022-01-07T02:59:21.233904Z DEBUG hyper::client::pool: pooling idle connection for ("https", raw.githubusercontent.com)
thread 'main' panicked at 'called Result::unwrap() on an Err value: BackendError(RequestDeviceError)', /home/winq/.cargo/git/checkouts/druid-f6980810fb848923/72cc534/druid/src/window.rs:91:55
note: run with RUST_BACKTRACE=1 environment variable to display a backtrace
palette update process stopped
buffer update process stopped

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.