php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #81394 Apache faults when using cURL with IMAP enabled
Submitted: 2021-08-27 19:14 UTC Modified: 2021-08-27 20:30 UTC
Votes:3
Avg. Score:5.0 ± 0.0
Reproduced:3 of 3 (100.0%)
Same Version:3 (100.0%)
Same OS:3 (100.0%)
From: chauncey at mcaskill dot ca Assigned:
Status: Open Package: cURL related
PHP Version: Irrelevant OS: macOS
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: chauncey at mcaskill dot ca
New email:
PHP Version: OS:

 

 [2021-08-27 19:14 UTC] chauncey at mcaskill dot ca
Description:
------------
While running a PHP script via Apache2:

* When the IMAP extension is enabled, calling `curl_exec()` immediately kills the PHP script. PHP does not log any errors, Apache log's a segmentation fault (see below). If HTTPD is running as root, calling `curl_exec()` works as expected. If running the script via PHP binary, calling `curl_exec()` works as expected.
* When the IMAP extension is disabled (or not installed), calling `curl_exec()` works as expected with or without HTTPD running as root.

Affects PHP 5.6 → 8.1, Intel and Silicon, Mojave to Big Sur, installed via Homebrew. Using Homebrew's HTTPD. Using Shivam Mathur's PHP and PHP extensions.

```
IMAP c-Client Version: 2007f
SSL Support: enabled
Kerberos Support: enabled
```

```
cURL Version: 7.78.0
SSL Version: (SecureTransport) OpenSSL/1.1.1l
ZLib Version: 1.2.11
libSSH Version: libssh2/1.9.0
```

Initial GitHub issue: https://github.com/shivammathur/homebrew-php/issues/454

Related GitHub issue: https://github.com/Homebrew/homebrew-core/issues/80460

Related PHP bug report: https://bugs.php.net/bug.php?id=76507

Test script:
---------------
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://duckduckgo.com');
curl_exec($ch);
curl_close($ch);
?>

Via PHP CLI, cURL request works: `php test.php`

Via Apache, the cURL request fails: any browser or `curl http://localhost/test.php` or `wget http://localhost/test.php`

Expected result:
----------------
The snippet should output the HTML response for the DuckDuckGo home page.

Actual result:
--------------
Empty response from server.

Apache log:

```
[Mon Aug 23 12:16:18.240389 2021] [core:notice] [pid 19198] AH00052: child pid 19371 exit signal Segmentation fault (11)
```

Crash report (summary):

```
Thread 0 Crashed:: Dispatch queue: com.apple.root.utility-qos
0   libdispatch.dylib             	0x000000018dfdbe3c dispatch_apply_f + 716
1   libdispatch.dylib             	0x000000018dfdbe18 dispatch_apply_f + 680
2   com.apple.CoreFoundation      	0x000000018e38f464 __104-[CFPrefsSearchListSource synchronouslySendDaemonMessage:andAgentMessage:andDirectMessage:replyHandler:]_block_invoke.98 + 132
3   com.apple.CoreFoundation      	0x000000018e228e78 CFPREFERENCES_IS_WAITING_FOR_SYSTEM_AND_USER_CFPREFSDS + 100
4   com.apple.CoreFoundation      	0x000000018e228cb8 -[CFPrefsSearchListSource synchronouslySendDaemonMessage:andAgentMessage:andDirectMessage:replyHandler:] + 232
5   com.apple.CoreFoundation      	0x000000018e227468 -[CFPrefsSearchListSource alreadylocked_generationCountFromListOfSources:count:] + 252
6   com.apple.CoreFoundation      	0x000000018e227144 -[CFPrefsSearchListSource alreadylocked_getDictionary:] + 468
7   com.apple.CoreFoundation      	0x000000018e226cf0 -[CFPrefsSearchListSource alreadylocked_copyValueForKey:] + 176
8   com.apple.CoreFoundation      	0x000000018e226c20 -[CFPrefsSource copyValueForKey:] + 60
9   com.apple.CoreFoundation      	0x000000018e226bcc __76-[_CFXPreferences copyAppValueForKey:identifier:container:configurationURL:]_block_invoke + 44
10  com.apple.CoreFoundation      	0x000000018e21fd98 __108-[_CFXPreferences(SearchListAdditions) withSearchListForIdentifier:container:cloudConfigurationURL:perform:]_block_invoke + 384
11  com.apple.CoreFoundation      	0x000000018e38fd3c -[_CFXPreferences withSearchListForIdentifier:container:cloudConfigurationURL:perform:] + 392
12  com.apple.CoreFoundation      	0x000000018e21f750 -[_CFXPreferences copyAppValueForKey:identifier:container:configurationURL:] + 168
13  com.apple.CoreFoundation      	0x000000018e21f66c _CFPreferencesCopyAppValueWithContainerAndConfiguration + 128
14  com.apple.SystemConfiguration 	0x000000018ecd5030 SCDynamicStoreCopyProxiesWithOptions + 180
15  libcurl.4.dylib               	0x0000000102302950 Curl_resolv + 296
16  libcurl.4.dylib               	0x00000001023302e0 create_conn + 11444
17  libcurl.4.dylib               	0x000000010232d58c Curl_connect + 96
18  libcurl.4.dylib               	0x0000000102317564 multi_runsingle + 444
19  libcurl.4.dylib               	0x00000001023172b4 curl_multi_perform + 152
20  libcurl.4.dylib               	0x00000001022f8f18 curl_easy_perform + 280
21  libphp7.so                    	0x0000000100e7549c zif_curl_exec + 104
22  xdebug.so                     	0x000000010493271c xdebug_execute_internal + 584
23  libphp7.so                    	0x00000001011b6bf0 ZEND_DO_FCALL_SPEC_RETVAL_UNUSED_HANDLER + 376
24  libphp7.so                    	0x000000010117da44 execute_ex + 88
25  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
26  libphp7.so                    	0x00000001011b7018 ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 472
27  libphp7.so                    	0x000000010117da44 execute_ex + 88
28  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
29  libphp7.so                    	0x00000001011b7018 ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 472
30  libphp7.so                    	0x000000010117da44 execute_ex + 88
31  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
32  libphp7.so                    	0x00000001011b7018 ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 472
33  libphp7.so                    	0x000000010117da44 execute_ex + 88
34  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
35  libphp7.so                    	0x00000001011b7018 ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 472
36  libphp7.so                    	0x000000010117da44 execute_ex + 88
37  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
38  libphp7.so                    	0x00000001011b7018 ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 472
39  libphp7.so                    	0x000000010117da44 execute_ex + 88
40  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
41  libphp7.so                    	0x00000001011b7018 ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 472
42  libphp7.so                    	0x000000010117da44 execute_ex + 88
43  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
44  libphp7.so                    	0x00000001011b7018 ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 472
45  libphp7.so                    	0x000000010117da44 execute_ex + 88
46  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
47  libphp7.so                    	0x00000001011b6cac ZEND_DO_FCALL_SPEC_RETVAL_UNUSED_HANDLER + 564
48  libphp7.so                    	0x000000010117da44 execute_ex + 88
49  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
50  libphp7.so                    	0x00000001011b6cac ZEND_DO_FCALL_SPEC_RETVAL_UNUSED_HANDLER + 564
51  libphp7.so                    	0x000000010117da44 execute_ex + 88
52  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
53  libphp7.so                    	0x00000001011b6cac ZEND_DO_FCALL_SPEC_RETVAL_UNUSED_HANDLER + 564
54  libphp7.so                    	0x000000010117da44 execute_ex + 88
55  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
56  libphp7.so                    	0x00000001011bb5e8 ZEND_INCLUDE_OR_EVAL_SPEC_TMPVAR_HANDLER + 624
57  libphp7.so                    	0x000000010117da44 execute_ex + 88
58  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
59  libphp7.so                    	0x00000001011bb5e8 ZEND_INCLUDE_OR_EVAL_SPEC_TMPVAR_HANDLER + 624
60  libphp7.so                    	0x000000010117da44 execute_ex + 88
61  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
62  libphp7.so                    	0x00000001011bb300 ZEND_INCLUDE_OR_EVAL_SPEC_CONST_HANDLER + 584
63  libphp7.so                    	0x000000010117da44 execute_ex + 88
64  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
65  libphp7.so                    	0x00000001011bb300 ZEND_INCLUDE_OR_EVAL_SPEC_CONST_HANDLER + 584
66  libphp7.so                    	0x000000010117da44 execute_ex + 88
67  xdebug.so                     	0x0000000104932408 xdebug_execute_ex + 780
68  libphp7.so                    	0x000000010117db88 zend_execute + 272
69  libphp7.so                    	0x00000001011417a0 zend_execute_scripts + 152
70  libphp7.so                    	0x00000001010ee330 php_execute_script + 532
71  libphp7.so                    	0x00000001011fc6c0 php_handler + 916
72  httpd                         	0x0000000100682e70 ap_run_handler + 64
73  httpd                         	0x0000000100683558 ap_invoke_handler + 268
74  httpd                         	0x00000001006b98d0 ap_internal_redirect + 60
75  mod_rewrite.so                	0x0000000100e03bc0 handler_redirect + 136
76  httpd                         	0x0000000100682e70 ap_run_handler + 64
77  httpd                         	0x0000000100683558 ap_invoke_handler + 268
78  httpd                         	0x00000001006b948c ap_process_async_request + 792
79  httpd                         	0x00000001006b953c ap_process_request + 24
80  httpd                         	0x00000001006b63d4 ap_process_http_connection + 344
81  httpd                         	0x0000000100693e6c ap_run_process_connection + 64
82  mod_mpm_prefork.so            	0x0000000100886530 child_main + 1032
83  mod_mpm_prefork.so            	0x0000000100885ff4 make_child + 432
84  mod_mpm_prefork.so            	0x0000000100885a58 prefork_run + 2056
85  httpd                         	0x00000001006964e8 ap_run_mpm + 84
86  httpd                         	0x0000000100689ea4 main + 1924
87  libdyld.dylib                 	0x000000018e195430 start + 4
```

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2021-08-27 20:07 UTC] requinix@php.net
-Status: Open +Status: Feedback
 [2021-08-27 20:07 UTC] requinix@php.net
Does it still happen without XDebug?
 [2021-08-27 20:30 UTC] chauncey at mcaskill dot ca
-Status: Feedback +Status: Open
 [2021-08-27 20:30 UTC] chauncey at mcaskill dot ca
Yes, the issue still occurs without XDebug.

I normally have the following enabled: ACPu, IMagick, IMAP, Memcache, Redis, and XDebug.

I tested HTTPD/PHP with and without each of these extensions (tried when not installed, when installed but disabled, and when enabled) and the fault only occurs when IMAP is enabled.

Additional details about the IMAP extension installation:

