BulletCharacterControllerNode crashes game window

Hi All,
Im trying to make a function that makes a colider mesh for a model (see code below), but when I try to do this for a BulletCharacterControllerNode, the game window crashes and there are no errors in the Idle. I do get an error in a problem report popup that has this: EXC_I386_GPFLT in it.

I got this code from another post and heavily edited it.

I am using a Mac with MacOs 10.14, Python 3.11, and Panda3d 10.13.

def modelHBMakeRender(self,inputModel,mass,friction,pos,isCharecter):
    #loads model
    inputModel=loader.loadModel(inputModel)
    #makes mesh thats empty
    outputBulletMesh=BulletTriangleMesh()
    for meshNum in range(0,len(inputModel.findAllMatches("**/+GeomNode")),1):
      #adds triangles to mesh that is the shape of the model
      outputBulletMesh.addGeom(inputModel.findAllMatches("**/+GeomNode").getPath(meshNum).node().getGeom(0))
    outputBulletMesh=BulletTriangleMeshShape(outputBulletMesh,dynamic=True)
    #adds mesh to render for not player
    if isCharecter==False:
      np=render.attachNewNode(BulletRigidBodyNode(str(inputModel)))
      #sets position of node
      np.setPos(pos)
      #sets mass of node
      np.node().setMass(mass)
      #sets friction of node
      np.node().setFriction(friction)
      #adds mesh to the node
      np.node().addShape(outputBulletMesh)
      #makes node have physics
      self.bulletWorld.attachRigidBody(np.node())
    #adds mesh to render for player
    if isCharecter==True:
      #adds mesh to charecter controler 
      np=BulletCharacterControllerNode(outputBulletMesh,0.4,str(inputModel))
      #reparents to render
      self.bulletWorld.attachCharacter(np)
    #returns things i need for the future
    return inputModel,np

My regular Bullet collision from model function seems to work when I call it on an Actor. I haven’t exhaustively verified this (kind of a strange use case imo).

First the collision function, then how I instantiate it with the BulletCharacterControllerNode:

def make_collision_from_model(input_model, node_number, mass, world, target_pos):
    # tristrip generation from static models
    # generic tri-strip collision generator begins
    geom_nodes = input_model.find_all_matches('**/+GeomNode')
    geom_nodes = geom_nodes.get_path(node_number).node()
    # print(geom_nodes)
    geom_target = geom_nodes.get_geom(0)
    # print(geom_target)
    output_bullet_mesh = BulletTriangleMesh()
    output_bullet_mesh.add_geom(geom_target)
    tri_shape = BulletTriangleMeshShape(output_bullet_mesh, dynamic=False)
    print(output_bullet_mesh)
    
    body = BulletRigidBodyNode('input_model_tri_mesh')
    np = self.render.attach_new_node(body)
    np.node().add_shape(tri_shape)
    np.node().set_mass(mass)
    np.node().set_friction(0.01)
    np.set_pos(target_pos)
    np.set_scale(1)
    # np.set_h(180)
    # np.set_p(180)
    # np.set_r(180)
    np.set_collide_mask(BitMask32.allOn())
    world.attach_rigid_body(np.node())
# initialize player character physics the Bullet way
shape_1 = BulletCapsuleShape(0.75, 0.5, ZUp)
player_node = BulletCharacterControllerNode(shape_1, 0.1, 'Player')  # (shape, mass, player name)
player_np = self.render.attach_new_node(player_node)
player_np.set_pos(-20, -10, 30)
player_np.set_collide_mask(BitMask32.allOn())
self.world.attach_character(player_np.node())
# cast player_np to self.player
self.player = player_np

# reparent player character to render node
fp_character = actor_data.player_character
fp_character.reparent_to(self.render)
fp_character.set_scale(1)
# set the actor skinning hardware shader
fp_character.set_attrib(scene_shader)
  
make_collision_from_model(fp_character, 0, 0, self.world, (arena_1.get_pos()))

fp_character.reparent_to(self.player)
1 Like

Welcome to the community!

Could you share the full crash log?

Hi rbd,

Thanks!

Here is the crash log, its kind of long though so heres part 1:

Process:               Python [8294]
Path:                  /Library/Frameworks/Python.framework/Versions/3.11/Resources/Python.app/Contents/MacOS/Python
Identifier:            org.python.python
Version:               3.11.1 (3.11.1)
Code Type:             X86-64 (Native)
Parent Process:        Python [860]
Responsible:           Python [8294]
User ID:               502

Date/Time:             2023-02-26 17:02:32.422 -0800
OS Version:            Mac OS X 10.14.6 (18G103)
Report Version:        12
Anonymous UUID:        23B99573-20CA-F36F-72CB-B5E02ACB85E5

Sleep/Wake UUID:       36DF688B-74C9-4A2B-B35E-B49E08532487

Time Awake Since Boot: 100000 seconds
Time Since Wake:       220 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       EXC_I386_GPFLT
Exception Note:        EXC_CORPSE_NOTIFY

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

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libpandabullet.1.10.dylib     	0x000000011577927b btCollisionWorld::addCollisionObject(btCollisionObject*, short, short) + 203
1   libpandabullet.1.10.dylib     	0x00000001156fd695 BulletWorld::do_attach_character(BulletBaseCharacterControllerNode*) + 549
2   libpandabullet.1.10.dylib     	0x00000001156ff556 BulletWorld::attach_character(BulletBaseCharacterControllerNode*) + 54
3   bullet.cpython-311-darwin.so  	0x00000001155f25b4 Dtool_BulletWorld_attach_character_880(_object*, _object*) + 196
4   org.python.python             	0x000000010e1bc5d1 _PyEval_EvalFrameDefault + 70609
5   org.python.python             	0x000000010e1bfd50 _PyEval_Vector + 128
6   org.python.python             	0x000000010e08c6a0 _PyObject_FastCallDictTstate + 96
7   org.python.python             	0x000000010e11a445 slot_tp_init + 181
8   org.python.python             	0x000000010e1106ba type_call + 122
9   org.python.python             	0x000000010e08c3e1 _PyObject_MakeTpCall + 129
10  org.python.python             	0x000000010e1b9d37 _PyEval_EvalFrameDefault + 60215
11  org.python.python             	0x000000010e1a9eba PyEval_EvalCode + 282
12  org.python.python             	0x000000010e1a4833 builtin_exec + 483
13  org.python.python             	0x000000010e0f1c94 cfunction_vectorcall_FASTCALL_KEYWORDS + 68
14  org.python.python             	0x000000010e1b9c3f _PyEval_EvalFrameDefault + 59967
15  org.python.python             	0x000000010e1bfd50 _PyEval_Vector + 128
16  org.python.python             	0x000000010e09074f method_vectorcall + 207
17  org.python.python             	0x000000010e1bce2a _PyEval_EvalFrameDefault + 72746
18  org.python.python             	0x000000010e1a9eba PyEval_EvalCode + 282
19  org.python.python             	0x000000010e233b86 PyRun_StringFlags + 214
20  org.python.python             	0x000000010e233a02 PyRun_SimpleStringFlags + 82
21  org.python.python             	0x000000010e2562f2 Py_RunMain + 466
22  org.python.python             	0x000000010e25798b pymain_main + 43
23  org.python.python             	0x000000010e2584aa Py_BytesMain + 42
24  libdyld.dylib                 	0x00007fff6557e3d5 start + 1

Thread 1:
0   libsystem_pthread.dylib       	0x00007fff657713f0 start_wqthread + 0

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

Thread 3:
0   libsystem_kernel.dylib        	0x00007fff656ba61a __select + 10
1   select.cpython-311-darwin.so  	0x000000010f2e2f10 select_select_impl + 432
2   org.python.python             	0x000000010e1bbcbe _PyEval_EvalFrameDefault + 68286
3   org.python.python             	0x000000010e1bfd50 _PyEval_Vector + 128
4   org.python.python             	0x000000010e08c6a0 _PyObject_FastCallDictTstate + 96
5   org.python.python             	0x000000010e11a445 slot_tp_init + 181
6   org.python.python             	0x000000010e1106ba type_call + 122
7   org.python.python             	0x000000010e08c3e1 _PyObject_MakeTpCall + 129
8   org.python.python             	0x000000010e1b9d37 _PyEval_EvalFrameDefault + 60215
9   org.python.python             	0x000000010e1bfd50 _PyEval_Vector + 128
10  org.python.python             	0x000000010e1bce2a _PyEval_EvalFrameDefault + 72746
11  org.python.python             	0x000000010e1bfd50 _PyEval_Vector + 128
12  org.python.python             	0x000000010e090846 method_vectorcall + 454
13  org.python.python             	0x000000010e2c8156 thread_run + 230
14  org.python.python             	0x000000010e2436c4 pythread_wrapper + 36
15  libsystem_pthread.dylib       	0x00007fff657722eb _pthread_body + 126
16  libsystem_pthread.dylib       	0x00007fff65775249 _pthread_start + 66
17  libsystem_pthread.dylib       	0x00007fff6577140d thread_start + 13

