crazyscot / casparcg-client

Clients and templates for the CasparCG broadcast graphics engine
MIT License
13 stars 5 forks source link

Python metaclass inheritance issue #1

Closed jazemking closed 4 years ago

jazemking commented 4 years ago

Hi,

First of all, great that you have created this with pyhton. Nice code! But.., I could not run the program. We have this issue when running the code:

% python lt_banner.py Traceback (most recent call last): File "lt_banner.py", line 12, in import amcp File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/amcp.py", line 14, in import globalwidget File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/globalwidget.py", line 24, in class GlobalWidget(wx.StaticBox, Widget): TypeError: Error when calling the metaclass bases metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases jazemk@Jazems-MBP casparcg-client-master % python basketball.py Traceback (most recent call last): File "basketball.py", line 3, in import scorebug File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/scorebug.py", line 12, in import amcp File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/amcp.py", line 14, in import globalwidget File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/globalwidget.py", line 24, in class GlobalWidget(wx.StaticBox, Widget): TypeError: Error when calling the metaclass bases metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases

jazemking commented 4 years ago

Can you look at it?

crazyscot commented 4 years ago

Hi, please can you tell me what version of OSX you are running and the output of python --version so I can attempt to reproduce this issue. (I don't get this on my desktop Linux box.)

jazemking commented 4 years ago

Hi,

Running Mac version 10.15.5 (19F101). Python version 2.7

Could you fix the code to accept version python 3?

I can buy you more than a coffee. :)

Thanks.

Kind regards Jazem

On 10 Jul 2020, at 07:51, Ross Younger notifications@github.com wrote:

Hi, please can you tell me what version of OSX you are running and the output of python --version so I can attempt to reproduce this issue. (I don't get this on my desktop Linux box.)

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/crazyscot/casparcg-client/issues/1#issuecomment-656497111, or unsubscribe https://github.com/notifications/unsubscribe-auth/AP6KFCYGKVCA6UJHFYJ3HZDR22T7XANCNFSM4OWBRZFQ.

crazyscot commented 4 years ago

Thanks. I'm flying blind as this issue is not proving reproducable on my Linux box, but I've made some changes which I think ought to fix the issue (unless there is something seriously weird about the Python and wxGTK builds on OSX). Can you have a try with the latest version in trunk (or release 0.2.3) please?

Python3 support is a separate question. I've opened a new issue (#2), I'll post there with progress - you may care to subscribe to it.

crazyscot commented 4 years ago

@jazemking I've made some preliminary changes to support python3 but won't be able to properly test it until I either get access to my friend's OB truck, or set up a server myself (which is non-trivial as it involves some PC reconfiguration on my part). If you're keen, please try it and post in #2 to let me know how you get on. Alternatively, if you're serious about buying me more than a coffee, drop me a line on ross at mediary dot nz as that will encourage me to put in the time :)

jazemking commented 4 years ago

Hi,

Same issue!

Python3 gives this error when running :

jazemk@Jazems-MacBook-Pro casparcg-client-master % python3 lowerthird.py Traceback (most recent call last): File "lowerthird.py", line 12, in import amcp File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/amcp.py", line 12, in import ConfigParser ModuleNotFoundError: No module named 'ConfigParser' jazemk@Jazems-MacBook-Pro casparcg-client-master % python lowerthird.py /Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py:43: wxPyDeprecationWarning: Call to deprecated item EmptyIcon. Use :class:Icon instead icon = wx.EmptyIcon() Traceback (most recent call last): File "lowerthird.py", line 109, in wxclient.run_app([LowerThird]) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 162, in run_app frame = MainWindow(None, widgets=widgets) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 47, in init self.panel = MainPanel(self, widgets) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 85, in init self.build() File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 115, in build instance = w(self, self.parent.config) File "lowerthird.py", line 67, in init buttonAlabel='Name text colour', buttonBlabel='Name background colour') File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/colour.py", line 53, in init self.fg = ColourPicker(self, buttonAlabel, initfg, font, buttonStyle) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/colour.py", line 21, in init self.current.SetFromString(initial) AttributeError: 'Colour' object has no attribute 'SetFromString' jazemk@Jazems-MacBook-Pro casparcg-client-master %

jazemk@Jazems-MacBook-Pro casparcg-client-master % python3 basketball.py Traceback (most recent call last): File "basketball.py", line 3, in import scorebug File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/scorebug.py", line 12, in import amcp File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/amcp.py", line 12, in import ConfigParser ModuleNotFoundError: No module named 'ConfigParser' jazemk@Jazems-MacBook-Pro casparcg-client-master %

python 2.7 gives this error :

jazemk@Jazems-MacBook-Pro casparcg-client-master % python basketball.py /Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py:43: wxPyDeprecationWarning: Call to deprecated item EmptyIcon. Use :class:Icon instead icon = wx.EmptyIcon() /Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/configurable.py:105: wxPyDeprecationWarning: Using deprecated class. Use Validator instead. wx.PyValidator.init(self) Traceback (most recent call last): File "basketball.py", line 45, in wxclient.run_app([BasketballScore, timer.Timer, scoreextra.ScoreExtra, lowerthird.LowerThird, lt_banner.LowerThirdBanner]) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 162, in run_app frame = MainWindow(None, widgets=widgets) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 47, in init self.panel = MainPanel(self, widgets) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 85, in init self.build() File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 115, in build instance = w(self, self.parent.config) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/scorebug.py", line 110, in init buttonAlabel='Text colour', buttonBlabel='Background colour') File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/colour.py", line 53, in init self.fg = ColourPicker(self, buttonAlabel, initfg, font, buttonStyle) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/colour.py", line 21, in init self.current.SetFromString(initial) AttributeError: 'Colour' object has no attribute 'SetFromString' jazemk@Jazems-MacBook-Pro casparcg-client-master %

jazemk@Jazems-MacBook-Pro casparcg-client-master % python lowerthird.py /Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py:43: wxPyDeprecationWarning: Call to deprecated item EmptyIcon. Use :class:Icon instead icon = wx.EmptyIcon() Traceback (most recent call last): File "lowerthird.py", line 109, in wxclient.run_app([LowerThird]) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 162, in run_app frame = MainWindow(None, widgets=widgets) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 47, in init self.panel = MainPanel(self, widgets) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 85, in init self.build() File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/wxclient.py", line 115, in build instance = w(self, self.parent.config) File "lowerthird.py", line 67, in init buttonAlabel='Name text colour', buttonBlabel='Name background colour') File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/colour.py", line 53, in init self.fg = ColourPicker(self, buttonAlabel, initfg, font, buttonStyle) File "/Users/jazemk/Documents/work/Broadcast graphics/casparcg client in python/casparcg-client-master/colour.py", line 21, in init self.current.SetFromString(initial) AttributeError: 'Colour' object has no attribute 'SetFromString' jazemk@Jazems-MacBook-Pro casparcg-client-master %

crazyscot commented 4 years ago

Sorry, I wasn't clear. The python3+wxpython4 work is in a separate branch named python3, which I have not yet merged to trunk. The errors you are seeing from python3 are because you are running the code in trunk. Similarly, the errors you are seeing from python2 are because you have installed wxpython 4, but the code in trunk expects wxpython 3.

jazemking commented 4 years ago

Hi,

I can run the code now from my laptop with the new branch. I have not test against the server yet, I will test later today and give you my feedback how it will work against the server! Great work @crazyscot .

jazemking commented 4 years ago

Everything is up and running!

Great work! We did test against Casparcg 2.3.0 server. And it was running fine.

Just one issue, when we try to change FG or BG color of lowerthird or any other file. The system crash, but next time we run the program, the choosen color is availabe og its running fine.

This is the crash log from OS:

Process: Python [4791] Path: /Library/Frameworks/Python.framework/Versions/3.8/Resources/Python.app/Contents/MacOS/Python Identifier: org.python.python Version: 3.8.4rc1 (3.8.4rc1) Code Type: X86-64 (Native) Parent Process: zsh [1987] Responsible: Terminal [1985] User ID: 501

Date/Time: 2020-07-13 22:50:38.394 +0200 OS Version: Mac OS X 10.15.5 (19F101) Report Version: 12 Bridge OS Version: 4.5 (17P5300) Anonymous UUID: 9C86CDDF-FFB8-9DA4-7FB6-B84B2DD4DFB5

Sleep/Wake UUID: 927B75C2-0DAD-413D-93F9-0A797DFC6D3B

Time Awake Since Boot: 5100 seconds Time Since Wake: 630 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 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY

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

VM Regions Near 0: --> __TEXT 000000010c49d000-000000010c49e000 [ 4K] r-x/rwx SM=COW /Library/Frameworks/Python.framework/Versions/3.8/Resources/Python.app/Contents/MacOS/Python

Application Specific Information: Performing @selector(controlAction:) from sender wxNSButton 0x7ffb614f0550

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libwx_baseu-3.1.4.0.0.dylib 0x000000010e0a7607 typeinfo name for wxObject + 983 1 org.python.python 0x000000010c6b4698 cfunction_call_varargs + 120 2 org.python.python 0x000000010c6b4105 _PyObject_MakeTpCall + 373 3 org.python.python 0x000000010c782a25 call_function + 533 4 org.python.python 0x000000010c77f82e _PyEval_EvalFrameDefault + 25678 5 org.python.python 0x000000010c6b4a50 function_code_fastcall + 128 6 org.python.python 0x000000010c7829cc call_function + 444 7 org.python.python 0x000000010c77f80a _PyEval_EvalFrameDefault + 25642 8 org.python.python 0x000000010c6b4a50 function_code_fastcall + 128 9 org.python.python 0x000000010c7829cc call_function + 444 10 org.python.python 0x000000010c77f80a _PyEval_EvalFrameDefault + 25642 11 org.python.python 0x000000010c6b4a50 function_code_fastcall + 128 12 org.python.python 0x000000010c7829cc call_function + 444 13 org.python.python 0x000000010c77f80a _PyEval_EvalFrameDefault + 25642 14 org.python.python 0x000000010c6b4a50 function_code_fastcall + 128 15 org.python.python 0x000000010c6b711a method_vectorcall + 170 16 org.python.python 0x000000010c7829cc call_function + 444 17 org.python.python 0x000000010c77f82e _PyEval_EvalFrameDefault + 25678 18 org.python.python 0x000000010c783814 _PyEval_EvalCodeWithName + 2804 19 org.python.python 0x000000010c6b4bee _PyFunction_Vectorcall + 270 20 org.python.python 0x000000010c6b71fc method_vectorcall + 396 21 org.python.python 0x000000010c6b442d PyVectorcall_Call + 109 22 _core.cpython-38-darwin.so 0x000000010cb20231 wxPyCallback::EventThunker(wxEvent&) + 289 23 libwx_baseu-3.1.4.0.0.dylib 0x000000010e05313d wxEvtHandler::SearchDynamicEventTable(wxEvent&) + 317 24 libwx_baseu-3.1.4.0.0.dylib 0x000000010e052e4b wxEvtHandler::ProcessEventLocally(wxEvent&) + 59 25 libwx_baseu-3.1.4.0.0.dylib 0x000000010e052d04 wxEvtHandler::ProcessEvent(wxEvent&) + 100 26 _core.cpython-38-darwin.so 0x000000010ca69f3b sipwxButton::ProcessEvent(wxEvent&) + 107 27 libwx_baseu-3.1.4.0.0.dylib 0x000000010e05343c wxEvtHandler::SafelyProcessEvent(wxEvent&) + 12 28 libwx_osx_cocoau_core-3.1.4.0.0.dylib 0x000000010d7d0d22 wxButton::OSXHandleClicked(double) + 162 29 libwx_osx_cocoau_core-3.1.4.0.0.dylib 0x000000010d88b4ba wxWidgetCocoaImpl::controlAction(NSView, void, void) + 42 30 com.apple.AppKit 0x00007fff33c8ffc7 -[NSApplication(NSResponder) sendAction:to:from:] + 299 31 com.apple.AppKit 0x00007fff33c8fe62 -[NSControl sendAction:to:] + 86 32 com.apple.AppKit 0x00007fff33c8fd94 __26-[NSCell _sendActionFrom:]_block_invoke + 136 33 com.apple.AppKit 0x00007fff33c8fc96 -[NSCell _sendActionFrom:] + 171 34 com.apple.AppKit 0x00007fff33c8fbdd -[NSButtonCell _sendActionFrom:] + 96 35 com.apple.AppKit 0x00007fff33c8bebb NSControlTrackMouse + 1745 36 com.apple.AppKit 0x00007fff33c8b7c2 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 130 37 com.apple.AppKit 0x00007fff33c8b681 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 691 38 com.apple.AppKit 0x00007fff33c8a9fd -[NSControl mouseDown:] + 748 39 libwx_osx_cocoau_core-3.1.4.0.0.dylib 0x000000010d888975 wxWidgetCocoaImpl::mouseEvent(NSEvent, NSView, void) + 261 40 com.apple.AppKit 0x00007fff33c88e10 -[NSWindow(NSEventRouting) _handleMouseDownEvent:isDelayedEvent:] + 4914 41 com.apple.AppKit 0x00007fff33bf3611 -[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:] + 2612 42 com.apple.AppKit 0x00007fff33bf29b9 -[NSWindow(NSEventRouting) sendEvent:] + 349 43 libwx_osx_cocoau_core-3.1.4.0.0.dylib 0x000000010d872c6b -[wxNSWindow sendEvent:] + 123 44 com.apple.AppKit 0x00007fff33bf0d44 -[NSApplication(NSEvent) sendEvent:] + 352 45 libwx_osx_cocoau_core-3.1.4.0.0.dylib 0x000000010d7aafd2 -[wxNSApplication sendEvent:] + 98 46 com.apple.AppKit 0x00007fff33a3ddaf -[NSApplication run] + 707 47 libwx_osx_cocoau_core-3.1.4.0.0.dylib 0x000000010d867eef wxGUIEventLoop::OSXDoRun() + 207 48 libwx_baseu-3.1.4.0.0.dylib 0x000000010e026751 wxCFEventLoop::DoRun() + 49 49 libwx_baseu-3.1.4.0.0.dylib 0x000000010df6af4e wxEventLoopBase::Run() + 158 50 libwx_baseu-3.1.4.0.0.dylib 0x000000010df37d43 wxAppConsoleBase::MainLoop() + 99 51 _core.cpython-38-darwin.so 0x000000010ccdd601 wxPyApp::MainLoop() + 81 52 _core.cpython-38-darwin.so 0x000000010ccdfec3 meth_wxPyApp_MainLoop(_object, _object) + 147 53 org.python.python 0x000000010c6b4742 cfunction_call_varargs + 290 54 org.python.python 0x000000010c6b4105 _PyObject_MakeTpCall + 373 55 org.python.python 0x000000010c782a25 call_function + 533 56 org.python.python 0x000000010c77f82e _PyEval_EvalFrameDefault + 25678 57 org.python.python 0x000000010c6b4a50 function_code_fastcall + 128 58 org.python.python 0x000000010c7829cc call_function + 444 59 org.python.python 0x000000010c77f80a _PyEval_EvalFrameDefault + 25642 60 org.python.python 0x000000010c6b4a50 function_code_fastcall + 128 61 org.python.python 0x000000010c7829cc call_function + 444 62 org.python.python 0x000000010c77f8c5 _PyEval_EvalFrameDefault + 25829 63 org.python.python 0x000000010c783814 _PyEval_EvalCodeWithName + 2804 64 org.python.python 0x000000010c779304 PyEval_EvalCode + 100 65 org.python.python 0x000000010c7c8e70 PyRun_FileExFlags + 336 66 org.python.python 0x000000010c7c8560 PyRun_SimpleFileExFlags + 864 67 org.python.python 0x000000010c7e5a73 Py_RunMain + 2179 68 org.python.python 0x000000010c7e5dcf pymain_main + 223 69 org.python.python 0x000000010c7e5fcb Py_BytesMain + 43 70 libdyld.dylib 0x00007fff7063acc9 start + 1

Thread 1:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x00007fff7077bdfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff7077c170 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff367d8f85 CFRunLoopServiceMachPort + 247 3 com.apple.CoreFoundation 0x00007fff367d7a52 CFRunLoopRun + 1319 4 com.apple.CoreFoundation 0x00007fff367d6ece CFRunLoopRunSpecific + 462 5 com.apple.AppKit 0x00007fff33bef144 _NSEventThread + 132 6 libsystem_pthread.dylib 0x00007fff7083f109 _pthread_start + 148 7 libsystem_pthread.dylib 0x00007fff7083ab8b thread_start + 15

Thread 2: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 3: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 4: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 5: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 6: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 7: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 8: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 9: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 10: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 11: 0 libsystem_pthread.dylib 0x00007fff7083ab68 start_wqthread + 0

Thread 0 crashed with X86 Thread State (64-bit): rax: 0x000000010e0d1868 rbx: 0x00007ffb61408e70 rcx: 0x0000000000000000 rdx: 0x0000000000000004 rdi: 0x00007ffb0264b430 rsi: 0x00007ffb53811fd0 rbp: 0x00007ffee375fa80 rsp: 0x00007ffee375fa18 r8: 0x0000000000000000 r9: 0x0000000100000000 r10: 0x0000000000000000 r11: 0x00007ffee375f8c8 r12: 0x000000010cfbeab0 r13: 0x00007ffb58687ca0 r14: 0x00007ffb0264b430 r15: 0x000000010d059888 rip: 0x000000010e0a7607 rfl: 0x0000000000010282 cr2: 0x0000000000000000

Logical CPU: 2 Error Code: 0x00000006 (no mapping for user data write) Trap Number: 14

Binary Images: 0x10c49d000 - 0x10c49dfff +org.python.python (3.8.4rc1 - 3.8.4rc1) /Library/Frameworks/Python.framework/Versions/3.8/Resources/Python.app/Contents/MacOS/Python 0x10c4d1000 - 0x10c4defff +_socket.cpython-38-darwin.so (0) <4F945895-144A-3348-B6E7-5ADA45A70972> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/lib-dynload/_socket.cpython-38-darwin.so 0x10c4eb000 - 0x10c4edff7 +_heapq.cpython-38-darwin.so (0) <73CF8C4F-BFF8-356F-B6A1-6956F185B0A2> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/lib-dynload/_heapq.cpython-38-darwin.so 0x10c4f5000 - 0x10c4fdfff +math.cpython-38-darwin.so (0) <2F74296F-5164-30A1-BF98-EEDEA8E43339> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/lib-dynload/math.cpython-38-darwin.so 0x10c509000 - 0x10c50cff7 +select.cpython-38-darwin.so (0) /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/lib-dynload/select.cpython-38-darwin.so 0x10c516000 - 0x10c51bfff +_json.cpython-38-darwin.so (0) <99BF041F-C517-377C-8D23-6470A1E43B1A> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/lib-dynload/_json.cpython-38-darwin.so 0x10c525000 - 0x10c54efff +libwx_baseu_net-3.1.4.0.0.dylib (0) <236862B5-5E60-3750-BBAA-63F2FF6B2458> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/wx/libwx_baseu_net-3.1.4.0.0.dylib 0x10c566000 - 0x10c575ff7 +_datetime.cpython-38-darwin.so (0) <35538131-518D-3919-9DAE-E896BB614148> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/lib-dynload/_datetime.cpython-38-darwin.so 0x10c58e000 - 0x10c61feff dyld (750.5) /usr/lib/dyld 0x10c693000 - 0x10c8c9ff7 +org.python.python (3.8.4rc1, [c] 2001-2019 Python Software Foundation. - 3.8.4rc1) <0CF3D77D-15D3-3525-8E3B-FBE8B3797747> /Library/Frameworks/Python.framework/Versions/3.8/Python 0x10ca0b000 - 0x10cf72fff +_core.cpython-38-darwin.so (0) <672792FA-0CD3-390D-9832-5DA43BA3B801> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/wx/_core.cpython-38-darwin.so 0x10d798000 - 0x10dc7cfff +libwx_osx_cocoau_core-3.1.4.0.0.dylib (0) <1DAC64B3-54E7-389D-8A77-EA77FDD8EFD3> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/wx/libwx_osx_cocoau_core-3.1.4.0.0.dylib 0x10df2f000 - 0x10e0cbfff +libwx_baseu-3.1.4.0.0.dylib (0) <23814343-3D2E-3A5F-917A-F80453274B24> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/wx/libwx_baseu-3.1.4.0.0.dylib 0x10e160000 - 0x10e179fff +siplib.cpython-38-darwin.so (0) <4E1AAA84-124F-3F7D-8662-BDA6840638E1> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/wx/siplib.cpython-38-darwin.so 0x10e18b000 - 0x10e25bfff +_adv.cpython-38-darwin.so (0) <7B44728E-79EC-31A8-B56C-5FED61B5B642> /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/wx/_adv.cpython-38-darwin.so 0x1132f0000 - 0x1132f3047 libobjc-trampolines.dylib (787.1) <8212B354-A106-3806-A022-A60F2B2FA5C9> /usr/lib/libobjc-trampolines.dylib 0x1166a0000 - 0x1167a4ff7 +unicodedata.cpython-38-darwin.so (0) /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/lib-dynload/unicodedata.cpython-38-darwin.so 0x7fff29f08000 - 0x7fff2a17dff5 com.apple.AMDRadeonX6000MTLDriver (3.9.15 - 3.0.9) <7B8AB1A2-CEC5-3787-9F3E-579CB73ABC64> /System/Library/Extensions/AMDRadeonX6000MTLDriver.bundle/Contents/MacOS/AMDRadeonX6000MTLDriver 0x7fff2f159000 - 0x7fff2f558ff1 com.apple.driver.AppleIntelKBLGraphicsMTLDriver (14.6.18 - 14.0.6) <568AB53D-A275-3FAC-932C-A32C3E277CA3> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver 0x7fff323e0000 - 0x7fff323e0fff com.apple.Accelerate (1.11 - Accelerate 1.11) <56DFF715-6A4E-3231-BDCC-A348BCB05047> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff323e1000 - 0x7fff323f7fef libCGInterfaces.dylib (524.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff323f8000 - 0x7fff32a4efff com.apple.vImage (8.1 - 524.2.1) <17C93AB9-1625-3FDB-9851-C5E77BBE3428> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff32a4f000 - 0x7fff32cb6ff7 libBLAS.dylib (1303.60.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff32cb7000 - 0x7fff3318afef libBNNS.dylib (144.100.2) <8D653678-1F9B-3670-AAE2-46DFB8D37643> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff3318b000 - 0x7fff33526fff libLAPACK.dylib (1303.60.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff33527000 - 0x7fff3353cfec libLinearAlgebra.dylib (1303.60.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff3353d000 - 0x7fff33542ff3 libQuadrature.dylib (7) <3112C977-8306-3190-8313-01A952B7F3CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff33543000 - 0x7fff335b3fff libSparse.dylib (103) <40510BF9-99A7-3155-A81D-6DE5A0C73EDC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff335b4000 - 0x7fff335c6fef libSparseBLAS.dylib (1303.60.1) <3C1066AB-20D5-38D2-B1F2-70A03DE76D0B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff335c7000 - 0x7fff3379efd7 libvDSP.dylib (735.121.1) <74702E2E-ED05-3765-B18C-64BEFF62B517> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff3379f000 - 0x7fff33861fef libvMisc.dylib (735.121.1) <137558BF-503D-3A6E-96DC-A181E3FB31FF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff33862000 - 0x7fff33862fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff33863000 - 0x7fff338c2ff0 com.apple.Accounts (113 - 113) <0510C893-F1F2-38B2-B3AA-A30DB2F5B688> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts 0x7fff33a0c000 - 0x7fff347ccffd com.apple.AppKit (6.9 - 1894.50.103) <61269B8C-C432-335F-8894-B95C235A41A5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff3481c000 - 0x7fff3481cfff com.apple.ApplicationServices (48 - 50) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff3481d000 - 0x7fff34888fff com.apple.ApplicationServices.ATS (377 - 493.0.4.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff34921000 - 0x7fff3495fff0 libFontRegistry.dylib (274.0.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff349ba000 - 0x7fff349e9fff com.apple.ATSUI (1.0 - 1) <4B3C2201-DBB3-352C-936B-9C423122EFF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI 0x7fff349ea000 - 0x7fff349eeffb com.apple.ColorSyncLegacy (4.13.0 - 1) <47D42CDE-2E9A-3AF6-9365-1BFD1189196B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff34a88000 - 0x7fff34adfffa com.apple.HIServices (1.22 - 675.1) <273492E3-FF0F-3A8A-A83F-0F11F99B5F26> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff34ae0000 - 0x7fff34aeefff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff34aef000 - 0x7fff34b34ffa com.apple.print.framework.PrintCore (15.4 - 516.2) <99AEBCDB-2DCA-3A13-906F-7F0D7962B002> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff34b35000 - 0x7fff34b3fff7 com.apple.QD (4.0 - 413) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff34b40000 - 0x7fff34b4dffc com.apple.speech.synthesis.framework (9.0.24 - 9.0.24) <823C0DE7-1351-3B39-8F06-AB5FCAD2C874> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff34b4e000 - 0x7fff34c2fffa com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <75651F0A-F2CE-3F68-B86A-E66B8815DCF4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff34c31000 - 0x7fff34c31fff com.apple.audio.units.AudioUnit (1.14 - 1.14) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff34fc7000 - 0x7fff35355ffd com.apple.CFNetwork (1126 - 1126) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff353d1000 - 0x7fff353d1fff com.apple.Carbon (160 - 162) <4F1F60CB-6C1E-3D79-832E-8D606601F282> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff353d2000 - 0x7fff353d5ff3 com.apple.CommonPanels (1.2.6 - 101) <333BBF55-AF23-3B99-A9FF-7906175B9406> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff353d6000 - 0x7fff356caff3 com.apple.HIToolbox (2.1.1 - 994.6) <5C44ACA7-D158-3F9B-8F88-0477510D44FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff356cb000 - 0x7fff356ceff3 com.apple.help (1.3.8 - 71) <4B2701A0-8813-35F8-82F8-676B184D15C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff356cf000 - 0x7fff356d4ff7 com.apple.ImageCapture (9.0 - 1600.60.4.2) <20872A2D-CBF9-38E6-BD16-C1D387120651> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff356d5000 - 0x7fff356d5fff com.apple.ink.framework (10.15 - 227) <5B60FDDE-D60E-326B-BD3D-6EA5FA1CBB76> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff356d6000 - 0x7fff356f0ffa com.apple.openscripting (1.7 - 185.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff35711000 - 0x7fff35711fff com.apple.print.framework.Print (15 - 271) <07C50BF6-2222-3769-A5B8-79D7F996183F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff35712000 - 0x7fff35714ff7 com.apple.securityhi (9.0 - 55008) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff35715000 - 0x7fff3571bfff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <1188E643-967C-334E-BC1A-60A0F82C67E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff358b5000 - 0x7fff358b5fff com.apple.Cocoa (6.11 - 23) <87426C3A-7C6C-39D0-905C-C591B997029E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff358c3000 - 0x7fff359b9fff com.apple.ColorSync (4.13.0 - 3394.9) <61698A7B-BB8C-3891-9547-703FF84671A8> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff35ca4000 - 0x7fff361adffb com.apple.audio.CoreAudio (5.0 - 5.0) <62BEE4B7-8A26-3951-9D78-4E193617AF7A> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff36200000 - 0x7fff36238fff com.apple.CoreBluetooth (1.0 - 1) <6BC7F863-4495-371F-BC54-543E5CFE1665> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff36239000 - 0x7fff36623fe8 com.apple.CoreData (120 - 977.3) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff36624000 - 0x7fff36754ffe com.apple.CoreDisplay (1.0 - 186.6.12) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff36755000 - 0x7fff36bd4ffb com.apple.CoreFoundation (6.9 - 1676.105) <6AF8B3CC-BC3F-3869-B9FB-1D881422364E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff36bd6000 - 0x7fff3724aff8 com.apple.CoreGraphics (2.0 - 1355.17) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff37258000 - 0x7fff375b3ff0 com.apple.CoreImage (15.0.0 - 940.9) <44F68E8C-315A-32A6-BB19-7F24C00AB347> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff37974000 - 0x7fff37a4fffc com.apple.CoreMedia (1.0 - 2620.11.40.2) <0F490101-ED30-3189-B099-E247B6361A0B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff37b3c000 - 0x7fff37b3cfff com.apple.CoreServices (1069.24 - 1069.24) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff37b3d000 - 0x7fff37bc2fff com.apple.AE (838.1 - 838.1) <5F26DA9B-FB2E-3AF8-964B-63BD6671CF12> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff37bc3000 - 0x7fff37ea4ff7 com.apple.CoreServices.CarbonCore (1217 - 1217) <8022AF47-AA99-3786-B086-141D84F00387> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff37ea5000 - 0x7fff37ef2ffd com.apple.DictionaryServices (1.2 - 323.6) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff37ef3000 - 0x7fff37efbff7 com.apple.CoreServices.FSEvents (1268.100.1 - 1268.100.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff37efc000 - 0x7fff38136ff6 com.apple.LaunchServices (1069.24 - 1069.24) <2E0AD228-B1CC-3645-91EE-EB7F46F2147B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff38137000 - 0x7fff381cfff1 com.apple.Metadata (10.7.0 - 2076.6) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff381d0000 - 0x7fff381fdfff com.apple.CoreServices.OSServices (1069.24 - 1069.24) <72FDEA52-7607-3745-AC43-630D80962099> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff381fe000 - 0x7fff38265fff com.apple.SearchKit (1.4.1 - 1.4.1) <086EB5DF-A2EC-3342-8028-CA7996BE5CB2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff38266000 - 0x7fff3828aff5 com.apple.coreservices.SharedFileList (131.4 - 131.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff385af000 - 0x7fff38766ffc com.apple.CoreText (643.1.5.1 - 643.1.5.1) <715FE3F7-E8FB-3997-85A0-3AB2839F6C30> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff38767000 - 0x7fff387abffb com.apple.CoreVideo (1.8 - 344.3) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff387ac000 - 0x7fff38839ffc com.apple.framework.CoreWLAN (13.0 - 1601.2) <855E51AA-DF3A-3BB9-A4F0-6880D42B8762> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff389f5000 - 0x7fff38a00ff7 com.apple.DirectoryService.Framework (10.15 - 220.40.1) <06D98FD0-796F-356F-B492-A6D8F3D5BEC0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 0x7fff38a01000 - 0x7fff38aabff0 com.apple.DiscRecording (9.0.3 - 9030.4.5) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff38ad0000 - 0x7fff38ad6fff com.apple.DiskArbitration (2.7 - 2.7) <52E7D181-2A18-37CD-B24F-AA32E93F7A69> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff38cc9000 - 0x7fff38df7ff6 com.apple.FileProvider (304.1 - 304.1) <58D64236-947E-3E6A-85E6-C66AEF9E0EE0> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider 0x7fff38e0f000 - 0x7fff391d4fff com.apple.Foundation (6.9 - 1676.105) <1FA28BAB-7296-3A09-8E1E-E62A7D233DB8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff39241000 - 0x7fff39291ff7 com.apple.GSS (4.0 - 2.0) <4E241C00-42A5-3572-9430-D950FBB7A4A0> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff393ce000 - 0x7fff394e2ff3 com.apple.Bluetooth (7.0.5 - 7.0.5f6) <5897C368-9674-3E34-B144-FFB06A2DF37B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff39548000 - 0x7fff395ecff3 com.apple.framework.IOKit (2.0.2 - 1726.121.1) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff395ee000 - 0x7fff395ffffb com.apple.IOSurface (269.11 - 269.11) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff3967e000 - 0x7fff397daffe com.apple.ImageIO.framework (3.3.0 - 1976.6) <5B4C2E04-9161-3C82-A7FB-F4D51E3C1E10> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff397db000 - 0x7fff397defff libGIF.dylib (1976.6) <3B26EE1C-C570-305C-A9A3-EA62D2F2E7B8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff397df000 - 0x7fff39898fff libJP2.dylib (1976.6) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff39899000 - 0x7fff398bcfe3 libJPEG.dylib (1976.6) <9D7FAC55-85A6-34AB-9F26-0BCA381E8CE7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff39b38000 - 0x7fff39b52fef libPng.dylib (1976.6) <4886A1F8-E9CA-38F2-BF2F-1FCA1DFDD1C9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff39b53000 - 0x7fff39b54fff libRadiance.dylib (1976.6) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff39b55000 - 0x7fff39b9efff libTIFF.dylib (1976.6) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff3a049000 - 0x7fff3b0e9fe9 com.apple.JavaScriptCore (15609 - 15609.2.9.1.2) <62158DFB-C250-3A18-AE52-6296544AEA43> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff3b100000 - 0x7fff3b112ff3 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff3b113000 - 0x7fff3b113fff libHeimdalProxy.dylib (77) /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib 0x7fff3b114000 - 0x7fff3b14aff7 com.apple.LDAPFramework (2.4.28 - 194.5) <4CFB6351-53B9-36AF-B654-AE636BBC361A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x7fff3b4a5000 - 0x7fff3b4afffb com.apple.MediaAccessibility (1.0 - 125.1) /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff3bcca000 - 0x7fff3bd94ff7 com.apple.Metal (212.7 - 212.7) /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff3bdb1000 - 0x7fff3bdeeff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <52089325-EC97-3EED-ABB3-9B39EC0BD429> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff3bdef000 - 0x7fff3be79fe2 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <9E434EA0-6BCA-3903-B882-CEB69730A63B> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff3be7a000 - 0x7fff3be9fff4 com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff3bea0000 - 0x7fff3beb5ffb com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray 0x7fff3beb6000 - 0x7fff3c014ffc com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <47CCDBAC-5843-366A-A68C-6E8851D0865D> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff3c015000 - 0x7fff3c064ff4 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <302BDF8E-B00A-3123-A6C4-E262B7513CF6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff3c065000 - 0x7fff3c066ff5 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <14F84B42-9DA2-39A1-81B4-666B8020520C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff3d0ed000 - 0x7fff3d0f9ffe com.apple.NetFS (6.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff3d0fa000 - 0x7fff3d251ff3 com.apple.Network (1.0 - 1) /System/Library/Frameworks/Network.framework/Versions/A/Network 0x7fff3fc82000 - 0x7fff3fcdafff com.apple.opencl (3.5 - 3.5) <9B101D40-EA79-3C0D-B7AE-A3F18094B2D7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff3fcdb000 - 0x7fff3fcf7fff com.apple.CFOpenDirectory (10.15 - 220.40.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff3fcf8000 - 0x7fff3fd03ffd com.apple.OpenDirectory (10.15 - 220.40.1) <76A20BBA-775F-3E17-AB0F-FEDFCDCE0716> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff40669000 - 0x7fff4066bfff libCVMSPluginSupport.dylib (17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff4066c000 - 0x7fff40671fff libCoreFSCache.dylib (176.15) <609C5DFC-9A97-344D-BBC7-E0B08D862C63> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff40672000 - 0x7fff40676fff libCoreVMClient.dylib (176.15) <8F8DD27F-AC7C-398D-A8E3-396F1528E317> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff40677000 - 0x7fff4067fff7 libGFXShared.dylib (17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff40680000 - 0x7fff4068afff libGL.dylib (17.10.22) <116DDBF7-D725-3B8C-BD0B-A21B758FE421> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff4068b000 - 0x7fff406bfff7 libGLImage.dylib (17.10.22) <2B314C76-C7E6-3AC5-9157-70B0529C1F9B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff40855000 - 0x7fff40891fff libGLU.dylib (17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff412cd000 - 0x7fff412dcff7 com.apple.opengl (17.10.22 - 17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff4229a000 - 0x7fff4251cff9 com.apple.QuartzCore (1.11 - 841.2) <444E6F22-DFA6-391B-B51F-A96AE69E524D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff4309d000 - 0x7fff433e6ff1 com.apple.security (7.0 - 59306.120.7) /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff433e7000 - 0x7fff4346fffb com.apple.securityfoundation (6.0 - 55236.60.1) <79289FE1-CB5F-3BEF-A33F-11A29A93A681> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff43470000 - 0x7fff4349dff7 com.apple.securityinterface (10.0 - 55139.120.1) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x7fff4349e000 - 0x7fff434a2ff8 com.apple.xpc.ServiceManagement (1.0 - 1) <4194D29D-F0D4-33F8-839A-D03C6C62D8DB> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff4414e000 - 0x7fff441bcff7 com.apple.SystemConfiguration (1.19 - 1.19) <0CF8726A-BE41-3E07-B895-FBC44B75450E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff4443b000 - 0x7fff447beff4 com.apple.VideoToolbox (1.0 - 2620.11.40.2) <53E0D852-61CA-34FE-9A9B-788708ADE495> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff44a60000 - 0x7fff451fdfff libwebrtc.dylib (7609.2.9.1.2) <6047B7DA-1F79-35D6-B65B-F936B0E389EE> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib 0x7fff451fe000 - 0x7fff4745fff4 com.apple.WebCore (15609 - 15609.2.9.1.2) <06B06644-07F9-3D09-A50E-F14D70FF6670> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x7fff47460000 - 0x7fff4766cffc com.apple.WebKitLegacy (15609 - 15609.2.9.1.2) <7580EF1B-F43B-3532-9340-AB20340D0850> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy 0x7fff4766d000 - 0x7fff47d6effa com.apple.WebKit (15609 - 15609.2.9.1.2) <5148A4E2-0C5A-3DFD-8A02-676D7CC6ED4F> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x7fff4811d000 - 0x7fff481e2ff7 com.apple.APFS (1412.120.2 - 1412.120.2) <1E8FD511-FDC4-31A2-ACDE-EB5192032BC6> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff48829000 - 0x7fff48834ffc com.apple.accessibility.AXCoreUtilities (1.0 - 1) <9E0367E6-6A4F-31FE-A493-9F3DF7510CA0> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities 0x7fff492f2000 - 0x7fff492f3ff1 com.apple.AggregateDictionary (1.0 - 1) /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff4970a000 - 0x7fff49727ff4 com.apple.AppContainer (4.0 - 448.100.6) <9C2D0065-9B38-3D1C-A090-46F129A1B3CA> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff4977c000 - 0x7fff4978aff7 com.apple.AppSandbox (4.0 - 448.100.6) <7DAB58B1-8176-3FB0-A7B0-8A38E118E90B> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff49c05000 - 0x7fff49c29ffb com.apple.framework.Apple80211 (13.0 - 1610.1) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff49ee7000 - 0x7fff49ef6fd7 com.apple.AppleFSCompression (119.100.1 - 1.0) <2E75CF51-B693-3275-9A4F-40571D48745E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff49ff5000 - 0x7fff4a000ff7 com.apple.AppleIDAuthSupport (1.0 - 1) /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff4a042000 - 0x7fff4a08aff7 com.apple.AppleJPEG (1.0 - 1) <4655FF70-9772-3D7C-8159-5A5E56C9F84B> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff4a474000 - 0x7fff4a478ff7 com.apple.AppleSRP (5.0 - 1) /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff4a479000 - 0x7fff4a49bfff com.apple.applesauce (1.0 - 16.25) <33B66B71-64A4-365D-9953-E0545E69A5E7> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff4a55a000 - 0x7fff4a55dffb com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <92580EE3-74BF-3488-90ED-C8EBD7A1B4C3> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff4a55e000 - 0x7fff4a5aeff7 com.apple.AppleVAFramework (6.1.2 - 6.1.2) <39C3583D-C824-3168-B67A-498487FD03D9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff4a5f7000 - 0x7fff4a606ff9 com.apple.AssertionServices (1.0 - 223.100.31) <478D2004-9B84-3AE9-9A0B-0A0B68ED028F> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff4b199000 - 0x7fff4b3d9fe0 com.apple.audio.AudioToolboxCore (1.0 - 1104.84) /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore 0x7fff4b3dd000 - 0x7fff4b4f9ff0 com.apple.AuthKit (1.0 - 1) <375C3886-5430-3C02-BD2C-4244BF490ABA> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff4b6b6000 - 0x7fff4b6bfff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff4b6c0000 - 0x7fff4b761ff5 com.apple.backup.framework (1.11.5 - 1298.5.10) <637CA389-627A-365C-98C2-D297C47D6EE3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff4b762000 - 0x7fff4b7eeff6 com.apple.BaseBoard (466.3 - 466.3) <1718A41A-9923-3FD0-96B8-82376E153D27> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff4b8f0000 - 0x7fff4b92cff7 com.apple.bom (14.0 - 219.2) <586F1D9C-23B0-3F38-9C5B-728E9DD8B953> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff4c4ab000 - 0x7fff4c4fafff com.apple.ChunkingLibrary (307 - 307) <32E0F1A1-9DD6-3B52-91C2-93643041AA60> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff4d3a1000 - 0x7fff4d3b1ffb com.apple.CommonAuth (4.0 - 2.0) <91EC83B5-857D-3D4F-93B1-AAD7E0E029D8> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff4d3c5000 - 0x7fff4d3dcfff com.apple.commonutilities (8.0 - 900) <12C6DEE5-1740-39A5-9711-6F815C6D77BD> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff4df06000 - 0x7fff4df25ffc com.apple.analyticsd (1.0 - 1) /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics 0x7fff4e230000 - 0x7fff4e23bff7 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <8F8E586D-C153-3ABA-88B7-6CEC7F476F0E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x7fff4e4bc000 - 0x7fff4e4ccff3 com.apple.CoreEmoji (1.0 - 107.1) /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff4eb0c000 - 0x7fff4eb76ff0 com.apple.CoreNLP (1.0 - 213) <40FC46D2-844C-3282-A8E4-69DD827F05C5> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff4ee34000 - 0x7fff4ee38ffb com.apple.CoreOptimization (1.0 - 1) <5B3AA81A-F8DF-3688-85FC-9A9517720DA7> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization 0x7fff4efa4000 - 0x7fff4efacff8 com.apple.CorePhoneNumbers (1.0 - 1) /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff4efad000 - 0x7fff4efff94b com.apple.CorePrediction (1.0 - 1) /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction 0x7fff4f999000 - 0x7fff4f9bcfff com.apple.CoreSVG (1.0 - 129) <3141D198-0507-3F72-A2C9-752EAFE3EEB3> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG 0x7fff4f9bd000 - 0x7fff4f9f0fff com.apple.CoreServicesInternal (446.7 - 446.7) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff4f9f1000 - 0x7fff4fa1fffd com.apple.CSStore (1069.24 - 1069.24) /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore 0x7fff4ff44000 - 0x7fff4ffdaff7 com.apple.CoreSymbolication (11.4 - 64535.33.2) <0E7A1529-C737-33FD-AA7D-A32EB8B192DA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff50072000 - 0x7fff5019eff6 com.apple.coreui (2.1 - 609.4) <9B93CC42-804B-305A-8FCE-5F06821B544C> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff5019f000 - 0x7fff50355ff5 com.apple.CoreUtils (6.2.1 - 621.5) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff5048f000 - 0x7fff504a2ff1 com.apple.CrashReporterSupport (10.13 - 15016) <827F4E31-9F23-3683-AC5A-59CCA90F2359> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff5055b000 - 0x7fff5056dff8 com.apple.framework.DFRFoundation (1.0 - 252.50.1) <19F79D32-71D3-3A87-98C9-B5C6C96076C4> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff5056e000 - 0x7fff50573fff com.apple.DSExternalDisplay (3.1 - 380) <971F24F1-B1FC-3674-9C00-F88EEF94DC05> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff505fd000 - 0x7fff50677ff0 com.apple.datadetectorscore (8.0 - 659) <9FD9BDFA-3724-3BEA-946C-0473447196A3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff506c3000 - 0x7fff50700ff8 com.apple.DebugSymbols (194 - 194) <9BCE6685-6C45-3DF9-98EB-FCF8196160F0> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff50701000 - 0x7fff50889ff6 com.apple.desktopservices (1.14.5 - 1281.5.3) <79972B8B-7B60-3AD5-9A5F-17976DE8080B> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff5089f000 - 0x7fff508abff8 com.apple.DeviceIdentity (1.0 - 1) <6E017199-DFC0-3464-A7E5-CB8928FC2F97> /System/Library/PrivateFrameworks/DeviceIdentity.framework/Versions/A/DeviceIdentity 0x7fff50b10000 - 0x7fff50bd8ffe com.apple.DiskImagesFramework (559.100.2 - 559.100.2) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages 0x7fff50bd9000 - 0x7fff50cacff1 com.apple.DiskManagement (13.0 - 1648.120.5) <650DBBE4-6624-3064-A26D-6BCAA0FE41F9> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement 0x7fff50d8f000 - 0x7fff50d93ff9 com.apple.EFILogin (2.0 - 2) /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff52221000 - 0x7fff5263cff1 com.apple.vision.FaceCore (4.3.0 - 4.3.0) <1B5D7DD6-718E-3111-A702-EB04B8903662> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff52cda000 - 0x7fff52e12ffc libFontParser.dylib (277.2.5.3) /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x7fff52e13000 - 0x7fff52e47fff libTrueTypeScaler.dylib (277.2.5.3) /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib 0x7fff52eac000 - 0x7fff52ebcff6 libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <6396BC1F-13C1-37D7-91B9-1FF60910C7FA> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x7fff5639d000 - 0x7fff5639efff libmetal_timestamp.dylib (902.14.11) /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib 0x7fff57a5b000 - 0x7fff57a61fff com.apple.GPUWrangler (5.2.4 - 5.2.4) <5B819701-9F0C-374B-8925-A22DFC16514F> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff57d80000 - 0x7fff57da6ff1 com.apple.GenerationalStorage (2.0 - 314) <5613706F-710A-39E0-8B25-BA103A768613> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff58ed5000 - 0x7fff58ee3ffb com.apple.GraphVisualizer (1.0 - 100.1) <0A86C9FF-4484-3C7F-BC71-3D23BDBE81CE> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff58ee4000 - 0x7fff58ef1ff3 com.apple.GraphicsServices (1.0 - 1.0) <628EA7EF-A5C7-36E4-9193-46F55852C208> /System/Library/PrivateFrameworks/GraphicsServices.framework/Versions/A/GraphicsServices 0x7fff59082000 - 0x7fff59140ff4 com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff5b2ba000 - 0x7fff5b2c3ffe com.apple.IOAccelMemoryInfo (1.0 - 1) <903349F6-F3B0-3269-8946-2CE3E2C49E70> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo 0x7fff5b2c4000 - 0x7fff5b2ccff5 com.apple.IOAccelerator (438.5.4 - 438.5.4) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff5b2d9000 - 0x7fff5b2f0fff com.apple.IOPresentment (1.0 - 37) <3EDBB454-D248-394B-A026-9717CD8535C3> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff5b678000 - 0x7fff5b6c3ff1 com.apple.IconServices (438.3 - 438.3) <2AE74790-64F1-3B0A-9534-DEEEE307E562> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff5b881000 - 0x7fff5b888ff9 com.apple.InternationalSupport (1.0 - 45.4) /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff5bb15000 - 0x7fff5bb34ffd com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <76DB5326-BE5D-3339-975C-D9FCF39A341E> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff5bc69000 - 0x7fff5bd37ffd com.apple.LanguageModeling (1.0 - 215.1) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff5bd38000 - 0x7fff5bd80fff com.apple.Lexicon-framework (1.0 - 72) <6AE1872C-0352-36FE-90CC-7303F13A5BEF> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff5bd87000 - 0x7fff5bd8cff3 com.apple.LinguisticData (1.0 - 353.18) <686E7B7C-640F-3D7B-A9C1-31E2DFACD457> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff5be30000 - 0x7fff5be35ff7 com.apple.LoginUICore (4.0 - 4.0) <5D60C7D1-9DB7-30A3-9209-7E13644D3E9D> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore 0x7fff5c91b000 - 0x7fff5c94efff com.apple.MediaKit (16 - 923) <14E38848-C9BD-37F1-AE44-FC4CC839E8A1> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff5d0f3000 - 0x7fff5d13ffff com.apple.spotlight.metadata.utilities (1.0 - 2076.6) /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff5d140000 - 0x7fff5d211ffa com.apple.gpusw.MetalTools (1.0 - 1) /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff5d445000 - 0x7fff5d463fff com.apple.MobileKeyBag (2.0 - 1.0) /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff5d6c6000 - 0x7fff5d6f6ff7 com.apple.MultitouchSupport.framework (3440.1 - 3440.1) <4E7CB188-382E-3128-8671-4A3EF6E06622> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff5dbf6000 - 0x7fff5dc00fff com.apple.NetAuth (6.2 - 6.2) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff5e616000 - 0x7fff5e661ffb com.apple.OTSVG (1.0 - 643.1.5.1) /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff5f875000 - 0x7fff5f880ff2 com.apple.PerformanceAnalysis (1.243.2 - 243.2) <941698D6-EF00-3D59-8560-F160BC04B412> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff5f881000 - 0x7fff5f8a9ffb com.apple.persistentconnection (1.0 - 1.0) /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff6220c000 - 0x7fff62266ff6 com.apple.ProtectedCloudStorage (1.0 - 1) <969BF7A2-E989-3A22-BC1B-72B72E107229> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff62267000 - 0x7fff62280ffb com.apple.ProtocolBuffer (1 - 274.24.9.16.3) /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff626c0000 - 0x7fff626ccff5 com.apple.xpc.RemoteServiceDiscovery (1.0 - 1738.120.8) <9754FC8C-3EAF-3F9B-8A28-A63D472DD6F0> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery 0x7fff626df000 - 0x7fff62708ff1 com.apple.RemoteViewServices (2.0 - 148) <1C61CFC2-F76F-31E5-BA13-EFD5DC69C8D5> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff62709000 - 0x7fff6271effa com.apple.xpc.RemoteXPC (1.0 - 1738.120.8) /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC 0x7fff6286d000 - 0x7fff628a8ff0 com.apple.RunningBoardServices (1.0 - 223.100.31) <9FD1FC53-186A-3327-A359-B0BC7F4360EF> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices 0x7fff635d0000 - 0x7fff6361cff9 com.apple.Safari.SafeBrowsing (15609 - 15609.2.9.1.2) <57AC0345-D349-3477-9ECA-9BAD465819EA> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing 0x7fff64188000 - 0x7fff6418bff5 com.apple.SecCodeWrapper (4.0 - 448.100.6) <813B3E57-6A95-3D7B-9094-C65D687A72B8> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff642fe000 - 0x7fff64425ff0 com.apple.Sharing (1526.31 - 1526.31) <2CB07F08-7794-3BF2-9ED5-BAB5C55C9D2C> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff65838000 - 0x7fff65b2eff7 com.apple.SkyLight (1.600.0 - 451.4) /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff6637b000 - 0x7fff66389ffb com.apple.SpeechRecognitionCore (6.0.91.2 - 6.0.91.2) <820602AB-117B-3C3E-B20B-819CBC97B7A4> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff66bbb000 - 0x7fff66bc4ff7 com.apple.SymptomDiagnosticReporter (1.0 - 1238.120.1) <581F31D6-94CB-38AA-BD56-1A63606E516E> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter 0x7fff66c35000 - 0x7fff66c5fffa com.apple.framework.SystemAdministration (1.0 - 1.0) <926BB2F5-E02C-30B7-949A-20EFE57CF242> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration 0x7fff66e7b000 - 0x7fff66e8bff3 com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff673b0000 - 0x7fff67476ff0 com.apple.TextureIO (3.10.9 - 3.10.9) /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff67602000 - 0x7fff67603fff com.apple.TrustEvaluationAgent (2.0 - 33) <11DF5A28-4410-36A8-B3B8-BF1094BE1544> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff6763b000 - 0x7fff67893ff0 com.apple.UIFoundation (1.0 - 662) /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff6792a000 - 0x7fff67930ffe com.apple.URLFormatting (119 - 119.18) /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting 0x7fff68506000 - 0x7fff68526ffc com.apple.UserManagement (1.0 - 1) /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement 0x7fff692d2000 - 0x7fff693bcff8 com.apple.ViewBridge (464.1 - 464.1) /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff69562000 - 0x7fff69563fff com.apple.WatchdogClient.framework (1.0 - 67.120.2) <3B8EBB6B-77D0-317C-A3DB-D0D2E294B18D> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient 0x7fff69736000 - 0x7fff69736fff com.apple.WebInspectorUI (15609 - 15609.2.9.1.2) <7BDB4287-9F2D-399E-9850-F6F9CDAC5D33> /System/Library/PrivateFrameworks/WebInspectorUI.framework/Versions/A/WebInspectorUI 0x7fff698ef000 - 0x7fff6992afff libAWDSupport.dylib (949) /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupport.dylib 0x7fff6992b000 - 0x7fff69c0bff7 libAWDSupportFramework.dylib (3541.1) <1F4FB417-EE92-3095-9940-C35C93F6F020> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib 0x7fff69c0c000 - 0x7fff69c1dfff libprotobuf-lite.dylib (3541.1) <3EB3CBE0-544B-38D1-81EB-7D73CA221967> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib 0x7fff69c1e000 - 0x7fff69c77ffb libprotobuf.dylib (3541.1) <45F77AE5-5D7A-30E7-9168-5546FDC59CA2> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib 0x7fff69c78000 - 0x7fff69cbcff6 com.apple.awd (1.0 - 949) /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics 0x7fff6a190000 - 0x7fff6a193ffa com.apple.dt.XCTTargetBootstrap (1.0 - 16091) /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff6a20d000 - 0x7fff6a21bff5 com.apple.audio.caulk (1.0 - 32.3) <7D3D2F91-8B1D-3558-B324-45BDF11306DB> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x7fff6a55d000 - 0x7fff6a55fff3 com.apple.loginsupport (1.0 - 1) <31F02734-1ECF-37D9-9DF6-7C3BC3A324FE> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff6a560000 - 0x7fff6a573ffd com.apple.login (3.0 - 3.0) <1DC570FD-29EC-3AE8-BD34-D44C00E4621B> /System/Library/PrivateFrameworks/login.framework/Versions/A/login 0x7fff6cf51000 - 0x7fff6cf66ffe libAccessibility.dylib (2790.70) <0175DCAB-ADCB-3F8F-BD64-E8E51C00825E> /usr/lib/libAccessibility.dylib 0x7fff6d043000 - 0x7fff6d076ffa libAudioToolboxUtility.dylib (1104.84) /usr/lib/libAudioToolboxUtility.dylib 0x7fff6d07d000 - 0x7fff6d0b1fff libCRFSuite.dylib (48) <02C52318-C537-3FD8-BBC4-E5BD25430652> /usr/lib/libCRFSuite.dylib 0x7fff6d0b4000 - 0x7fff6d0befff libChineseTokenizer.dylib (34) <04A7CB5A-FD68-398A-A206-33A510C115E7> /usr/lib/libChineseTokenizer.dylib 0x7fff6d0bf000 - 0x7fff6d147fff libCoreStorage.dylib (551) /usr/lib/libCoreStorage.dylib 0x7fff6d14a000 - 0x7fff6d14cff7 libDiagnosticMessagesClient.dylib (112) <27220E98-6CE2-33E3-BD48-3CC3CE4AA036> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff6d192000 - 0x7fff6d349ffb libFosl_dynamic.dylib (100.4) <68038226-8CAA-36B5-B5D6-510F900B318D> /usr/lib/libFosl_dynamic.dylib 0x7fff6d370000 - 0x7fff6d376ff3 libIOReport.dylib (54) /usr/lib/libIOReport.dylib 0x7fff6d458000 - 0x7fff6d45ffff libMatch.1.dylib (36) <081FB6A9-0482-3697-A98B-6821FF476C6E> /usr/lib/libMatch.1.dylib 0x7fff6d48e000 - 0x7fff6d4aefff libMobileGestalt.dylib (826.120.5) <1977AD00-533A-31AA-8D74-EA6CB962F668> /usr/lib/libMobileGestalt.dylib 0x7fff6d620000 - 0x7fff6d621fff libSystem.B.dylib (1281.100.1) /usr/lib/libSystem.B.dylib 0x7fff6d622000 - 0x7fff6d6adff7 libTelephonyUtilDynamic.dylib (5017.1) <4C11A09D-9B7E-3743-B9E6-39B4D466BAF1> /usr/lib/libTelephonyUtilDynamic.dylib 0x7fff6d6ae000 - 0x7fff6d6affff libThaiTokenizer.dylib (3) <97DC10ED-3C11-3C89-B366-299A644035E7> /usr/lib/libThaiTokenizer.dylib 0x7fff6d6c7000 - 0x7fff6d6ddfff libapple_nghttp2.dylib (1.39.2) /usr/lib/libapple_nghttp2.dylib 0x7fff6d712000 - 0x7fff6d784ff7 libarchive.2.dylib (72.100.1) <20B70252-0C4B-3AFD-8C8D-F51921E9D324> /usr/lib/libarchive.2.dylib 0x7fff6d785000 - 0x7fff6d81efe5 libate.dylib (3.0.1) /usr/lib/libate.dylib 0x7fff6d822000 - 0x7fff6d822ff3 libauto.dylib (187) <85383E24-1592-36BC-BB39-308B7F1C826E> /usr/lib/libauto.dylib 0x7fff6d8e8000 - 0x7fff6d8f8ffb libbsm.0.dylib (60.100.1) /usr/lib/libbsm.0.dylib 0x7fff6d8f9000 - 0x7fff6d905fff libbz2.1.0.dylib (44) /usr/lib/libbz2.1.0.dylib 0x7fff6d906000 - 0x7fff6d958fff libc++.1.dylib (902.1) /usr/lib/libc++.1.dylib 0x7fff6d959000 - 0x7fff6d96effb libc++abi.dylib (902) <771E9263-E832-3985-9477-8F1B2D73B771> /usr/lib/libc++abi.dylib 0x7fff6d96f000 - 0x7fff6d96ffff libcharset.1.dylib (59) /usr/lib/libcharset.1.dylib 0x7fff6d970000 - 0x7fff6d981fff libcmph.dylib (8) <296A51E6-9661-3AC2-A1C9-F1E3510F91AA> /usr/lib/libcmph.dylib 0x7fff6d982000 - 0x7fff6d999fd7 libcompression.dylib (87) <21F37C2E-B9AA-38CE-9023-B763C8828AC6> /usr/lib/libcompression.dylib 0x7fff6dc73000 - 0x7fff6dc89ff7 libcoretls.dylib (167) <9E5D1E0C-03F8-37B6-82A1-0D0597021CB8> /usr/lib/libcoretls.dylib 0x7fff6dc8a000 - 0x7fff6dc8bfff libcoretls_cfhelpers.dylib (167) /usr/lib/libcoretls_cfhelpers.dylib 0x7fff6e12e000 - 0x7fff6e232fef libcrypto.44.dylib (47.120.1) /usr/lib/libcrypto.44.dylib 0x7fff6e235000 - 0x7fff6e240fff libcsfde.dylib (551) <8FBB94EC-712C-3C0F-A8A9-88EE5F4679EF> /usr/lib/libcsfde.dylib 0x7fff6e248000 - 0x7fff6e2a7ff7 libcups.2.dylib (483.6) /usr/lib/libcups.2.dylib 0x7fff6e2a9000 - 0x7fff6e30eff7 libcurl.4.dylib (118.120.2) /usr/lib/libcurl.4.dylib 0x7fff6e3b1000 - 0x7fff6e3b1fff libenergytrace.dylib (21) /usr/lib/libenergytrace.dylib 0x7fff6e3b2000 - 0x7fff6e3cafff libexpat.1.dylib (19.60.2) /usr/lib/libexpat.1.dylib 0x7fff6e3d8000 - 0x7fff6e3dafff libfakelink.dylib (149.1) <122F530F-F10E-3DD5-BBEA-91796BE583F3> /usr/lib/libfakelink.dylib 0x7fff6e3e9000 - 0x7fff6e3eefff libgermantok.dylib (24) /usr/lib/libgermantok.dylib 0x7fff6e3ef000 - 0x7fff6e3f8ff7 libheimdal-asn1.dylib (564.100.1) <68FA1BE5-8FFC-3345-8980-8D8629EBA451> /usr/lib/libheimdal-asn1.dylib 0x7fff6e3f9000 - 0x7fff6e4e9fff libiconv.2.dylib (59) /usr/lib/libiconv.2.dylib 0x7fff6e4ea000 - 0x7fff6e741fff libicucore.A.dylib (64260.0.1) <7B9204AC-EA14-3FF3-B6B9-4C85B37EED79> /usr/lib/libicucore.A.dylib 0x7fff6e75b000 - 0x7fff6e75cfff liblangid.dylib (133) <36581D30-1C7B-3A58-AA07-36237BD75E0E> /usr/lib/liblangid.dylib 0x7fff6e75d000 - 0x7fff6e775ff3 liblzma.5.dylib (16) <4DB30730-DBD1-3503-957A-D604049B98F9> /usr/lib/liblzma.5.dylib 0x7fff6e78d000 - 0x7fff6e834ff7 libmecab.dylib (883.11) <66AD729B-2BCC-3347-B9B3-FD88570E884D> /usr/lib/libmecab.dylib 0x7fff6e835000 - 0x7fff6ea97ff1 libmecabra.dylib (883.11) <2AE744D2-AC95-3720-8E66-4F9C7A79384C> /usr/lib/libmecabra.dylib 0x7fff6ee04000 - 0x7fff6ee33fff libncurses.5.4.dylib (57) /usr/lib/libncurses.5.4.dylib 0x7fff6ef63000 - 0x7fff6f3dfff5 libnetwork.dylib (1880.120.4) <715FB943-BA01-351C-BEA6-121970472985> /usr/lib/libnetwork.dylib 0x7fff6f480000 - 0x7fff6f4b3fde libobjc.A.dylib (787.1) /usr/lib/libobjc.A.dylib 0x7fff6f4b4000 - 0x7fff6f4b5ff7 libodfde.dylib (26) <2DDA61BF-E92A-3463-B1C4-D59E40D34D34> /usr/lib/libodfde.dylib 0x7fff6f4c6000 - 0x7fff6f4cafff libpam.2.dylib (25.100.1) <732E8D8E-C630-3EC2-B6C3-A1564E3B68B8> /usr/lib/libpam.2.dylib 0x7fff6f4cd000 - 0x7fff6f503ff7 libpcap.A.dylib (89.120.1) /usr/lib/libpcap.A.dylib 0x7fff6f587000 - 0x7fff6f59ffff libresolv.9.dylib (67.40.1) /usr/lib/libresolv.9.dylib 0x7fff6f5a1000 - 0x7fff6f5e5ff7 libsandbox.1.dylib (1217.120.7) <728BC15F-9A6C-3634-9427-60C01CB5A5D6> /usr/lib/libsandbox.1.dylib 0x7fff6f5e6000 - 0x7fff6f5f8ff7 libsasl2.2.dylib (213.120.1) /usr/lib/libsasl2.2.dylib 0x7fff6f5f9000 - 0x7fff6f5faff7 libspindump.dylib (281.3) <0C3A8B48-DC31-3F61-B4CC-746157042D0E> /usr/lib/libspindump.dylib 0x7fff6f5fb000 - 0x7fff6f7e5ff7 libsqlite3.dylib (308.5) /usr/lib/libsqlite3.dylib 0x7fff6f8d9000 - 0x7fff6f906ffb libssl.46.dylib (47.120.1) <6209494A-4AAD-344E-992C-03ACD2D4C402> /usr/lib/libssl.46.dylib 0x7fff6f9db000 - 0x7fff6fa35ff8 libusrtcp.dylib (1880.120.4) /usr/lib/libusrtcp.dylib 0x7fff6fa36000 - 0x7fff6fa39ffb libutil.dylib (57) /usr/lib/libutil.dylib 0x7fff6fa3a000 - 0x7fff6fa47ff7 libxar.1.dylib (425.2) <943A4CBB-331B-3A04-A11F-A2301189D40B> /usr/lib/libxar.1.dylib 0x7fff6fa4d000 - 0x7fff6fb2fff7 libxml2.2.dylib (33.3) <262EF7C6-7D83-3C01-863F-36E97F5ACD34> /usr/lib/libxml2.2.dylib 0x7fff6fb33000 - 0x7fff6fb5bfff libxslt.1.dylib (16.9) <86FE4382-BD77-3C19-A678-11EBCD70685A> /usr/lib/libxslt.1.dylib 0x7fff6fb5c000 - 0x7fff6fb6eff3 libz.1.dylib (76) /usr/lib/libz.1.dylib 0x7fff7041c000 - 0x7fff70421ff3 libcache.dylib (83) /usr/lib/system/libcache.dylib 0x7fff70422000 - 0x7fff7042dfff libcommonCrypto.dylib (60165.120.1) /usr/lib/system/libcommonCrypto.dylib 0x7fff7042e000 - 0x7fff70435fff libcompiler_rt.dylib (101.2) <652A6012-7E5C-3F4F-9438-86BC094526F3> /usr/lib/system/libcompiler_rt.dylib 0x7fff70436000 - 0x7fff7043fff7 libcopyfile.dylib (166.40.1) <40113A69-A81C-3397-ADC6-1D16B9A22C3E> /usr/lib/system/libcopyfile.dylib 0x7fff70440000 - 0x7fff704d2fe3 libcorecrypto.dylib (866.120.3) <5E4B0E50-24DD-3E04-9374-EDA9FFD6257B> /usr/lib/system/libcorecrypto.dylib 0x7fff705df000 - 0x7fff7061fff0 libdispatch.dylib (1173.100.2) <201EDBF3-0B36-31BA-A7CB-443CE35C05D4> /usr/lib/system/libdispatch.dylib 0x7fff70620000 - 0x7fff70656fff libdyld.dylib (750.5) <7E711A46-5E4D-393C-AEA6-440E2A5CCD0C> /usr/lib/system/libdyld.dylib 0x7fff70657000 - 0x7fff70657ffb libkeymgr.dylib (30) <52662CAA-DB1F-30A3-BE13-D6274B1A6D7B> /usr/lib/system/libkeymgr.dylib 0x7fff70658000 - 0x7fff70664ff3 libkxld.dylib (6153.121.2) <5EBB4886-C7B6-31D6-AA63-D861B2D58FCE> /usr/lib/system/libkxld.dylib 0x7fff70665000 - 0x7fff70665ff7 liblaunch.dylib (1738.120.8) <07CF647B-F9DC-3907-AD98-2F85FCB34A72> /usr/lib/system/liblaunch.dylib 0x7fff70666000 - 0x7fff7066bff7 libmacho.dylib (959.0.1) /usr/lib/system/libmacho.dylib 0x7fff7066c000 - 0x7fff7066eff3 libquarantine.dylib (110.40.3) /usr/lib/system/libquarantine.dylib 0x7fff7066f000 - 0x7fff70670ff7 libremovefile.dylib (48) /usr/lib/system/libremovefile.dylib 0x7fff70671000 - 0x7fff70688ff3 libsystem_asl.dylib (377.60.2) <1170348D-2491-33F1-AA79-E2A05B4A287C> /usr/lib/system/libsystem_asl.dylib 0x7fff70689000 - 0x7fff70689ff7 libsystem_blocks.dylib (74) <7AFBCAA6-81BE-36C3-8DB0-AAE0A4ACE4C5> /usr/lib/system/libsystem_blocks.dylib 0x7fff7068a000 - 0x7fff70711fff libsystem_c.dylib (1353.100.2) <935DDCE9-4ED0-3F79-A05A-A123DDE399CC> /usr/lib/system/libsystem_c.dylib 0x7fff70712000 - 0x7fff70715ffb libsystem_configuration.dylib (1061.120.2) /usr/lib/system/libsystem_configuration.dylib 0x7fff70716000 - 0x7fff70719fff libsystem_coreservices.dylib (114) <3D0A3AA8-8415-37B2-AAE3-66C03BCE8B55> /usr/lib/system/libsystem_coreservices.dylib 0x7fff7071a000 - 0x7fff70722fff libsystem_darwin.dylib (1353.100.2) <6EEC9975-EE3B-3C95-AA5B-030FD10587BC> /usr/lib/system/libsystem_darwin.dylib 0x7fff70723000 - 0x7fff7072afff libsystem_dnssd.dylib (1096.100.3) <0115092A-E61B-317D-8670-41C7C34B1A82> /usr/lib/system/libsystem_dnssd.dylib 0x7fff7072b000 - 0x7fff7072cffb libsystem_featureflags.dylib (17) /usr/lib/system/libsystem_featureflags.dylib 0x7fff7072d000 - 0x7fff7077aff7 libsystem_info.dylib (538) <851693E9-C079-3547-AD41-353F8C248BE8> /usr/lib/system/libsystem_info.dylib 0x7fff7077b000 - 0x7fff707a7ff7 libsystem_kernel.dylib (6153.121.2) <9F9902C9-A46F-3CA9-B7F9-5CCFE98FBF75> /usr/lib/system/libsystem_kernel.dylib 0x7fff707a8000 - 0x7fff707effff libsystem_m.dylib (3178) <436CFF76-6A99-36F2-A3B6-8D017396A050> /usr/lib/system/libsystem_m.dylib 0x7fff707f0000 - 0x7fff70817fff libsystem_malloc.dylib (283.100.6) /usr/lib/system/libsystem_malloc.dylib 0x7fff70818000 - 0x7fff70825ffb libsystem_networkextension.dylib (1095.120.6) <6DE86DB0-8CD2-361E-BD6A-A34282B47847> /usr/lib/system/libsystem_networkextension.dylib 0x7fff70826000 - 0x7fff7082fff7 libsystem_notify.dylib (241.100.2) <7E9E2FC8-DF26-340C-B196-B81B11850C46> /usr/lib/system/libsystem_notify.dylib 0x7fff70830000 - 0x7fff70838fef libsystem_platform.dylib (220.100.1) <736920EA-6AE0-3B1B-BBDA-7DCDF0C229DF> /usr/lib/system/libsystem_platform.dylib 0x7fff70839000 - 0x7fff70843fff libsystem_pthread.dylib (416.100.3) <77488669-19A3-3993-AD65-CA5377E2475A> /usr/lib/system/libsystem_pthread.dylib 0x7fff70844000 - 0x7fff70848ff3 libsystem_sandbox.dylib (1217.120.7) <20C93D69-6452-3C82-9521-8AE54345C66F> /usr/lib/system/libsystem_sandbox.dylib 0x7fff70849000 - 0x7fff7084bfff libsystem_secinit.dylib (62.100.2) /usr/lib/system/libsystem_secinit.dylib 0x7fff7084c000 - 0x7fff70853ffb libsystem_symptoms.dylib (1238.120.1) <25C3866B-004E-3621-9CD3-B1E9C4D887EB> /usr/lib/system/libsystem_symptoms.dylib 0x7fff70854000 - 0x7fff7086aff2 libsystem_trace.dylib (1147.120) /usr/lib/system/libsystem_trace.dylib 0x7fff7086c000 - 0x7fff70871ff7 libunwind.dylib (35.4) <253A12E2-F88F-3838-A666-C5306F833CB8> /usr/lib/system/libunwind.dylib 0x7fff70872000 - 0x7fff708a7ffe libxpc.dylib (1738.120.8) <68D433B6-DCFF-385D-8620-F847FB7D4A5A> /usr/lib/system/libxpc.dylib

Its happens only when changing the color of the template.

Thanks for all your help!

Maybe I can help you to take this python project to next level with web interface.

crazyscot commented 4 years ago

That's great to hear, thank you for the feedback! I have copied your comment into a new issue #9 as it is a separate issue. In due course I will merge the python3 branch and close #2. I am closing this issue now as it is resolved.