```
brew deps --tree imap@8.0
shivammathur/extensions/imap@8.0 (installed: 8.0.10)
├── imap-uw (installed: 2007f)
│   └── openssl@1.1 (installed: 1.1.1l)
├── openssl@1.1
└── krb5 (installed: 1.19.2)
    └── openssl@1.1
```
 [2022-02-04 12:31 UTC] st dot erokhin at gmail dot com
I confirm the issue still persists on MacOS BigSur, I managed to fix it disabling IMAP extension for PHP 7.4, here is crash log:

Process:               httpd [257]
Path:                  /usr/local/Cellar/httpd/2.4.52/bin/httpd
Identifier:            httpd
Version:               0
Code Type:             X86-64 (Native)
Parent Process:        httpd [99912]
Responsible:           httpd [99912]
User ID:               502

Date/Time:             2022-02-04 14:20:40.448 +0200
OS Version:            macOS 11.6.1 (20G224)
Report Version:        12
Bridge OS Version:     3.0 (14Y908)
Anonymous UUID:        7882624A-5403-D1A7-2371-AB25C2AF1904

Sleep/Wake UUID:       CD8D18D9-2121-4DBE-80B9-CA1542B4115E

Time Awake Since Boot: 96000 seconds
Time Since Wake:       6800 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.root.utility-qos

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

VM Regions Near 0x110:
--> 
    __TEXT                      102dc4000-102e14000    [  320K] r-x/r-x SM=COW  /usr/local/Cellar/httpd/2.4.52/bin/httpd

Application Specific Information:
crashed on child side of fork pre-exec
*** multi-threaded process forked ***

Thread 0 Crashed:: Dispatch queue: com.apple.root.utility-qos
0   libdispatch.dylib             	0x00007fff20315b8b dispatch_apply_f + 775
1   com.apple.CoreFoundation      	0x00007fff206ab47c __104-[CFPrefsSearchListSource synchronouslySendDaemonMessage:andAgentMessage:andDirectMessage:replyHandler:]_block_invoke.81 + 97
2   com.apple.CoreFoundation      	0x00007fff2055d5ef CFPREFERENCES_IS_WAITING_FOR_SYSTEM_AND_USER_CFPREFSDS + 74
3   com.apple.CoreFoundation      	0x00007fff2055d48f -[CFPrefsSearchListSource synchronouslySendDaemonMessage:andAgentMessage:andDirectMessage:replyHandler:] + 181
4   com.apple.CoreFoundation      	0x00007fff2055bf35 -[CFPrefsSearchListSource alreadylocked_generationCountFromListOfSources:count:] + 220
5   com.apple.CoreFoundation      	0x00007fff2055bc6f -[CFPrefsSearchListSource alreadylocked_getDictionary:] + 391
6   com.apple.CoreFoundation      	0x00007fff2055b876 -[CFPrefsSearchListSource alreadylocked_copyValueForKey:] + 144
7   com.apple.CoreFoundation      	0x00007fff2055b7bf -[CFPrefsSource copyValueForKey:] + 47
8   com.apple.CoreFoundation      	0x00007fff2055b771 __76-[_CFXPreferences copyAppValueForKey:identifier:container:configurationURL:]_block_invoke + 32
9   com.apple.CoreFoundation      	0x00007fff20553faa __108-[_CFXPreferences(SearchListAdditions) withSearchListForIdentifier:container:cloudConfigurationURL:perform:]_block_invoke + 361
10  com.apple.CoreFoundation      	0x00007fff206abc41 -[_CFXPreferences withSearchListForIdentifier:container:cloudConfigurationURL:perform:] + 372
11  com.apple.CoreFoundation      	0x00007fff20553a25 -[_CFXPreferences copyAppValueForKey:identifier:container:configurationURL:] + 137
12  com.apple.CoreFoundation      	0x00007fff2055395a _CFPreferencesCopyAppValueWithContainerAndConfiguration + 101
13  com.apple.SystemConfiguration 	0x00007fff20fee99b SCDynamicStoreCopyProxiesWithOptions + 155
14  libcurl.4.dylib               	0x00000001047158a8 Curl_resolv + 284
15  libcurl.4.dylib               	0x0000000104749de6 create_conn + 15235
16  libcurl.4.dylib               	0x00000001047461d7 Curl_connect + 167
17  libcurl.4.dylib               	0x000000010472bdfa multi_runsingle + 582
18  libcurl.4.dylib               	0x000000010472babe curl_multi_perform + 129
19  libcurl.4.dylib               	0x000000010470b0d0 curl_easy_perform + 306
20  libphp7.so                    	0x00000001034a9940 zif_curl_exec + 96
21  blackfire.so                  	0x0000000107a97f29 bf_zend_execute_internal + 329
22  xdebug.so                     	0x0000000106f004d1 xdebug_execute_internal + 337
23  libphp7.so                    	0x00000001037ab617 ZEND_DO_FCALL_SPEC_RETVAL_UNUSED_HANDLER + 364
24  libphp7.so                    	0x000000010378ff23 execute_ex + 35
25  blackfire.so                  	0x0000000107a9ccd7 bf_zend_execute + 7095
26  xdebug.so                     	0x0000000106f00206 xdebug_execute_ex + 694
27  libphp7.so                    	0x00000001037ab99d ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 419
28  libphp7.so                    	0x000000010378ff23 execute_ex + 35
29  blackfire.so                  	0x0000000107a9ccd7 bf_zend_execute + 7095
30  xdebug.so                     	0x0000000106f00206 xdebug_execute_ex + 694
31  libphp7.so                    	0x00000001037ab99d ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 419
32  libphp7.so                    	0x000000010378ff23 execute_ex + 35
33  blackfire.so                  	0x0000000107a9ccd7 bf_zend_execute + 7095
34  xdebug.so                     	0x0000000106f00206 xdebug_execute_ex + 694
35  libphp7.so                    	0x00000001037ab99d ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 419
36  libphp7.so                    	0x000000010378ff23 execute_ex + 35
37  blackfire.so                  	0x0000000107a9ccd7 bf_zend_execute + 7095
38  xdebug.so                     	0x0000000106f00206 xdebug_execute_ex + 694
39  libphp7.so                    	0x00000001037ab99d ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 419
40  libphp7.so                    	0x000000010378ff23 execute_ex + 35
41  blackfire.so                  	0x0000000107a9ccd7 bf_zend_execute + 7095
42  xdebug.so                     	0x0000000106f00206 xdebug_execute_ex + 694
43  libphp7.so                    	0x00000001037ab99d ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 419
44  libphp7.so                    	0x000000010378ff23 execute_ex + 35
45  blackfire.so                  	0x0000000107a9ccd7 bf_zend_execute + 7095
46  xdebug.so                     	0x0000000106f00206 xdebug_execute_ex + 694
47  libphp7.so                    	0x00000001037ab99d ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER + 419
48  libphp7.so                    	0x000000010378ff23 execute_ex + 35
49  blackfire.so                  	0x0000000107a9ccd7 bf_zend_execute + 7095
50  xdebug.so                     	0x0000000106f00206 xdebug_execute_ex + 694
51  libphp7.so                    	0x00000001037ab63e ZEND_DO_FCALL_SPEC_RETVAL_UNUSED_HANDLER + 403
52  libphp7.so                    	0x000000010378ff23 execute_ex + 35
53  blackfire.so                  	0x0000000107a9ccd7 bf_zend_execute + 7095
54  xdebug.so                     	0x0000000106f00206 xdebug_execute_ex + 694
55  libphp7.so                    	0x00000001037900de zend_execute + 351
56  libphp7.so                    	0x00000001037539b3 zend_execute_scripts + 269
57  libphp7.so                    	0x00000001036fc2ea php_execute_script + 491
58  libphp7.so                    	0x00000001037d8f05 php_handler + 1227
59  httpd                         	0x0000000102dc6bab ap_run_handler + 51
60  httpd                         	0x0000000102dc7175 ap_invoke_handler + 256
61  httpd                         	0x0000000102dfd7ee ap_process_async_request + 817
62  httpd                         	0x0000000102dfd885 ap_process_request + 20
63  httpd                         	0x0000000102dfa690 ap_process_http_connection + 345
64  httpd                         	0x0000000102dd7baf ap_run_process_connection + 51
65  mod_mpm_prefork.so            	0x0000000102f9a77f child_main + 1125
66  mod_mpm_prefork.so            	0x0000000102f9a216 make_child + 409
67  mod_mpm_prefork.so            	0x0000000102f99c12 prefork_run + 2090
68  httpd                         	0x0000000102dd9e91 ap_run_mpm + 64
69  httpd                         	0x0000000102dcdddc main + 2316
70  libdyld.dylib                 	0x00007fff204c9f3d start + 1

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000115804000  rbx: 0x0000000000000100  rcx: 0x0000000000000000  rdx: 0x0000000000000001
  rdi: 0x00007fff203154e4  rsi: 0x00007fff807a2180  rbp: 0x00007ffeece39400  rsp: 0x00007ffeece39370
   r8: 0x0000000115804000   r9: 0xfffffffeea7fc000  r10: 0x0000000000000000  r11: 0x0000000115800140
  r12: 0x0000000115804000  r13: 0x0000000000000000  r14: 0x00000000100004ff  r15: 0x0000000112804080
  rip: 0x00007fff20315b8b  rfl: 0x0000000000000206  cr2: 0x0000000000000110
  
Logical CPU:     0
Error Code:      0x020000b8
Trap Number:     133