Thread 4:
0   libsystem_kernel.dylib        	0x00007fff656ba61a __select + 10
1   libtcl8.6.dylib               	0x000000010ee098b8 NotifierThreadProc + 880
2   libsystem_pthread.dylib       	0x00007fff657722eb _pthread_body + 126
3   libsystem_pthread.dylib       	0x00007fff65775249 _pthread_start + 66
4   libsystem_pthread.dylib       	0x00007fff6577140d thread_start + 13

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

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

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

Thread 8:: CVDisplayLink
0   libsystem_kernel.dylib        	0x00007fff656b686a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff657755a1 _pthread_cond_wait + 773
2   com.apple.CoreVideo           	0x00007fff3b393797 CVDisplayLink::waitUntil(unsigned long long) + 229
3   com.apple.CoreVideo           	0x00007fff3b392d46 CVDisplayLink::runIOThread() + 482
4   libsystem_pthread.dylib       	0x00007fff657722eb _pthread_body + 126
5   libsystem_pthread.dylib       	0x00007fff65775249 _pthread_start + 66
6   libsystem_pthread.dylib       	0x00007fff6577140d thread_start + 13

Thread 9:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff656b322a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff656b376c mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff3962694e __CFRunLoopServiceMachPort + 328
3   com.apple.CoreFoundation      	0x00007fff39625ebc __CFRunLoopRun + 1612
4   com.apple.CoreFoundation      	0x00007fff3962561e CFRunLoopRunSpecific + 455
5   com.apple.AppKit              	0x00007fff36c244a2 _NSEventThread + 175
6   libsystem_pthread.dylib       	0x00007fff657722eb _pthread_body + 126
7   libsystem_pthread.dylib       	0x00007fff65775249 _pthread_start + 66
8   libsystem_pthread.dylib       	0x00007fff6577140d thread_start + 13

Thread 10:
0   libsystem_kernel.dylib        	0x00007fff656b327e semaphore_timedwait_trap + 10
1   libdispatch.dylib             	0x00007fff65531c99 _dispatch_sema4_timedwait + 76
2   libdispatch.dylib             	0x00007fff65532377 _dispatch_semaphore_wait_slow + 58
3   libdispatch.dylib             	0x00007fff6553f1fd _dispatch_worker_thread + 317
4   libsystem_pthread.dylib       	0x00007fff657722eb _pthread_body + 126
5   libsystem_pthread.dylib       	0x00007fff65775249 _pthread_start + 66
6   libsystem_pthread.dylib       	0x00007fff6577140d thread_start + 13

Thread 11:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib        	0x00007fff656b322a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff656b376c mach_msg + 60
2   com.apple.audio.CoreAudio     	0x00007fff39095eda HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 122
3   com.apple.audio.CoreAudio     	0x00007fff39095e4f HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 45
4   com.apple.audio.CoreAudio     	0x00007fff3909239f HALC_ProxyIOContext::IOWorkLoop() + 1017
5   com.apple.audio.CoreAudio     	0x00007fff39091df4 HALC_ProxyIOContext::IOThreadEntry(void*) + 122
6   com.apple.audio.CoreAudio     	0x00007fff39091956 HALB_IOThread::Entry(void*) + 72
7   libsystem_pthread.dylib       	0x00007fff657722eb _pthread_body + 126
8   libsystem_pthread.dylib       	0x00007fff65775249 _pthread_start + 66
9   libsystem_pthread.dylib       	0x00007fff6577140d thread_start + 13

Thread 12:
0   libsystem_kernel.dylib        	0x00007fff656b6f32 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff65642914 nanosleep + 199
2   libsystem_c.dylib             	0x00007fff65642808 usleep + 53
3   libfmodex.dylib               	0x00000001197ab9bd 0x1197a9000 + 10685
4   libfmodex.dylib               	0x000000011982ef91 0x1197a9000 + 548753
5   libsystem_pthread.dylib       	0x00007fff657722eb _pthread_body + 126
6   libsystem_pthread.dylib       	0x00007fff65775249 _pthread_start + 66
7   libsystem_pthread.dylib       	0x00007fff6577140d thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000002  rbx: 0x00007fa8ddcb4860  rcx: 0x00007fa8e05efb78  rdx: 0x0000000000000002
  rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x00007ffee1c25d70  rsp: 0x00007ffee1c25cc0
   r8: 0x00007fa8e0500000   r9: 0x08496000524b0002  r10: 0x0000000000000002  r11: 0x000000010e706a00
  r12: 0x0000000000000020  r13: 0x00007fa8e05efb70  r14: 0x0000000000000002  r15: 0x6138353834643931
  rip: 0x000000011577927b  rfl: 0x0000000000010202  cr2: 0x0000000115715980
  
Logical CPU:     0
Error Code:      0x00000000
Trap Number:     13

Heres part 2:

Binary Images:
       0x10dfd9000 -        0x10dfdcff3 +org.python.python (3.11.1 - 3.11.1) <740EE9EE-F99D-328A-8C52-BB1FB542EACB> /Library/Frameworks/Python.framework/Versions/3.11/Resources/Python.app/Contents/MacOS/Python
       0x10dfe9000 -        0x10e3c8ff7 +org.python.python (3.11.0, [c] 2001-2021 Python Software Foundation. - 3.11.0) <6B965100-5AB3-35A6-ADC9-3E7EB71EDA7A> /Library/Frameworks/Python.framework/Versions/3.11/Python
       0x10eb58000 -        0x10eb5bff3 +_heapq.cpython-311-darwin.so (0) <B6E47FBE-B90C-3B62-8418-4B12C063FA80> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so
       0x10eb68000 -        0x10eb6bfff +_queue.cpython-311-darwin.so (0) <EBF4D4BE-3BEB-3F71-ADAA-6173B6C8EC18> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so
       0x10ecea000 -        0x10ecf1ff7 +_tkinter.cpython-311-darwin.so (0) <F2B7C478-AE48-3C12-89B8-0264CD095CDA> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so
       0x10ed06000 -        0x10ee29ff3 +libtcl8.6.dylib (8.6.12 - 8.6.12) <0CF0F829-43BC-3847-86E5-AA783391C315> /Library/Frameworks/Python.framework/Versions/3.11/lib/libtcl8.6.dylib
       0x10ee66000 -        0x10ef6dff7 +libtk8.6.dylib (8.6.12 - 8.6.12) <31DA200F-D034-3BEE-9673-53DA7054631B> /Library/Frameworks/Python.framework/Versions/3.11/lib/libtk8.6.dylib
       0x10f0f1000 -        0x10f0f4ff7 +_opcode.cpython-311-darwin.so (0) <D0860ACB-BC23-3D09-AB01-12300EFEA4B8> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so
       0x10f101000 -        0x10f108ffb +binascii.cpython-311-darwin.so (0) <26719A06-5F6C-3B12-AB7C-0F0B7925742E> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so
       0x10f115000 -        0x10f120ffb +math.cpython-311-darwin.so (0) <F636B5F8-4DB3-3336-95BB-289D6CBCD968> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/math.cpython-311-darwin.so
       0x10f131000 -        0x10f140ff3 +_datetime.cpython-311-darwin.so (0) <B4501EC9-6025-3C77-B110-EC65FF725469> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so
       0x10f155000 -        0x10f15cff3 +_struct.cpython-311-darwin.so (0) <49D78BCC-CE2D-3E68-9CD9-C77AE5C8D604> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so
       0x10f16d000 -        0x10f198ff7 +pyexpat.cpython-311-darwin.so (0) <ECA638B2-1238-3967-977A-A76BDA5D00AE> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so
       0x10f2b1000 -        0x10f2ccffb +_pickle.cpython-311-darwin.so (0) <7D5CC98E-3347-3451-A257-21FE10E0BB56> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so
       0x10f2dd000 -        0x10f2e4ffb +select.cpython-311-darwin.so (0) <B97615E7-88DF-3711-9A46-DED6398DE58A> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/select.cpython-311-darwin.so
       0x10f2f1000 -        0x10f300ffb +_socket.cpython-311-darwin.so (0) <D2B05A09-4CA8-3010-8E93-6D70C495F6FE> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so
       0x10f311000 -        0x10f31cff3 +array.cpython-311-darwin.so (0) <9735B531-F24E-3739-B5E4-DE06D02E7EE6> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/array.cpython-311-darwin.so
       0x10f32d000 -        0x10f334ffb +zlib.cpython-311-darwin.so (0) <38913D52-9F0D-3028-9F8F-1EB3FDD6341B> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so
       0x10f345000 -        0x10f348ff3 +_bz2.cpython-311-darwin.so (0) <57746F38-2F44-36BF-86D9-6320F4273938> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so
       0x10f355000 -        0x10f384fff +_lzma.cpython-311-darwin.so (0) <9BF47D70-F916-38FD-B82F-966C9FC7B954> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so
       0x10f399000 -        0x10f39cff3 +_bisect.cpython-311-darwin.so (0) <C9384563-0C0D-3A4D-8574-2B6D602CB5A2> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so
       0x10f3a9000 -        0x10f3acffb +_random.cpython-311-darwin.so (0) <D9085AF8-11C3-3D26-8EAF-B3F20569E9E6> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_random.cpython-311-darwin.so
       0x10f3b9000 -        0x10f3c0ff7 +_sha512.cpython-311-darwin.so (0) <DBFEEA6E-E7AE-3A77-800E-0D787B497EED> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so
       0x10f485000 -        0x10f488ff3 +_typing.cpython-311-darwin.so (0) <F9554C42-AE98-3AC8-9B0D-223A7D4DE2E7> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so
       0x10f495000 -        0x10f4a9ff7 +libp3interrogatedb.1.10.dylib (0) <CCF68FB8-5B10-389A-B74A-EC32A4A14618> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libp3interrogatedb.1.10.dylib
       0x10f4d3000 -        0x10f53d70f  dyld (655.1.1) <DFC3C4AF-6F97-3B34-B18D-7DCB23F2A83A> /usr/lib/dyld
       0x10f59e000 -        0x10f5cbfff +libp3dtool.1.10.dylib (0) <2E4BCE06-2A97-38F5-ACA5-181405A7869B> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libp3dtool.1.10.dylib
       0x1119e6000 -        0x11235fff7 +core.cpython-311-darwin.so (0) <12596A3D-E7E5-3DEB-B5D3-25CA08544460> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/core.cpython-311-darwin.so
       0x1127b9000 -        0x1134a3fe7 +libpanda.1.10.dylib (0) <A48D623F-E08E-36CF-8868-3E11AFC31F56> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libpanda.1.10.dylib
       0x113c1d000 -        0x113d5ffff +libpandaexpress.1.10.dylib (0) <C9CFD228-D6EA-3E5A-BB0A-2AF769FCE031> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libpandaexpress.1.10.dylib
       0x113dd3000 -        0x113efcff7 +libp3dtoolconfig.1.10.dylib (0) <FD0BFDA1-BB13-3993-9D60-F5E336409BF3> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libp3dtoolconfig.1.10.dylib
       0x113f67000 -        0x114542fff +libCg.dylib (0) /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libCg.dylib
       0x1152ef000 -        0x115399ffb +direct.cpython-311-darwin.so (0) <D5292386-F6A7-32D1-A6AC-FB670A0115D3> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/direct.cpython-311-darwin.so
       0x1153f0000 -        0x11541eff3 +libp3direct.1.10.dylib (0) <3153CC0D-AFFF-3F14-81D6-764E0E01619F> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libp3direct.1.10.dylib
       0x1155af000 -        0x11563ffff +bullet.cpython-311-darwin.so (0) <95AD2EC1-A2CC-3CF1-826A-7A3314E3D01B> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/bullet.cpython-311-darwin.so
       0x1156a7000 -        0x1157eefff +libpandabullet.1.10.dylib (0) <8248674E-A5CC-3759-8AAD-729F771C8D2D> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libpandabullet.1.10.dylib
       0x1159a5000 -        0x115a40ff7 +libpandagl.dylib (0) <C058D099-DE64-3DEE-AC42-1E8F38A76DA0> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libpandagl.dylib
       0x115a7e000 -        0x115a94ffb +libpandafx.1.10.dylib (0) <5D7B27FA-2DA3-3A15-BB2F-B74F1068A99F> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libpandafx.1.10.dylib
       0x116cf5000 -        0x116cf8047  libobjc-trampolines.dylib (756.2) <5795A048-3940-3801-90CE-33D1B1AF81F4> /usr/lib/libobjc-trampolines.dylib
       0x1181c1000 -        0x1181c4ffb +fcntl.cpython-311-darwin.so (0) <7D06096E-C6D1-37FD-B0DB-DC2C2F771B20> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so
       0x1181d1000 -        0x1181d4fff +_posixsubprocess.cpython-311-darwin.so (0) <19FBF5F4-FBD5-3FED-8BB0-95D974DD29C4> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so
       0x1181e1000 -        0x1181e5ffb  com.apple.audio.AppleHDAHALPlugIn (282.54 - 282.54) <207D25F0-B094-3569-AA6D-09B4EDD72861> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
       0x118999000 -        0x1189a7ffb +libp3fmod_audio.dylib (0) <794F8176-BA2E-31DD-BE08-D04A383028B3> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libp3fmod_audio.dylib
       0x1197a9000 -        0x1198acfff +libfmodex.dylib (1) <9BEB677B-91FD-3CE8-8D2B-C95A0EF7AC7C> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libfmodex.dylib
       0x11990e000 -        0x119aa3fff  com.apple.audio.units.Components (1.14 - 1.14) <8B1DABE8-8F96-364D-9C60-36B06CD73466> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
       0x11a087000 -        0x11ac04fff +libp3assimp.dylib (0) <6F1254DA-A399-3C26-BB9C-2D4F3A203498> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libp3assimp.dylib
       0x11cf9c000 -        0x11d04cff3 +libp3ptloader.dylib (0) <D5574217-88E7-384A-A09A-F4654FD4AA91> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libp3ptloader.dylib
       0x11d096000 -        0x11d173fff +libpandaegg.1.10.dylib (0) <1EB8E129-5065-3E0B-A5BA-479FA174A418> /Users/USER/Library/Python/3.11/lib/python/site-packages/panda3d/libpandaegg.1.10.dylib
       0x11d2d8000 -        0x11d2dfffb +_json.cpython-311-darwin.so (0) <2924C207-A5F5-39E2-A25D-996DF64B8D03> /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/lib-dynload/_json.cpython-311-darwin.so
    0x7fff2dd4c000 -     0x7fff2e0a5fff  com.apple.RawCamera.bundle (8.15.0 - 1031.4.4) <AB6E8A8F-0BFE-37EE-A135-44ABA4FCB559> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff30b7b000 -     0x7fff3107fff7  com.apple.driver.AppleIntelBDWGraphicsGLDriver (12.10.12 - 12.1.0) <04C08D0A-B7C7-36AA-8667-D659C9464933> /System/Library/Extensions/AppleIntelBDWGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelBDWGraphicsGLDriver
    0x7fff31080000 -     0x7fff3117dff7  com.apple.driver.AppleIntelBDWGraphicsMTLDriver (12.10.12 - 12.1.0) <8EDF5C62-7E0C-33D0-914B-447CF19B03BF> /System/Library/Extensions/AppleIntelBDWGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelBDWGraphicsMTLDriver
    0x7fff359ce000 -     0x7fff359cefff  com.apple.Accelerate (1.11 - Accelerate 1.11) <762942CB-CFC9-3A0C-9645-A56523A06426> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff359cf000 -     0x7fff359e5ff7  libCGInterfaces.dylib (506.22) <1B6C92D9-F4B8-37BA-9635-94C4A56098CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff359e6000 -     0x7fff3607ffef  com.apple.vImage (8.1 - ???) <53FA3611-894E-3158-A654-FBD2F70998FE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff36080000 -     0x7fff362f9ff3  libBLAS.dylib (1243.200.4) <417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff362fa000 -     0x7fff3636cffb  libBNNS.dylib (38.250.1) <538D12A2-9B9D-3E22-9896-F90F6E69C06E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff3636d000 -     0x7fff36716ff3  libLAPACK.dylib (1243.200.4) <92175DF4-863A-3780-909A-A3E5C410F2E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff36717000 -     0x7fff3672cfeb  libLinearAlgebra.dylib (1243.200.4) <CB671EE6-DEA1-391C-9B2B-AA09A46B4D7A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff3672d000 -     0x7fff36732ff3  libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff36733000 -     0x7fff367afff3  libSparse.dylib (79.200.5) <E78B33D3-672A-3C53-B512-D3DDB2E9AC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff367b0000 -     0x7fff367c3fe3  libSparseBLAS.dylib (1243.200.4) <E9243341-DB77-37C1-97C5-3DFA00DD70FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff367c4000 -     0x7fff369abff7  libvDSP.dylib (671.250.4) <7B110627-A9C1-3FB7-A077-0C7741BA25D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff369ac000 -     0x7fff36a5fff7  libvMisc.dylib (671.250.4) <D5BA4812-BFFC-3CD0-B382-905CD8555DA6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff36a60000 -     0x7fff36a60fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <74288115-EF61-30B6-843F-0593B31D4929> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff36c02000 -     0x7fff379b7ffb  com.apple.AppKit (6.9 - 1671.60.109) <EFB74848-E23F-3FC3-B167-BA1F960996CC> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff37a09000 -     0x7fff37a09fff  com.apple.ApplicationServices (50.1 - 50.1) <84097DEB-E2FC-3901-8DD7-A670EA2274E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff37a0a000 -     0x7fff37a75fff  com.apple.ApplicationServices.ATS (377 - 453.11.2.2) <A258DA73-114B-3102-A056-4AAAD3CEB9DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff37b0e000 -     0x7fff37c25fff  libFontParser.dylib (228.6.2.3) <3602D55B-3B9E-3B3A-A814-08C1244A8AE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff37c26000 -     0x7fff37c68fff  libFontRegistry.dylib (228.12.2.3) <2A56347B-2809-3407-A8B4-2AB88E484062> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff37cc2000 -     0x7fff37cf4fff  libTrueTypeScaler.dylib (228.6.2.3) <7E4C5D9C-51AF-3EC1-8FA5-11CD4BEE477A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff37d59000 -     0x7fff37d5dff3  com.apple.ColorSyncLegacy (4.13.0 - 1) <C0D9E23C-ABA0-39DE-A4EB-5A41C5499056> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff37df8000 -     0x7fff37e4aff7  com.apple.HIServices (1.22 - 628) <2BE461FF-80B9-30D3-A574-AED5724B1C1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff37e4b000 -     0x7fff37e5afff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <F5617A2A-FEA6-3832-B5BA-C2111B98786F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff37e5b000 -     0x7fff37ea4ff7  com.apple.print.framework.PrintCore (14.2 - 503.8) <57C2FE32-0E74-3079-B626-C2D52F2D2717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff37ea5000 -     0x7fff37edeff7  com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff37edf000 -     0x7fff37eebfff  com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <5E7B9BD4-122B-3012-A044-3259C97E7509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff37eec000 -     0x7fff38163ff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <04F482F1-E1C1-3955-8A6C-8AA152AA06F3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff38165000 -     0x7fff38165fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <ABC54269-002D-310D-9654-46CF960F863E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff384be000 -     0x7fff3885ffff  com.apple.CFNetwork (978.0.7 - 978.0.7) <B2133D0D-1399-3F17-80F0-313E3A241C89> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff38874000 -     0x7fff38874fff  com.apple.Carbon (158 - 158) <56AD06AA-7BB4-3F0B-AEF7-9768D0BC1C98> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff38875000 -     0x7fff38878ffb  com.apple.CommonPanels (1.2.6 - 98) <1CD6D56D-8EC7-3528-8CBC-FC69533519B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff38879000 -     0x7fff38b70fff  com.apple.HIToolbox (2.1.1 - 918.7) <13F69D4C-D19F-3E09-9231-1978D783A556> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff38b71000 -     0x7fff38b74ff3  com.apple.help (1.3.8 - 66) <A08517EB-8958-36C9-AEE0-1A8FEEACBE3F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff38b75000 -     0x7fff38b7aff7  com.apple.ImageCapture (9.0 - 1534.2) <DB063E87-ED8F-3E4E-A7E2-A6B45FA73EF7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff38b7b000 -     0x7fff38c10ff3  com.apple.ink.framework (10.9 - 225) <7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff38c11000 -     0x7fff38c29ff7  com.apple.openscripting (1.7 - 179.1) <9B8C1ECC-5864-3E21-9149-863E884EA25C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff38c49000 -     0x7fff38c4aff7  com.apple.print.framework.Print (14.2 - 267.4) <A7A9D2A0-D4E0-35EF-A0F7-50521F707C33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff38c4b000 -     0x7fff38c4dff7  com.apple.securityhi (9.0 - 55006) <05717F77-7A7B-37E6-AB3E-03F063E9095B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff38c4e000 -     0x7fff38c54ff7  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <3CC050FB-EBCB-3087-8EA5-F378C8F99217> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff38d76000 -     0x7fff38d76fff  com.apple.Cocoa (6.11 - 23) <C930D6CD-930B-3D1E-9F15-4AE6AFC13F26> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff38d84000 -     0x7fff38ed3ff7  com.apple.ColorSync (4.13.0 - 3345.6) <31648BB6-7239-3D0E-81B1-BCF51FEF557F> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff3905f000 -     0x7fff390e5fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E8E64E6-0E58-375A-97F7-07CB4EE181AC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff39149000 -     0x7fff39173ffb  com.apple.CoreBluetooth (1.0 - 1) <A73F1709-DD18-3052-9F22-C0015278834B> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff39174000 -     0x7fff394f9fef  com.apple.CoreData (120 - 866.6) <132CB39B-8D58-30FA-B8AD-49BFFF34B293> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff394fa000 -     0x7fff395eaff7  com.apple.CoreDisplay (101.3 - 110.18) <0EB2A997-FCAD-3D17-B140-9829961E5327> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff395eb000 -     0x7fff39a30ff7  com.apple.CoreFoundation (6.9 - 1575.22) <51040EEE-7C5D-3433-A271-86B47B0562BF> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff39a32000 -     0x7fff3a0c1fff  com.apple.CoreGraphics (2.0 - 1265.9) <BC95B558-EF77-3A57-A0BC-11606C778991> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff3a0c3000 -     0x7fff3a3e3fff  com.apple.CoreImage (14.4.0 - 750.0.140) <11026E39-D2FF-3CF6-8ACE-7BA293F9853E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff3a6e0000 -     0x7fff3a7e4fff  com.apple.CoreMedia (1.0 - 2290.13) <A739B93D-23C2-3A34-8D61-6AC924B9634F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff3a841000 -     0x7fff3a841fff  com.apple.CoreServices (946 - 946) <2EB6117A-6389-311B-95A0-7DE32C5FCFE2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff3a842000 -     0x7fff3a8beff7  com.apple.AE (773 - 773) <55AE7C9E-27C3-30E9-A047-3B92A6FD53B4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff3a8bf000 -     0x7fff3ab96fff  com.apple.CoreServices.CarbonCore (1178.33 - 1178.33) <CB87F0C7-2CD6-3983-8E32-B6A2EC925352> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff3ab97000 -     0x7fff3abdfff7  com.apple.DictionaryServices (1.2 - 284.16.4) <746EB200-DC51-30AE-9CBC-608A7B4CC8DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff3abe0000 -     0x7fff3abe8ffb  com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8406D379-8D33-3611-861B-7ABD26DB50D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff3abe9000 -     0x7fff3ad9aff7  com.apple.LaunchServices (946 - 946) <A0C91634-9410-38E8-BC11-7A5A369E6BA5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff3ad9b000 -     0x7fff3ae39ff7  com.apple.Metadata (10.7.0 - 1191.57) <BFFAED00-2560-318A-BB8F-4E7E5123EC61> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff3ae3a000 -     0x7fff3ae84ff7  com.apple.CoreServices.OSServices (946 - 946) <20C4EEF8-D5AC-39A0-9B4A-78F88E3EFBCC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff3ae85000 -     0x7fff3aeecff7  com.apple.SearchKit (1.4.0 - 1.4.0) <DA08AA6F-A6F1-36C0-87F4-E26294E51A3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff3aeed000 -     0x7fff3af0eff3  com.apple.coreservices.SharedFileList (71.28 - 71.28) <487A8464-729E-305A-B5D1-E3FE8EB9CFC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff3b219000 -     0x7fff3b37bff3  com.apple.CoreText (352.0 - 584.26.3.2) <59919B0C-CBD5-3877-8D6F-D6048F1E5F42> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff3b37c000 -     0x7fff3b3bcff3  com.apple.CoreVideo (1.8 - 281.4) <10CF8E52-07E3-382B-8091-2CEEEFFA69B4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff3b3bd000 -     0x7fff3b44cfff  com.apple.framework.CoreWLAN (13.0 - 1375.2) <BF4B29F7-FBC8-3299-98E8-C3F8C04B7C92> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff3b6a3000 -     0x7fff3b6a8ffb  com.apple.DiskArbitration (2.7 - 2.7) <F481F2C0-884E-3265-8111-ABBEC93F0920> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff3b86e000 -     0x7fff3bc1bffb  com.apple.Foundation (6.9 - 1575.22) <CDB9A3E1-41A5-36EC-A24E-94FBCC752D6A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff3bc8a000 -     0x7fff3bcb9ffb  com.apple.GSS (4.0 - 2.0) <E2B90D08-3857-3155-9FCC-07D778988EC9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff3bdb9000 -     0x7fff3bec3fff  com.apple.Bluetooth (6.0.14 - 6.0.14d3) <C2D1A774-2390-363D-8215-BF51FFCB6CCA> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff3bf26000 -     0x7fff3bfb5fff  com.apple.framework.IOKit (2.0.2 - 1483.260.4) <8A90F547-86EF-3DFB-92FE-0E2C0376DD84> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff3bfb7000 -     0x7fff3bfc6ffb  com.apple.IOSurface (255.6.1 - 255.6.1) <85F85EBB-EA59-3A8B-B3EB-7C20F3CC77AE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff3c01a000 -     0x7fff3c1a5fef  com.apple.ImageIO.framework (3.3.0 - 1850.2) <75E46A31-D87D-35CE-86A4-96A50971FDB2> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff3c1a6000 -     0x7fff3c1aaffb  libGIF.dylib (1850.2) <4774EBDF-583B-3DDD-A0E1-9F427CB6A074> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff3c1ab000 -     0x7fff3c287fef  libJP2.dylib (1850.2) <697BB77F-A682-339F-8659-35432962432D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff3c288000 -     0x7fff3c2adfeb  libJPEG.dylib (1850.2) <171A8AC4-AADA-376F-9F2C-B9C978DB1007> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff3c570000 -     0x7fff3c596feb  libPng.dylib (1850.2) <FBCEE909-F573-3AD6-A45F-AF32612BF8A2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff3c597000 -     0x7fff3c599ffb  libRadiance.dylib (1850.2) <56907025-D5CE-3A9E-ACCB-A376C2599853> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff3c59a000 -     0x7fff3c5e7fe7  libTIFF.dylib (1850.2) <F59557C9-C761-3E6F-85D1-0FBFFD53ED5C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff3d75a000 -     0x7fff3d773fff  com.apple.Kerberos (3.0 - 1) <DB1E0679-37E1-3B93-9789-32F63D660C3B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff3da2d000 -     0x7fff3da37fff  com.apple.MediaAccessibility (1.0 - 114.4) <76C449C5-DB45-3D7F-BFAD-3DACEF15DA21> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff3dae7000 -     0x7fff3e18dfff  com.apple.MediaToolbox (1.0 - 2290.13) <71BB5D76-34CA-3A30-AECF-24BE29FCC275> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff3e18f000 -     0x7fff3e237ff7  com.apple.Metal (162.2 - 162.2) <FFF7DFF3-7C4E-32C6-A0B5-C356079D3B7C> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff3e253000 -     0x7fff3e272ff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <44CE8362-E972-3697-AD6F-15BC863BAEB8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff3e273000 -     0x7fff3e2effe7  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <EE8440DA-66DF-3923-ABBC-E0543211C069> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff3e2f0000 -     0x7fff3e317fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <E64450DF-2B96-331E-B7F4-666E00571C70> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff3e318000 -     0x7fff3e443ff7  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <F2CF26B6-73F1-3644-8FE9-CDB9B2C4501F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff3e444000 -     0x7fff3e45efff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <B33A35C3-0393-366B-ACFB-F4BB6A5F7B4A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff3e45f000 -     0x7fff3e460ff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <69F14BCF-C5C5-3BF8-9C31-8F87D2D6130A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff3f257000 -     0x7fff3f263ff7  com.apple.NetFS (6.0 - 4.0) <E917806F-0607-3292-B2D6-A15404D61B99> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff41cf8000 -     0x7fff41d00fe3  libcldcpuengine.dylib (2.11) <AAE49359-EB53-3FD4-ADBF-C60498BD0B34> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fff41d01000 -     0x7fff41d58ff7  com.apple.opencl (2.15.3 - 2.15.3) <056BAD8A-23BC-3F74-9E2C-3AC81E7DEA5A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff41d59000 -     0x7fff41d74ff7  com.apple.CFOpenDirectory (10.14 - 207.200.4) <F03D84EB-49B2-3A00-9127-B9A269824026> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff41d75000 -     0x7fff41d80ffb  com.apple.OpenDirectory (10.14 - 207.200.4) <A8020CEE-5B78-3581-A735-EA2833683F31> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff426d0000 -     0x7fff426d2fff  libCVMSPluginSupport.dylib (17.7.3) <8E051EA7-55B6-3DF1-9821-72C391DE953B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff426d3000 -     0x7fff426d8ff3  libCoreFSCache.dylib (166.2) <222C2A4F-7E32-30F6-8459-2FAB98073A3D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff426d9000 -     0x7fff426ddfff  libCoreVMClient.dylib (166.2) <6789ECD4-91DD-32EF-A1FD-F27D2344CD8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff426de000 -     0x7fff426e6ff7  libGFXShared.dylib (17.7.3) <8C50BF27-B525-3B23-B86C-F444ADF97851> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff426e7000 -     0x7fff426f2fff  libGL.dylib (17.7.3) <2AC457EA-1BD3-3C8E-AFAB-7EA6234EB749> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff426f3000 -     0x7fff4272dfef  libGLImage.dylib (17.7.3) <AA027AFA-C115-3861-89B2-0AE946838952> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff4272e000 -     0x7fff428a0ff7  libGLProgrammability.dylib (17.7.3) <5BB795C6-97AB-37AC-954C-145E3216AC3B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff428a1000 -     0x7fff428dffff  libGLU.dylib (17.7.3) <CB3B0579-D9A2-3CA5-8942-0C8344FAD054> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

