qvacua / vimr

VimR — Neovim GUI for macOS in Swift
https://twitter.com/VimRefined
MIT License
6.67k stars 218 forks source link

Uknown fatal exception (CTD) caused by init.vim #635

Closed SkyLeach closed 6 years ago

SkyLeach commented 6 years ago

I'm really not sure what's going on, it was working and all I did is add several if('nvim') conditionals so that I could switch back-and-forth with macvim using mostly identical configs with the exception of deoplete (which doesn't work in vim8) and enabling asyncomplete works great in vim8 but not so great in neovim.

It should be noted that neovim loads fine and shows no warnings or errors at all.

Here's the config. I'm at a loss.

" modeline
" vi: sw=2 ts=2 sts=2 et cc=80
" Make Vim more useful
set nocompatible
" Use the OS clipboard by default (on versions compiled with `+clipboard`)
set clipboard=unnamed
"set some mac terminal/handling options - should add a detection for GUI/shell
"vim to this before uncommmenting - Matt
"set term=builtin_beos-ansi "could probably do xterm-256colors but meh

" Enhance command-line completion
set wildmenu
" Allow cursor keys in insert mode
" set esckeys
" Allow backspace in insert mode
set backspace=indent,eol,start
" Optimize for fast terminal connections
set ttyfast
" Add the g flag to search/replace by default
set gdefault
" Use UTF-8 without BOM
set encoding=utf-8 nobomb
" Change mapleader
let mapleader=","
" Don’t add empty newlines at the end of files
set binary
set noeol
" Centralize backups, swapfiles and undo history
if has('nvim')
  set backupdir=~/.config/nvim/backups
  set directory=~/.config/nvim/swaps
  if exists("&undodir")
          set undodir=~/.config/nvim/undo
  endif
else
  set backupdir=~/.vim/backups
  set directory=~/.vim/swaps
  if exists("&undodir")
          set undodir=~/.vim/undo
  endif
endif

set viminfo+=! " make sure vim history works
map <C-J> <C-W>j<C-W>_ " open and maximize the split below
map <C-K> <C-W>k<C-W>_ " open and maximize the split above
set wmh=0 " reduces splits to a single line 

" Enable per-directory .vimrc files and disable unsafe commands in them
set exrc
set secure
" Make sure that filetype plugins are enabled
filetype plugin on
" Enable syntax highlighting
syntax on
" Highlight current line
set cursorline
" use spaces not tabs by default (pythonic)
set tabstop=4 sw=4 softtabstop=4 et
" Enable line numbers
set number
" Show “invisible” characters
set lcs=tab:▸\ ,trail:·,eol:¬,nbsp:_
set list
" Highlight searches
set hlsearch
" Ignore case of searches
"set ignorecase
" Highlight dynamically as pattern is typed
set incsearch
" Always show status line
set laststatus=2
" Respect modeline in files
set modeline
set modelines=4
" Enable mouse in all modes
set mouse=a
" Disable error bells
set noerrorbells
" Don’t reset cursor to start of line when moving around.
set nostartofline
" Show the cursor position
set ruler
" Don’t show the intro message when starting Vim
set shortmess=atI
" Show the current mode
set showmode
" Show the filename in the window titlebar
set title
" Show the (partial) command as it’s being typed
set showcmd
" set number of history lines
set history=1000
" Start scrolling three lines before the horizontal window border
set scrolloff=3
" Set folding options / preferences.
set foldmethod=syntax
" If you want to enable folding by default, uncomment below...
" set foldenable
" Triger `autoread` when files changes on disk
" https://unix.stackexchange.com/questions/149209/refresh-changed-content-of-file-opened-in-vim/383044#383044
" https://vi.stackexchange.com/questions/13692/prevent-focusgained-autocmd-running-in-command-line-editing-mode
autocmd FocusGained,BufEnter,CursorHold,CursorHoldI * if mode() != 'c' | checktime | endif
" Notification after file change
" https://vi.stackexchange.com/questions/13091/autocmd-event-for-autoread
autocmd FileChangedShellPost *
  \ echohl WarningMsg | echo "File changed on disk. Buffer reloaded." | echohl None
" Strip trailing whitespace (,ss)
function! StripWhitespace()
        let save_cursor = getpos(".")
        let old_query = getreg('/')
        :%s/\s\+$//e
        call setpos('.', save_cursor)
        call setreg('/', old_query)
endfunction
noremap <leader>ss :call StripWhitespace()<CR>
" Save a file as root (,W)
noremap <leader>W :w !sudo tee % > /dev/null<CR>

" Automatic commands
" ===========================================================================
" NOTE: I disabled this because I want to use the JSON syntax rather than the
" javascript syntax.  This is because JSON is ever-so-slightly different than
" javascript.  It does not allow unquoted dictionary keys.  It does not allow
" the last pair in an object to have a trailing comma.
" ===========================================================================
" if has("autocmd")
"         " Enable file type detection
"         filetype on
"         " Treat .json files as .js
"         autocmd BufNewFile,BufRead *.json setfiletype json syntax=javascript
" endif
"anything installed by pathogen after this
call pathogen#infect()
call pathogen#helptags()

" #wsgi/python new file buffer for wsgi script
au BufNewFile,BufRead *.wsgi set filetype=python
" Set default template for new userscripts.
aug new_templates
    au!
    if has('nvim')
      au BufNewFile *userscript*.js 0r ~/.config/nvim/templates/userscript.js
      au BufNewFile *node*.js 0r ~/.config/nvim/templates/nodetmpl.js
      au BufNewFile *test*.py 0r ~/.config/nvim/templates/utesttmpl.py
      au BufNewFile *main*.py 0r ~/.config/nvim/templates/maintmpl.py
    else
      au BufNewFile *userscript*.js 0r ~/.vim/templates/userscript.js
      au BufNewFile *node*.js 0r ~/.vim/templates/nodetmpl.js
      au BufNewFile *test*.py 0r ~/.vim/templates/utesttmpl.py
      au BufNewFile *main*.py 0r ~/.vim/templates/maintmpl.py
    endif
aug END
" TODO: add template for new python scrips of various types when you feel like
" coding it out

" Set color scheme!¬
colorscheme 0x7A69_dark
colorscheme OceanicNext
" Bufexplorer
let g:bufExplorerSplitBelow=1        " Split new window below current.
set spr " set splitright to default
set splitbelow " open h-splits below current buff
let g:pymode_rope_completion=0

" for now disable eclim unless explicit

" text wrapping and visual queue
set colorcolumn=+1
" set default mapping for vim-pydocstring
autocmd FileType python setlocal ts=4 sw=4 sts=4 et cc=80
autocmd FileType python nnoremap <c-s-y>  :Pydocstring<cr>
" temporary function for python docstring width of 72
function! GetPythonTextWidth()
    if !exists('g:python_normal_text_width')
        let normal_text_width = 79
    else
        let normal_text_width = g:python_normal_text_width
    endif

    if !exists('g:python_comment_text_width')
        let comment_text_width = 72
    else
        let comment_text_width = g:python_comment_text_width
    endif

    let cur_syntax = synIDattr(synIDtrans(synID(line("."), col("."), 0)), "name")
    if cur_syntax == "Comment"
        return comment_text_width
    elseif cur_syntax == "String"
        " Check to see if we're in a docstring
        let lnum = line(".")
        while lnum >= 1 && (synIDattr(synIDtrans(synID(lnum, col([lnum, "$"]) - 1, 0)), "name") == "String" || match(getline(lnum), '\v^\s*$') > -1)
            if match(getline(lnum), "\\('''\\|\"\"\"\\)") > -1
                " Assume that any longstring is a docstring
                return comment_text_width
            endif
            let lnum -= 1
        endwhile
    endif

    return normal_text_width
endfunction

" replace with syntastic python3
augroup pep8_textwidth
    au!
    autocmd CursorMoved,CursorMovedI * :if &ft == 'python' | :exe 'setlocal textwidth='.GetPythonTextWidth() | :endif
augroup END

set statusline+=%#warningmsg#
" syntastic doc recommended config.  
" use airline and ALE instead
let g:airline#extensions#ale#enabled = 1
let g:airline#extensions#virtualenv#enabled = 1
"set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*

let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 1
let g:syntastic_python_python_exec = '/Users/magregor/.virtualenvs/neovim2/bin/python'
let g:syntastic_python_checkers=['flake8']
"let g:syntastic_python_flake8_exec='/usr/local/bin/python'
let g:syntastic_python_flake8_exec='/Users/magregor/.virtualenvs/neovim2/bin/python'
let g:syntastic_python_flake8=['-m', 'flake8']
" Use the following syntax to disable specific error codes in flake8
" let g:syntastic_python_flake8_args='--ignore=E501,E225'
let g:syntastic_python3_python_exec = '/Users/magregor/.virtualenvs/neovim3/bin/python'
let g:syntastic_python3_checkers=['flake8']
"let g:syntastic_python3_flake8_exec='/usr/local/bin/python'
let g:syntastic_python3_flake8_exec='/Users/magregor/.virtualenvs/neovim3/bin/python'
let g:syntastic_python3_flake8=['-m', 'flake8']
" Use the following syntax to disable specific error codes in flake8
" let g:syntastic_python3_flake8_args='--ignore=E501,E225'
let syntastic_mode_map = { 'passive_filetypes': ['html'] }
let g:SuperTabClosePreviewOnPopupClose = 1
autocmd CompleteDone * pclose
" jhint javascript
let g:syntastic_javascript_checkers = ['jshint']

" Simple re-format for minified Javascript
command! UnMinify call UnMinify()
function! UnMinify()
    %s/{\ze[^\r\n]/{\r/g
    %s/){/) {/g
    %s/};\?\ze[^\r\n]/\0\r/g
    %s/;\ze[^\r\n]/;\r/g
    %s/[^\s]\zs[=&|]\+\ze[^\s]/ \0 /g
    normal ggVG=
endfunction

" search selected
" Search for selected text, forwards or backwards.
vnoremap <silent> * :<C-U>
  \let old_reg=getreg('"')<Bar>let old_regtype=getregtype('"')<CR>
  \gvy/<C-R><C-R>=substitute(
  \escape(@", '/\.*$^~['), '\_s\+', '\\_s\\+', 'g')<CR><CR>
  \gV:call setreg('"', old_reg, old_regtype)<CR>
vnoremap <silent> # :<C-U>
  \let old_reg=getreg('"')<Bar>let old_regtype=getregtype('"')<CR>
  \gvy?<C-R><C-R>=substitute(
  \escape(@", '?\.*$^~['), '\_s\+', '\\_s\\+', 'g')<CR><CR>
  \gV:call setreg('"', old_reg, old_regtype)<CR>

" MacVim transparency
" if has("gui_running")
"     set transparency=10
" endif

" Function to pass selected text (SQL) to oracle
function! Oracle() range
  echo system('~/src/utils/py3oracleutil.py '.shellescape(join(getline(a:firstline, a:lastline), '\n')).'| pbcopy')
endfunction
com! -range=% -nargs=0 Oracall :<line1>,<line2>call Oracle()
" Function to pass selected text (SQL) to oracle
function! Wikit() range
  echo system('wikit '.shellescape(join(getline(a:firstline, a:lastline), '\n')).'| pbcopy')
endfunction
com! -range=% -nargs=0 Wikit :<line1>,<line2>call Wikit()

" Nvim terminal mode:
noremap <Esc> <C-\><C-n>
" Nvim python environment settings
if has('nvim')
  let g:python_host_prog='/Users/magregor/.virtualenvs/neovim2/bin/python'
  let g:python3_host_prog='/Users/magregor/.virtualenvs/neovim3/bin/python'
endif
" configure python-language-server through vim-lsp so it can be used by ale
" tsserver for typescript
if executable('typescript-language-server')
    au User lsp_setup call lsp#register_server({
        \ 'name': 'typescript-language-server',
        \ 'cmd': {server_info->[&shell, &shellcmdflag, 'typescript-language-server', '--stdio']},
        \ 'root_uri':{server_info->lsp#utils#path_to_uri(lsp#utils#find_nearest_parent_file_directory(lsp#utils#get_buffer_path(), 'tsconfig.json'))},
        \ 'whitelist': ['typescript'],
        \ })
endif
" DOES NOT WORK RIGHT
" tsserver for python through pyls IFF using vim-lsp, but there are issues
if !has('nvim')
  if executable('pyls') 
    " pip install python-language-server
    au User lsp_setup call lsp#register_server({
        \ 'name': 'pyls',
        \ 'cmd': {server_info->['pyls']},
        \ 'whitelist': ['python'],
        \ })
    autocmd FileType python nnoremap <buffer><silent> <c-]>  :LspDefinition<cr>
    autocmd FileType python nnoremap <buffer><silent> K :LspHover<cr>
    autocmd FileType python setlocal omnifunc=lsp#complete
    let g:asyncomplete_auto_popup = 1

    " function! s:check_back_space() abort
    "     let col = col('.') - 1
    "     return !col || getline('.')[col - 1]  =~ '\s'
    " endfunction

    " inoremap <silent><expr> <TAB>
    "   \ pumvisible() ? "\<C-n>:
    "   \ <SID>check_back_space() ? "\<TAB>:
    "   \ asyncomplete#force_refresh()
    " inoremap <expr><S-TAB> pumvisible() ? "\<C-p>: "\<C-h>"
  endif
  " uncomment for asyncomplete
  " let g:asyncomplete_remove_duplicates = 1
endif
if has('nvim')
  " Use deoplete for auto-completion.  Best choice.
  " Temp disable while checking ALE w/ omnicomplete and tsserver through pyls
  let g:deoplete#enable_at_startup = 1
else
  let g:ale_completion_enabled = 1
  " uncomment max_suggestions in order to limit autocomplete suggestions
  " let g:ale_completion_max_suggestions = 50
  " set omnifunc=syntaxcomplete#Complete
endif
" ALE config
let g:ale_virtualenv_dir_names = ['.virtualenvs']
" Enable only these linters
let g:ale_linters={
\    'python'     : ['pyls'],
\    'json'       : ['jsonlint'],
\    'javascript' : ['eslint'],
\    'cpp'        : ['clang'],
\    'pyrex'      : ['cython'],
\    'cmake'      : ['cmakelint'],
\}
let g:ale_fixers={
\    'javascript': ['prettier_eslint'],
\    'python'    : ['autopep8'],
\}
let g:ale_typescript_tsserver_executable='tsserver'
let g:ale_completion_max_suggestions = 50
" enable completion where available.  Experimental
autocmd FileType python nnoremap <buffer><silent> <c-]>  :ALEGoToDefinitionInTab<cr>
autocmd FileType python nnoremap <buffer><silent> <c-[>  :ALEGoToDefinition<cr>
autocmd FileType python nnoremap <buffer><silent> <c-s-l>  :ALELint<cr>

let g:session_autoload = 'no'
SkyLeach commented 6 years ago

this isn't being caused by the vimrc. I rolled back the vimrc version to one I know was working and it's still crashing.

SkyLeach commented 6 years ago

I uninstalled the downloaded dmg-based installation and installed using brew cask install caskroom/cask/vimr but still no luck.

I then went to /Users/$(whoami)/.config/nvim and did (history | grep "rm -fvR \w"):

  518  rm -fvR after/*
  519  rm -fvR backups/*
  520  rm -fvR bundle-temp-disable
  525  rm -fvR colors/*
  527  rm -fvR sessions/*
  528  rm -fvR swaps/*
  529  rm -fvR templates/*
  530  rm -fvR undo/*

still getting this every time I try to start VimR: screen shot 2018-04-07 at 4 00 59 pm

SkyLeach commented 6 years ago

So I removed the downloaded Vimr, built from source, installed, and still got the same CTD.

Check system.log I see:

Apr  7 04:54:51 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.68564[96360]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 06:32:34 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.68564[34245]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 06:44:53 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.68564[40692]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 06:45:17 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.68564[40899]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 12:43:48 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.68564[45091]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 13:06:20 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.68564[51855]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 13:12:10 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.68564[53808]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 13:13:31 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.71296[55574]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 16:00:55 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.71296[3861]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 16:17:01 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.71296[11367]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 20:33:33 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.71348[21747]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 20:33:57 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.71348[21919]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]

Seems like that's a memory thing, but I seriously doubt VimR could be using up all the memory before even having been launched/run for more than a second. Checking if anything else could cause this.

SkyLeach commented 6 years ago

More logs, this time after killing some other things just in case (seems gkrellm2 was using stupid amounts of memory for a monitoring krell, gotta check that.). More to hand, however, nothing has changed yet:

Apr  7 20:54:31 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.qvacua.VimR.71348[28895]): Service exited due to signal: Segmentation fault: 11 sent by exc handler[0]
Apr  7 20:54:32 MAGREGOR-M-W0XX com.apple.xpc.launchd[1] (com.apple.ReportCrash[28984]): Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
SkyLeach commented 6 years ago

rebooted, still won't work

SkyLeach commented 6 years ago

Here is the latest crash report. I honestly have no idea and I'm tired and going to just switch back to MacVim for now. That's a shame because I really liked VimR

Process:               VimR [14305]
Path:                  /Applications/VimR.app/Contents/MacOS/VimR
Identifier:            com.qvacua.VimR
Version:               0.21.2 (271)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           VimR [14305]
User ID:               501

Date/Time:             2018-04-07 22:36:30.744 -0400
OS Version:            Mac OS X 10.12.6 (16G1314)
Report Version:        12
Anonymous UUID:        B488803C-1746-958A-8C6D-14BE946D6A9A

Time Awake Since Boot: 3500 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000008
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Segmentation fault: 11
Termination Reason:    Namespace SIGNAL, Code 0xb
Terminating Process:   exc handler [0]

VM Regions Near 0x8:
--> 
    __TEXT                 0000000101899000-0000000101a6d000 [ 1872K] r-x/rwx SM=COW  /Applications/VimR.app/Contents/MacOS/VimR

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   com.apple.CoreFoundation        0x00007fff9dd8ff19 CFMessagePortIsValid + 9
1   com.qvacua.NvimView             0x00000001020426db _T08NvimView8UiBridgeC10closePorts33_DCD74EB516381FDA57FE5E467B32B9F5LLyyF + 43 (UiBridge.swift:283)
2   com.qvacua.NvimView             0x00000001020424ff _T08NvimView8UiBridgeC9forceQuityyF + 351 (UiBridge.swift:92)
3   com.qvacua.NvimView             0x000000010201ce9e _T08NvimViewAAC16ipcBecameInvalidySSFyycfU_Tf4ggX_n + 350 (NvimView+UiBridge.swift:203)
4   com.qvacua.NvimView             0x000000010201ddf4 _T08NvimViewAAC16ipcBecameInvalidySSFyycfU_TA + 68
5   com.qvacua.NvimView             0x0000000102030350 _T0Ix_IyB_TR + 32
6   libdispatch.dylib               0x00007fffb34d1524 _dispatch_call_block_and_release + 12
7   libdispatch.dylib               0x00007fffb34c88fc _dispatch_client_callout + 8
8   libdispatch.dylib               0x00007fffb34d5aac _dispatch_main_queue_callback_4CF + 925
9   com.apple.CoreFoundation        0x00007fff9ddb2bc9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
10  com.apple.CoreFoundation        0x00007fff9dd73c0d __CFRunLoopRun + 2205
11  com.apple.CoreFoundation        0x00007fff9dd73114 CFRunLoopRunSpecific + 420
12  com.apple.HIToolbox             0x00007fff9d2d3ebc RunCurrentEventLoopInMode + 240
13  com.apple.HIToolbox             0x00007fff9d2d3cf1 ReceiveNextEventCommon + 432
14  com.apple.HIToolbox             0x00007fff9d2d3b26 _BlockUntilNextEventMatchingListInModeWithFilter + 71
15  com.apple.AppKit                0x00007fff9b86aa54 _DPSNextEvent + 1120
16  com.apple.AppKit                0x00007fff9bfe67ee -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 2796
17  com.apple.AppKit                0x00007fff9b85f3db -[NSApplication run] + 926
18  com.apple.AppKit                0x00007fff9b829e0e NSApplicationMain + 1237
19  com.qvacua.VimR                 0x000000010189ce89 main + 9 (AppDelegate.swift:13)
20  libdyld.dylib                   0x00007fffb34fe235 start + 1

Thread 1:
0   libsystem_kernel.dylib          0x00007fffb362d44e __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fffb3717621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib         0x00007fffb371707d start_wqthread + 13

Thread 2:
0   libsystem_kernel.dylib          0x00007fffb362d44e __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fffb3717621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib         0x00007fffb371707d start_wqthread + 13

Thread 3:: Dispatch queue: com.apple.root.background-qos
0   libsystem_kernel.dylib          0x00007fffb362c0c2 __accept + 10
1   com.qvacua.VimR                 0x00000001019b61ef _T04VimR6SocketC012acceptClientB0ACyKF + 47 (Socket+Server.swift:108)
2   com.qvacua.VimR                 0x000000010199ab9d _T04VimR12HttpServerIOC5startys6UInt16V_Sb9forceIPv48Dispatch0I3QoSV0J6SClassO8prioritytKFyycfU_Tf4gn_n + 93 (HttpServerIO.swift:81)
3   com.qvacua.VimR                 0x000000010199a80a _T04VimR12HttpServerIOC5startys6UInt16V_Sb9forceIPv48Dispatch0I3QoSV0J6SClassO8prioritytKFyycfU_TA + 42
4   com.qvacua.VimR                 0x0000000101998180 _T0Ix_IyB_TR + 32
5   libdispatch.dylib               0x00007fffb34d1524 _dispatch_call_block_and_release + 12
6   libdispatch.dylib               0x00007fffb34c88fc _dispatch_client_callout + 8
7   libdispatch.dylib               0x00007fffb34ca86e _dispatch_root_queue_drain + 917
8   libdispatch.dylib               0x00007fffb34ca48c _dispatch_worker_thread3 + 99
9   libsystem_pthread.dylib         0x00007fffb37175a2 _pthread_wqthread + 1299
10  libsystem_pthread.dylib         0x00007fffb371707d start_wqthread + 13

Thread 4:
0   libsystem_kernel.dylib          0x00007fffb362d44e __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fffb371748e _pthread_wqthread + 1023
2   libsystem_pthread.dylib         0x00007fffb371707d start_wqthread + 13

Thread 5:: Dispatch queue: NSCGSDisableUpdates
0   libsystem_kernel.dylib          0x00007fffb362534a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fffb3624797 mach_msg + 55
2   com.apple.SkyLight              0x00007fffaf82e752 _CGSReenableUpdateForConnectionSync + 99
3   com.apple.SkyLight              0x00007fffaf8c370a CGSUpdateManager::enable_update(unsigned long long) + 532
4   libdispatch.dylib               0x00007fffb34d1524 _dispatch_call_block_and_release + 12
5   libdispatch.dylib               0x00007fffb34c88fc _dispatch_client_callout + 8
6   libdispatch.dylib               0x00007fffb34de9a0 _dispatch_queue_serial_drain + 896
7   libdispatch.dylib               0x00007fffb34d1306 _dispatch_queue_invoke + 1046
8   libdispatch.dylib               0x00007fffb34d7020 _dispatch_queue_override_invoke + 369
9   libdispatch.dylib               0x00007fffb34ca6b5 _dispatch_root_queue_drain + 476
10  libdispatch.dylib               0x00007fffb34ca48c _dispatch_worker_thread3 + 99
11  libsystem_pthread.dylib         0x00007fffb37175a2 _pthread_wqthread + 1299
12  libsystem_pthread.dylib         0x00007fffb371707d start_wqthread + 13

Thread 6:
0   libsystem_kernel.dylib          0x00007fffb362d44e __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fffb3717621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib         0x00007fffb371707d start_wqthread + 13

Thread 7:
0   libsystem_kernel.dylib          0x00007fffb362d44e __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fffb3717621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib         0x00007fffb371707d start_wqthread + 13

Thread 8:
0   libsystem_kernel.dylib          0x00007fffb362d44e __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fffb371748e _pthread_wqthread + 1023
2   libsystem_pthread.dylib         0x00007fffb371707d start_wqthread + 13

Thread 9:: com.apple.NSEventThread
0   libsystem_kernel.dylib          0x00007fffb362534a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fffb3624797 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff9dd74434 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff9dd738c1 __CFRunLoopRun + 1361
4   com.apple.CoreFoundation        0x00007fff9dd73114 CFRunLoopRunSpecific + 420
5   com.apple.AppKit                0x00007fff9b9b7f02 _NSEventThread + 205
6   libsystem_pthread.dylib         0x00007fffb371793b _pthread_body + 180
7   libsystem_pthread.dylib         0x00007fffb3717887 _pthread_start + 286
8   libsystem_pthread.dylib         0x00007fffb371708d thread_start + 13

Thread 10:
0   libsystem_kernel.dylib          0x00007fffb362cf46 __semwait_signal + 10
1   libsystem_c.dylib               0x00007fffb35b3b72 nanosleep + 199
2   libc++.1.dylib                  0x00007fffb20d765b std::__1::this_thread::sleep_for(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > const&) + 80
3   com.apple.JavaScriptCore        0x00007fffa0d7ff43 bmalloc::Heap::scavenge(std::__1::unique_lock<bmalloc::StaticMutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 275
4   com.apple.JavaScriptCore        0x00007fffa0d7fcf6 bmalloc::Heap::concurrentScavenge() + 102
5   com.apple.JavaScriptCore        0x00007fffa0d81381 bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>::threadRunLoop() + 97
6   com.apple.JavaScriptCore        0x00007fffa0d8128d bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>::threadEntryPoint(bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>*) + 29
7   com.apple.JavaScriptCore        0x00007fffa0d8153d void* std::__1::__thread_proxy<std::__1::tuple<void (*)(bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>*), bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>*> >(void*) + 93
8   libsystem_pthread.dylib         0x00007fffb371793b _pthread_body + 180
9   libsystem_pthread.dylib         0x00007fffb3717887 _pthread_start + 286
10  libsystem_pthread.dylib         0x00007fffb371708d thread_start + 13

Thread 11:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib          0x00007fffb362534a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fffb3624797 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff9dd74434 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff9dd738c1 __CFRunLoopRun + 1361
4   com.apple.CoreFoundation        0x00007fff9dd73114 CFRunLoopRunSpecific + 420
5   com.apple.CFNetwork             0x00007fff9ceaf214 +[NSURLConnection(Loader) _resourceLoadLoop:] + 313
6   com.apple.Foundation            0x00007fff9f7968ad __NSThread__start__ + 1243
7   libsystem_pthread.dylib         0x00007fffb371793b _pthread_body + 180
8   libsystem_pthread.dylib         0x00007fffb3717887 _pthread_start + 286
9   libsystem_pthread.dylib         0x00007fffb371708d thread_start + 13

Thread 12:: com.apple.coreanimation.render-server
0   libsystem_kernel.dylib          0x00007fffb362534a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fffb3624797 mach_msg + 55
2   com.apple.QuartzCore            0x00007fffa3957bc4 CA::Render::Server::server_thread(void*) + 272
3   com.apple.QuartzCore            0x00007fffa3a0839b thread_fun + 25
4   libsystem_pthread.dylib         0x00007fffb371793b _pthread_body + 180
5   libsystem_pthread.dylib         0x00007fffb3717887 _pthread_start + 286
6   libsystem_pthread.dylib         0x00007fffb371708d thread_start + 13

Thread 13:
0   libsystem_kernel.dylib          0x00007fffb362d44e __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fffb3717621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib         0x00007fffb371707d start_wqthread + 13

Thread 14:
0   com.qvacua.NvimView             0x0000000102007806 -[BlockHolder .cxx_destruct] + 11 (ThreadWithBlock.m:15)
1   libobjc.A.dylib                 0x00007fffb2c13bb4 object_cxxDestructFromClass(objc_object*, objc_class*) + 127
2   libobjc.A.dylib                 0x00007fffb2c0c5f6 objc_destructInstance + 92
3   libobjc.A.dylib                 0x00007fffb2c0c589 object_dispose + 22
4   com.apple.Foundation            0x00007fff9f7dc59e __NSFinalizeThreadData + 1230
5   com.apple.CoreFoundation        0x00007fff9ddb5304 __CFTSDFinalize + 116
6   libsystem_pthread.dylib         0x00007fffb371939f _pthread_tsd_cleanup + 544
7   libsystem_pthread.dylib         0x00007fffb37190d9 _pthread_exit + 152
8   libsystem_pthread.dylib         0x00007fffb3719c38 pthread_exit + 30
9   com.apple.Foundation            0x00007fff9f801c67 +[NSThread exit] + 11
10  com.apple.Foundation            0x00007fff9f7968c1 __NSThread__start__ + 1263
11  libsystem_pthread.dylib         0x00007fffb371793b _pthread_body + 180
12  libsystem_pthread.dylib         0x00007fffb3717887 _pthread_start + 286
13  libsystem_pthread.dylib         0x00007fffb371708d thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000610000137ac0  rbx: 0x0000000000000000  rcx: 0x0000000000000036  rdx: 0x0000000000012068
  rdi: 0x0000000000000000  rsi: 0x0000000000000001  rbp: 0x00007fff5e3652c0  rsp: 0x00007fff5e3652b0
   r8: 0x0000000000000040   r9: 0x0000600000170828  r10: 0x0000000106458110  r11: 0x00007fff9dd8ff10
  r12: 0x0000600000166180  r13: 0x0000600000166180  r14: 0x0000000000000000  r15: 0x000060800007dac0
  rip: 0x00007fff9dd8ff19  rfl: 0x0000000000010202  cr2: 0x0000000000000008

Logical CPU:     6
Error Code:      0x00000004
Trap Number:     14

Binary Images:
       0x101899000 -        0x101a6cfff +com.qvacua.VimR (0.21.2 - 271) <28B71A29-F1DF-3A54-A142-CAAC322EBA1E> /Applications/VimR.app/Contents/MacOS/VimR
       0x101c02000 -        0x101c0bfff +Eonil.EonilFileSystemEvents (1.0.0 - 1) <645D66D9-7036-3B2B-9CB0-F5D1467BD908> /Applications/VimR.app/Contents/Frameworks/EonilFileSystemEvents.framework/Versions/A/EonilFileSystemEvents
       0x101c22000 -        0x101c2bfff +com.PureLayout.PureLayout (3.0.2 - 1) <122F5797-4304-35E5-93EB-95178AC40260> /Applications/VimR.app/Contents/Frameworks/PureLayout.framework/Versions/A/PureLayout
       0x101c3d000 -        0x101c73ff3 +com.indragie.CocoaMarkdown (1.0 - 1) <AABF58F8-E3B6-3BD0-AF1F-99EC36FC5994> /Applications/VimR.app/Contents/Frameworks/CocoaMarkdown.framework/Versions/A/CocoaMarkdown
       0x101ca6000 -        0x101cd5ff7 +com.qvacua.CocoaFontAwesome (1.0 - 1) <7502A704-FCDC-379A-B534-E312A32CBE95> /Applications/VimR.app/Contents/Frameworks/CocoaFontAwesome.framework/Versions/A/CocoaFontAwesome
       0x101cec000 -        0x101de9ff7 +io.rx.RxSwift (4.1.1 - 1) <5EB71CAE-9BEC-3049-B7C9-8DCD9B0E4E0C> /Applications/VimR.app/Contents/Frameworks/RxSwift.framework/Versions/A/RxSwift
       0x101e3b000 -        0x101e7dfff +org.sparkle-project.Sparkle (1.18.1 - 1.18.1) <9F13E871-7891-3B50-9D5B-5D940BE46887> /Applications/VimR.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
       0x101ebd000 -        0x101f1afff +io.rx.RxCocoa (4.1.1 - 1) <B349DE44-6AFC-32B9-A3A3-C6357BC34515> /Applications/VimR.app/Contents/Frameworks/RxCocoa.framework/Versions/A/RxCocoa
       0x101f4b000 -        0x101f74ff7 +com.qvacua.MsgPackRpc (0.21.2 - 271) <C1B6BF1D-D6B8-3C07-8672-1B5B64389FF1> /Applications/VimR.app/Contents/Frameworks/MsgPackRpc.framework/Versions/A/MsgPackRpc
       0x101fa3000 -        0x101fcbff7 +com.qvacua.NvimMsgPack (0.21.2 - 271) <9D51300E-6638-3A0A-ABEA-25E61CC0DA4B> /Applications/VimR.app/Contents/Frameworks/NvimMsgPack.framework/Versions/A/NvimMsgPack
       0x102004000 -        0x102056ff7 +com.qvacua.NvimView (0.21.2 - 271) <00840C60-DACB-300E-920B-80623744E039> /Applications/VimR.app/Contents/Frameworks/NvimView.framework/Versions/A/NvimView
       0x1020cc000 -        0x1020dcff7 +libswiftAppKit.dylib (4.0.3 - 900.0.74.1) <BE94E296-39CD-3F4C-9398-4DEA840C8799> /Applications/VimR.app/Contents/Frameworks/libswiftAppKit.dylib
       0x1020ef000 -        0x1024b2fff +libswiftCore.dylib (4.0.3 - 900.0.74.1) <CE685663-7897-3330-83B6-74EEFE1A116F> /Applications/VimR.app/Contents/Frameworks/libswiftCore.dylib
       0x1027ec000 -        0x1027f6ff7 +libswiftCoreData.dylib (4.0.3 - 900.0.74.1) <416DAE7E-AFFB-3112-9943-068438DB6536> /Applications/VimR.app/Contents/Frameworks/libswiftCoreData.dylib
       0x102809000 -        0x10280cff7 +libswiftCoreFoundation.dylib (4.0.3 - 900.0.74.1) <51C48082-D5E2-34FD-9E5E-E5B822A3A1D4> /Applications/VimR.app/Contents/Frameworks/libswiftCoreFoundation.dylib
       0x102813000 -        0x102823ff7 +libswiftCoreGraphics.dylib (4.0.3 - 900.0.74.1) <6EE1A751-4A73-3BFD-B683-6F232E2CA3BC> /Applications/VimR.app/Contents/Frameworks/libswiftCoreGraphics.dylib
       0x102843000 -        0x102848ffe +libswiftCoreImage.dylib (4.0.3 - 900.0.74.1) <CBA31255-A204-3F42-87F9-DC54338B97F0> /Applications/VimR.app/Contents/Frameworks/libswiftCoreImage.dylib
       0x10284f000 -        0x102855fff +libswiftDarwin.dylib (4.0.3 - 900.0.74.1) <0C6938A7-E862-3D6C-A235-0C9293F73141> /Applications/VimR.app/Contents/Frameworks/libswiftDarwin.dylib
       0x102864000 -        0x10287fff7 +libswiftDispatch.dylib (4.0.3 - 900.0.74.1) <A186E72B-EB1F-3E39-B24F-31D808181B8E> /Applications/VimR.app/Contents/Frameworks/libswiftDispatch.dylib
       0x1028b0000 -        0x102a1efff +libswiftFoundation.dylib (4.0.3 - 900.0.74.1) <77CAE5A8-061A-3AD9-BB09-8A3270D8B555> /Applications/VimR.app/Contents/Frameworks/libswiftFoundation.dylib
       0x102b65000 -        0x102b68ff7 +libswiftIOKit.dylib (4.0.3 - 900.0.74.1) <AB7F1556-2310-3C2A-BDF5-F3D4996822F6> /Applications/VimR.app/Contents/Frameworks/libswiftIOKit.dylib
       0x102b6f000 -        0x102b77fff +libswiftMetal.dylib (4.0.3 - 900.0.74.1) <83746948-FF16-3C9D-A07C-D3D1DC355180> /Applications/VimR.app/Contents/Frameworks/libswiftMetal.dylib
       0x102b82000 -        0x102b88fff +libswiftObjectiveC.dylib (4.0.3 - 900.0.74.1) <3B0264FA-0487-3825-8F04-D53A4B93D541> /Applications/VimR.app/Contents/Frameworks/libswiftObjectiveC.dylib
       0x102b98000 -        0x102b9ffff +libswiftQuartzCore.dylib (4.0.3 - 900.0.74.1) <D3287398-F0B9-3A1A-ACC6-A5CC69FC5A05> /Applications/VimR.app/Contents/Frameworks/libswiftQuartzCore.dylib
       0x102bab000 -        0x102baeff3 +libswiftXPC.dylib (4.0.3 - 900.0.74.1) <F2E2E3D3-1B0C-3D45-9628-D74BD2279D46> /Applications/VimR.app/Contents/Frameworks/libswiftXPC.dylib
       0x102bb6000 -        0x102bbbfff +libswiftos.dylib (4.0.3 - 900.0.74.1) <749D38C7-4BE5-3351-9B53-A51538041ABC> /Applications/VimR.app/Contents/Frameworks/libswiftos.dylib
       0x10627b000 -        0x1062a5fff  GLRendererFloat (14.0.16) <32A016EE-63CF-3D07-9BAB-C4EB3E8E479D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
       0x1062af000 -        0x106327ff7  com.apple.driver.AppleIntelHD5000GraphicsMTLDriver (10.25.19 - 10.2.5) <E7CDD099-9850-3F00-84C4-291790D9A4A8> /System/Library/Extensions/AppleIntelHD5000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsMTLDriver
       0x106419000 -        0x106456dc7  dyld (433.5) <322C06B7-8878-311D-888C-C8FD2CA96FF3> /usr/lib/dyld
       0x1068bc000 -        0x106a62fff  GLEngine (14.0.16) <E8C60E20-6414-32B2-8964-41882943D9C1> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
       0x106aa1000 -        0x106ffcff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.25.19 - 10.2.5) <41375285-5849-34BB-B178-91CA708A97C7> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
    0x7fff9899b000 -     0x7fff98ce0ff7  com.apple.RawCamera.bundle (7.04 - 914) <86A67D11-9791-3CE6-9FF5-3387C0AB925B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff9a517000 -     0x7fff9a6d8fff  com.apple.avfoundation (2.0 - 1187.36) <2F390EAD-07BB-3788-9E73-13104C2E04CD> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff9a6d9000 -     0x7fff9a77bff7  com.apple.audio.AVFAudio (1.0 - ???) <7997D588-B542-3EBB-B822-D719C1114BB4> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fff9a846000 -     0x7fff9a846fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <916E360F-323C-3AE1-AB3D-D1F3B284AEE9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff9a847000 -     0x7fff9a85effb  libCGInterfaces.dylib (331.5) <17109679-A284-3C72-AA60-DBA815D3062B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff9a85f000 -     0x7fff9ad78feb  com.apple.vImage (8.1 - ???) <B58A7937-BEE2-38FE-87F4-5D5F40D31DC9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff9ad79000 -     0x7fff9aeeaff3  libBLAS.dylib (1185.50.4) <4087FFE0-627E-3623-96B4-F0A9A1991E09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff9aeeb000 -     0x7fff9aeffffb  libBNNS.dylib (15) <254698C7-7D36-3FFF-864E-ADEEEE543076> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff9af00000 -     0x7fff9b2f6fef  libLAPACK.dylib (1185.50.4) <C35FFB2F-A0E6-3903-8A3C-113A74BCBCA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff9b2f7000 -     0x7fff9b30dfff  libLinearAlgebra.dylib (1185.50.4) <345CAACF-7263-36EF-B69B-793EA8B390AF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff9b30e000 -     0x7fff9b314fff  libQuadrature.dylib (3) <EF56C8E6-DE22-3C69-B543-A8648F335FDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff9b315000 -     0x7fff9b329ff7  libSparseBLAS.dylib (1185.50.4) <67BA432E-FB59-3C78-A8BE-ED4274CBC359> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff9b32a000 -     0x7fff9b4b1fe7  libvDSP.dylib (600.60.1) <4155F45B-41CD-3782-AE8F-7AE740FD83C3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff9b4b2000 -     0x7fff9b564fff  libvMisc.dylib (600.60.1) <E18365D7-DCC4-3304-A8D1-395E656D7B99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff9b565000 -     0x7fff9b565fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <7C5733E7-0568-3E7D-AF61-160F19FED544> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff9b566000 -     0x7fff9b5a3ffb  com.apple.Accounts (113 - 113) <8550BD08-7D05-3AC4-A0CC-B67ECB2DE950> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff9b5a4000 -     0x7fff9b823ff7  com.apple.AddressBook.framework (10.0 - 1756.20) <E512B69B-8DBE-3085-95BE-750B8EFC97FD> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff9b824000 -     0x7fff9c5fdff3  com.apple.AppKit (6.9 - 1504.83.101) <59B096DA-5F32-3987-921A-D32210A52839> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff9c60f000 -     0x7fff9c60ffff  com.apple.ApplicationServices (48 - 48) <F30BA8DB-748F-3DDC-B07A-F84C9EBCC7A9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff9c610000 -     0x7fff9c67eff7  com.apple.ApplicationServices.ATS (377 - 422.3) <73C230CF-3213-3DCA-B528-664FEC76A90C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff9c718000 -     0x7fff9c847fff  libFontParser.dylib (194.13) <BE507D17-17D0-37E8-A317-6921118BD283> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff9c848000 -     0x7fff9c892ff7  libFontRegistry.dylib (196.7) <79411CB6-A093-333A-B669-CEC00B4D5C8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff9c8ef000 -     0x7fff9c922fff  libTrueTypeScaler.dylib (194.13) <F982F582-E2C8-3902-9C79-BB3F4B8199D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff9c98f000 -     0x7fff9ca39ff7  com.apple.ColorSync (4.12.0 - 502.2) <ACA4001E-A0E3-33F6-9CD6-EEC2AA15E322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff9ca3a000 -     0x7fff9ca8bfff  com.apple.HIServices (1.22 - 593) <045870A9-1D92-3FEF-8722-671E99A35E71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff9ca8c000 -     0x7fff9ca9bff3  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2CBE7F61-2056-3F96-99A1-0D527796AFA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff9ca9c000 -     0x7fff9cae9fff  com.apple.print.framework.PrintCore (12 - 491) <5027FD58-F0EE-33E4-8577-934CA06CD2AF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff9caea000 -     0x7fff9cb25fff  com.apple.QD (3.12 - 313) <B339C41D-8CDF-3342-8414-F9717DCCADD4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff9cb26000 -     0x7fff9cb31fff  com.apple.speech.synthesis.framework (6.6.2 - 6.6.2) <7853EFF4-62B9-394E-B7B8-41A645656820> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff9cb32000 -     0x7fff9cd3eff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <1F4026C6-23C1-39E8-823D-72298FECF75C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff9cd3f000 -     0x7fff9cd3ffff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <2CEE36AF-79E6-3B3E-B369-285E6C1886F7> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff9cea8000 -     0x7fff9d284fff  com.apple.CFNetwork (811.9 - 811.9) <1E384ECD-D841-356A-8188-61AA8B4A4F2E> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff9d29e000 -     0x7fff9d29efff  com.apple.Carbon (154 - 157) <69F403C7-F0CB-34E6-89B0-235CF4978C17> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff9d29f000 -     0x7fff9d2a2fff  com.apple.CommonPanels (1.2.6 - 98) <BF04BB22-D54C-309E-9F5C-897D969CAF70> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff9d2a3000 -     0x7fff9d5acfff  com.apple.HIToolbox (2.1.1 - 857.8) <5367366E-747E-32CF-8E76-93CD8E7424C7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff9d5ad000 -     0x7fff9d5b0ff7  com.apple.help (1.3.5 - 49) <B1A930E3-5907-3677-BACD-858EF68B172D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff9d5b1000 -     0x7fff9d5b6fff  com.apple.ImageCapture (9.0 - 9.0) <341252B4-E082-361A-B756-6A330259C741> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff9d5b7000 -     0x7fff9d64eff3  com.apple.ink.framework (10.9 - 219) <1BD40B45-FD33-3177-A935-565EE5FC79D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff9d64f000 -     0x7fff9d669fff  com.apple.openscripting (1.7 - 172.1) <78F3256B-AF4C-324A-A591-ECA4443A469F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff9d66a000 -     0x7fff9d66bff3  com.apple.print.framework.Print (12 - 267) <E2F82F1F-DC27-3EF0-9F75-B354F701450A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff9d66c000 -     0x7fff9d66eff7  com.apple.securityhi (9.0 - 55006) <3BD353DD-4FC7-3A44-99D0-9269C1D3F6A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff9d66f000 -     0x7fff9d675ff7  com.apple.speech.recognition.framework (6.0.1 - 6.0.1) <082895DC-3AC7-3DEF-ADCA-5B018C19C9D3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff9d676000 -     0x7fff9d755ffb  com.apple.cloudkit.CloudKit (651.14 - 651.14) <9F901E45-23E3-3F45-B66F-1BAB3AFC4462> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff9d756000 -     0x7fff9d756fff  com.apple.Cocoa (6.11 - 22) <85EDFBE1-75F0-369E-8CA8-C6A639B98FA6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff9d8a0000 -     0x7fff9d92dfff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <78767F88-91D4-31CE-AAC6-1F9407F479BB> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff9d92e000 -     0x7fff9d941fff  com.apple.CoreBluetooth (1.0 - 1) <BCB78777-76F0-3CC1-8443-9E61AEF7EF63> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff9d942000 -     0x7fff9dc3dfff  com.apple.CoreData (120 - 754.2) <4C9CAB2C-60D4-3694-A0A0-5B04B14BD14E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff9dc3e000 -     0x7fff9dcebff7  com.apple.CoreDisplay (1.0 - 1) <53D1EAFE-23A4-398D-BF52-E4299E670DB6> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff9dcec000 -     0x7fff9e185ff7  com.apple.CoreFoundation (6.9 - 1349.92) <6D0D0311-7C61-3313-BC55-22B7E876BEFA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff9e186000 -     0x7fff9e808fff  com.apple.CoreGraphics (2.0 - 1070.22) <FAB476BB-B5CD-3936-8AFC-41229DBDF0E8> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff9e809000 -     0x7fff9ea4cffb  com.apple.CoreImage (12.4.0 - 451.4.9) <BE4303C9-C9D9-361D-AC94-DBE40EB6700E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff9ea4d000 -     0x7fff9eab2ff7  com.apple.corelocation (2101.0.63) <C4C6BE27-85E2-34D5-AEDC-EBB5A7CB78D1> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff9eab3000 -     0x7fff9eb64fff  com.apple.CoreMedia (1.0 - 1907.59.1.6) <570690D8-A956-3629-9E46-4F8BDDB8A82C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff9eb65000 -     0x7fff9ebb0ff7  com.apple.CoreMediaIO (805.0 - 4932) <A1A0D9C1-4509-3DD3-AA00-949EEDDFC9FE> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff9ebb1000 -     0x7fff9ebb1fff  com.apple.CoreServices (775.20 - 775.20) <AA5227D6-A37F-3D8C-9BBF-E85F45910112> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff9ebb2000 -     0x7fff9ec03fff  com.apple.AE (712.5 - 712.5) <61F2AE2C-E04E-3FDF-9E88-201325136C83> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff9ec04000 -     0x7fff9eedfff7  com.apple.CoreServices.CarbonCore (1159.6 - 1159.6) <08AC074C-965B-3EDF-8E45-0707C8DE9EAD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff9eee0000 -     0x7fff9ef13fff  com.apple.DictionaryServices (1.2 - 274) <D23866E2-F7C8-3984-A9D4-96552CCDE573> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff9ef14000 -     0x7fff9ef1cff3  com.apple.CoreServices.FSEvents (1230.50.1 - 1230.50.1) <2AD1B0E5-7214-37C4-8D11-A27C9CAC0F74> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff9ef1d000 -     0x7fff9f089ffb  com.apple.LaunchServices (775.20 - 775.20) <A6530C3E-CB18-35DD-B5D5-85AD7E187EB4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff9f08a000 -     0x7fff9f13affb  com.apple.Metadata (10.7.0 - 1075.40) <B734F567-EC70-39AF-BB86-46C97065580F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff9f13b000 -     0x7fff9f19afff  com.apple.CoreServices.OSServices (775.20 - 775.20) <0DF5747C-12BC-3A6A-BF5A-C12833F6DDEB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff9f19b000 -     0x7fff9f20bfff  com.apple.SearchKit (1.4.0 - 1.4.0) <7A6DDA2B-03F1-3137-BA9E-1CC211973E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff9f20c000 -     0x7fff9f251ff7  com.apple.coreservices.SharedFileList (38 - 38) <DA096678-93AB-3291-BDE2-482F1D544589> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff9f2da000 -     0x7fff9f427ffb  com.apple.CoreText (352.0 - 544.17) <43466B0D-C061-3636-928B-0417EBD325A8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff9f428000 -     0x7fff9f45dff3  com.apple.CoreVideo (1.8 - 235.3) <AC11D5FB-C77B-34F5-B942-F698E84C229F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff9f45e000 -     0x7fff9f4cfffb  com.apple.framework.CoreWLAN (11.0 - 1200.31) <4D57D932-6D66-3800-8D33-13951D2E0D84> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff9f502000 -     0x7fff9f50dff3  com.apple.DirectoryService.Framework (10.12 - 194) <45BEA292-4550-3082-8CE7-5D6CE7E0052A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff9f5cd000 -     0x7fff9f5d2fff  com.apple.DiskArbitration (2.7 - 2.7) <70F56042-EF04-3BAF-9E04-90F423FB2BCC> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff9f764000 -     0x7fff9fb0afff  com.apple.Foundation (6.9 - 1349.91) <2A521CFB-7F0F-3226-9DAE-73CEDB6EF4ED> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff9fb36000 -     0x7fff9fb67ff7  com.apple.GSS (4.0 - 2.0) <30A77A95-CBD4-3BD7-9BFF-8426071F5D9D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff9fc27000 -     0x7fff9fccafff  com.apple.Bluetooth (5.0.5 - 5.0.5f1) <7BC341AE-0207-3670-AD01-27687D9D6F5E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff9fccb000 -     0x7fff9fd61ff7  com.apple.framework.IOKit (2.0.2 - 1324.60.4) <454036AD-86AA-3ABB-8C53-B5F654A6824D> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff9fd62000 -     0x7fff9fd68ffb  com.apple.IOSurface (159.12 - 159.12) <E3D6FCED-F938-30A3-AD08-0998B674A492> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff9fd69000 -     0x7fff9fdbaff7  com.apple.ImageCaptureCore (7.0 - 7.0) <A640CA2F-8093-34AB-947C-26679ECB8A6D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff9fdbb000 -     0x7fff9ff1bfef  com.apple.ImageIO.framework (3.3.0 - 1599.13) <443879A7-48C6-37ED-AC0B-166EEEABA662> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff9ff1c000 -     0x7fff9ff20fff  libGIF.dylib (1599.13) <11C5D9D7-B8A1-3D53-BA50-B25976FE6379> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff9ff21000 -     0x7fffa0011ff7  libJP2.dylib (1599.13) <C495FB08-0CD2-36FC-8196-FAD3D598A010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fffa0012000 -     0x7fffa0035ffb  libJPEG.dylib (1599.13) <D22E2431-76A5-39B4-AF0B-174CF282A1CE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fffa0036000 -     0x7fffa005dff7  libPng.dylib (1599.13) <561865FA-A51B-3EFF-ABFF-B4566B90B1A2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fffa005e000 -     0x7fffa0060ff3  libRadiance.dylib (1599.13) <6559253B-8FE2-3884-BC93-95BB7705A6D1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fffa0061000 -     0x7fffa00afffb  libTIFF.dylib (1599.13) <8FC594B3-6BBF-3A70-9994-203E9B330B5F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fffa020d000 -     0x7fffa0e17fff  com.apple.JavaScriptCore (12603 - 12603.3.8) <9557271A-1838-38DD-93E3-D8A9ECDE3B6B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fffa0e18000 -     0x7fffa0e31ff7  com.apple.Kerberos (3.0 - 1) <B9D242EB-E325-3A21-9812-C77CBBFB0D51> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fffa0e32000 -     0x7fffa0e68fff  com.apple.LDAPFramework (2.4.28 - 194.5) <492ACA22-373E-3DD9-BAEB-9EF6AA962FD5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fffa10bb000 -     0x7fffa10c1fff  com.apple.MediaAccessibility (1.0 - 97.1.1) <0BD82735-6644-37CE-B13D-8E7CC59A1752> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fffa10d7000 -     0x7fffa1610ff7  com.apple.MediaToolbox (1.0 - 1907.59.1.6) <FA068C6F-0506-35C3-A637-C4AFF82411DB> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fffa1611000 -     0x7fffa166cfff  com.apple.Metal (87.18 - 87.18) <E3618B54-C728-34CA-9E8A-9BD33A295D31> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fffa1f55000 -     0x7fffa1f5dfff  com.apple.NetFS (6.0 - 4.0) <14A24D00-5673-330A-959D-87F72040DEFF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fffa2134000 -     0x7fffa213cff7  libcldcpuengine.dylib (2.8.5) <8086D6FA-2006-3582-B20E-4209D81ACC58> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fffa213d000 -     0x7fffa218bff3  com.apple.opencl (2.8.6 - 2.8.6) <A6140AC4-7579-3AC2-B7EE-08A8899BC811> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fffa218c000 -     0x7fffa21a5ffb  com.apple.CFOpenDirectory (10.12 - 194) <A64E9A01-3F6E-36EA-9C10-88C564A68C9D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fffa21a6000 -     0x7fffa21b1ff7  com.apple.OpenDirectory (10.12 - 194) <4298FFD0-B1A7-3064-AF5B-708B3FA38671> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fffa21b2000 -     0x7fffa21b4fff  libCVMSPluginSupport.dylib (14.0.16) <AA2468D1-9169-3424-8EE4-0470E9050E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fffa21b5000 -     0x7fffa21b8ff7  libCoreFSCache.dylib (156.3) <687C4CC3-6537-344B-8BE1-5234C8CB2864> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fffa21b9000 -     0x7fffa21bdfff  libCoreVMClient.dylib (156.3) <E7AEFCBE-B6BF-3C7C-9A4E-E78CB04DB794> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fffa21be000 -     0x7fffa21c7ff7  libGFXShared.dylib (14.0.16) <170D07F3-2D30-3D4B-80A0-971E0A765709> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fffa21c8000 -     0x7fffa21d3fff  libGL.dylib (14.0.16) <0801F3B9-A525-32BB-9BC0-478947CE21D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fffa21d4000 -     0x7fffa2210ff7  libGLImage.dylib (14.0.16) <FE39C57B-056C-3CBF-B653-A8F2005631C1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fffa2211000 -     0x7fffa2387ff3  libGLProgrammability.dylib (14.0.16) <A81F1B95-445C-3191-ADB1-07BAEA5A204D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fffa2388000 -     0x7fffa23c9ff7  libGLU.dylib (14.0.16) <B285EAD6-B3AA-3753-BB85-75864BD6E76C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fffa2d31000 -     0x7fffa2d3ffff  com.apple.opengl (14.0.16 - 14.0.16) <B428BB89-8FE1-3527-BF3E-F8F0A1060884> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fffa2ddc000 -     0x7fffa2f23fff  com.apple.QTKit (7.7.3 - 2978.8) <80B27C5D-087F-3B83-AF99-AD6BA2E1105D> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fffa2f24000 -     0x7fffa318eff7  com.apple.imageKit (3.0 - 1023) <9C547565-CBAA-3ACB-A3F6-1366A0DCDCB4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fffa318f000 -     0x7fffa3256fff  com.apple.PDFKit (1.0 - 1) <BE82F14C-B20C-3771-B16C-F0723F6552AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fffa3257000 -     0x7fffa377dff7  com.apple.QuartzComposer (5.1 - 356) <C66293F6-EF05-3B36-8524-081CEB9FADD7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fffa377e000 -     0x7fffa37a1ffb  com.apple.quartzfilters (1.10.0 - 1.10.0) <365342ED-7A1A-3C75-AE60-90764E96034C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fffa37a2000 -     0x7fffa388ffff  com.apple.QuickLookUIFramework (5.0 - 720.7) <3136C23E-399E-3296-928A-B18EC9FC423C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fffa3890000 -     0x7fffa3890fff  com.apple.quartzframework (1.5 - 21) <09455972-8A33-3D61-B193-BA7E7CF984CA> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fffa3891000 -     0x7fffa3a91fff  com.apple.QuartzCore (1.11 - 453.39.5) <34F65F8C-01D2-3120-BD04-2620BB652D50> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fffa3a92000 -     0x7fffa3ae7fff  com.apple.QuickLookFramework (5.0 - 720.7) <3BD7BA2F-924C-3EFF-B26E-3F930E62E6B4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fffa3ae8000 -     0x7fffa3affff3  com.apple.SafariServices.framework (12605 - 12605.1.33.1.3) <1505C9CD-E826-33EA-9E88-44CA30A3A470> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fffa3ffa000 -     0x7fffa42fcfff  com.apple.security (7.0 - 57740.60.23) <9F23DF40-1A2F-3177-8DCE-FBC4F8F43BAF> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fffa42fd000 -     0x7fffa4372fff  com.apple.securityfoundation (6.0 - 55132.50.7) <C2597E67-E425-3BD5-BFEE-29593710DBDB> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fffa4373000 -     0x7fffa439cfff  com.apple.securityinterface (10.0 - 55079.50.4) <CD23A7D7-1D16-3B1D-9D7C-3FC3192D0C69> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fffa439d000 -     0x7fffa43a0ff3  com.apple.xpc.ServiceManagement (1.0 - 1) <BE0F9708-0B55-3E78-A15E-C287B8ED13BA> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fffa43a1000 -     0x7fffa43ebff7  com.apple.sociald.Social (???) <6FAB064C-EAA9-32A1-837C-57F1DDF47FD4> /System/Library/Frameworks/Social.framework/Versions/A/Social
    0x7fffa4727000 -     0x7fffa4796ff7  com.apple.SystemConfiguration (1.14 - 1.14) <B471E0FA-3AC6-3A34-82C8-4FCF4B389368> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fffa4797000 -     0x7fffa4b45fff  com.apple.VideoToolbox (1.0 - 1907.59.1.6) <EB2577A4-DCDF-3FD1-B5FA-42A55653A74D> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fffa4b46000 -     0x7fffa5ecdff3  com.apple.WebCore (12603 - 12603.3.8) <FE0B8503-5E89-3D55-BF48-1370FE81910A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fffa5ece000 -     0x7fffa60baff3  com.apple.WebKitLegacy (12603 - 12603.3.8) <28A763DA-BA6C-3350-8200-6DEA86FF7878> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fffa60bb000 -     0x7fffa6466fff  com.apple.WebKit (12603 - 12603.3.8) <38192059-8C02-3BBC-BF1F-E1D5E3150E16> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fffa6cc1000 -     0x7fffa6d5fff7  com.apple.accounts.AccountsDaemon (113 - 113) <2A3C41BC-740B-3F7B-AE86-8C2A7B369559> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsDaemon
    0x7fffa6d60000 -     0x7fffa6d94ffb  com.apple.framework.accountsui (1.0 - 45) <C3E4D8B1-295D-37A8-A383-33276A690DD4> /System/Library/PrivateFrameworks/AccountsUI.framework/Versions/A/AccountsUI
    0x7fffa6fed000 -     0x7fffa7008ff3  com.apple.AppContainer (4.0 - 307.50.21) <C2E6BA3D-81FF-39C3-B4BF-DBB9A17DE078> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fffa7009000 -     0x7fffa7016ff3  com.apple.AppSandbox (4.0 - 307.50.21) <BF9FA426-8C11-358B-9E1F-A3901E3F2B14> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fffa7017000 -     0x7fffa7039ffb  com.apple.framework.Apple80211 (12.0 - 1200.47) <869BFE4C-3F15-349E-9715-0A48ED725EAE> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fffa703a000 -     0x7fffa7049feb  com.apple.AppleFSCompression (88.50.3 - 1.0) <478E8BFF-8BA2-375E-BE02-BA27F115C15A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fffa7133000 -     0x7fffa71be97f  com.apple.AppleJPEG (1.0 - 1) <B9E9570D-04A4-34E4-B756-D200043B25B8> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fffa71d2000 -     0x7fffa71edfff  com.apple.aps.framework (4.0 - 4.0) <6CA07CDF-1E35-34E9-95BF-BD565FF42BAD> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fffa71ee000 -     0x7fffa71f6ffb  com.apple.AppleSRP (5.0 - 1) <6AAE93B6-9816-35B2-9C59-D5C3218065AF> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fffa71f7000 -     0x7fffa71faff3  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <42A1731A-A576-307A-B07C-9F8F64696CB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fffa71fb000 -     0x7fffa724dfff  com.apple.AppleVAFramework (5.0.36 - 5.0.36) <B272678B-2EA8-3F04-BB0F-3CE62D1E4F58> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fffa7257000 -     0x7fffa725eff7  com.apple.AssetCacheServices (48.3 - 48.3) <C59F7295-36D8-3109-A910-C83D884CC92C> /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/AssetCacheServices
    0x7fffa75f1000 -     0x7fffa766fff7  com.apple.backup.framework (1.8.5 - 1.8.5) <CC679891-E8F5-3166-8EB6-AEA06954A52D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fffa7d0b000 -     0x7fffa7d32fff  com.apple.CalendarAgentLink (8.0 - 250) <E50E29F6-2BAB-3B8B-BBEA-7DC0B8B077AD> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
    0x7fffa82fa000 -     0x7fffa8321ff3  com.apple.ChunkingLibrary (173 - 173) <FC2165F9-FC93-39C0-8323-C2F43A5E00A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fffa8322000 -     0x7fffa83aeff7  com.apple.CloudDocs (1.0 - 486.30) <74EA66DC-294A-3AFA-9FDF-711926907A35> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fffa8c46000 -     0x7fffa8c4fffb  com.apple.CommonAuth (4.0 - 2.0) <44E4467E-90BB-3CC4-9E57-9B09D7E90081> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fffa8d16000 -     0x7fffa8d67ff7  com.apple.AddressBook.ContactsFoundation (8.0 - 2250.11) <1324A70E-A093-3DB9-A802-07B8F4A499B5> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
    0x7fffa8d68000 -     0x7fffa8d8afff  com.apple.contacts.ContactsPersistence (1.0 - 2250.11) <7CDEB852-B3B7-328F-9537-DFB3A58B882C> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
    0x7fffa8dd4000 -     0x7fffa91b3ff7  com.apple.CoreAUC (226.0.0 - 226.0.0) <FBF6C5BC-5937-3957-B6BA-E101DF9B0DF6> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fffa91b4000 -     0x7fffa91e4fff  com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <3F6857D1-AE7C-3593-B064-930F5BB7269E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fffa927f000 -     0x7fffa9287ffb  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <2AB86FAF-37B3-3323-9EF0-CA591B6E357C> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fffa9398000 -     0x7fffa93a8fff  com.apple.CoreEmoji (1.0 - 40.3.3) <E9A28301-2D79-3A97-A046-028258A6ABE5> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fffa946d000 -     0x7fffa9483ff3  com.apple.CoreMediaAuthoring (2.2 - 956) <AEBFF55F-BF1E-3CA5-AA9C-1CE22218A665> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fffa948a000 -     0x7fffa951affb  com.apple.CorePDF (4.0 - 4) <7F50E4A6-940C-33F5-BE4E-7E01AFE98A8F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fffa96e3000 -     0x7fffa9713ff3  com.apple.CoreServicesInternal (276.2 - 276.2) <05EB7D45-DD4C-3A0F-AC63-A0C2A68E6481> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fffa99a4000 -     0x7fffa9a33ff7  com.apple.CoreSymbolication (62046) <9685A34A-C6FD-3681-8F7E-211D48298DD2> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fffa9a34000 -     0x7fffa9b73fe7  com.apple.coreui (2.1 - 431.3) <8D0FA478-9B6C-3D6D-8ADF-8677BA0BF134> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fffa9b74000 -     0x7fffa9c44ff3  com.apple.CoreUtils (5.1 - 510.31) <4AC4A8E9-C1E8-3FBA-AF0E-96F9404D826D> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fffa9c94000 -     0x7fffa9cf9ff3  com.apple.framework.CoreWiFi (12.0 - 1200.31) <DE9DB291-452C-33FB-833B-C62D09CF424F> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fffa9cfa000 -     0x7fffa9d08ff7  com.apple.CrashReporterSupport (10.12 - 827) <802A9B81-E349-348B-90AB-10E40B654250> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fffa9d7a000 -     0x7fffa9d84ffb  com.apple.framework.DFRFoundation (1.0 - 104.25) <7CFF896C-EF22-3941-BB3D-F3615CE4C908> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fffa9d85000 -     0x7fffa9d89ff3  com.apple.DSExternalDisplay (3.1 - 380) <4B5E3FF0-E8C3-38CC-BF72-418C928956AB> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fffa9dbf000 -     0x7fffa9e34ffb  com.apple.datadetectorscore (7.0 - 539.1) <84F04DEF-DF0A-3F93-AEE9-B6FAC781164B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fffa9e70000 -     0x7fffa9eaffff  com.apple.DebugSymbols (137 - 137) <58A70B66-2628-3CFE-B103-2200D95FC5F7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fffa9eb0000 -     0x7fffa9fc1fff  com.apple.desktopservices (1.11.5 - 1.11.5) <46A9D4F3-1EF8-373C-98A4-AD48D285E484> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fffaa104000 -     0x7fffaa10ffff  com.apple.DisplayServicesFW (3.1 - 380) <0BDF6C17-5E5F-33F8-8E99-C7350C6F9667> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fffaa2a9000 -     0x7fffaa6daff7  com.apple.vision.FaceCore (3.3.2 - 3.3.2) <9391D5A3-738C-3136-9D07-518CB43DBADA> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fffaba31000 -     0x7fffaba31fff  libmetal_timestamp.dylib (600.0.49.9) <E5EED927-1671-3390-BCBB-D76201D63C73> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
    0x7fffaba3e000 -     0x7fffaba49ff3  libGPUSupportMercury.dylib (14.0.16) <1216909A-E38E-335F-9F46-9362753AE0D1> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fffabd02000 -     0x7fffabd1efff  com.apple.GenerationalStorage (2.0 - 267.2) <22381303-B9A8-32D8-BDBF-871F0CDD81A5> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fffabd37000 -     0x7fffac3e9fff  com.apple.GeoServices (1.0 - 1228.24.9.30.34) <96BF97F6-8FF2-3FC4-A8C1-498CB7B0D9A0> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fffac42f000 -     0x7fffac4a5ff3  com.apple.Heimdal (4.0 - 2.0) <9541C717-96FF-32D3-8F0B-5048525DAA70> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fffacac0000 -     0x7fffacac7ffb  com.apple.IOAccelerator (311.16.2 - 311.16.2) <96FA28B6-B03D-3A5E-AF07-0AE4486D2968> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fffacac9000 -     0x7fffacaddff7  com.apple.IOPresentment (1.0 - 29.10) <30DF04EE-10E2-353F-845F-A97B87DF3207> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fffacade000 -     0x7fffacb00fff  com.apple.IconServices (74.4 - 74.4) <218DDD05-35F4-3833-B98D-471ED0EBC031> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fffacb9c000 -     0x7fffacbacff3  com.apple.IntlPreferences (2.0 - 216) <15B0DF1F-24C3-3A51-9032-1DD150B7D321> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
    0x7fffacbe7000 -     0x7fffacd9efff  com.apple.LanguageModeling (1.0 - 123.2.5) <A8CA965F-0399-310D-91C3-B93DDDE9A442> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7ffface9a000 -     0x7fffacf5cff3  com.apple.MMCS (1.3 - 385.4) <D3D76CE0-DE05-373E-B757-9E4B4920565D> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
    0x7fffad40e000 -     0x7fffad411fff  com.apple.Mangrove (1.0 - 1) <98814966-FD65-302B-B47E-00928DC34E5C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fffad6bf000 -     0x7fffad738ff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <C323FC94-FFA5-3EE6-B2AC-7E61EA92F304> /System/Library/PrivateFrameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fffad8a2000 -     0x7fffad8b0fff  com.apple.MobileKeyBag (2.0 - 1.0) <D0983DB7-EF9D-3E19-A084-21319ECE5846> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fffad8c1000 -     0x7fffad8e9ff7  com.apple.MultitouchSupport.framework (368.16 - 368.16) <E2FE1821-C7CC-3C35-BEB3-6DC693F5128D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fffad99b000 -     0x7fffad9a6fff  com.apple.NetAuth (6.2 - 6.2) <97F487D6-8089-31A8-B68C-6C1EAC6ED1B5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fffaddf3000 -     0x7fffaddf5fff  com.apple.OAuth (25 - 25) <D6E5F36D-71B8-3E12-9601-CE2A1D6ED60B> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fffae27e000 -     0x7fffae2bfff3  com.apple.PerformanceAnalysis (1.148.3 - 148.3) <8B63D1A1-C0B5-35DC-865F-BFC5682237E4> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fffae302000 -     0x7fffae309ff3  com.apple.phonenumbers (1.1.1 - 105) <B8EFDDD3-BA26-39B8-9EA0-3649184BF527> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
    0x7fffae8f7000 -     0x7fffae919fff  com.apple.pluginkit.framework (1.0 - 1) <B09BC1B5-63C4-368E-A7BA-4155D3798E27> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fffae96c000 -     0x7fffae9a6ffb  com.apple.ProtectedCloudStorage (1.0 - 1) <8B32A7EC-D371-38E3-A286-F1BE1307F1E1> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fffae9a7000 -     0x7fffae9c1fff  com.apple.ProtocolBuffer (1 - 249.1) <A1F1B0F3-078F-378F-A9A9-0DEEA70E816A> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fffae9c2000 -     0x7fffae9d1ff7  com.apple.QuickLookThumbnailing (1.0 - 1) <173EE873-1700-3FCA-9782-C060FBB5BCAD> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
    0x7fffae9da000 -     0x7fffae9fdff3  com.apple.RemoteViewServices (2.0 - 124) <6B967FDA-6591-302C-BA0A-76C4856E584E> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fffaf6c7000 -     0x7fffaf6cafff  com.apple.SecCodeWrapper (4.0 - 307.50.21) <F8E957B2-D3F0-3B73-B38C-AE8868F00939> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fffaf6d9000 -     0x7fffaf758ff7  com.apple.ShareKit (1.0 - 500) <C92D2122-229C-3FF6-B894-C4E8729AAB3A> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x7fffaf759000 -     0x7fffaf7e6fff  com.apple.Sharing (696.2.67 - 696.2.67) <F681EE28-153F-3216-97A6-6F5E4148AB2E> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fffaf807000 -     0x7fffafa6dfe3  com.apple.SkyLight (1.600.0 - 170.3.1) <585B0A2F-9696-356E-9FD6-19A06E4D8569> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fffafc4c000 -     0x7fffafc58ff7  com.apple.SpeechRecognitionCore (3.3.2 - 3.3.2) <684BD1EA-8268-331C-A5A9-080EB375C658> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fffb0344000 -     0x7fffb03b8fdf  com.apple.Symbolication (62048.1) <1A30ED19-7532-3F46-9DD3-9879A973D0CF> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fffb07f7000 -     0x7fffb07fdff7  com.apple.TCC (1.0 - 1) <911B534B-4AC7-34E4-935E-E42ECD008CBC> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fffb0889000 -     0x7fffb094fff7  com.apple.TextureIO (2.8 - 2.8) <3D61E533-4156-3B21-B7ED-CB823E680DFC> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fffb0998000 -     0x7fffb09adff3  com.apple.ToneKit (1.0 - 1) <B709293D-0A79-398A-8AA9-50F6340C227C> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fffb09ae000 -     0x7fffb09bcffb  com.apple.ToneLibrary (1.0 - 1) <F2ED5DFC-5F11-3012-BCD7-17753413141F> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fffb09c3000 -     0x7fffb09c4fff  com.apple.TrustEvaluationAgent (2.0 - 28.50.1) <EBE65DD5-1732-3747-8C6C-7BECEBF089A4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fffb09c5000 -     0x7fffb0b55ff3  com.apple.UIFoundation (1.0 - 490.7) <2A3063FE-1790-3510-8A0E-AEC581D42B7E> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fffb1624000 -     0x7fffb16e4fff  com.apple.ViewBridge (283 - 283) <25A635B3-C87C-3D3A-ADF3-539713FA1048> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fffb1b2f000 -     0x7fffb1b35fff  com.apple.XPCService (2.0 - 1) <4B28B225-2105-33F4-9ED0-F04288FF4FB1> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fffb1c06000 -     0x7fffb1c08ffb  com.apple.loginsupport (1.0 - 1) <F3140B97-12C3-35A7-9D3D-43DA2D13C113> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fffb1c34000 -     0x7fffb1c5bff7  com.apple.contacts.vCard (1.0 - 2250.11) <DD615DAF-AF34-3AB4-9CB4-DA0A882D59A5> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fffb1c5d000 -     0x7fffb1c78ff7  libCRFSuite.dylib (34) <F78B7F5F-0B4F-35C6-AA2F-84EE9CB22137> /usr/lib/libCRFSuite.dylib
    0x7fffb1c79000 -     0x7fffb1c84fff  libChineseTokenizer.dylib (21) <0886E908-A825-36AF-B94B-2361FD8BC2A1> /usr/lib/libChineseTokenizer.dylib
    0x7fffb1d16000 -     0x7fffb1d17ff3  libDiagnosticMessagesClient.dylib (102) <84A04D24-0E60-3810-A8C0-90A65E2DF61A> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fffb1d18000 -     0x7fffb1f2bfff  libFosl_dynamic.dylib (16.39) <E22A4243-D148-3C74-BA15-2D906A3D1F9E> /usr/lib/libFosl_dynamic.dylib
    0x7fffb1f47000 -     0x7fffb1f4efff  libMatch.1.dylib (27) <70D4BD2A-9383-37F2-B0D6-9B592D236601> /usr/lib/libMatch.1.dylib
    0x7fffb1f4f000 -     0x7fffb1f4ffff  libOpenScriptingUtil.dylib (172.1) <0F1BA407-97D1-36F6-882D-A355EAAD5E00> /usr/lib/libOpenScriptingUtil.dylib
    0x7fffb1f50000 -     0x7fffb1f54ffb  libScreenReader.dylib (477.40.6) <CBE6420C-EF60-3ACD-A0B6-7CBE936BA3B8> /usr/lib/libScreenReader.dylib
    0x7fffb1f55000 -     0x7fffb1f56ffb  libSystem.B.dylib (1238.60.2) <F3BF9DA9-7FF1-3B43-A33F-3481DF9C8A82> /usr/lib/libSystem.B.dylib
    0x7fffb1fc2000 -     0x7fffb1fedff3  libarchive.2.dylib (41.70.2) <907D1FB1-9A65-33F5-AFC8-0B6E5AE9D83A> /usr/lib/libarchive.2.dylib
    0x7fffb1fee000 -     0x7fffb206afc7  libate.dylib (1.12.13) <D0767875-D02E-3377-84D8-5F174C27BEA9> /usr/lib/libate.dylib
    0x7fffb206e000 -     0x7fffb206eff3  libauto.dylib (187) <34388D0B-C539-3C1B-9408-2BC152162E43> /usr/lib/libauto.dylib
    0x7fffb206f000 -     0x7fffb207fff3  libbsm.0.dylib (34) <20084796-B04D-3B35-A003-EA11459557A9> /usr/lib/libbsm.0.dylib
    0x7fffb2080000 -     0x7fffb208eff7  libbz2.1.0.dylib (38) <ADFA329A-DCE7-356D-8F09-A3168DFC6610> /usr/lib/libbz2.1.0.dylib
    0x7fffb208f000 -     0x7fffb20e5ff7  libc++.1.dylib (307.5) <0B43BB5D-E6EB-3464-8DE9-B41AC8ED9D1C> /usr/lib/libc++.1.dylib
    0x7fffb20e6000 -     0x7fffb210fff7  libc++abi.dylib (307.4) <BC271AD3-831B-362A-9DA7-E8C51F285FE4> /usr/lib/libc++abi.dylib
    0x7fffb2110000 -     0x7fffb2120ffb  libcmph.dylib (6) <2B5D405E-2D0B-3320-ABD6-622934C86ABE> /usr/lib/libcmph.dylib
    0x7fffb2121000 -     0x7fffb2137fcf  libcompression.dylib (39) <F2726F95-F54E-3B21-BCB5-F7151DEFDC2F> /usr/lib/libcompression.dylib
    0x7fffb2138000 -     0x7fffb2138ff7  libcoretls.dylib (121.50.4) <64B1001E-10F6-3542-A3B2-C4B49F51817F> /usr/lib/libcoretls.dylib
    0x7fffb2139000 -     0x7fffb213aff3  libcoretls_cfhelpers.dylib (121.50.4) <1A10303E-5EB0-3C7C-9165-021FCDFD934D> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fffb21f4000 -     0x7fffb22d8ff7  libcrypto.0.9.8.dylib (64.50.7) <B34BC0FA-18ED-37C5-9D46-393803CADEBB> /usr/lib/libcrypto.0.9.8.dylib
    0x7fffb2476000 -     0x7fffb24c9ff7  libcups.2.dylib (450) <9950BFCB-7882-33C9-9ECF-CE66773C5657> /usr/lib/libcups.2.dylib
    0x7fffb251d000 -     0x7fffb2524ff3  libdscsym.dylib (148.3) <2A78774F-6679-3B72-9903-B295B9825872> /usr/lib/libdscsym.dylib
    0x7fffb2546000 -     0x7fffb2546fff  libenergytrace.dylib (15) <A1B040A2-7977-3097-9ADF-34FF181EB970> /usr/lib/libenergytrace.dylib
    0x7fffb2556000 -     0x7fffb255bff7  libheimdal-asn1.dylib (498.50.9) <92C953A2-5E1D-39E9-875E-92F29A12D6FB> /usr/lib/libheimdal-asn1.dylib
    0x7fffb255c000 -     0x7fffb264eff7  libiconv.2.dylib (50) <42125B35-81D7-3FC4-9475-A26DBE10884D> /usr/lib/libiconv.2.dylib
    0x7fffb264f000 -     0x7fffb2874ffb  libicucore.A.dylib (57167.0.1) <E720801C-2D92-3108-B853-469551EDF21F> /usr/lib/libicucore.A.dylib
    0x7fffb287a000 -     0x7fffb287bfff  liblangid.dylib (126) <2085E7A7-9A34-3735-87F4-F174EF8EABF0> /usr/lib/liblangid.dylib
    0x7fffb287c000 -     0x7fffb2895ffb  liblzma.5.dylib (10) <44BD0279-99DD-36B5-8A6E-C11432E2098D> /usr/lib/liblzma.5.dylib
    0x7fffb2896000 -     0x7fffb28acff7  libmarisa.dylib (5) <9030D214-5D0F-30CB-AC03-902C63909362> /usr/lib/libmarisa.dylib
    0x7fffb28ad000 -     0x7fffb2b55ff7  libmecabra.dylib (744.8) <D429FCC9-42A4-38B3-8784-44024BC859EF> /usr/lib/libmecabra.dylib
    0x7fffb2b88000 -     0x7fffb2c02ff3  libnetwork.dylib (856.60.1) <191E99F5-4723-3180-8013-02AF2F9AE4B8> /usr/lib/libnetwork.dylib
    0x7fffb2c03000 -     0x7fffb2fd5047  libobjc.A.dylib (709.1) <70614861-0340-32E2-85ED-FE65759CDFFA> /usr/lib/libobjc.A.dylib
    0x7fffb2fd8000 -     0x7fffb2fdcfff  libpam.2.dylib (21.30.1) <71EB0D88-DE84-3C8D-A2C5-58AA282BC5BC> /usr/lib/libpam.2.dylib
    0x7fffb2fdd000 -     0x7fffb300efff  libpcap.A.dylib (67.60.2) <B2D36AD8-D5C8-3875-AC81-4787A15E44C2> /usr/lib/libpcap.A.dylib
    0x7fffb302b000 -     0x7fffb3047ffb  libresolv.9.dylib (64) <A244AE4C-00B0-396C-98FF-97FE4DB3DA30> /usr/lib/libresolv.9.dylib
    0x7fffb3048000 -     0x7fffb3081fff  libsandbox.1.dylib (592.70.2) <EBB68C6B-797B-3446-9DF7-55C7F7858ADD> /usr/lib/libsandbox.1.dylib
    0x7fffb3082000 -     0x7fffb3094ffb  libsasl2.2.dylib (209) <32107C59-22C6-3049-B86E-9C2F85FF549B> /usr/lib/libsasl2.2.dylib
    0x7fffb3095000 -     0x7fffb3096ff3  libspindump.dylib (231.3) <9E50A114-FC58-3E22-9027-5002B60005BE> /usr/lib/libspindump.dylib
    0x7fffb3097000 -     0x7fffb31e5ff7  libsqlite3.dylib (254.8) <1ECF7DF7-7A07-3B4B-A63B-F4EFF6BC7ACF> /usr/lib/libsqlite3.dylib
    0x7fffb32da000 -     0x7fffb32e7fff  libxar.1.dylib (357) <69547C64-E811-326F-BBED-490C6361BDCB> /usr/lib/libxar.1.dylib
    0x7fffb32e8000 -     0x7fffb33d7ff3  libxml2.2.dylib (30.20) <40B1027A-43B6-38EC-9EB9-9E7871E98CBC> /usr/lib/libxml2.2.dylib
    0x7fffb33d8000 -     0x7fffb3401fff  libxslt.1.dylib (15.9.1) <A1EFC225-2115-3710-A2FD-B11FDE15B01F> /usr/lib/libxslt.1.dylib
    0x7fffb3402000 -     0x7fffb3413ff3  libz.1.dylib (67) <46E3FFA2-4328-327A-8D34-A03E20BFFB8E> /usr/lib/libz.1.dylib
    0x7fffb3422000 -     0x7fffb3426ff7  libcache.dylib (79) <093A4DAB-8385-3D47-A350-E20CB7CCF7BF> /usr/lib/system/libcache.dylib
    0x7fffb3427000 -     0x7fffb3431fff  libcommonCrypto.dylib (60092.50.5) <8A64D1B0-C70E-385C-92F0-E669079FDA90> /usr/lib/system/libcommonCrypto.dylib
    0x7fffb3432000 -     0x7fffb3439fff  libcompiler_rt.dylib (62) <55D47421-772A-32AB-B529-1A46C2F43B4D> /usr/lib/system/libcompiler_rt.dylib
    0x7fffb343a000 -     0x7fffb3442fff  libcopyfile.dylib (138) <819BEA3C-DF11-3E3D-A1A1-5A51C5BF1961> /usr/lib/system/libcopyfile.dylib
    0x7fffb3443000 -     0x7fffb34c6fdf  libcorecrypto.dylib (442.50.19) <65D7165E-2E71-335D-A2D6-33F78E2DF0C1> /usr/lib/system/libcorecrypto.dylib
    0x7fffb34c7000 -     0x7fffb34f8fff  libdispatch.dylib (703.50.37) <6582BAD6-ED27-3B30-B620-90B1C5A4AE3C> /usr/lib/system/libdispatch.dylib
    0x7fffb34f9000 -     0x7fffb34feffb  libdyld.dylib (433.5) <00117F79-5DB8-37D9-9AAF-BEE7B1601E75> /usr/lib/system/libdyld.dylib
    0x7fffb34ff000 -     0x7fffb34ffffb  libkeymgr.dylib (28) <7AA011A9-DC21-3488-BF73-3B5B14D1FDD6> /usr/lib/system/libkeymgr.dylib
    0x7fffb3500000 -     0x7fffb350cfff  libkxld.dylib (3789.73.11) <0FB7A614-BB9B-3C20-8383-C8F7A428DB26> /usr/lib/system/libkxld.dylib
    0x7fffb350d000 -     0x7fffb350dfff  liblaunch.dylib (972.70.1) <B856ABD2-896E-3DE0-B2C8-146A6AF8E2A7> /usr/lib/system/liblaunch.dylib
    0x7fffb350e000 -     0x7fffb3513ff3  libmacho.dylib (898) <17D5D855-F6C3-3B04-B680-E9BF02EF8AED> /usr/lib/system/libmacho.dylib
    0x7fffb3514000 -     0x7fffb3516ff3  libquarantine.dylib (85.50.1) <12448CC2-378E-35F3-BE33-9DC395A5B970> /usr/lib/system/libquarantine.dylib
    0x7fffb3517000 -     0x7fffb3518ffb  libremovefile.dylib (45) <38D4CB9C-10CD-30D3-8B7B-A515EC75FE85> /usr/lib/system/libremovefile.dylib
    0x7fffb3519000 -     0x7fffb3531ff7  libsystem_asl.dylib (349.50.5) <096E4228-3B7C-30A6-8B13-EC909A64499A> /usr/lib/system/libsystem_asl.dylib
    0x7fffb3532000 -     0x7fffb3532ff7  libsystem_blocks.dylib (67) <10DC5404-73AB-35B3-A277-A8AFECB476EB> /usr/lib/system/libsystem_blocks.dylib
    0x7fffb3533000 -     0x7fffb35c0fef  libsystem_c.dylib (1158.50.2) <E5AE5244-7D0C-36AC-8BB6-C7AE7EA52A4B> /usr/lib/system/libsystem_c.dylib
    0x7fffb35c1000 -     0x7fffb35c4ffb  libsystem_configuration.dylib (888.60.2) <BECC01A2-CA8D-31E6-BCDF-D452965FA976> /usr/lib/system/libsystem_configuration.dylib
    0x7fffb35c5000 -     0x7fffb35c8fff  libsystem_coreservices.dylib (41.4) <7D26DE79-B424-3450-85E1-F7FAB32714AB> /usr/lib/system/libsystem_coreservices.dylib
    0x7fffb35c9000 -     0x7fffb35e1fff  libsystem_coretls.dylib (121.50.4) <EC6FCF07-DCFB-3A03-9CC9-6DD3709974C6> /usr/lib/system/libsystem_coretls.dylib
    0x7fffb35e2000 -     0x7fffb35e8fff  libsystem_dnssd.dylib (765.50.9) <CC960215-0B1B-3822-A13A-3DDE96FA796F> /usr/lib/system/libsystem_dnssd.dylib
    0x7fffb35e9000 -     0x7fffb3612ff7  libsystem_info.dylib (503.50.4) <611DB84C-BF70-3F92-8702-B9F28A900920> /usr/lib/system/libsystem_info.dylib
    0x7fffb3613000 -     0x7fffb3635ff7  libsystem_kernel.dylib (3789.73.11) <77F5E77C-FE5F-3C5B-8074-D1FEEC85BD91> /usr/lib/system/libsystem_kernel.dylib
    0x7fffb3636000 -     0x7fffb367dfe7  libsystem_m.dylib (3121.6) <86D499B5-BBDC-3D3B-8A4E-97AE8E6672A4> /usr/lib/system/libsystem_m.dylib
    0x7fffb367e000 -     0x7fffb369cff7  libsystem_malloc.dylib (116.50.8) <A3D15F17-99A6-3367-8C7E-4280E8619C95> /usr/lib/system/libsystem_malloc.dylib
    0x7fffb369d000 -     0x7fffb36f6ffb  libsystem_network.dylib (856.60.1) <369D0221-56CA-3C3E-9EDE-94B41CAE77B7> /usr/lib/system/libsystem_network.dylib
    0x7fffb36f7000 -     0x7fffb3700ff3  libsystem_networkextension.dylib (563.60.2) <B021F2B3-8A75-3633-ABB0-FC012B8E9B0C> /usr/lib/system/libsystem_networkextension.dylib
    0x7fffb3701000 -     0x7fffb370aff3  libsystem_notify.dylib (165.20.1) <B8160190-A069-3B3A-BDF6-2AA408221FAE> /usr/lib/system/libsystem_notify.dylib
    0x7fffb370b000 -     0x7fffb3713fe7  libsystem_platform.dylib (126.50.8) <897462FD-B318-321B-A554-E61982630F7E> /usr/lib/system/libsystem_platform.dylib
    0x7fffb3714000 -     0x7fffb371eff7  libsystem_pthread.dylib (218.60.3) <B8FB5E20-3295-39E2-B5EB-B464D1D4B104> /usr/lib/system/libsystem_pthread.dylib
    0x7fffb371f000 -     0x7fffb3722ff7  libsystem_sandbox.dylib (592.70.2) <19320A42-2E3B-361B-BBDA-2F5F2E87B100> /usr/lib/system/libsystem_sandbox.dylib
    0x7fffb3723000 -     0x7fffb3724ff3  libsystem_secinit.dylib (24.50.4) <F78B847B-3565-3E4B-98A6-F7AD40392E2D> /usr/lib/system/libsystem_secinit.dylib
    0x7fffb3725000 -     0x7fffb372cffb  libsystem_symptoms.dylib (532.50.47) <3390E07C-C1CE-348F-ADBD-2C5440B45EAA> /usr/lib/system/libsystem_symptoms.dylib
    0x7fffb372d000 -     0x7fffb3740ff7  libsystem_trace.dylib (518.70.1) <AC63A7FE-50D9-3A30-96E6-F6B7FF16E465> /usr/lib/system/libsystem_trace.dylib
    0x7fffb3741000 -     0x7fffb3746ffb  libunwind.dylib (35.3) <3D50D8A8-C460-334D-A519-2DA841102C6B> /usr/lib/system/libunwind.dylib
    0x7fffb3747000 -     0x7fffb3770ff7  libxpc.dylib (972.70.1) <BF896DF0-D8E9-31A8-A4B3-01120BFEEE52> /usr/lib/system/libxpc.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 3
    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: 250140
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=354.0M resident=0K(0%) swapped_out_or_unallocated=354.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                 256K        3 
Activity Tracing                     256K        2 
CG backing stores                   9300K        5 
CG image                             144K       19 
CoreAnimation                       7420K        4 
CoreUI image data                    292K        4 
CoreUI image file                    332K        5 
Foundation                             4K        2 
JS JIT generated code                  8K        3 
JS JIT generated code (reserved)     1.0G        2         reserved VM address space (unallocated)
Kernel Alloc Once                      8K        2 
MALLOC                             142.3M       37 
MALLOC guard page                     48K       10 
Memory Tag 242                        12K        2 
SQLite page cache                     64K        2 
STACK GUARD                         56.1M       16 
Stack                               15.1M       16 
VM_ALLOCATE                          124K       22 
WebKit Malloc                       6188K       16 
__DATA                              34.3M      319 
__GLSLBUILTINS                      2588K        2 
__IMAGE                              528K        2 
__LINKEDIT                         123.6M       35 
__TEXT                             230.5M      310 
__UNICODE                            556K        2 
mapped file                         54.0M       14 
shared memory                       16.4M       22 
===========                       =======  ======= 
TOTAL                                1.7G      851 
TOTAL, minus reserved VM space     699.8M      851 
SkyLeach commented 6 years ago

Is was being caused by a change from a sourced file that called external options in interactive shells. It has an exit rather than return condition:

case $- in
  *i*)
      # homebrew fortune :-) should already be in PATH
      if [ -f "/usr/local/bin/fortune" ]; then
          fortune -ao
      fi;;
  *) # we aren't interactive, so nothing below here matters
      exit 0
esac

I dunno, it was an old script plugin from an old environment from years ago and I used a script to add back a bunch of old stuff all at once. I didn't even think about the fact that there could have been something like this in there (which, incidentally, broke xquartz which broke VimR).

here is what finally clued me in (from the system.log):

Apr  8 17:22:49 --- last message repeated 10 times ---
Apr  8 17:22:49 work-mbp-M-W0XX org.macosforge.xquartz.X11.stub[95413]: Xquartz: bootstrap_look_up(): Unknown service name
Apr  8 17:22:50 work-mbp-M-W0XX org.macosforge.xquartz.startx[95249]: waiting for X server to begin accepting connections
Apr  8 17:22:50 work-mbp-M-W0XX org.macosforge.xquartz.startx[95249]: /opt/X11/bin/xinit: giving up
Apr  8 17:22:50 work-mbp-M-W0XX org.macosforge.xquartz.startx[95249]: /opt/X11/bin/xinit: unable to connect to X server: Operation timed out