Thread 0 instruction stream:
  41 0c 0f 8e 67 01 00 00-48 89 48 18 4c 89 70 08  A...g...H.H.L.p.
  4c 89 60 10 48 85 db 48-0f 44 d8 49 89 c4 41 ff  L.`.H..H.D.I..A.
  cd 75 a3 eb 1e 48 89 75-d0 48 89 55 c8 e8 1c ab  .u...H.u.H.U....
  01 00 48 8d 3d 80 f9 ff-ff 48 8b 55 c8 48 8b 75  ..H.=....H.U.H.u
  d0 eb 9e 41 c7 47 28 00-00 00 00 48 c7 43 10 00  ...A.G(....H.C..
  00 00 00 48 87 5e 30 48-85 db 0f 84 d7 00 00 00  ...H.^0H........
 [48]89 43 10 4c 89 ff e8-35 04 00 00 0f 28 45 b0  H.C.L...5....(E.	<==
  65 0f 29 04 25 a0 00 00-00 48 83 c4 68 5b 41 5c  e.).%....H..h[A\
  41 5d 41 5e 41 5f 5d c3-65 8b 04 25 20 00 00 00  A]A^A_].e..% ...
  c1 e8 08 25 ff 3f 00 00-0f 84 d8 fd ff ff 0f bc  ...%.?..........
  c0 ff c0 e9 b2 fd ff ff-89 c2 bf 01 00 00 00 49  ...............I
  39 d1 73 06 99 41 f7 f9-89 c7 4d 89 ce 4c 0f af  9.s..A....M..L..
  
Thread 0 last branch register state not available.


Binary Images:
       0x102dc4000 -        0x102e13fff +httpd (0) <D487AA09-DFF4-3EAB-A732-88609CFCC7BE> /usr/local/opt/httpd/bin/httpd
       0x102e61000 -        0x102eccfff +libpcre.1.dylib (0) <2FE6978A-064C-3F4C-8F3A-947322344D62> /usr/local/opt/pcre/lib/libpcre.1.dylib
       0x102ee0000 -        0x102ef9fff +libaprutil-1.0.dylib (0) <CD4B4166-6F17-396D-815A-C5D289687094> /usr/local/opt/apr-util/libexec/lib/libaprutil-1.0.dylib
       0x102f04000 -        0x102f05fff +libpspell.15.dylib (0) <E725D4DB-C809-386E-B8A5-57D7E8F09CF4> /usr/local/opt/aspell/lib/libpspell.15.dylib
       0x102f07000 -        0x102f26fff +libapr-1.0.dylib (0) <5F12AF64-8A08-39A6-AF44-F069E43FA2DF> /usr/local/opt/apr/libexec/lib/libapr-1.0.dylib
       0x102f98000 -        0x102f9bfff +mod_mpm_prefork.so (0) <5B3F16C1-6818-3078-B18B-9F92EA9C5DF5> /usr/local/opt/httpd/lib/httpd/modules/mod_mpm_prefork.so
       0x102fa8000 -        0x102fabfff +mod_authn_file.so (0) <2EFB0272-A8E0-37F6-B4DD-2A756AE19744> /usr/local/opt/httpd/lib/httpd/modules/mod_authn_file.so
       0x102fb8000 -        0x102fbbfff +mod_authn_core.so (0) <5F15EC45-2F2C-3A5F-8F51-35249E5CD21F> /usr/local/opt/httpd/lib/httpd/modules/mod_authn_core.so
       0x102fc8000 -        0x102fcbfff +mod_authz_host.so (0) <2BA23EAF-9421-39B5-A869-513DFFCF78D5> /usr/local/opt/httpd/lib/httpd/modules/mod_authz_host.so
       0x102fd8000 -        0x102fdbfff +mod_authz_groupfile.so (0) <EFC71540-44CB-3999-9DE4-F12C6480EBAF> /usr/local/opt/httpd/lib/httpd/modules/mod_authz_groupfile.so
       0x102fe8000 -        0x102febfff +mod_authz_user.so (0) <650220AA-7E29-3B50-9BA3-7A51221AF86D> /usr/local/opt/httpd/lib/httpd/modules/mod_authz_user.so
       0x102ff8000 -        0x102ffbfff +mod_authz_core.so (0) <8533D2BB-8198-3248-9BF1-BB0E0393904A> /usr/local/opt/httpd/lib/httpd/modules/mod_authz_core.so
       0x103008000 -        0x10300bfff +mod_access_compat.so (0) <33E5E4F5-C565-37C5-AFCF-FD0868FA1B9A> /usr/local/opt/httpd/lib/httpd/modules/mod_access_compat.so
       0x103018000 -        0x10301bfff +mod_auth_basic.so (0) <75A3B9FE-CD07-3A76-9FAD-CB0E4BDF8B3B> /usr/local/opt/httpd/lib/httpd/modules/mod_auth_basic.so
       0x103028000 -        0x10302bfff +mod_socache_shmcb.so (0) <E79D073E-8E09-390B-9DA9-DCF162297BB9> /usr/local/opt/httpd/lib/httpd/modules/mod_socache_shmcb.so
       0x103038000 -        0x10303bfff +mod_reqtimeout.so (0) <86C37629-9554-383D-BFF1-011C20B7A1FD> /usr/local/opt/httpd/lib/httpd/modules/mod_reqtimeout.so
       0x103048000 -        0x10304bfff +mod_filter.so (0) <5C03D8F9-C6A3-38B8-82DA-9D6BA8004E30> /usr/local/opt/httpd/lib/httpd/modules/mod_filter.so
       0x103058000 -        0x10305bfff +mod_mime.so (0) <A1500140-D690-3496-8C57-AF4E9921E677> /usr/local/opt/httpd/lib/httpd/modules/mod_mime.so
       0x103068000 -        0x10306bfff +mod_log_config.so (0) <9D3438CF-666B-376D-8ED0-CC9D40F31398> /usr/local/opt/httpd/lib/httpd/modules/mod_log_config.so
       0x103078000 -        0x10307bfff +mod_env.so (0) <20ED911F-DE47-37D3-99AA-EAA430CE02F2> /usr/local/opt/httpd/lib/httpd/modules/mod_env.so
       0x103088000 -        0x10308bfff +mod_headers.so (0) <13A8488E-74C2-352F-9394-43A8DAD787A9> /usr/local/opt/httpd/lib/httpd/modules/mod_headers.so
       0x103098000 -        0x10309bfff +mod_setenvif.so (0) <5C14303B-A195-394A-8943-DE1FC96438BC> /usr/local/opt/httpd/lib/httpd/modules/mod_setenvif.so
       0x1030a8000 -        0x1030abfff +mod_version.so (0) <6237C929-D622-3D81-A064-1069EFA57D06> /usr/local/opt/httpd/lib/httpd/modules/mod_version.so
       0x1030b8000 -        0x1030dffff +mod_ssl.so (0) <C7CAB972-567B-3937-B342-F38900FA5F40> /usr/local/opt/httpd/lib/httpd/modules/mod_ssl.so
       0x1030f4000 -        0x103143fff +libssl.1.1.dylib (0) <F2EB5CFF-F422-385A-B77F-BDBFA379A3E0> /usr/local/opt/openssl@1.1/lib/libssl.1.1.dylib
       0x103170000 -        0x10332ffff +libcrypto.1.1.dylib (0) <C8DC773B-B42A-39EE-8488-5EB7D41DA704> /usr/local/opt/openssl@1.1/lib/libcrypto.1.1.dylib
       0x1033c8000 -        0x1033cbfff +mod_unixd.so (0) <6524C10F-4451-3956-8BCF-A6C8AEC08533> /usr/local/opt/httpd/lib/httpd/modules/mod_unixd.so
       0x1033d8000 -        0x1033dffff +mod_status.so (0) <5C332ECE-0F5F-387E-B37B-BE1D494508A0> /usr/local/opt/httpd/lib/httpd/modules/mod_status.so
       0x1033ec000 -        0x1033f3fff +mod_autoindex.so (0) <2288B9DB-EFA4-3085-91A2-50531628915D> /usr/local/opt/httpd/lib/httpd/modules/mod_autoindex.so
       0x103400000 -        0x103403fff +mod_vhost_alias.so (0) <D3A991A7-4D89-3E1D-AFEB-6DA8EA787695> /usr/local/opt/httpd/lib/httpd/modules/mod_vhost_alias.so
       0x103410000 -        0x103413fff +mod_dir.so (0) <F11E3D4B-778A-3AFE-83FD-B918209F9E06> /usr/local/opt/httpd/lib/httpd/modules/mod_dir.so
       0x103420000 -        0x103423fff +mod_alias.so (0) <E7C60903-F509-3CD7-9FB2-90C25609FCB2> /usr/local/opt/httpd/lib/httpd/modules/mod_alias.so
       0x103430000 -        0x10343bfff +mod_rewrite.so (0) <F0DB3B3B-7022-3E5D-8C1A-F0198FAB234A> /usr/local/opt/httpd/lib/httpd/modules/mod_rewrite.so
       0x103448000 -        0x103f3ffff +libphp7.so (0) <EBC7DB56-EF8B-3A65-9D2A-39A50A82301E> /usr/local/opt/php@7.4/lib/httpd/modules/libphp7.so
       0x10411c000 -        0x1041affff +libtidy.58.dylib (0) <178F0D37-8C32-3B42-AB94-32C1E2BBE368> /usr/local/opt/tidy-html5/lib/libtidy.58.dylib
       0x1041f0000 -        0x1041f4fff +libargon2.1.dylib (0) <4D79ABEC-E884-3A9F-B4A7-6A10CCE99A68> /usr/local/opt/argon2/lib/libargon2.1.dylib
       0x1041f7000 -        0x104240fff +libaspell.15.dylib (0) <BAE82D2E-F43F-3D5B-9437-F684E9F9F1AC> /usr/local/opt/aspell/lib/libaspell.15.dylib
       0x104271000 -        0x1042a8fff +libpq.5.dylib (0) <824F5BA4-F6C5-3950-9F4A-19C441BBA27B> /usr/local/opt/libpq/lib/libpq.5.dylib
       0x1042bd000 -        0x10430cfff +libsybdb.5.dylib (0) <E032534C-FF9A-3F73-9066-D7084169C379> /usr/local/opt/freetds/lib/libsybdb.5.dylib
       0x104321000 -        0x10435cfff +libldap.2.dylib (0) <E68A2FF9-9B77-3FD1-90CB-BEBF990A463F> /usr/local/opt/openldap/lib/libldap.2.dylib
       0x104379000 -        0x104384fff +liblber.2.dylib (0) <4A88C548-9922-3F63-A5BE-80A57B9D835C> /usr/local/opt/openldap/lib/liblber.2.dylib
       0x104391000 -        0x1043f0fff +libgmp.10.dylib (0) <185B6429-AE7F-3DAB-841C-B1C2C1736C6B> /usr/local/opt/gmp/lib/libgmp.10.dylib
       0x104409000 -        0x104412fff +libintl.8.dylib (0) <FA921CC0-395B-3155-8259-EA61DE25C5D2> /usr/local/opt/gettext/lib/libintl.8.dylib
       0x104419000 -        0x10444cfff +libgssapi_krb5.2.2.dylib (0) <ABB7EF3B-FAF0-385F-A470-B0310DD3780C> /usr/local/opt/krb5/lib/libgssapi_krb5.2.2.dylib
       0x104465000 -        0x1044e4fff +libkrb5.3.3.dylib (0) <A0F256C1-F674-379A-A49C-2556751463DA> /usr/local/opt/krb5/lib/libkrb5.3.3.dylib
       0x104521000 -        0x104544fff +libk5crypto.3.1.dylib (0) <98E92061-0215-3B92-BDA5-473656636227> /usr/local/opt/krb5/lib/libk5crypto.3.1.dylib
       0x104551000 -        0x104554fff +libcom_err.3.0.dylib (0) <6C5B9D22-05D4-3F24-8C05-C5862EEA5C82> /usr/local/opt/krb5/lib/libcom_err.3.0.dylib
       0x104561000 -        0x1045e0fff +libpcre2-8.0.dylib (0) <3709BC08-AEB9-35D4-94B8-E6FB052869E4> /usr/local/opt/pcre2/lib/libpcre2-8.0.dylib
       0x1045ed000 -        0x1046d4fff +libsqlite3.0.dylib (0) <3845704A-619C-3A77-B434-6623FB70095F> /usr/local/opt/sqlite/lib/libsqlite3.0.dylib
       0x1046f9000 -        0x104774fff +libcurl.4.dylib (0) <4112D023-2382-3A90-8E15-D465C9FECE04> /usr/local/opt/curl/lib/libcurl.4.dylib
       0x104795000 -        0x1047bcfff +libgd.3.dylib (0) <9A5F74BC-A571-314C-AE36-27DBA95AEA96> /usr/local/opt/gd/lib/libgd.3.dylib
       0x1047ed000 -        0x1047f8fff +libicuio.69.dylib (0) <F5F0B55D-304A-3CB4-B901-B200C10CBB24> /usr/local/opt/icu4c/lib/libicuio.69.dylib
       0x104805000 -        0x10498cfff +libicui18n.69.dylib (0) <4A58BF67-385B-3D32-BF7F-CF171C5B6899> /usr/local/opt/icu4c/lib/libicui18n.69.dylib
       0x104aa1000 -        0x104bc0fff +libicuuc.69.dylib (0) <DF845C31-C909-3B00-B19C-A9351E928CFE> /usr/local/opt/icu4c/lib/libicuuc.69.dylib
       0x104c3d000 -        0x106794fff +libicudata.69.dylib (0) <8087D0C2-B991-3862-8D6D-9BDCFE3D48EA> /usr/local/opt/icu4c/lib/libicudata.69.dylib
       0x106799000 -        0x106808fff +libonig.5.dylib (0) <EC874ABC-2F5D-3C9C-B3BC-0DEA424E9A07> /usr/local/opt/oniguruma/lib/libonig.5.dylib
       0x106825000 -        0x106874fff +libodbc.2.dylib (0) <17C4C2C8-6B82-35B4-9709-60CCFA29F138> /usr/local/opt/unixodbc/lib/libodbc.2.dylib
       0x106889000 -        0x1068c8fff +libsodium.23.dylib (0) <D8777AB1-B4BA-324E-8E40-FEF56A1E7955> /usr/local/opt/libsodium/lib/libsodium.23.dylib
       0x1068da000 -        0x1068edfff +libzip.5.dylib (0) <3374F177-A811-3C30-820A-4E5A98B6DC31> /usr/local/opt/libzip/lib/libzip.5.dylib
       0x1068fe000 -        0x106905fff +libkrb5support.1.1.dylib (0) <54EE694E-1F73-3ED6-9EB9-BB2C87DD9838> /usr/local/Cellar/krb5/1.19.2/lib/libkrb5support.1.1.dylib
       0x106912000 -        0x10692dfff +libnghttp2.14.dylib (0) <66E20D8B-B451-3A40-9AB3-6BF70A49E266> /usr/local/opt/libnghttp2/lib/libnghttp2.14.dylib
       0x10693e000 -        0x10695dfff +libidn2.0.dylib (0) <640EB1B8-B507-350F-8027-588DC2C271F6> /usr/local/opt/libidn2/lib/libidn2.0.dylib
       0x10696a000 -        0x10697dfff +librtmp.1.dylib (0) <03529DCB-14A8-3665-B988-0ED54C3D760E> /usr/local/opt/rtmpdump/lib/librtmp.1.dylib
       0x106983000 -        0x1069aefff +libssh2.1.dylib (0) <7B98FF4D-4BE4-3908-82F9-7B7B4D438E9B> /usr/local/opt/libssh2/lib/libssh2.1.dylib
       0x1069c3000 -        0x106a5afff +libzstd.1.dylib (0) <B669DE01-9781-3358-B186-0420E0880BE9> /usr/local/opt/zstd/lib/libzstd.1.dylib
       0x106a6f000 -        0x106a78fff +libbrotlidec.1.dylib (0) <AC7337FC-F5BF-32B2-B46C-218E3B99F77D> /usr/local/opt/brotli/lib/libbrotlidec.1.dylib
       0x106a7c000 -        0x106c07fff +libunistring.2.dylib (0) <2BA12507-0DEB-3316-9666-76476657C4EC> /usr/local/opt/libunistring/lib/libunistring.2.dylib
       0x106c20000 -        0x106c3ffff +libbrotlicommon.1.dylib (0) <ED294103-E26D-3933-A628-59997A33770D> /usr/local/opt/brotli/lib/libbrotlicommon.1.dylib
       0x106c43000 -        0x106c66fff +libpng16.16.dylib (0) <B7CE95CF-E67E-39EB-8DF5-B89849A02BDA> /usr/local/opt/libpng/lib/libpng16.16.dylib
       0x106c6f000 -        0x106ceefff +libfreetype.6.dylib (0) <A7367C7F-593E-3DEA-8C26-595809A31F32> /usr/local/opt/freetype/lib/libfreetype.6.dylib
       0x106d0f000 -        0x106d3efff +libfontconfig.1.dylib (0) <DF644C1F-4C8C-372F-A0B4-B03BCB76AEDE> /usr/local/opt/fontconfig/lib/libfontconfig.1.dylib
       0x106d4b000 -        0x106d7afff +libjpeg.9.dylib (0) <AAF0BA22-8894-30A1-AF1E-B516618E3F14> /usr/local/opt/jpeg/lib/libjpeg.9.dylib
       0x106d8b000 -        0x106deafff +libtiff.5.dylib (0) <ECE196F8-2C67-3CBD-B28C-E528D4F17EFD> /usr/local/opt/libtiff/lib/libtiff.5.dylib
       0x106e03000 -        0x106e56fff +libwebp.7.dylib (0) <DC67090B-1391-3A50-8C26-84B9F23D251A> /usr/local/opt/webp/lib/libwebp.7.dylib
       0x106e6b000 -        0x106e72fff +libltdl.7.dylib (0) <F95D80F4-C9AC-37B0-A590-D8BEDA2EA93F> /usr/local/opt/libtool/lib/libltdl.7.dylib
       0x106efd000 -        0x106f34fff +xdebug.so (0) <E9CF9012-D698-359C-A7CB-CE9AC420FA93> /usr/local/lib/php/pecl/20190902/xdebug.so
       0x106f5d000 -        0x106fe0fff +opcache.so (0) <B9625DFE-0FDD-34D2-A49B-7E2D888B0CA1> /usr/local/opt/php@7.4/lib/php/20190902/opcache.so
       0x107200000 -        0x107203fff +psr.so (0) <3F3058D2-B861-3668-A68A-B167A4E8506E> /usr/local/lib/php/pecl/20190902/psr.so
       0x107218000 -        0x10783bfff +phalcon.so (0) <4D9ABFB3-CDB9-3194-B8B5-6180B6A7C0AF> /usr/local/lib/php/pecl/20190902/phalcon.so
       0x1079e4000 -        0x1079ebfff +mailparse.so (0) <684A176E-46DA-3694-BB0C-B9AC2247AA87> /usr/local/lib/php/pecl/20190902/mailparse.so
       0x1079fc000 -        0x107a5bfff +redis.so (0) <6E832E0A-5115-34A2-9FA5-16DBF49CD768> /usr/local/lib/php/pecl/20190902/redis.so
       0x107a90000 -        0x107accfff +blackfire.so (0) <3968C6A1-6894-3F9B-A0C4-2A755B8EBA70> /usr/local/Cellar/blackfire-php74/1.70.0/blackfire.so
       0x107aea000 -        0x107bbdfff +imap.so (0) <A14C9BA1-C2E2-3B3B-B093-E386BB864A10> /usr/local/opt/php@7.4-imap/lib/php/20190902/imap.so
       0x107bea000 -        0x107bf1fff +pdo_oci.so (0) <778AA565-8891-3C03-A797-B60C2717B80F> /usr/local/opt/php@7.4-pdo-oci/lib/php/20190902/pdo_oci.so
       0x107bfe000 -        0x10d488fff +libclntsh.dylib.19.1 (0) <DCA33C47-2159-3CB0-8BD3-FD0455E9A927> /usr/local/Cellar/php@7.4-pdo-oci/7.4.26/instantclient/libclntsh.dylib.19.1
       0x10d9b3000 -        0x10e082fff +libnnz19.dylib (0) <54BBEACF-D264-30EC-BC1D-35072312099C> /usr/local/Cellar/php@7.4-pdo-oci/7.4.26/instantclient/libnnz19.dylib
       0x10e1ab000 -        0x10e5f2fff +libclntshcore.dylib.19.1 (0) <F05FE7E5-9630-3156-9DA0-7B90595336DB> /usr/local/Cellar/php@7.4-pdo-oci/7.4.26/instantclient/libclntshcore.dylib.19.1
       0x10e68c000 -        0x10e68ffff  com.apple.AppSSO.AppSSOLocatePlugin-macOS (1.0 - 1) <1B231B40-2118-3B63-8421-556B2D395C4C> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/AppSSOLocatePlugin_macOS.bundle/Contents/MacOS/AppSSOLocatePlugin_macOS
       0x10e6a0000 -        0x10e6a3fff  com.apple.AppSSO.AppSSOConfigPlugin-macOS (1.0 - 1) <A863018A-AD79-364A-AFC3-B49ACE162915> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/AppSSOConfigPlugin_macOS.bundle/Contents/MacOS/AppSSOConfigPlugin_macOS
       0x10e6b4000 -        0x10e6b7fff  com.apple.heimdalodpac (11.6 - 205) <C2A44065-C676-3B71-982F-01F8F0C53AA4> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/heimdalodpac.bundle/Contents/MacOS/heimdalodpac
       0x10e6c4000 -        0x10e6c7fff  com.apple.kerberos.reachability (4.0 - 2.0) <8A9C57C1-2082-3F58-AE54-98C043C7C602> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/Reachability.bundle/Contents/MacOS/Reachability
       0x10e6d8000 -        0x10e6dbfff  com.apple.kerberos.sckerberosconfig (4.0 - 1) <3A527BD1-B64C-3C42-AA4F-658F84100600> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/SCKerberosConfig.bundle/Contents/MacOS/SCKerberosConfig
       0x111de6000 -        0x111e81fff  dyld (852.2) <14C5D17F-5032-37A2-9CD8-F437EB4A3992> /usr/lib/dyld
       0x11e000000 -        0x1257b2fff +libociei.dylib (0) <643BC095-AB78-35DF-83CE-A684ADDDD6CD> /usr/local/Cellar/php@7.4-pdo-oci/7.4.26/instantclient/libociei.dylib
    0x7fff201e6000 -     0x7fff201e7fff  libsystem_blocks.dylib (79) <4DF6D8F5-D9C2-3A96-8DE4-5E99D6B73DC8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff201e8000 -     0x7fff2021dfff  libxpc.dylib (2038.120.1) <0397FC9F-BD11-31FC-882E-9EDAA1E5CA65> /usr/lib/system/libxpc.dylib
    0x7fff2021e000 -     0x7fff20235fff  libsystem_trace.dylib (1277.120.1) <0A24EB90-5396-36B0-A7E6-E9288702856D> /usr/lib/system/libsystem_trace.dylib
    0x7fff20236000 -     0x7fff202d3fff  libcorecrypto.dylib (1000.140.4) <57E7471E-3960-3398-8918-20DF446EA99B> /usr/lib/system/libcorecrypto.dylib
    0x7fff202d4000 -     0x7fff20300fff  libsystem_malloc.dylib (317.140.5) <10C22FD0-FC7B-3325-852E-FEC4E88D2BC5> /usr/lib/system/libsystem_malloc.dylib
    0x7fff20301000 -     0x7fff20345fff  libdispatch.dylib (1271.120.2) <BA7AD614-F2C2-3E89-9043-43DD548AE5B1> /usr/lib/system/libdispatch.dylib
    0x7fff20346000 -     0x7fff2037ffff  libobjc.A.dylib (824) <6C842797-3EA9-30B4-A36D-E948DAF0EC89> /usr/lib/libobjc.A.dylib
    0x7fff20380000 -     0x7fff20382fff  libsystem_featureflags.dylib (28.60.1) <6EB33926-8E22-3000-B2F1-C6182B8CBD8F> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff20383000 -     0x7fff2040bfff  libsystem_c.dylib (1439.141.1) <8447A4B8-0751-3EF1-AA9B-042E40EFA07D> /usr/lib/system/libsystem_c.dylib
    0x7fff2040c000 -     0x7fff20461fff  libc++.1.dylib (905.6) <81674ADB-670F-3B19-AF5D-F3F66CB93D44> /usr/lib/libc++.1.dylib
    0x7fff20462000 -     0x7fff20477fff  libc++abi.dylib (905.6) <78CE7863-E224-3D0B-98F1-E5E3E382322D> /usr/lib/libc++abi.dylib
    0x7fff20478000 -     0x7fff204a7fff  libsystem_kernel.dylib (7195.141.8) <8DFE5B9F-B718-3D48-ABB1-238122989218> /usr/lib/system/libsystem_kernel.dylib
    0x7fff204a8000 -     0x7fff204b3fff  libsystem_pthread.dylib (454.120.2) <49670AEC-4D5D-3383-906C-23F568351FCB> /usr/lib/system/libsystem_pthread.dylib
    0x7fff204b4000 -     0x7fff204effff  libdyld.dylib (852.2) <5FBD0E1A-ACCE-36DB-B11C-622F26C85132> /usr/lib/system/libdyld.dylib
    0x7fff204f0000 -     0x7fff204f9fff  libsystem_platform.dylib (254.80.2) <A85D12B6-6213-34EE-84D8-8E993C19E330> /usr/lib/system/libsystem_platform.dylib
    0x7fff204fa000 -     0x7fff20525fff  libsystem_info.dylib (542.40.3) <36329FC6-9982-306A-87F9-D018E7F49F4B> /usr/lib/system/libsystem_info.dylib
    0x7fff20526000 -     0x7fff209c3fff  com.apple.CoreFoundation (6.9 - 1778.101) <CE026405-2DAF-39D2-A601-743B3A61366E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff209c4000 -     0x7fff20bf9fff  com.apple.LaunchServices (1122.45 - 1122.45) <2E70B4AB-38AF-37CC-A45B-ABEE3421A3A0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff20bfa000 -     0x7fff20ccefff  com.apple.gpusw.MetalTools (1.0 - 1) <72B42432-B432-381F-8EA6-F1B829C3EE5D> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff20ccf000 -     0x7fff20f2bfff  libBLAS.dylib (1336.140.1) <333A7ED7-D38C-3489-88A1-51F1D8414E47> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff20f2c000 -     0x7fff20f79fff  com.apple.Lexicon-framework (1.0 - 86.2) <FE0BC1AF-D1A0-3A6B-A404-A187AEF07704> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff20f7a000 -     0x7fff20fe8fff  libSparse.dylib (106) <95043C27-910C-3B53-ADE7-0E7907E579C9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff20fe9000 -     0x7fff21066fff  com.apple.SystemConfiguration (1.20 - 1.20) <AE4BE9DB-6F7D-3D4A-BA51-D86DDFC6B5B2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff21067000 -     0x7fff2109bfff  libCRFSuite.dylib (50) <95816B40-6F71-33EB-9324-E2942543DDD4> /usr/lib/libCRFSuite.dylib
    0x7fff2109c000 -     0x7fff212d4fff  libmecabra.dylib (929.10) <1E492E01-642F-3A9D-8A04-CF648C32696C> /usr/lib/libmecabra.dylib
    0x7fff212d5000 -     0x7fff21633fff  com.apple.Foundation (6.9 - 1778.101) <68B22A79-76E0-3BE4-9B53-0F38991C5A08> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff21634000 -     0x7fff2171cfff  com.apple.LanguageModeling (1.0 - 247.3) <D7E3186D-41DD-3826-85C8-D9ECC7D17197> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff2171d000 -     0x7fff21853fff  com.apple.CoreDisplay (237.4 - 237.4) <07520DBC-E1BB-310C-AD92-6F313820D60E> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff21854000 -     0x7fff21ac4fff  com.apple.audio.AudioToolboxCore (1.0 - 1181.72.1) <92B2E9B6-7FA8-3BE5-AD1A-25A2BC36821E> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff21ac5000 -     0x7fff21caafff  com.apple.CoreText (677.6.0.2 - 677.6.0.2) <4C194C5B-3B53-347A-B558-AF0070B6D27B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff21cab000 -     0x7fff2233cfff  com.apple.audio.CoreAudio (5.0 - 5.0) <7178815E-1890-3A3D-B0FD-F93EBB529E78> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff2233d000 -     0x7fff22694fff  com.apple.security (7.0 - 59754.141.1) <7EC1D1C5-672E-3DFD-902C-D511ECE6C110> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff22695000 -     0x7fff228f4fff  libicucore.A.dylib (66112) <251FC896-7EA1-3505-A9AA-80BAE7A6FD2B> /usr/lib/libicucore.A.dylib
    0x7fff228f5000 -     0x7fff228fefff  libsystem_darwin.dylib (1439.141.1) <29F82ABE-E1A0-3BC2-B91E-ADC010CF23FA> /usr/lib/system/libsystem_darwin.dylib
    0x7fff228ff000 -     0x7fff22beafff  com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <8191DB78-205F-3709-8E42-E257F3AD4459> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff22c2a000 -     0x7fff22c64fff  com.apple.CSStore (1122.45 - 1122.45) <AF990E23-4698-33A2-B1E0-665D4619D6C4> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff22c65000 -     0x7fff22d13fff  com.apple.framework.IOKit (2.0.2 - 1845.120.6) <61CDC69E-EC9E-32B1-8A63-532619BA310F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff22d14000 -     0x7fff22d1ffff  libsystem_notify.dylib (279.40.4) <608B5A07-D31A-3BEC-86BF-C2E498C085AF> /usr/lib/system/libsystem_notify.dylib
    0x7fff22d6e000 -     0x7fff23ab9fff  com.apple.AppKit (6.9 - 2022.60.128) <39481583-0997-3314-B9C2-0854C9B56C0A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff23aba000 -     0x7fff23d08fff  com.apple.UIFoundation (1.0 - 728.9) <A7628FB1-C04A-3F24-A14A-DDCD4CE67A00> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff23d09000 -     0x7fff23d1bfff  com.apple.UniformTypeIdentifiers (637 - 637) <5C5C0766-21EC-3C7C-9887-3DF23CBFCB84> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
    0x7fff24186000 -     0x7fff2480cfff  libnetwork.dylib (2288.140.7) <6D702F3B-34C0-3809-8CEC-1D59D58CF8BB> /usr/lib/libnetwork.dylib
    0x7fff2480d000 -     0x7fff24cabfff  com.apple.CFNetwork (1240.0.4 - 1240.0.4) <5AC97239-B546-33F2-80B0-ACBFD66C0E58> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff24cac000 -     0x7fff24cbafff  libsystem_networkextension.dylib (1295.140.3) <022BE26C-C058-3CC7-8E0B-348B3D3B639C> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff24cbb000 -     0x7fff24cbbfff  libenergytrace.dylib (22.100.1) <13CE770E-37DA-35D5-84A7-2F6C07F3B707> /usr/lib/libenergytrace.dylib
    0x7fff24cbc000 -     0x7fff24d18fff  libMobileGestalt.dylib (978.140.1) <23C1C24D-9C1B-323A-9B84-42221F9257AC> /usr/lib/libMobileGestalt.dylib
    0x7fff24d19000 -     0x7fff24d2ffff  libsystem_asl.dylib (385) <47B99A49-749E-356F-9D81-6D3A0B1544AB> /usr/lib/system/libsystem_asl.dylib
    0x7fff24d30000 -     0x7fff24d48fff  com.apple.TCC (1.0 - 1) <0C03114C-CBE1-3E8F-945E-CC11F0845978> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff24d49000 -     0x7fff250aefff  com.apple.SkyLight (1.600.0 - 588.8) <338D12B6-9059-3AED-B409-61EA90715BDA> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff250af000 -     0x7fff25738fff  com.apple.CoreGraphics (2.0 - 1463.18.4.1) <F720E729-88DF-304D-B498-A6C4459A9670> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff25739000 -     0x7fff2582ffff  com.apple.ColorSync (4.13.0 - 3473.5.3) <475BCA90-8D51-3695-AD75-29F5024C4515> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff25830000 -     0x7fff2588bfff  com.apple.HIServices (1.22 - 716) <6118C8D4-70EA-3FD5-A375-0B500896506A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff25c32000 -     0x7fff26051fff  com.apple.CoreData (120 - 1048) <C5D60909-0D12-316D-8455-9023884A60BE> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff26052000 -     0x7fff26067fff  com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <A2E727C2-659A-3791-8076-2DA387C440F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff26068000 -     0x7fff2621bfff  libsqlite3.dylib (321.3) <AC4BFB61-2C0C-3FE6-A776-E97BE0F8EFF3> /usr/lib/libsqlite3.dylib
    0x7fff2621c000 -     0x7fff26298fff  com.apple.Accounts (113 - 113) <A4533970-D42E-3A4E-8244-2ACC60504923> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff26299000 -     0x7fff262b0fff  com.apple.commonutilities (8.0 - 900) <56BAD997-43B7-3AF5-8E99-9F0810619899> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff262b1000 -     0x7fff26330fff  com.apple.BaseBoard (526 - 526) <A59E4406-C169-3723-9CC5-396A3ED80F49> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff26331000 -     0x7fff26379fff  com.apple.RunningBoardServices (1.0 - 505.100.9) <596F75F9-6D8E-3113-BE54-B4CA556D2770> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff2637a000 -     0x7fff263eefff  com.apple.AE (918.6 - 918.6) <2AC07F95-A6EB-3D82-B8AC-D6516E42C60F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff263ef000 -     0x7fff263f5fff  libdns_services.dylib (1310.140.1) <9D69602C-7ADF-3701-8A4E-F7C7B0A1AC37> /usr/lib/libdns_services.dylib
    0x7fff263f6000 -     0x7fff263fdfff  libsystem_symptoms.dylib (1431.140.1) <EA6435E7-8F85-315B-8AED-C20A07DE7F96> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff263fe000 -     0x7fff26589fff  com.apple.Network (1.0 - 1) <95AC4C13-4BD4-36AB-B0CE-BFB9B0812930> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff2658a000 -     0x7fff265b9fff  com.apple.analyticsd (1.0 - 1) <13CBC16D-996E-3FCC-B5FA-787896CC6CED> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff265ba000 -     0x7fff265bcfff  libDiagnosticMessagesClient.dylib (112) <2FCF6C74-5FAF-3968-AE36-294C9EF3AA75> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff265bd000 -     0x7fff26609fff  com.apple.spotlight.metadata.utilities (1.0 - 2150.26) <2775C636-B8B5-3ED3-A8FC-7C2CB8C737A9> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff2660a000 -     0x7fff266a4fff  com.apple.Metadata (10.7.0 - 2150.26) <A3A109B8-0C44-3377-A1BA-482D7AC72C0E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff266a5000 -     0x7fff266abfff  com.apple.DiskArbitration (2.7 - 2.7) <C121EA04-ABB5-34B6-80DD-360A75945764> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff266ac000 -     0x7fff26d13fff  com.apple.vImage (8.1 - 544.4) <AD7CE38E-4FC4-3AFA-9643-337552CDD639> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff26d14000 -     0x7fff26ff1fff  com.apple.QuartzCore (1.11 - 927.24) <5330EF82-E120-34A4-B9DF-68F4C7C13DCF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff26ff2000 -     0x7fff27033fff  libFontRegistry.dylib (309) <ACF99477-688E-33DA-8100-3191721EB052> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff27034000 -     0x7fff27174fff  com.apple.coreui (2.1 - 692.1) <CC1F2421-0338-3912-86BE-A15BFDDF5C00> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff27175000 -     0x7fff27260fff  com.apple.ViewBridge (553.1 - 553.1) <B5CC51A9-EA5C-3BE2-914C-5672C30A0311> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff27261000 -     0x7fff2726cfff  com.apple.PerformanceAnalysis (1.278.3 - 278.3) <4460D0DF-74B4-3EDB-9391-733525F1D0C6> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff2726d000 -     0x7fff2727cfff  com.apple.OpenDirectory (11.6 - 230.40.1) <E204DA2B-17DA-3A4B-A03C-8F3B673D5CCD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff2727d000 -     0x7fff2729cfff  com.apple.CFOpenDirectory (11.6 - 230.40.1) <9294B2FA-1269-3173-AB57-E80EBD2FE3E1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff2729d000 -     0x7fff272a9fff  com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5) <87C05C54-DD61-3555-8246-F56E535072D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff272aa000 -     0x7fff272cefff  com.apple.coreservices.SharedFileList (144 - 144) <FC634ADE-7F29-3A8D-AEB4-2F5A34685C88> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff272cf000 -     0x7fff272d1fff  libapp_launch_measurement.dylib (14.1) <34296F0E-D81B-383B-8B45-137CA086BC4D> /usr/lib/libapp_launch_measurement.dylib
    0x7fff272d2000 -     0x7fff27319fff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <0AA28C77-F6DE-3B5B-BD3B-6BDCE805B634> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff2731a000 -     0x7fff273fcfff  libxml2.2.dylib (34.10) <6750E272-224C-3FDD-9A1C-87249E63DA07> /usr/lib/libxml2.2.dylib
    0x7fff273fd000 -     0x7fff2744afff  com.apple.CoreVideo (1.8 - 414.7) <7E4736C8-AB84-3A3A-BB7C-A6A9A36BCE79> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff2744b000 -     0x7fff2744dfff  com.apple.loginsupport (1.0 - 1) <F0181B5E-C653-3769-B7D2-8AEB1210898C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff27476000 -     0x7fff27491fff  com.apple.UserManagement (1.0 - 1) <844C9F98-08E1-36EB-978D-660B4F4FA17E> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff28405000 -     0x7fff28415fff  libsystem_containermanager.dylib (318.100.4) <E0A89571-6D3E-3184-9F39-C6094C87B92B> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff28416000 -     0x7fff28427fff  com.apple.IOSurface (290.8.1 - 290.8.1) <9D6CA654-3E6F-3719-B9B9-65C4CDA41BC5> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff28428000 -     0x7fff28431fff  com.apple.IOAccelerator (442.9 - 442.9) <CF36BA06-85BA-3CCF-B59D-6A92EAB5EABB> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff28432000 -     0x7fff28555fff  com.apple.Metal (244.303 - 244.303) <1A5DBC62-5F40-3407-8BBA-FE2B56CFA993> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff28556000 -     0x7fff28572fff  com.apple.audio.caulk (1.0 - 70) <B2CA358A-CC85-3B89-810C-B0209F0EEAEA> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff28573000 -     0x7fff2865dfff  com.apple.CoreMedia (1.0 - 2780.10.4.1) <FDE1187A-BDBD-3B4E-A200-A3E2E22694B5> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff2865e000 -     0x7fff287bafff  libFontParser.dylib (305.6.0.4) <7A6DF449-3B4B-34FC-9D5C-B00FE59E6031> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff287bb000 -     0x7fff28ab6fff  com.apple.HIToolbox (2.1.1 - 1062) <028D8F63-A386-33B9-A797-FF5C82B44C2F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff28ab7000 -     0x7fff28acafff  com.apple.framework.DFRFoundation (1.0 - 267) <236EDA40-6A75-3BFE-9300-F9E4AAD36256> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff28acb000 -     0x7fff28acefff  com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <EAD6AFB0-E0FC-32FE-866B-8D017C12D868> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff28acf000 -     0x7fff28af8fff  com.apple.CoreSVG (1.0 - 149) <01655535-CA23-3F54-A8CE-92423D73CC99> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff28af9000 -     0x7fff28d35fff  com.apple.ImageIO (3.3.0 - 2130.7.3) <190A681F-44CD-35BC-AFC0-D09CC31280AC> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff28d36000 -     0x7fff290b1fff  com.apple.CoreImage (16.3.0 - 1140.2) <E05C48FC-81E3-3270-A37C-D206F364FF62> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff290b2000 -     0x7fff29118fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <6AE9618A-B8C9-3D0F-A389-71382F438DF8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff29119000 -     0x7fff2911cfff  libsystem_configuration.dylib (1109.140.1) <89E70992-616F-3DD3-9430-67025F759A1B> /usr/lib/system/libsystem_configuration.dylib
    0x7fff2911d000 -     0x7fff29121fff  libsystem_sandbox.dylib (1441.141.4) <087B0ADD-EF39-3E80-800F-F111FD65ABBA> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff29122000 -     0x7fff29123fff  com.apple.AggregateDictionary (1.0 - 1) <9FD9D68F-7B02-31A6-9583-EFF60B2A9F1C> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff29124000 -     0x7fff29127fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <0B523600-B02C-359B-BDD7-6EADCE8B5AD8> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff29128000 -     0x7fff29129fff  liblangid.dylib (136) <5645ED02-635B-3BA0-ACEF-D6C8BC74FAF0> /usr/lib/liblangid.dylib
    0x7fff2912a000 -     0x7fff291cefff  com.apple.CoreNLP (1.0 - 245.2) <24291100-1C4C-361B-B53B-B99CB4B53906> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff291cf000 -     0x7fff291d5fff  com.apple.LinguisticData (1.0 - 399) <55FF3554-9E14-3351-8E3C-3280C9CB664B> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff291d6000 -     0x7fff2987efff  libBNNS.dylib (288.100.5) <9A4AB8C3-BCF1-3BAB-896C-FA460E3A68D0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff2987f000 -     0x7fff29a51fff  libvDSP.dylib (760.100.3) <FF0A256C-B4CD-3BB1-9784-3F0054D62A91> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff29a52000 -     0x7fff29a63fff  com.apple.CoreEmoji (1.0 - 128.4) <37352743-CFF8-3196-8234-6AF30E531759> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff29a64000 -     0x7fff29a6efff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <A6497A63-1658-3652-91ED-D3AF0EFAFABD> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff29b42000 -     0x7fff29d43fff  com.apple.CoreUtils (6.6 - 660.37) <CC8A07A0-797C-3943-BEFF-A9E3466A0B7C> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff29d44000 -     0x7fff29d66fff  com.apple.MobileKeyBag (2.0 - 1.0) <70A80CF0-3682-32A6-AB83-8647FD8B2E52> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff29d67000 -     0x7fff29d77fff  com.apple.AssertionServices (1.0 - 505.100.9) <968E021C-1BCD-3249-BBAD-FEE64370EB1F> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff29d78000 -     0x7fff29e03fff  com.apple.securityfoundation (6.0 - 55240.40.4) <DB010D41-F904-3592-9301-BB75A0FA2FD4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff29e04000 -     0x7fff29e0dfff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <B222BEB6-CE24-3D70-903B-A9034D6FC6F6> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff29e0e000 -     0x7fff29e12fff  com.apple.xpc.ServiceManagement (1.0 - 1) <E1167FFF-E757-3C96-B26A-C0CE98EAA899> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff29e13000 -     0x7fff29e15fff  libquarantine.dylib (119.40.2) <B1418CB0-CDC7-3EB2-ABC3-8609ADC92BC4> /usr/lib/system/libquarantine.dylib
    0x7fff29e16000 -     0x7fff29e21fff  libCheckFix.dylib (31) <AA2CA9EF-88C2-3DB6-89E4-7E946131788D> /usr/lib/libCheckFix.dylib
    0x7fff29e22000 -     0x7fff29e39fff  libcoretls.dylib (169.100.1) <972397D6-A93B-302D-9CA3-C8B12C93899B> /usr/lib/libcoretls.dylib
    0x7fff29e3a000 -     0x7fff29e4afff  libbsm.0.dylib (68.40.1) <FEA138A5-B03E-3AD5-9E21-3F35405D147F> /usr/lib/libbsm.0.dylib
    0x7fff29e4b000 -     0x7fff29e94fff  libmecab.dylib (929.10) <E391699C-D139-338C-8919-1B2817BC1E25> /usr/lib/libmecab.dylib
    0x7fff29e95000 -     0x7fff29e9afff  libgermantok.dylib (24) <3DF990AD-8806-36B2-8168-4F18762C74A4> /usr/lib/libgermantok.dylib
    0x7fff29e9b000 -     0x7fff29eb0fff  libLinearAlgebra.dylib (1336.140.1) <0D201041-7BAB-3492-898D-ABDDD9D85D48> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff29eb1000 -     0x7fff2a0cffff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <5B727E28-3ACF-3DBB-B787-B1633CFB2413> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff2a0d0000 -     0x7fff2a11ffff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <315027A8-ADFD-3DC7-9B2A-6F1457E4D32E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff2a120000 -     0x7fff2a281fff  com.apple.MLCompute (1.0 - 1) <E0A748E2-21DA-319C-8B28-80A853090B86> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2a282000 -     0x7fff2a2b8fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <5D3C245B-BF53-31B0-B405-E4EB0FA608ED> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2a2b9000 -     0x7fff2a30ffff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <C251786D-BC17-3C99-94E7-10EC828139D4> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2a310000 -     0x7fff2a3a0fff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <AAE88278-E296-3976-9FCC-345F71C8005D> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2a3a1000 -     0x7fff2a3b0fff  com.apple.AppleFSCompression (125 - 1.0) <EAA1DBD4-02EE-3E39-A9F8-C40AA535C32A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff2a3b1000 -     0x7fff2a3bdfff  libbz2.1.0.dylib (44) <90425CDA-B4E1-3004-800B-7E4A87DCBCD2> /usr/lib/libbz2.1.0.dylib
    0x7fff2a3be000 -     0x7fff2a3c2fff  libsystem_coreservices.dylib (127.1) <7AE405FC-6A44-34A0-86AD-6BD80B0050BB> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff2a3c3000 -     0x7fff2a3f0fff  com.apple.CoreServices.OSServices (1122.45 - 1122.45) <8D3DFB6A-1621-38D0-BA1C-A972C343D839> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2a3f1000 -     0x7fff2a520fff  com.apple.AuthKit (1.0 - 1) <BE5EBFF1-F354-3F16-9B16-B30B6867ED3E> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff2a5bf000 -     0x7fff2a5d1fff  libz.1.dylib (76) <73C471D3-07CE-307D-A531-92C5D0E4C0E9> /usr/lib/libz.1.dylib
    0x7fff2a5d2000 -     0x7fff2a619fff  libsystem_m.dylib (3186.100.3) <EA0354A3-8618-3D76-A760-E550AC60CE95> /usr/lib/system/libsystem_m.dylib
    0x7fff2a61a000 -     0x7fff2a61afff  libcharset.1.dylib (59) <E389024B-7CAC-32A5-BF12-DF20C8A3B050> /usr/lib/libcharset.1.dylib
    0x7fff2a61b000 -     0x7fff2a620fff  libmacho.dylib (980) <1FCE2BE3-4F6F-3EAA-9BC5-A9892A45CF0D> /usr/lib/system/libmacho.dylib
    0x7fff2a621000 -     0x7fff2a63cfff  libkxld.dylib (7195.141.8) <A4FF718B-9B75-339A-BDDF-987C38610870> /usr/lib/system/libkxld.dylib
    0x7fff2a63d000 -     0x7fff2a648fff  libcommonCrypto.dylib (60178.120.3) <7E242F29-1CB6-30EF-8C9A-C768A90FDBA0> /usr/lib/system/libcommonCrypto.dylib
    0x7fff2a649000 -     0x7fff2a653fff  libunwind.dylib (201) <A5B040A8-847F-36EE-B13D-5DD1F5CD5BED> /usr/lib/system/libunwind.dylib
    0x7fff2a654000 -     0x7fff2a65bfff  liboah.dylib (203.58) <26D08622-69F5-32DB-80D2-9B4651A9F0CC> /usr/lib/liboah.dylib
    0x7fff2a65c000 -     0x7fff2a666fff  libcopyfile.dylib (173.40.2) <8C783785-0F5F-3DC5-B815-B29CEBA75737> /usr/lib/system/libcopyfile.dylib
    0x7fff2a667000 -     0x7fff2a66efff  libcompiler_rt.dylib (102.2) <1FDC92D1-8A17-30AF-8E72-4F0517AEA157> /usr/lib/system/libcompiler_rt.dylib
    0x7fff2a66f000 -     0x7fff2a671fff  libsystem_collections.dylib (1439.141.1) <11D5775A-AD4C-35ED-BC05-616AB67ACBBE> /usr/lib/system/libsystem_collections.dylib
    0x7fff2a672000 -     0x7fff2a674fff  libsystem_secinit.dylib (87.60.1) <27982311-637E-3308-9F55-4871762736F4> /usr/lib/system/libsystem_secinit.dylib
    0x7fff2a675000 -     0x7fff2a677fff  libremovefile.dylib (49.120.1) <5973CED7-797B-3288-9589-C1856752F91A> /usr/lib/system/libremovefile.dylib
    0x7fff2a678000 -     0x7fff2a678fff  libkeymgr.dylib (31) <AAA929A0-45E5-3186-8ABD-37EB25B2C939> /usr/lib/system/libkeymgr.dylib
    0x7fff2a679000 -     0x7fff2a680fff  libsystem_dnssd.dylib (1310.140.1) <4A85F13B-E3AD-3C44-B327-091F56D35CC1> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff2a681000 -     0x7fff2a686fff  libcache.dylib (83) <435668CB-666B-3379-AD65-F604A72099F4> /usr/lib/system/libcache.dylib
    0x7fff2a687000 -     0x7fff2a688fff  libSystem.B.dylib (1292.120.1) <2553EE0F-3C42-3ACE-9400-EF055BD5BE8E> /usr/lib/libSystem.B.dylib
    0x7fff2a689000 -     0x7fff2a68cfff  libfakelink.dylib (3) <C7E36B51-4FD6-3704-975E-AB9B46DF6D30> /usr/lib/libfakelink.dylib
    0x7fff2a68d000 -     0x7fff2a68dfff  com.apple.SoftLinking (1.0 - 1) <AF16BDE9-8995-39F5-A0ED-C65232A61095> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff2a68e000 -     0x7fff2a6c5fff  libpcap.A.dylib (98.100.3) <7EB940E4-BB5E-327D-B7F8-951F22F27D72> /usr/lib/libpcap.A.dylib
    0x7fff2a6c6000 -     0x7fff2a7b6fff  libiconv.2.dylib (59) <1F132286-CEA4-37A4-93F7-3C0A60C3645B> /usr/lib/libiconv.2.dylib
    0x7fff2a7b7000 -     0x7fff2a7c8fff  libcmph.dylib (8) <8A5DF97C-1CDA-36BC-86E8-EF8B7F314EDC> /usr/lib/libcmph.dylib
    0x7fff2a7c9000 -     0x7fff2a83afff  libarchive.2.dylib (83.100.2) <BAF76083-029C-3AC5-96E5-AE54786574A6> /usr/lib/libarchive.2.dylib
    0x7fff2a83b000 -     0x7fff2a8a2fff  com.apple.SearchKit (1.4.1 - 1.4.1) <7B3B1E70-2C63-30E2-B5CF-6BC8EE7EA418> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2a8a3000 -     0x7fff2a8a4fff  libThaiTokenizer.dylib (3) <84E7B443-74C5-386F-AEFF-FD48B94A04EB> /usr/lib/libThaiTokenizer.dylib
    0x7fff2a8a5000 -     0x7fff2a8c7fff  com.apple.applesauce (1.0 - 16.28) <0F9016E9-9DBB-3047-A1C3-A9FC85BAFE20> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff2a8c8000 -     0x7fff2a8dffff  libapple_nghttp2.dylib (1.41) <B730D1A0-8F61-3497-B63A-5661EB887E73> /usr/lib/libapple_nghttp2.dylib
    0x7fff2a8e0000 -     0x7fff2a8f6fff  libSparseBLAS.dylib (1336.140.1) <89309B8D-FA44-3525-BA00-21E87D51D424> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2a8f7000 -     0x7fff2a8f8fff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <295CF572-CFF5-3C5D-8006-F63988CFB5B7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff2a8f9000 -     0x7fff2a8fdfff  libpam.2.dylib (28.40.1) <B2457D3D-DADD-3157-8BFD-CF76F982FC13> /usr/lib/libpam.2.dylib
    0x7fff2a8fe000 -     0x7fff2a91dfff  libcompression.dylib (96.120.1) <788EAF3B-62D8-3A5F-9E42-E4CEDB3DAB51> /usr/lib/libcompression.dylib
    0x7fff2a91e000 -     0x7fff2a923fff  libQuadrature.dylib (7) <EA417A8F-8395-32AC-A67A-FA75DC2110CB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2a924000 -     0x7fff2acc1fff  libLAPACK.dylib (1336.140.1) <4A2BD114-000A-372A-B4CD-091360A39058> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2acc2000 -     0x7fff2ad11fff  com.apple.DictionaryServices (1.2 - 341) <960CC0D7-B2C6-3308-A120-C86F41A2301C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2ad12000 -     0x7fff2ad2afff  liblzma.5.dylib (16) <933D5DEC-E8E8-3946-A16E-1056F2075602> /usr/lib/liblzma.5.dylib
    0x7fff2ad2b000 -     0x7fff2ad2cfff  libcoretls_cfhelpers.dylib (169.100.1) <E2AC5901-93EC-3F67-A8B1-738E76B49804> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff2ad2d000 -     0x7fff2ae28fff  com.apple.APFS (1677.141.2 - 1677.141.2) <C4CDA06B-22D5-35A4-BA73-856DC272FAB5> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff2ae29000 -     0x7fff2ae36fff  libxar.1.dylib (452.0.4) <F45E7073-9E81-30DE-9DCB-FABA46E5DBBC> /usr/lib/libxar.1.dylib
    0x7fff2ae37000 -     0x7fff2ae3afff  libutil.dylib (58.40.2) <AE460378-5737-3BD8-90D9-E4E7603C4002> /usr/lib/libutil.dylib
    0x7fff2ae3b000 -     0x7fff2ae63fff  libxslt.1.dylib (17.6) <BFB2EA40-332D-3DB4-AA3E-025966219E88> /usr/lib/libxslt.1.dylib
    0x7fff2ae64000 -     0x7fff2ae6efff  libChineseTokenizer.dylib (37.1) <344E5492-4BD5-354A-8274-047F8388A826> /usr/lib/libChineseTokenizer.dylib
    0x7fff2ae6f000 -     0x7fff2af2cfff  libvMisc.dylib (760.100.3) <90F4EDF5-52D8-3345-9D57-2DC2E522959F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2af2d000 -     0x7fff2afc4fff  libate.dylib (3.0.6) <6F17C1CE-1F4D-3291-919D-A49E32E35344> /usr/lib/libate.dylib
    0x7fff2afc5000 -     0x7fff2afccfff  libIOReport.dylib (64.100.1) <4690B952-7BCF-31DB-A796-996D8094AB24> /usr/lib/libIOReport.dylib
    0x7fff2afe1000 -     0x7fff2aff7fff  com.apple.AppSSOCore (1.0 - 1) <A78450DF-2052-30E1-832D-C24A6F1E7848> /System/Library/PrivateFrameworks/AppSSOCore.framework/Versions/A/AppSSOCore
    0x7fff2b076000 -     0x7fff2b096fff  com.apple.SharedWebCredentials (928.6 - 928.6) <DB35F6F1-A02B-3C54-B208-B8C25A673928> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/Versions/A/SharedWebCredentials
    0x7fff2b097000 -     0x7fff2b0cdfff  com.apple.pluginkit.framework (1.0 - 1) <545963FE-A289-3F66-B6EA-9122340016DD> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff2b0d6000 -     0x7fff2b161fff  libCoreStorage.dylib (554.140.2) <AEE8AC91-7058-3275-90D4-B0217A41BED6> /usr/lib/libCoreStorage.dylib
    0x7fff2b162000 -     0x7fff2b1b5fff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <DC3B87A5-AA7D-3534-BF4F-089E16226C0D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff2b1b6000 -     0x7fff2b1cffff  libexpat.1.dylib (26.141.1) <F579645F-A493-3F2D-A9DB-C77664A1BCA1> /usr/lib/libexpat.1.dylib
    0x7fff2b1d0000 -     0x7fff2b1d9fff  libheimdal-asn1.dylib (597.140.2) <D59F68F4-A2E2-3F98-8167-DD5DDDAB568B> /usr/lib/libheimdal-asn1.dylib
    0x7fff2b1da000 -     0x7fff2b1eefff  com.apple.IconFoundation (479.4 - 479.4) <6B77361F-69AF-393F-97B8-9BDED38304B0> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
    0x7fff2b1ef000 -     0x7fff2b25bfff  com.apple.IconServices (479.4 - 479.4) <727B7BC3-AC02-31F7-9149-0014FDBCF17B> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff2b25c000 -     0x7fff2b2fafff  com.apple.MediaExperience (1.0 - 1) <B71F329D-70E3-34A8-A789-82D7ACA63C34> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff2b2fb000 -     0x7fff2b323fff  com.apple.persistentconnection (1.0 - 1.0) <E05B6AF9-376E-3E4D-B2F5-3A7A85D7CBB3> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff2b324000 -     0x7fff2b332fff  com.apple.GraphVisualizer (1.0 - 100.1) <09C716AC-B62A-3EF0-85A1-98A949EB88B3> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff2b333000 -     0x7fff2b74efff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <0E25BE9A-551C-3457-B7E8-7ED414223E3A> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff2b74f000 -     0x7fff2b796fff  com.apple.OTSVG (1.0 - 677.6.0.2) <53E2913D-E023-3685-9161-A14608F89DC1> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff2b797000 -     0x7fff2b79dfff  com.apple.xpc.AppServerSupport (1.0 - 2038.120.1) <523B9C03-A39E-3FF4-8216-34309C158113> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
    0x7fff2b79e000 -     0x7fff2b7b0fff  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <53477D30-E8A6-3935-A3B1-7CBDE387210A> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff2b7b1000 -     0x7fff2b7b3fff  libspindump.dylib (295.2) <003C7E84-C242-311A-A2FA-4622B66E3F24> /usr/lib/libspindump.dylib
    0x7fff2b7b4000 -     0x7fff2b874fff  com.apple.Heimdal (4.0 - 2.0) <22D8BF25-5FD0-3EE3-A547-B3F55FC09330> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff2ba14000 -     0x7fff2ba50fff  com.apple.bom (14.0 - 235) <8C9005F1-FC51-3CF3-9CAC-264C1D8031F7> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff2ba51000 -     0x7fff2ba9afff  com.apple.AppleJPEG (1.0 - 1) <D751A39A-DC50-3E2E-9C2D-70284574EC84> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff2ba9b000 -     0x7fff2bb7afff  libJP2.dylib (2130.7.3) <8DDCF1C9-288C-3389-A82A-8CF285C22351> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff2bb7b000 -     0x7fff2bb7efff  com.apple.WatchdogClient.framework (1.0 - 98.120.2) <13BB2B82-DF17-33C3-A19B-432E03744896> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff2bb7f000 -     0x7fff2bbb5fff  com.apple.MultitouchSupport.framework (4440.3 - 4440.3) <8B7FB5F9-E38B-3193-98AC-51EF565F61CB> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff2bbb6000 -     0x7fff2bd14fff  com.apple.VideoToolbox (1.0 - 2780.10.4.1) <1134D8C6-EA97-32B4-BD4C-DD02901F4B0B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff2bd15000 -     0x7fff2bd48fff  libAudioToolboxUtility.dylib (1181.72.1) <3043E7BD-6B6A-39EA-B482-4BDB39E1DF85> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff2bd49000 -     0x7fff2bd69fff  libPng.dylib (2130.7.3) <763FCB19-AE0C-3BFC-93F9-5E1D84658A1B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff2bd6a000 -     0x7fff2bdc9fff  libTIFF.dylib (2130.7.3) <D411022D-EA85-379D-A8FB-84CE2583ECE5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff2bdca000 -     0x7fff2bde6fff  com.apple.IOPresentment (58 - 37) <990B304C-15B6-397D-8B7E-636DA14AE1D3> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff2bde7000 -     0x7fff2bdeefff  com.apple.GPUWrangler (6.3.5 - 6.3.5) <E07D5D60-104E-3141-90CC-F81074D95E0D> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff2bdef000 -     0x7fff2bdf2fff  libRadiance.dylib (2130.7.3) <26086575-E7FE-3EA8-A099-B1EA1E1509C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff2bdf3000 -     0x7fff2bdf8fff  com.apple.DSExternalDisplay (3.1 - 380) <DCD6682A-9C61-3779-A81D-8E1FBED38C69> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff2bdf9000 -     0x7fff2be1dfff  libJPEG.dylib (2130.7.3) <EE8BD43F-037C-3AA8-AA5F-685BC1E858BE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff2be1e000 -     0x7fff2be4dfff  com.apple.ATSUI (1.0 - 1) <92428504-C766-3ACE-BC36-89F1A5CAB61C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2be4e000 -     0x7fff2be52fff  libGIF.dylib (2130.7.3) <EE211D7D-4994-3BFB-BC49-C63069B800E8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff2be53000 -     0x7fff2be5cfff  com.apple.CMCaptureCore (1.0 - 82.6) <C1960208-BCA3-3D47-9DBE-CF1A81C2053B> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
    0x7fff2be5d000 -     0x7fff2bea4fff  com.apple.print.framework.PrintCore (16.1 - 531.1) <8139D1A2-7037-3B4F-AB8F-2BF38D64D798> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2bea5000 -     0x7fff2bf72fff  com.apple.TextureIO (3.10.9 - 3.10.9) <0E29AC8D-246E-3F7F-A8A0-10E09DD64603> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff2bf73000 -     0x7fff2bf7bfff  com.apple.InternationalSupport (1.0 - 61.1) <8E0C26AC-7462-34B5-B608-0DB611CCB687> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff2bf7c000 -     0x7fff2bff6fff  com.apple.datadetectorscore (8.0 - 674) <3E182298-355E-337F-A398-B266DEC5E6F3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff2bff7000 -     0x7fff2c054fff  com.apple.UserActivity (439 - 439) <E011EB02-BB18-3154-8010-AD4C6D21792B> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
    0x7fff2ccc2000 -     0x7fff2ccf3fff  libSessionUtility.dylib (76.69) <E6D8E0BB-3C76-343B-B8EA-03C411971A6C> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
    0x7fff2ccf4000 -     0x7fff2ce28fff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <7C7D69A5-6686-3040-88F4-87B892B96C0D> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2ce29000 -     0x7fff2ce8efff  com.apple.audio.AudioSession (1.0 - 76.69) <3E7FD009-AC1B-398E-A5BE-D892725A73C7> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
    0x7fff2ce8f000 -     0x7fff2cea1fff  libAudioStatistics.dylib (27.64) <2072394F-C2D4-3EBE-8259-CEBBC87DB2C7> /usr/lib/libAudioStatistics.dylib
    0x7fff2cea2000 -     0x7fff2ceb1fff  com.apple.speech.synthesis.framework (9.0.66 - 9.0.66) <3FADC203-0E7D-3208-9BF7-CD8AE1B9D204> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2ceb2000 -     0x7fff2cf1efff  com.apple.ApplicationServices.ATS (377 - 516) <79E67A4C-DAED-3E60-AF13-23BF0C11A3CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2cf1f000 -     0x7fff2cf37fff  libresolv.9.dylib (68) <E2B9E465-C557-3CEA-85F9-4DAF5D550503> /usr/lib/libresolv.9.dylib
    0x7fff2cf38000 -     0x7fff2cf4bfff  libsasl2.2.dylib (214) <BB375531-9020-3B34-BB66-BF3108F71CED> /usr/lib/libsasl2.2.dylib
    0x7fff2d06a000 -     0x7fff2d149fff  libSMC.dylib (20) <B45BD314-B645-3948-B1C2-1FDA40453078> /usr/lib/libSMC.dylib
    0x7fff2d14a000 -     0x7fff2d1a9fff  libcups.2.dylib (494.3) <353033B4-E6E6-375A-8BC7-0EE2F67FC8C3> /usr/lib/libcups.2.dylib
    0x7f
 [2022-02-24 14:46 UTC] florian dot weber at ueberbit dot de
I have the same problem. It works without problems when PHP-FPM is started from the terminal (/opt/homebrew/opt/php@7.4/sbin/php-fpm --nodaemonize).

The same configuration as a service does not work.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>KeepAlive</key>
	<true/>
	<key>Label</key>
	<string>homebrew.mxcl.php@7.4</string>
	<key>ProgramArguments</key>
	<array>
		<string>/opt/homebrew/opt/php@7.4/sbin/php-fpm</string>
		<string>--nodaemonize</string>
	</array>
	<key>RunAtLoad</key>
	<true/>
	<key>StandardErrorPath</key>
	<string>/opt/homebrew/var/log/php-fpm.log</string>
	<key>WorkingDirectory</key>
	<string>/opt/homebrew/var</string>
</dict>
</plist>

---
 [2022-02-24 15:24 UTC] florian dot weber at ueberbit dot de
It works with LANG=en_US.UTF-8 in the service definition.

	<key>EnvironmentVariables</key>
	<dict>
		<key>LANG</key>
		<string>en_US.UTF-8</string>
	</dict>
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 19:01:30 2024 UTC