Heres part 3:

0x7fff4327c000 -     0x7fff4328bffb  com.apple.opengl (17.7.3 - 17.7.3) <94B5CF34-5BD6-3652-9A8C-E9C56E0A9FB4> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff4328c000 -     0x7fff43423ff7  GLEngine (17.7.3) <B2CB8E1E-4AD3-3CE4-ACB0-89A6749603D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x7fff43424000 -     0x7fff4344dff3  GLRendererFloat (17.7.3) <A656F9C6-AB06-33C6-842A-600CB8B060C6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
    0x7fff4408e000 -     0x7fff442e5ff7  com.apple.QuartzCore (1.11 - 701.14) <33E846BE-1794-3186-9BF2-6ADF62C782A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff44b1d000 -     0x7fff44e1dfff  com.apple.security (7.0 - 58286.270.3.0.1) <DF7677A7-9765-3B6A-9D1C-3589145E4B65> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff44e1e000 -     0x7fff44eaafff  com.apple.securityfoundation (6.0 - 55185.260.1) <1EE899E6-222A-3526-B505-B0D0B6FA042A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff44edc000 -     0x7fff44ee0fff  com.apple.xpc.ServiceManagement (1.0 - 1) <FCF7BABA-DDDD-3770-8DAC-7069850203C2> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff45279000 -     0x7fff452e6fff  com.apple.SystemConfiguration (1.17 - 1.17) <30C8327F-3EFF-3520-9C50-016F8B6B954F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff45545000 -     0x7fff458a6fff  com.apple.VideoToolbox (1.0 - 2290.13) <7FCB2FC0-EFB8-37C2-B0D3-60AE9FDFE230> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff48522000 -     0x7fff485c7feb  com.apple.APFS (1.0 - 1) <2D22485D-552D-3CB6-9FE1-38547597918F> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff48fdc000 -     0x7fff48fddff7  com.apple.AggregateDictionary (1.0 - 1) <A6AF8AC4-1F25-37C4-9157-A02E9C200926> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff495de000 -     0x7fff4960aff7  com.apple.framework.Apple80211 (13.0 - 1380.2) <16F093EF-370B-3B90-8DB4-E94624431D15> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff49732000 -     0x7fff49741fc7  com.apple.AppleFSCompression (96.200.3 - 1.0) <3CF60CE8-976E-3CB8-959D-DD0948C1C2DE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff4983d000 -     0x7fff49848fff  com.apple.AppleIDAuthSupport (1.0 - 1) <2E9D1398-DBE6-328B-ADDA-20FA5FAD7405> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff49889000 -     0x7fff498d2ff3  com.apple.AppleJPEG (1.0 - 1) <4C1F426B-7D77-3980-9633-7DBD8C666B9A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff49b26000 -     0x7fff49b48fff  com.apple.applesauce (1.0 - ???) <F49107C7-3C51-3024-8EF1-C57643BE4F3B> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff49c0c000 -     0x7fff49c5cff7  com.apple.AppleVAFramework (5.1.4 - 5.1.4) <3399D678-8741-3B70-B8D0-7C63C8ACF7DF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff49ca7000 -     0x7fff49cbbffb  com.apple.AssertionServices (1.0 - 1) <456E507A-4561-3628-9FBE-173ACE7429D8> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff4a08a000 -     0x7fff4a176ff7  com.apple.AuthKit (1.0 - 1) <2765ABE9-54F2-3E45-8A93-1261E251B90D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff4a338000 -     0x7fff4a340fff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <2A396FC0-7B79-3088-9A82-FB93C1181A57> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff4a341000 -     0x7fff4a3d6fff  com.apple.backup.framework (1.10.5 - ???) <4EEC51E2-AE4C-340A-B686-901810152C12> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff4a3d7000 -     0x7fff4a444ff3  com.apple.BaseBoard (360.28 - 360.28) <68FA8044-F3CD-3BC6-9DAB-27DACF52BFC0> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff4c0af000 -     0x7fff4c0b8ffb  com.apple.CommonAuth (4.0 - 2.0) <93335CB6-ABEB-3EC7-A040-8A667F40D5F3> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff4c551000 -     0x7fff4c934fef  com.apple.CoreAUC (274.0.0 - 274.0.0) <C71F1581-E73B-3DA0-958B-E912C3FB3F23> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff4c935000 -     0x7fff4c963ff7  com.apple.CoreAVCHD (6.0.0 - 6000.4.1) <A04A99B8-DAC5-36FC-BAC7-7431600C1F89> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff4cd91000 -     0x7fff4cda2ff7  com.apple.CoreEmoji (1.0 - 69.19.9) <228457B3-E191-356E-9A5B-3C0438D05FBA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff4d34c000 -     0x7fff4d3b2ff7  com.apple.CoreNLP (1.0 - 130.15.22) <27877820-17D0-3B02-8557-4014E876CCC7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff4d65f000 -     0x7fff4d667ff7  com.apple.CorePhoneNumbers (1.0 - 1) <11F97C7E-C183-305F-8E6C-9B374F50E26B> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff4d7e3000 -     0x7fff4d814ff3  com.apple.CoreServicesInternal (358 - 358) <DD6EF60D-048F-3186-83DA-EB191EDF48AE> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff4dbdb000 -     0x7fff4dc5ffff  com.apple.CoreSymbolication (10.2 - 64490.25.1) <28B2FF2D-3FDE-3A20-B343-341E5BD4E22F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff4dcef000 -     0x7fff4de1aff7  com.apple.coreui (2.1 - 499.10) <A80F4B09-F940-346F-A9DF-4EFADD9220A8> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff4de1b000 -     0x7fff4dfbbfff  com.apple.CoreUtils (5.9 - 590.16) <66CC50F7-766D-33E2-A388-4DE22840ADFB> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff4e00f000 -     0x7fff4e072ff7  com.apple.framework.CoreWiFi (13.0 - 1375.2) <CA4B835A-27AC-3FAB-9F44-E48548EA2442> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff4e073000 -     0x7fff4e084ff7  com.apple.CrashReporterSupport (10.13 - 938.26) <E93D84A6-891D-38EE-BB4F-E9CD681189B7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff4e114000 -     0x7fff4e123fff  com.apple.framework.DFRFoundation (1.0 - 211.1) <E3F02F2A-2059-39CC-85DA-969676EB88EB> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff4e124000 -     0x7fff4e128ff7  com.apple.DSExternalDisplay (3.1 - 380) <787B9748-B120-3453-B8FE-61D9E363A9E0> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff4e1a9000 -     0x7fff4e21effb  com.apple.datadetectorscore (7.0 - 590.27) <06FB1A07-7AE6-3ADD-8E7E-41955FAB38E8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff4e26a000 -     0x7fff4e2a7ff7  com.apple.DebugSymbols (190 - 190) <6F4FAACA-E06B-38AD-A0C2-14EA5408A231> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff4e2a8000 -     0x7fff4e3e3ff7  com.apple.desktopservices (1.13.5 - ???) <265C0E94-B8BF-3F58-8D68-EA001EEA0B15> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff4f32a000 -     0x7fff4f745fff  com.apple.vision.FaceCore (3.3.4 - 3.3.4) <A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff52ff9000 -     0x7fff52ffafff  libmetal_timestamp.dylib (902.3.2) <05389463-AF2E-33E2-A14F-1416E4A30835> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
    0x7fff5468e000 -     0x7fff54699ff7  libGPUSupportMercury.dylib (17.7.3) <36E3C5B1-15EB-3713-BC3A-31A3B074DD24> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff5469a000 -     0x7fff5469ffff  com.apple.GPUWrangler (3.50.12 - 3.50.12) <6C820ED9-F306-3978-B5B8-432AD97BBDAF> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff554ab000 -     0x7fff554bafff  com.apple.GraphVisualizer (1.0 - 5) <48D020B7-5938-3FAE-B468-E291AEE2C06F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff55620000 -     0x7fff55694ffb  com.apple.Heimdal (4.0 - 2.0) <D97FCF19-EAD6-3E2F-BE88-F817E45CAE96> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff5699a000 -     0x7fff569a1ffb  com.apple.IOAccelerator (404.14 - 404.14) <11A50171-C8AE-3BBC-9FB9-2A3313FFBD31> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff569a5000 -     0x7fff569bdfff  com.apple.IOPresentment (1.0 - 42.6) <6DFD9A6E-BF95-3A27-89E7-ACAA9E30D90A> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff56d65000 -     0x7fff56d92ff7  com.apple.IconServices (379 - 379) <7BAD562D-4FA3-3E11-863C-1EEBE2406D2C> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff57025000 -     0x7fff57037ff3  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <30CFE05C-4108-3879-AFAA-5BB02CBE190B> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff57052000 -     0x7fff5712dff7  com.apple.LanguageModeling (1.0 - 159.15.15) <3DE3CE61-542B-37B7-883E-4B9717CAC65F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff5712e000 -     0x7fff5716aff7  com.apple.Lexicon-framework (1.0 - 33.15.10) <4B5E843E-2809-3E70-9560-9254E2656419> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff57171000 -     0x7fff57176fff  com.apple.LinguisticData (1.0 - 238.25) <F529B961-098C-3E4C-A3E9-9DA9BFA1B3F0> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff57994000 -     0x7fff57997fff  com.apple.Mangrove (1.0 - 25) <537A5B2E-4C30-3CFD-8BDC-79F9A04AC327> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff57e6b000 -     0x7fff57e93ff7  com.apple.spotlight.metadata.utilities (1.0 - 1191.57) <38BB1FB7-3336-384C-B71F-4D0D402EB606> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff57e94000 -     0x7fff57f21ff7  com.apple.gpusw.MetalTools (1.0 - 1) <CBE2176A-8048-3A9C-AFE4-13973D44C704> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff57f38000 -     0x7fff57f51ffb  com.apple.MobileAssets (1.0 - 437.250.3) <8BE5B3A0-8F3A-3FAE-9AFF-32836300183C> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff580cc000 -     0x7fff580e7ffb  com.apple.MobileKeyBag (2.0 - 1.0) <C7C5DD21-66DE-31D1-92D9-BBEEAAE156FB> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff58170000 -     0x7fff5819affb  com.apple.MultitouchSupport.framework (2450.1 - 2450.1) <42A23EC9-64A7-31C7-BF33-DF4412ED8A3F> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff583d6000 -     0x7fff583e0fff  com.apple.NetAuth (6.2 - 6.2) <0D01BBE5-0269-310D-B148-D19DAE143DEB> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff58c41000 -     0x7fff58c92ff3  com.apple.OTSVG (1.0 - ???) <5BF1A9EB-2694-3267-9514-A4EB3BEF4081> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff59e2a000 -     0x7fff59e39ff7  com.apple.PerformanceAnalysis (1.218.2 - 218.2) <65F3DB3E-6D4E-33A0-B510-EF768D323DAB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff5bccb000 -     0x7fff5bce9ff7  com.apple.ProtocolBuffer (1 - 263.2) <907D6C95-D050-31DE-99CA-16A5135BC6F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff5be81000 -     0x7fff5bed1fff  com.apple.ROCKit (27.6 - 27.6) <756C2253-E8B1-3C48-9945-DE8D6AD24DE2> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
    0x7fff5c02b000 -     0x7fff5c04dfff  com.apple.RemoteViewServices (2.0 - 128) <8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff5d857000 -     0x7fff5d975fff  com.apple.Sharing (1288.62 - 1288.62) <48B1F247-7910-3C16-814C-B99DE231F7F0> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff5e789000 -     0x7fff5ea38fff  com.apple.SkyLight (1.600.0 - 340.54) <90EB1C2E-B264-3EC4-AF7F-CDE7E7585746> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff5f1db000 -     0x7fff5f1e7fff  com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <7A6A67DB-C813-328E-AAFB-D267A5B50B3D> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff5f886000 -     0x7fff5f8c2ff3  com.apple.StreamingZip (1.0 - 1) <046FAD5C-E0C5-3013-B1FE-24C018A0DDCF> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff5f938000 -     0x7fff5f9c3fc7  com.apple.Symbolication (10.2 - 64490.38.1) <9FDCC98D-5B32-35AD-A9BF-94DF2B78507F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff5feab000 -     0x7fff5feb7ffb  com.apple.TCC (1.0 - 1) <73CF6FA9-44CE-30C9-887F-235940976585> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff6011d000 -     0x7fff601e5ff3  com.apple.TextureIO (3.8.4 - 3.8.1) <7CEAC05A-D283-3D5A-B1E3-C849285FA0BF> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff6029b000 -     0x7fff6029cfff  com.apple.TrustEvaluationAgent (2.0 - 31.200.1) <15DF9C73-54E4-3C41-BCF4-378338C55FB4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff602a2000 -     0x7fff60459ffb  com.apple.UIFoundation (1.0 - 551.2) <917480B5-14BE-30E0-ABE6-9702336CC35A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff610d5000 -     0x7fff611aefff  com.apple.ViewBridge (401.1 - 401.1) <18144EC1-5DEF-369C-8EBA-2826E7142784> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff61986000 -     0x7fff61989fff  com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) <7AE3457F-AF40-3508-93FB-1D9E31EB1C9D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff61d8a000 -     0x7fff61d8cffb  com.apple.loginsupport (1.0 - 1) <3F8D6334-BCD6-36C1-BA20-CC8503A84375> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff62056000 -     0x7fff6208afff  libCRFSuite.dylib (41.15.4) <406DAC06-0C77-3F90-878B-4D38F11F0256> /usr/lib/libCRFSuite.dylib
    0x7fff6208d000 -     0x7fff62097ff7  libChineseTokenizer.dylib (28.15.3) <9B7F6109-3A5D-3641-9A7E-31D2239D73EE> /usr/lib/libChineseTokenizer.dylib
    0x7fff62125000 -     0x7fff62126ffb  libDiagnosticMessagesClient.dylib (107) <A14D0819-0970-34CD-8680-80E4D7FE8C2C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff6215d000 -     0x7fff623b4ff3  libFosl_dynamic.dylib (18.3.4) <1B5DD4E2-8AE0-315E-829E-D5BFCD264EA8> /usr/lib/libFosl_dynamic.dylib
    0x7fff62405000 -     0x7fff62424fff  libMobileGestalt.dylib (645.270.1) <99A06C8A-97D6-383D-862C-F453BABB48A4> /usr/lib/libMobileGestalt.dylib
    0x7fff62425000 -     0x7fff62425fff  libOpenScriptingUtil.dylib (179.1) <4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff62565000 -     0x7fff62566ffb  libSystem.B.dylib (1252.250.1) <B1006948-7AD0-3CA9-81E0-833F4DD6BFB4> /usr/lib/libSystem.B.dylib
    0x7fff625e2000 -     0x7fff625e3fff  libThaiTokenizer.dylib (2.15.1) <ADB37DC3-7D9B-3E73-A72A-BCC3433C937A> /usr/lib/libThaiTokenizer.dylib
    0x7fff625f5000 -     0x7fff6260bffb  libapple_nghttp2.dylib (1.24.1) <6F04250A-6686-3FDC-9A8D-290C64B06502> /usr/lib/libapple_nghttp2.dylib
    0x7fff6260c000 -     0x7fff62635ffb  libarchive.2.dylib (54.250.1) <47289946-8504-3966-9127-6CE39993DC2C> /usr/lib/libarchive.2.dylib
    0x7fff62636000 -     0x7fff626b5fff  libate.dylib (1.13.8) <92B44EDB-369D-3EE8-AEC5-61F8B9313DBF> /usr/lib/libate.dylib
    0x7fff626b9000 -     0x7fff626b9ff3  libauto.dylib (187) <3E3780E1-96F3-3A22-91C5-92F9A5805518> /usr/lib/libauto.dylib
    0x7fff62789000 -     0x7fff62799ffb  libbsm.0.dylib (39.200.18) <CF381E0B-025B-364F-A83D-2527E03F1AA3> /usr/lib/libbsm.0.dylib
    0x7fff6279a000 -     0x7fff627a7fff  libbz2.1.0.dylib (38.200.3) <272953A1-8D36-329B-BDDB-E887B347710F> /usr/lib/libbz2.1.0.dylib
    0x7fff627a8000 -     0x7fff627fbff7  libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib
    0x7fff627fc000 -     0x7fff62811ff7  libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib
    0x7fff62812000 -     0x7fff62812ff3  libcharset.1.dylib (51.200.6) <2A27E064-314C-359C-93FC-8A9B06206174> /usr/lib/libcharset.1.dylib
    0x7fff62813000 -     0x7fff62823ffb  libcmph.dylib (6.15.1) <9C52B2FE-179F-32AC-B87E-2AFC49ABF817> /usr/lib/libcmph.dylib
    0x7fff62824000 -     0x7fff6283cffb  libcompression.dylib (52.250.2) <7F4BB18C-1FB4-3825-8D8B-6E6B168774C6> /usr/lib/libcompression.dylib
    0x7fff62ab1000 -     0x7fff62ac7fff  libcoretls.dylib (155.220.1) <4C64BE3E-41E3-3020-8BB7-07E90C0C861C> /usr/lib/libcoretls.dylib
    0x7fff62ac8000 -     0x7fff62ac9ff3  libcoretls_cfhelpers.dylib (155.220.1) <0959B3E9-6643-3589-8BB3-21D52CDF0EF1> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff62c67000 -     0x7fff62d5fff7  libcrypto.35.dylib (22.260.1) <91C3D71A-4D1D-331D-89CC-67863DF10574> /usr/lib/libcrypto.35.dylib
    0x7fff62f75000 -     0x7fff62fcbff3  libcups.2.dylib (462.12) <095619DC-9233-3937-9E50-5F10D917A40D> /usr/lib/libcups.2.dylib
    0x7fff630ff000 -     0x7fff630fffff  libenergytrace.dylib (17.200.1) <80BB567A-FD18-3497-BF97-353F57D98CDD> /usr/lib/libenergytrace.dylib
    0x7fff63131000 -     0x7fff63136ff7  libgermantok.dylib (17.15.2) <E5F0F794-FF27-3D64-AE52-C78C6A84DD67> /usr/lib/libgermantok.dylib
    0x7fff63137000 -     0x7fff6313cff7  libheimdal-asn1.dylib (520.270.1) <73F60D6F-76F8-35EF-9C86-9A81225EE4BE> /usr/lib/libheimdal-asn1.dylib
    0x7fff63167000 -     0x7fff63257fff  libiconv.2.dylib (51.200.6) <2047C9B7-3F74-3A95-810D-2ED8F0475A99> /usr/lib/libiconv.2.dylib
    0x7fff63258000 -     0x7fff634b9ffb  libicucore.A.dylib (62141.0.1) <A0D63918-76E9-3C1B-B255-46F4C1DA7FE8> /usr/lib/libicucore.A.dylib
    0x7fff63506000 -     0x7fff63507fff  liblangid.dylib (128.15.1) <22D05C4F-769B-3075-ABCF-44A0EBACE028> /usr/lib/liblangid.dylib
    0x7fff63508000 -     0x7fff63520ff3  liblzma.5.dylib (10.200.3) <E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0> /usr/lib/liblzma.5.dylib
    0x7fff63538000 -     0x7fff635dcff7  libmecab.1.0.0.dylib (779.24.1) <A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2> /usr/lib/libmecab.1.0.0.dylib
    0x7fff635dd000 -     0x7fff637e1fff  libmecabra.dylib (779.24.1) <D71F71E0-30E2-3DB3-B636-7DE13D51FB4B> /usr/lib/libmecabra.dylib
    0x7fff639b9000 -     0x7fff63d0aff7  libnetwork.dylib (1229.250.15) <72C7E9E3-B2BE-3300-BE1B-64606222022C> /usr/lib/libnetwork.dylib
    0x7fff63d9c000 -     0x7fff64521fdf  libobjc.A.dylib (756.2) <7C312627-43CB-3234-9324-4DEA92D59F50> /usr/lib/libobjc.A.dylib
    0x7fff64533000 -     0x7fff64537ffb  libpam.2.dylib (22.200.1) <586CF87F-349C-393D-AEEB-FB75F94A5EB7> /usr/lib/libpam.2.dylib
    0x7fff6453a000 -     0x7fff6456ffff  libpcap.A.dylib (79.250.1) <C0893641-7DFF-3A33-BDAE-190FF54837E8> /usr/lib/libpcap.A.dylib
    0x7fff64688000 -     0x7fff646a0ffb  libresolv.9.dylib (65.200.2) <893142A5-F153-3437-A22D-407EE542B5C5> /usr/lib/libresolv.9.dylib
    0x7fff646f1000 -     0x7fff646f2ff7  libspindump.dylib (267.3) <A584E403-8C95-3841-9C16-E22664A5A63F> /usr/lib/libspindump.dylib
    0x7fff646f3000 -     0x7fff648d0fff  libsqlite3.dylib (274.26) <6404BA3B-BCA4-301F-B2FE-8776105A2AA3> /usr/lib/libsqlite3.dylib
    0x7fff649c4000 -     0x7fff64a0fff7  libstdc++.6.dylib (104.1) <BF6E1E5B-5DF2-3069-A926-20ABF03832B3> /usr/lib/libstdc++.6.dylib
    0x7fff64ae9000 -     0x7fff64aecff7  libutil.dylib (51.200.4) <CE9B18C9-66ED-32D4-9D29-01F8FCB467B0> /usr/lib/libutil.dylib
    0x7fff64aed000 -     0x7fff64afafff  libxar.1.dylib (417.1) <39CCF46B-C81A-34B1-92A1-58C4E5DA846E> /usr/lib/libxar.1.dylib
    0x7fff64aff000 -     0x7fff64be1ff3  libxml2.2.dylib (32.10) <AA4E1B1F-0FDE-3274-9FA5-75446298D1AC> /usr/lib/libxml2.2.dylib
    0x7fff64be2000 -     0x7fff64c0aff3  libxslt.1.dylib (16.5) <E330D3A2-E32B-378A-973E-A8D245C0F712> /usr/lib/libxslt.1.dylib
    0x7fff64c0b000 -     0x7fff64c1dff7  libz.1.dylib (70.200.4) <B048FC1F-058F-3A08-A1FE-81D5308CB3E6> /usr/lib/libz.1.dylib
    0x7fff65401000 -     0x7fff65405ff3  libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib
    0x7fff65406000 -     0x7fff65410ff3  libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib
    0x7fff65411000 -     0x7fff65418ff7  libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib
    0x7fff65419000 -     0x7fff65422ff7  libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib
    0x7fff65423000 -     0x7fff654a7fc3  libcorecrypto.dylib (602.260.2) <01464D24-570C-3B83-9D18-467769E0FCDD> /usr/lib/system/libcorecrypto.dylib
    0x7fff6552e000 -     0x7fff65567ff7  libdispatch.dylib (1008.270.1) <97273678-E94C-3C8C-89F6-2E2020F4B43B> /usr/lib/system/libdispatch.dylib
    0x7fff65568000 -     0x7fff65594ff7  libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib
    0x7fff65595000 -     0x7fff65595ffb  libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib
    0x7fff65596000 -     0x7fff655a2ff3  libkxld.dylib (4903.271.2) <FBF128C8-D3F0-36B6-983A-A63B8A3E0E52> /usr/lib/system/libkxld.dylib
    0x7fff655a3000 -     0x7fff655a3ff7  liblaunch.dylib (1336.261.2) <2B07E27E-D404-3E98-9D28-BCA641E5C479> /usr/lib/system/liblaunch.dylib
    0x7fff655a4000 -     0x7fff655a9fff  libmacho.dylib (927.0.3) <A377D608-77AB-3F6E-90F0-B4F251A5C12F> /usr/lib/system/libmacho.dylib
    0x7fff655aa000 -     0x7fff655acffb  libquarantine.dylib (86.220.1) <6D0BC770-7348-3608-9254-F7FFBD347634> /usr/lib/system/libquarantine.dylib
    0x7fff655ad000 -     0x7fff655aeff7  libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib
    0x7fff655af000 -     0x7fff655c6ff3  libsystem_asl.dylib (356.200.4) <A62A7249-38B8-33FA-9875-F1852590796C> /usr/lib/system/libsystem_asl.dylib
    0x7fff655c7000 -     0x7fff655c7ff7  libsystem_blocks.dylib (73) <A453E8EE-860D-3CED-B5DC-BE54E9DB4348> /usr/lib/system/libsystem_blocks.dylib
    0x7fff655c8000 -     0x7fff6564ffff  libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib
    0x7fff65650000 -     0x7fff65653ffb  libsystem_configuration.dylib (963.270.3) <2B4A836D-68A4-33E6-8D48-CD4486B03387> /usr/lib/system/libsystem_configuration.dylib
    0x7fff65654000 -     0x7fff65657ff7  libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff65658000 -     0x7fff6565efff  libsystem_darwin.dylib (1272.250.1) <EC9B39A5-9592-3577-8997-7DC721D20D8C> /usr/lib/system/libsystem_darwin.dylib
    0x7fff6565f000 -     0x7fff65665ff7  libsystem_dnssd.dylib (878.270.2) <E9A5ACCF-E35F-3909-AF0A-2A37CD217276> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff65666000 -     0x7fff656b1ffb  libsystem_info.dylib (517.200.9) <D09D5AE0-2FDC-3A6D-93EC-729F931B1457> /usr/lib/system/libsystem_info.dylib
    0x7fff656b2000 -     0x7fff656daff7  libsystem_kernel.dylib (4903.271.2) <EA204E3C-870B-30DD-B4AF-D1BB66420D14> /usr/lib/system/libsystem_kernel.dylib
    0x7fff656db000 -     0x7fff65726ff7  libsystem_m.dylib (3158.200.7) <F19B6DB7-014F-3820-831F-389CCDA06EF6> /usr/lib/system/libsystem_m.dylib
    0x7fff65727000 -     0x7fff65751fff  libsystem_malloc.dylib (166.270.1) <011F3AD0-8E6A-3A89-AE64-6E5F6840F30A> /usr/lib/system/libsystem_malloc.dylib
    0x7fff65752000 -     0x7fff6575cff7  libsystem_networkextension.dylib (767.250.2) <FF06F13A-AEFE-3A27-A073-910EF78AEA36> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff6575d000 -     0x7fff65764fff  libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib
    0x7fff65765000 -     0x7fff6576efef  libsystem_platform.dylib (177.270.1) <9D1FE5E4-EB7D-3B3F-A8D1-A96D9CF1348C> /usr/lib/system/libsystem_platform.dylib
    0x7fff6576f000 -     0x7fff65779ff7  libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib
    0x7fff6577a000 -     0x7fff6577dff7  libsystem_sandbox.dylib (851.270.1) <9494594B-5199-3186-82AB-5FF8BED6EE16> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff6577e000 -     0x7fff65780ff3  libsystem_secinit.dylib (30.260.2) <EF1EA47B-7B22-35E8-BD9B-F7003DCB96AE> /usr/lib/system/libsystem_secinit.dylib
    0x7fff65781000 -     0x7fff65788ff3  libsystem_symptoms.dylib (820.267.1) <03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff65789000 -     0x7fff6579efff  libsystem_trace.dylib (906.260.1) <FC761C3B-5434-3A52-912D-F1B15FAA8EB2> /usr/lib/system/libsystem_trace.dylib
    0x7fff657a0000 -     0x7fff657a5ffb  libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib
    0x7fff657a6000 -     0x7fff657d5fff  libxpc.dylib (1336.261.2) <7DEE2300-6D8E-3C00-9C63-E3E80D56B0C4> /usr/lib/system/libxpc.dylib

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

VM Region Summary:
ReadOnly portion of Libraries: Total=508.0M resident=0K(0%) swapped_out_or_unallocated=508.0M(100%)
Writable regions: Total=138.9M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=138.9M(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               384K        2 
Activity Tracing                   256K        1 
CG backing stores                  248K        2 
CG image                            36K        6 
CoreAnimation                      188K        9 
CoreGraphics                         8K        1 
CoreImage                            8K        2 
CoreUI image data                  332K        8 
CoreUI image file                  404K        5 
Dispatch continuations            8192K        1 
Foundation                           4K        1 
IOKit                             7940K        1 
Image IO                            64K        1 
Kernel Alloc Once                    8K        1 
MALLOC                            70.4M       50 
MALLOC guard page                   32K        7 
MALLOC_LARGE (reserved)            384K        1         reserved VM address space (unallocated)
Memory Tag 242                      12K        1 
STACK GUARD                         52K       13 
Stack                             36.7M       13 
VM_ALLOCATE                       19.6M       28 
VM_ALLOCATE (reserved)              36K        1         reserved VM address space (unallocated)
__DATA                            40.1M      317 
__FONT_DATA                          4K        1 
__GLSLBUILTINS                    5176K        1 
__LINKEDIT                       274.9M       71 
__TEXT                           233.2M      304 
__UNICODE                          564K        1 
mapped file                       53.3M       19 
shared memory                      640K       12 
===========                     =======  ======= 
TOTAL                            752.6M      881 
TOTAL, minus reserved VM space   752.2M      881 

Model: MacBookAir7,2, BootROM 194.0.0.0.0, 2 processors, Intel Core i5, 1.6 GHz, 4 GB, SMC 2.27f2
Graphics: kHW_IntelHDGraphics6000Item, Intel HD Graphics 6000, spdisplays_builtin
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E384A544D4C41522D4E544D
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E384A544D4C41522D4E544D
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x117), Broadcom BCM43xx 1.0 (7.77.61.2 AirPortDriverBrcmNIC-1305.8)
Bluetooth: Version 6.0.14d3, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM0128G, 121.33 GB
USB Device: USB 3.0 Bus
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: USB Receiver
Thunderbolt Bus: MacBook Air, Apple Inc., 27.2

This seems like a crash in the Bullet library. Is it possible for you to simplify and package up your program so that we can run it and reproduce the problem?

Im not sure what package means, and since I am a new user and can’t upload files, here is my github with the models and code that I used: Github

also, here is a simplified version of the code that still crashes:

def modelHBMakeRender(self,inputModel):
    #loads model
    inputModel=loader.loadModel(inputModel)
    #makes mesh thats empty
    outputBulletMesh=BulletTriangleMesh()
    #adds triangles to mesh that is the shape of the model
    for meshNum in range(0,len(inputModel.findAllMatches("**/+GeomNode")),1):
      outputBulletMesh.addGeom(inputModel.findAllMatches("**/+GeomNode").getPath(meshNum).node().getGeom(0))
    outputBulletMesh=BulletTriangleMeshShape(outputBulletMesh,dynamic=True)
    #adds mesh to charecter controler
    np=BulletCharacterControllerNode(outputBulletMesh,0.4,str(inputModel))
    #reparents to render
    self.bulletWorld.attachCharacter(np)
    #returns things i need for the future
    return inputModel,np

It doesn’t crash if i remove this line: self.bulletWorld.attachCharacter(np).

I think the problem is that you are using a non-primitive shape as a parameter of the BulletCharacterControllerNode.

I looked around the documentation, but didn’t find a way to go from non-primitive to a primitive for the character controller or any other way to load a model and attach it to a character controller.

You don’t need to attach the character model itself to the controller. You only need to attach a solid body to interact with physical objects, it is usually a sphere or capsule. You can just attach the model as an node for rendering.

I’m surprised you haven’t found a way to use a primitive form for the controller.

https://docs.panda3d.org/1.10/python/programming/physics/bullet/character-controller#setup

Although this example shows it.

While I can use a primitive shape, the modelHBMakeRender is supposed to get a file of a model and some other things, and make a mesh for the bullet character controller to use instead of a primitive shape.

So I was wondering if there was a way to use a bullet triangle mesh shape for it without crashing the game window

I am on Windows and am not watching the application crash. The application simply does not start, a message appears in the console.

Known pipe types:
  wglGraphicsPipe
(all display modules loaded.)
:bullet(error): a convex shape is required!

And this is natural, since the object to be tested for a collision from must be convex.

I think you are mistaken in terms of the technical mechanics of the game. So the game is just a show and all sorts of tricks are used to achieve a visible result. In fact, the body that should interact with the physical world is a simple form body. At that time, the model character that is displayed on the screen is placed in the interior of this body. If you want to split the body into parts, then hitboxes are used to register interactions with physical bodies.

2 Likes

Thank you so much for explaining it to me!

Since I am on mac, I didn’t get any errors!