Tk Source Code

Attachment Details
Login
Overview

Artifact ID: 12fbcb52b4facf602068787a2345c21a30dc25aadbd3d55cf8e381842583f535
Ticket: 9672eedd70ffb9cb1b481b9119e64067d3f17238
Date: 2019-04-07 09:57:30
User: Takamoto
Artifact Attached: fd83a7912832c1bbd679df8e8b1be4adb2ced34ceec90ed2e18c19d864737e3d
Filename:Report2.txt
Description:
Content Appended
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
   100
   101
   102
   103
   104
   105
   106
   107
   108
   109
   110
   111
   112
   113
   114
   115
   116
   117
   118
   119
   120
   121
   122
   123
   124
   125
   126
   127
   128
   129
   130
   131
   132
   133
   134
   135
   136
   137
   138
   139
   140
   141
   142
   143
   144
   145
   146
   147
   148
   149
   150
   151
   152
   153
   154
   155
   156
   157
   158
   159
   160
   161
   162
   163
   164
   165
   166
   167
   168
   169
   170
   171
   172
   173
   174
   175
   176
   177
   178
   179
   180
   181
   182
   183
   184
   185
   186
   187
   188
   189
   190
   191
   192
   193
   194
   195
   196
   197
   198
   199
   200
   201
   202
   203
   204
   205
   206
   207
   208
   209
   210
   211
   212
   213
   214
   215
   216
   217
   218
   219
   220
   221
   222
   223
   224
   225
   226
   227
   228
   229
   230
   231
   232
   233
   234
   235
   236
   237
   238
   239
   240
   241
   242
   243
   244
   245
   246
   247
   248
   249
   250
   251
   252
   253
   254
   255
   256
   257
   258
   259
   260
   261
   262
   263
   264
   265
   266
   267
   268
   269
   270
   271
   272
   273
   274
   275
   276
   277
   278
   279
   280
   281
   282
   283
   284
   285
   286
   287
   288
   289
   290
   291
   292
   293
   294
   295
   296
   297
   298
   299
   300
   301
   302
   303
   304
   305
   306
   307
   308
   309
   310
   311
   312
   313
   314
   315
   316
   317
   318
   319
   320
   321
   322
   323
   324
   325
   326
   327
   328
   329
   330
   331
   332
   333
   334
   335
   336
   337
   338
   339
   340
   341
   342
   343
   344
   345
   346
   347
   348
   349
   350
   351
   352
   353
   354
   355
   356
   357
   358
   359
   360
   361
   362
   363
   364
   365
   366
   367
   368
   369
   370
   371
   372
   373
   374
   375
   376
   377
   378
   379
   380
   381
   382
   383
   384
   385
   386
   387
   388
   389
   390
   391
   392
   393
   394
   395
   396
   397
   398
   399
   400
   401
   402
   403
   404
   405
   406
   407
   408
   409
   410
   411
   412
   413
   414
   415
   416
   417
   418
   419
   420
   421
   422
   423
   424
   425
   426
   427
   428
   429
   430
   431
   432
   433
   434
   435
   436
   437
   438
   439
   440
   441
   442
   443
   444
   445
   446
   447
   448
   449
   450
   451
   452
   453
   454
   455
   456
   457
   458
   459
   460
   461
   462
   463
   464
   465
   466
   467
   468
   469
   470
   471
   472
   473
   474
   475
   476
   477
   478
   479
   480
   481
   482
   483
   484
   485
   486
   487
   488
   489
   490
   491
   492
   493
   494
   495
   496
   497
   498
   499
   500
   501
   502
   503
   504
   505
   506
   507
   508
   509
   510
   511
   512
   513
   514
   515
   516
   517
   518
   519
   520
   521
   522
   523
   524
   525
   526
   527
   528
   529
   530
   531
   532
   533
   534
   535
   536
   537
   538
   539
   540
   541
   542
   543
   544
   545
   546
   547
   548
   549
   550
   551
   552
   553
   554
   555
   556
   557
   558
   559
   560
   561
   562
   563
   564
   565
   566
   567
   568
   569
   570
   571
   572
   573
   574
   575
   576
   577
   578
   579
   580
   581
   582
   583
   584
   585
   586
   587
   588
   589
   590
   591
   592
   593
   594
   595
   596
   597
   598
   599
   600
   601
   602
   603
   604
   605
   606
   607
   608
   609
   610
   611
   612
   613
   614
   615
   616
   617
   618
   619
   620
   621
   622
   623
   624
   625
   626
   627
   628
   629
   630
   631
   632
   633
   634
   635
   636
   637
   638
   639
   640
   641
   642
   643
   644
   645
   646
   647
   648
   649
   650
   651
   652
   653
   654
   655
   656
   657
   658
   659
   660
   661
   662
   663
   664
   665
   666
   667
   668
   669
   670
   671
   672
   673
   674
   675
   676
   677
   678
   679
   680
   681
   682
   683
   684
   685
   686
   687
   688
   689
   690
   691
   692
   693
   694
   695
   696
   697
   698
   699
   700
   701
   702
   703
   704
   705
   706
   707
   708
   709
   710
   711
   712
   713
   714
   715
   716
   717
   718
   719
   720
   721
   722
   723
   724
   725
   726
   727
   728
   729
   730
   731
   732
   733
   734
   735
   736
   737
   738
   739
   740
   741
   742
   743
   744
   745
   746
   747
   748
   749
   750
   751
   752
   753
   754
   755
   756
   757
   758
   759
   760
   761
   762
   763
   764
   765
   766
   767
   768
   769
   770
   771
   772
   773
   774
   775
   776
   777
   778
   779
   780
   781
   782
   783
   784
   785
   786
   787
   788
   789
   790
   791
   792
   793
   794
   795
   796
   797
   798
   799
   800
   801
   802
   803
   804
   805
   806
   807
   808
   809
   810
   811
   812
   813
   814
   815
   816
   817
   818
   819
   820
   821
   822
   823
   824
   825
   826
   827
   828
   829
   830
   831
   832
   833
   834
   835
   836
   837
   838
   839
   840
   841
   842
   843
   844
   845
   846
   847
   848
   849
   850
   851
   852
   853
   854
   855
   856
   857
   858
   859
   860
   861
   862
   863
   864
   865
   866
   867
   868
   869
   870
   871
   872
   873
   874
   875
   876
   877
   878
   879
   880
   881
   882
   883
   884
   885
   886
   887
   888
   889
   890
   891
   892
   893
   894
   895
   896
   897
   898
   899
   900
   901
   902
   903
   904
   905
   906
   907
   908
   909
   910
   911
   912
   913
   914
   915
   916
   917
   918
   919
   920
   921
   922
   923
   924
   925
   926
   927
   928
   929
   930
   931
   932
   933
   934
   935
   936
Process:               MyTest [651]
Path:                  /var/folders/*/MyTest
Identifier:            org.fc.MyTest
Version:               5.52 (5.52)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           MyTest [651]
User ID:               501

Date/Time:             2019-04-07 11:25:57.185 +0200
OS Version:            Mac OS X 10.11.6 (15G31)
Report Version:        11
Anonymous UUID:        49A644EB-1F27-A852-B80C-8B74EFB3CC98

Sleep/Wake UUID:       DE343079-2ACB-47FD-852F-76C206C97224

Time Awake Since Boot: 2100 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_PROTECTION_FAILURE at 0x00007fff5ef94fb0
Exception Note:        EXC_CORPSE_NOTIFY

VM Regions Near 0x7fff5ef94fb0:
    MALLOC_SMALL           00007fd2d2000000-00007fd2d2800000 [ 8192K] rw-/rwx SM=PRV
--> STACK GUARD            00007fff5b795000-00007fff5ef95000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
    Stack                  00007fff5ef95000-00007fff5f78b000 [ 8152K] rw-/rwx SM=COW  thread 0

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   com.apple.vImage              	0x00007fff963e9747 vImageMatrixMultiply_PlanarF + 247
1   com.apple.vImage              	0x00007fff964dc463 DoMatrix + 243
2   com.apple.vImage              	0x00007fff964ebf57 AnyToAnyBlock + 1271
3   com.apple.vImage              	0x00007fff964eb6d8 vImageConvert_AnyToAny + 1880
4   com.apple.CoreGraphics        	0x00007fff84e98843 convert_icc + 2285
5   com.apple.CoreGraphics        	0x00007fff84e97f46 CGCMSConverterConvertData + 91
6   com.apple.CoreGraphics        	0x00007fff84e97e2e CGCMSConverterConvertColorComponents + 474
7   com.apple.CoreGraphics        	0x00007fff84e964df CGColorTransformConvertColorComponents + 733
8   libRIP.A.dylib                	0x00007fff84c277c6 ripc_GetColor + 1826
9   libRIP.A.dylib                	0x00007fff84c26679 ripc_Render + 165
10  libRIP.A.dylib                	0x00007fff84c231a2 ripc_DrawRects + 438
11  com.apple.CoreGraphics        	0x00007fff84ea3b2f CGContextFillRects + 107
12  com.apple.CoreGraphics        	0x00007fff84ea3ac0 CGContextFillRect + 141
13  com.apple.CoreGraphics        	0x00007fff84ea391c CGContextClearRect + 70
14  Tk                            	0x0000000103d74f9f 0x103cbe000 + 749471
15  Tk                            	0x0000000103d75334 0x103cbe000 + 750388
16  Tk                            	0x0000000103d7500f XCopyArea + 80
17  libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
18  Tcl                           	0x0000000100be568b TclServiceIdle + 75
19  Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
20  Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
21  Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
22  com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
23  com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
24  com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
25  com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
26  com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
27  com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
28  com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
29  com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
30  com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
31  Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
32  Tk                            	0x0000000103d75058 XCopyArea + 153
33  libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
34  Tcl                           	0x0000000100be568b TclServiceIdle + 75
35  Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
36  Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
37  Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
38  com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
39  com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
40  com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
41  com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
42  com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
43  com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
44  com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
45  com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
46  com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
47  Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
48  Tk                            	0x0000000103d75058 XCopyArea + 153
49  libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
50  Tcl                           	0x0000000100be568b TclServiceIdle + 75
51  Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
52  Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
53  Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
54  com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
55  com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
56  com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
57  com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
58  com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
59  com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
60  com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
61  com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
62  com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
63  Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
64  Tk                            	0x0000000103d75058 XCopyArea + 153
65  libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
66  Tcl                           	0x0000000100be568b TclServiceIdle + 75
67  Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
68  Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
69  Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
70  com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
71  com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
72  com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
73  com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
74  com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
75  com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
76  com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
77  com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
78  com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
79  Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
80  Tk                            	0x0000000103d75058 XCopyArea + 153
81  libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
82  Tcl                           	0x0000000100be568b TclServiceIdle + 75
83  Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
84  Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
85  Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
86  com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
87  com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
88  com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
89  com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
90  com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
91  com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
92  com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
93  com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
94  com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
95  Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
96  Tk                            	0x0000000103d75058 XCopyArea + 153
97  libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
98  Tcl                           	0x0000000100be568b TclServiceIdle + 75
99  Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
100 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
101 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
102 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
103 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
104 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
105 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
106 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
107 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
108 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
109 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
110 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
111 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
112 Tk                            	0x0000000103d75058 XCopyArea + 153
113 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
114 Tcl                           	0x0000000100be568b TclServiceIdle + 75
115 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
116 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
117 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
118 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
119 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
120 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
121 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
122 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
123 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
124 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
125 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
126 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
127 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
128 Tk                            	0x0000000103d75058 XCopyArea + 153
129 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
130 Tcl                           	0x0000000100be568b TclServiceIdle + 75
131 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
132 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
133 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
134 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
135 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
136 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
137 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
138 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
139 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
140 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
141 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
142 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
143 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
144 Tk                            	0x0000000103d75058 XCopyArea + 153
145 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
146 Tcl                           	0x0000000100be568b TclServiceIdle + 75
147 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
148 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
149 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
150 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
151 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
152 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
153 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
154 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
155 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
156 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
157 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
158 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
159 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
160 Tk                            	0x0000000103d75058 XCopyArea + 153
161 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
162 Tcl                           	0x0000000100be568b TclServiceIdle + 75
163 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
164 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
165 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
166 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
167 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
168 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
169 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
170 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
171 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
172 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
173 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
174 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
175 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
176 Tk                            	0x0000000103d75058 XCopyArea + 153
177 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
178 Tcl                           	0x0000000100be568b TclServiceIdle + 75
179 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
180 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
181 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
182 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
183 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
184 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
185 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
186 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
187 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
188 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
189 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
190 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
191 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
192 Tk                            	0x0000000103d75058 XCopyArea + 153
193 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
194 Tcl                           	0x0000000100be568b TclServiceIdle + 75
195 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
196 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
197 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
198 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
199 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
200 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
201 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
202 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
203 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
204 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
205 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
206 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
207 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
208 Tk                            	0x0000000103d75058 XCopyArea + 153
209 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
210 Tcl                           	0x0000000100be568b TclServiceIdle + 75
211 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
212 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
213 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
214 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
215 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
216 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
217 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
218 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
219 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
220 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
221 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
222 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
223 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
224 Tk                            	0x0000000103d75058 XCopyArea + 153
225 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
226 Tcl                           	0x0000000100be568b TclServiceIdle + 75
227 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
228 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
229 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
230 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
231 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
232 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
233 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
234 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
235 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
236 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
237 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
238 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
239 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
240 Tk                            	0x0000000103d75058 XCopyArea + 153
241 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
242 Tcl                           	0x0000000100be568b TclServiceIdle + 75
243 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
244 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
245 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
246 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
247 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
248 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
249 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
250 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
251 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
252 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
253 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
254 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
255 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
256 Tk                            	0x0000000103d75058 XCopyArea + 153
257 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
258 Tcl                           	0x0000000100be568b TclServiceIdle + 75
259 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
260 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
261 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
262 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
263 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
264 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
265 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
266 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
267 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
268 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
269 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
270 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
271 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
272 Tk                            	0x0000000103d75058 XCopyArea + 153
273 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
274 Tcl                           	0x0000000100be568b TclServiceIdle + 75
275 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
276 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
277 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
278 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
279 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
280 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
281 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
282 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
283 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
284 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
285 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
286 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
287 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
288 Tk                            	0x0000000103d75058 XCopyArea + 153
289 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
290 Tcl                           	0x0000000100be568b TclServiceIdle + 75
291 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
292 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
293 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
294 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
295 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
296 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
297 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
298 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
299 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
300 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
301 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
302 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
303 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
304 Tk                            	0x0000000103d75058 XCopyArea + 153
305 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
306 Tcl                           	0x0000000100be568b TclServiceIdle + 75
307 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
308 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
309 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
310 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
311 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
312 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
313 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
314 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
315 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
316 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
317 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
318 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
319 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
320 Tk                            	0x0000000103d75058 XCopyArea + 153
321 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
322 Tcl                           	0x0000000100be568b TclServiceIdle + 75
323 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
324 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
325 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
326 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
327 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
328 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
329 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
330 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
331 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
332 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
333 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
334 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
335 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
336 Tk                            	0x0000000103d75058 XCopyArea + 153
337 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
338 Tcl                           	0x0000000100be568b TclServiceIdle + 75
339 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
340 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
341 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
342 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
343 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
344 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
345 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
346 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
347 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
348 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
349 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
350 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
351 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
352 Tk                            	0x0000000103d75058 XCopyArea + 153
353 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
354 Tcl                           	0x0000000100be568b TclServiceIdle + 75
355 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
356 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
357 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
358 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
359 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
360 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
361 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
362 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
363 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
364 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
365 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
366 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
367 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
368 Tk                            	0x0000000103d75058 XCopyArea + 153
369 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
370 Tcl                           	0x0000000100be568b TclServiceIdle + 75
371 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
372 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
373 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
374 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
375 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
376 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
377 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
378 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
379 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
380 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
381 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
382 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
383 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
384 Tk                            	0x0000000103d75058 XCopyArea + 153
385 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
386 Tcl                           	0x0000000100be568b TclServiceIdle + 75
387 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
388 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
389 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
390 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
391 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
392 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
393 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
394 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
395 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
396 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
397 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
398 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
399 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
400 Tk                            	0x0000000103d75058 XCopyArea + 153
401 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
402 Tcl                           	0x0000000100be568b TclServiceIdle + 75
403 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
404 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
405 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
406 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
407 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
408 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
409 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
410 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
411 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
412 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
413 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
414 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
415 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
416 Tk                            	0x0000000103d75058 XCopyArea + 153
417 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
418 Tcl                           	0x0000000100be568b TclServiceIdle + 75
419 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
420 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
421 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
422 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
423 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
424 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
425 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
426 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
427 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
428 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
429 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
430 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
431 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
432 Tk                            	0x0000000103d75058 XCopyArea + 153
433 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
434 Tcl                           	0x0000000100be568b TclServiceIdle + 75
435 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
436 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
437 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
438 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
439 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
440 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
441 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
442 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
443 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
444 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
445 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
446 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
447 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
448 Tk                            	0x0000000103d75058 XCopyArea + 153
449 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
450 Tcl                           	0x0000000100be568b TclServiceIdle + 75
451 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
452 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
453 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
454 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
455 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
456 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
457 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
458 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
459 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
460 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
461 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
462 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
463 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
464 Tk                            	0x0000000103d75058 XCopyArea + 153
465 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
466 Tcl                           	0x0000000100be568b TclServiceIdle + 75
467 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
468 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
469 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
470 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
471 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
472 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
473 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
474 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
475 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
476 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
477 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
478 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
479 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
480 Tk                            	0x0000000103d75058 XCopyArea + 153
481 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
482 Tcl                           	0x0000000100be568b TclServiceIdle + 75
483 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
484 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
485 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
486 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
487 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
488 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
489 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
490 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
491 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
492 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
493 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
494 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
495 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011
496 Tk                            	0x0000000103d75058 XCopyArea + 153
497 libTktable2.10.dylib          	0x0000000105040d18 TableDisplay + 4077
498 Tcl                           	0x0000000100be568b TclServiceIdle + 75
499 Tcl                           	0x0000000100bc93f1 Tcl_DoOneEvent + 338
500 Tk                            	0x0000000103d86d86 0x103cbe000 + 822662
501 Tk                            	0x0000000103d86ad1 0x103cbe000 + 821969
502 com.apple.AppKit              	0x00007fff881f57be -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
503 com.apple.AppKit              	0x00007fff884131a0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117
504 com.apple.AppKit              	0x00007fff884130ad -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 214
505 com.apple.AppKit              	0x00007fff88316208 -[NSView displayRectIgnoringOpacity:inContext:] + 529
506 com.apple.AppKit              	0x00007fff88428a22 __62-[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:]_block_invoke + 447
507 com.apple.AppKit              	0x00007fff8842878b __36-[NSBitmapImageRep _captureDrawing:]_block_invoke + 504
508 com.apple.AppKit              	0x00007fff884284fe -[NSBitmapImageRep _captureDrawing:] + 193
509 com.apple.AppKit              	0x00007fff8842842e -[NSView cacheDisplayInRect:toBitmapImageRep:includeSubviews:] + 194
510 com.apple.AppKit              	0x00007fff88428366 -[NSView cacheDisplayInRect:toBitmapImageRep:] + 61
511 Tk                            	0x0000000103d74dd3 0x103cbe000 + 749011

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib        	0x00007fff98ae8efa kevent_qos + 10
1   libdispatch.dylib             	0x00007fff97da3165 _dispatch_mgr_invoke + 216
2   libdispatch.dylib             	0x00007fff97da2dcd _dispatch_mgr_thread + 52

Thread 2:
0   libsystem_kernel.dylib        	0x00007fff98ae807a __select + 10
1   Tcl                           	0x0000000100c12783 0x100b0b000 + 1079171
2   libsystem_pthread.dylib       	0x00007fff91cf599d _pthread_body + 131
3   libsystem_pthread.dylib       	0x00007fff91cf591a _pthread_start + 168
4   libsystem_pthread.dylib       	0x00007fff91cf3351 thread_start + 13

Thread 3:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff98ae1f72 mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98ae13b3 mach_msg + 55
2   com.apple.CoreFoundation      	0x00007fff90a3a1c4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation      	0x00007fff90a3968c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation      	0x00007fff90a38ed8 CFRunLoopRunSpecific + 296
5   com.apple.AppKit              	0x00007fff881e2d95 _NSEventThread + 149
6   libsystem_pthread.dylib       	0x00007fff91cf599d _pthread_body + 131
7   libsystem_pthread.dylib       	0x00007fff91cf591a _pthread_start + 168
8   libsystem_pthread.dylib       	0x00007fff91cf3351 thread_start + 13

Thread 4:
0   libsystem_kernel.dylib        	0x00007fff98ae85e2 __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff91cf5578 _pthread_wqthread + 1283
2   libsystem_pthread.dylib       	0x00007fff91cf3341 start_wqthread + 13

Thread 5:
0   libsystem_kernel.dylib        	0x00007fff98ae85e2 __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff91cf5578 _pthread_wqthread + 1283
2   libsystem_pthread.dylib       	0x00007fff91cf3341 start_wqthread + 13

Thread 6:
0   libsystem_kernel.dylib        	0x00007fff98ae85e2 __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff91cf5578 _pthread_wqthread + 1283
2   libsystem_pthread.dylib       	0x00007fff91cf3341 start_wqthread + 13

Thread 7:
0   libsystem_kernel.dylib        	0x00007fff98ae85e2 __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff91cf5578 _pthread_wqthread + 1283
2   libsystem_pthread.dylib       	0x00007fff91cf3341 start_wqthread + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00007fff5ef95600  rbx: 0x0000000000000001  rcx: 0x0000000000000001  rdx: 0x0000000000000001
  rdi: 0x00007fff5ef950b0  rsi: 0x00007fff5ef95090  rbp: 0x00007fff5ef95040  rsp: 0x00007fff5ef94f60
   r8: 0x9e007d01944e6690   r9: 0x0000000000000000  r10: 0x00007fd2c7711290  r11: 0x00007fd2c7711290
  r12: 0x0000000000000000  r13: 0x00007fd2c771126c  r14: 0x0000000000000003  r15: 0x0000000000000001
  rip: 0x00007fff963e9747  rfl: 0x0000000000010202  cr2: 0x00007fff5ef94fb0

Logical CPU:     1
Error Code:      0x00000006
Trap Number:     14


Binary Images:
       0x10046b000 -        0x100620ff7 +MyTest (0) <B904D456-7CFD-3D27-8A75-A2D99052EDC3> /var/folders/*/MyTest
       0x10087d000 -        0x10087ffff +c21b2fd1.bundle (0) <084EDB07-26D3-39C2-8B80-7C678282BB32> /var/folders/*/c21b2fd1.bundle
       0x100883000 -        0x100884ff7 +62f4e25c.bundle (0) <EF36AE06-5DB7-3771-AC85-012EA38A1BAD> /var/folders/*/62f4e25c.bundle
       0x100887000 -        0x100888fff +43100eab.bundle (0) <A6773767-7C56-39D5-B98D-5FFC424AE2BC> /var/folders/*/43100eab.bundle
       0x10088b000 -        0x1008a5ffb +a35082d4.bundle (0) <51A10F20-5C55-354A-9F2B-6F8938CEFC01> /var/folders/*/a35082d4.bundle
       0x1008ab000 -        0x1008b3ff3 +6d95657d.bundle (0) <4A1547BA-D7EC-3C36-A92C-E8BC429FC1C1> /var/folders/*/6d95657d.bundle
       0x1008b8000 -        0x1008befff +74713d1f.bundle (0) <C628B422-2409-34B8-9F44-3FF3E90A1039> /var/folders/*/74713d1f.bundle
       0x1008c2000 -        0x1008d2ffb +b4ea8263.bundle (0) <7332E854-2AE2-3E13-91B6-760D0C7D7FF8> /var/folders/*/b4ea8263.bundle
       0x1008d7000 -        0x1008ddff7 +2685f885.bundle (0) <A95F9E8E-22BA-3F8F-9B6B-202CE450371E> /var/folders/*/2685f885.bundle
       0x1008e2000 -        0x1008e5ff3 +3658db93.bundle (0) <5AF6F28B-263C-3175-B829-F3C98A38AC73> /var/folders/*/3658db93.bundle
       0x1008e9000 -        0x1008eaff3 +578a176a.bundle (0) <966F6ABA-C8E7-3193-9082-861BFCB438E7> /var/folders/*/578a176a.bundle
       0x1008ed000 -        0x1008eeff3 +d9ebb69b.bundle (0) <AA0F7CC7-6DBA-3126-8D55-11BF0A315166> /var/folders/*/d9ebb69b.bundle
       0x1008f1000 -        0x1008f2ffb +4a450326.bundle (0) <C03895A8-4826-34C8-81D0-1D929AE8B3E5> /var/folders/*/4a450326.bundle
       0x1008f5000 -        0x1008f5fff +467a340a.bundle (0) <2F499792-526D-316B-A43C-459A27081CAC> /var/folders/*/467a340a.bundle
       0x1008f8000 -        0x100901ff7 +6deee20a.bundle (0) <0B42C981-A774-36C6-9002-DE22422ACA76> /var/folders/*/6deee20a.bundle
       0x100905000 -        0x100910ffb +d9aa82c9.bundle (0) <C30A89E2-AC57-304F-9449-DC97A5EBAEE0> /var/folders/*/d9aa82c9.bundle
       0x100917000 -        0x10091cff3 +a829ef3e.bundle (0) <129F7CCE-2743-367E-A19B-57E3547F2C4A> /var/folders/*/a829ef3e.bundle
       0x100920000 -        0x100926ffb +fcf1a4bb.bundle (0) <FE7811DB-4A6F-3270-887D-ED689955DD02> /var/folders/*/fcf1a4bb.bundle
       0x10092b000 -        0x10092bffb +42e98ffa.bundle (0) <FEC5D473-2462-36D3-B537-7A98F864F992> /var/folders/*/42e98ffa.bundle
       0x1009a1000 -        0x1009acff7 +970b7de5.bundle (0) <44F85114-EEAA-393A-9F54-E3E3CF34B73A> /var/folders/*/970b7de5.bundle
       0x1009b1000 -        0x1009c0ff3 +17ae242c.bundle (0) <0553D31F-BF91-31B3-BC7D-F439D7EC64F5> /var/folders/*/17ae242c.bundle
       0x1009c5000 -        0x1009cdfff +4b8cd7ad.bundle (0) <8097C22E-3110-3F14-8B28-41323002E64E> /var/folders/*/4b8cd7ad.bundle
       0x100a07000 -        0x100a08ffb +b53ce222.bundle (0) <4B177BC1-2CB3-30AB-9962-4FFA4B59AAE6> /var/folders/*/b53ce222.bundle
       0x100a3b000 -        0x100a3dfff +6377395a.bundle (0) <A2608E55-5510-337E-AD87-E18C38DABAD6> /var/folders/*/6377395a.bundle
       0x100a41000 -        0x100a4fffb +498f9eae.bundle (0) <7D9B480A-41E3-3BE5-A612-15AEB48A01D0> /var/folders/*/498f9eae.bundle
       0x100a57000 -        0x100a5dfff +a362247e.bundle (0) <D3993627-2A0F-3E09-9E04-58073A523283> /var/folders/*/a362247e.bundle
       0x100a69000 -        0x100a6afff +8ee30a2e.bundle (0) <7708F622-005B-3D71-9B52-0AF9FD10862E> /var/folders/*/8ee30a2e.bundle
       0x100a6d000 -        0x100a71ff7 +5f959ac2.bundle (0) <C8927DA0-F371-38D0-B5DA-36D9B93A1CFF> /var/folders/*/5f959ac2.bundle
       0x100a76000 -        0x100a7aff7 +785acb73.bundle (0) <BAA781F6-1276-337F-B888-4739CF6BDBAC> /var/folders/*/785acb73.bundle
       0x100a7d000 -        0x100a7dff7 +311c3d76.bundle (0) <0FAE34E9-B4E1-372D-B7F9-1621FC44F685> /var/folders/*/311c3d76.bundle
       0x100b0b000 -        0x100c39ff3 +Tcl (8.6.9 - 8.6.9) <29323B11-CD37-3298-9084-E81D18E3863B> /Users/USER/Desktop/MyTest6.app/Contents/Frameworks8.6.8/Tcl.framework/Tcl
       0x100c5b000 -        0x100c73ff3 +6583c3ff.bundle (0) <1074B925-9FA4-3221-97EB-C516304133FE> /var/folders/*/6583c3ff.bundle
       0x100c79000 -        0x100c7dfff +7b7e3950.bundle (0) <9BA8D9DA-608B-3030-9633-26BA60FDCEAF> /var/folders/*/7b7e3950.bundle
       0x100c82000 -        0x100ccdffb +e129ef4b.bundle (0) <2491A911-2C1A-365C-8CC3-46872F6B2497> /var/folders/*/e129ef4b.bundle
       0x100ce3000 -        0x100d22fff +libssl.1.0.0.dylib (0) <4D343D8E-B72A-38BD-9204-CC0354C0B7F8> /var/folders/*/libssl.1.0.0.dylib
       0x100d41000 -        0x100db8ff3 +f1080fff.bundle (0) <9BFA6EA0-F0FF-307A-9318-00CA3D2D9AD4> /var/folders/*/f1080fff.bundle
       0x100dc0000 -        0x100dd9fff  libexpat.1.dylib (12.60.1) <6BF318AC-F90F-3F16-99C2-6ADDE404E280> /usr/lib/libexpat.1.dylib
       0x100de3000 -        0x100de5fff +476ef771.bundle (0) <7CEC6CFD-77FB-343F-B059-5AAA4D210FBC> /var/folders/*/476ef771.bundle
       0x100de8000 -        0x100debffb +56883658.bundle (0) <9FD7CC86-7AFA-38DF-8312-D4A0395DD9D3> /var/folders/*/56883658.bundle
       0x100def000 -        0x100df1ffb +7014a058.bundle (0) <15C7AE31-9D19-39ED-8D40-F57A929F06AD> /var/folders/*/7014a058.bundle
       0x100dfd000 -        0x100dfdfe7 +cl_kernels (???) <11C3B8BD-CD04-4D50-AF39-003AC2269891> cl_kernels
       0x102b13000 -        0x102ca4fff +4d23e99e.bundle (0) <AD081807-444E-3886-907F-941F34A98CAA> /var/folders/*/4d23e99e.bundle
       0x102cbe000 -        0x102e2ed67 +libcrypto.1.0.0.dylib (0) <4A0A66FE-A6B9-387F-B265-512C91DF46F9> /var/folders/*/libcrypto.1.0.0.dylib
       0x102ea8000 -        0x102f77ff7 +2dc759ac.bundle (0) <BECC71DE-2431-3E0B-9CCA-54451E273617> /var/folders/*/2dc759ac.bundle
       0x102fcc000 -        0x10300dff3 +0ddb41ec.bundle (0) <138995F0-107C-36DA-9874-517513E2C496> /var/folders/*/0ddb41ec.bundle
       0x10301c000 -        0x103036fff +f9942c13.bundle (0) <47FC965A-8783-3480-8C44-155DAE842CDB> /var/folders/*/f9942c13.bundle
       0x10303b000 -        0x10303efff +224fc758.bundle (0) <F9CAA8F9-0853-30EF-B4E1-6103CDA59061> /var/folders/*/224fc758.bundle
       0x103096000 -        0x1030dfff3 +a121ca04.bundle (0) <FC728716-8CA3-3D3D-B429-8B9D11AA2766> /var/folders/*/a121ca04.bundle
       0x1031d3000 -        0x103210ffb +8530d2d2.bundle (0) <0A8F7314-8F0C-3068-B810-604A641AA465> /var/folders/*/8530d2d2.bundle
       0x103414000 -        0x10359aff3 +2f95712f.bundle (0) <AC0E2861-7FFA-3455-ABB2-637A1CFEA1E4> /var/folders/*/2f95712f.bundle
       0x1039cc000 -        0x103a1bfff +b1c261f1.bundle (0) <655D0B69-BF71-39B6-95A3-0964623803F2> /var/folders/*/b1c261f1.bundle
       0x103ad6000 -        0x103b1bff3 +68674f8d.bundle (0) <48D9B751-2DB4-3970-B9D0-4CB0EA3AEFED> /var/folders/*/68674f8d.bundle
       0x103cbe000 -        0x103db1fff +Tk (8.6.9 - 8.6.9) <2EDAD99B-8E55-384F-9316-BBD77C7A9926> /Users/USER/Desktop/MyTest6.app/Contents/Frameworks8.6.8/Tk.framework/Versions/8.6/Tk
       0x10503e000 -        0x105050ffb +libTktable2.10.dylib (0) <BAA7A8CB-2A1D-3E58-85E8-1299C762A64F> /Users/USER/Desktop/MyTest6.app/Contents/Frameworks8.6.8/Tktable2.10/libTktable2.10.dylib
    0x7fff6b55b000 -     0x7fff6b592a47  dyld (360.22) <DC81CC9D-651A-3A45-8809-928282052BD3> /usr/lib/dyld
    0x7fff84bd1000 -     0x7fff84bfaff7  libxpc.dylib (765.50.8) <54D1328E-054E-3DAA-89E2-375722F9D18F> /usr/lib/system/libxpc.dylib
    0x7fff84c0c000 -     0x7fff84c1afff  libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib
    0x7fff84c21000 -     0x7fff84c4affb  libRIP.A.dylib (960.3) <702967FB-D16C-38C7-A3CC-0EC336740A69> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff84c6e000 -     0x7fff84c72fff  libGIF.dylib (1459) <58F85C45-96D2-3713-A8C0-B2579B419A80> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff84ce1000 -     0x7fff84d50fff  com.apple.SearchKit (1.4.0 - 1.4.0) <F159A888-34CA-36F1-AC8E-EB1B38C9DFB3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff84d6e000 -     0x7fff84e04fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8FC37E20-6579-3CB2-9D49-BC39FC38DF87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff84e05000 -     0x7fff84e60ff7  libTIFF.dylib (1459) <CA5015CC-A770-3A62-BABD-B5A88AD390E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff84e6c000 -     0x7fff84e6dfff  libsystem_blocks.dylib (65) <1244D9D5-F6AA-35BB-B307-86851C24B8E5> /usr/lib/system/libsystem_blocks.dylib
    0x7fff84e6e000 -     0x7fff84e7efff  libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib
    0x7fff84e7f000 -     0x7fff860e5ff3  com.apple.CoreGraphics (1.600.0 - 960.3) <A2DA51BA-7A97-33B9-97A1-979F6401989C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff860e6000 -     0x7fff863dbfff  com.apple.HIToolbox (2.1.1 - 807.2) <36413C45-36AF-34EF-9C0E-F18B31D1E565> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff863eb000 -     0x7fff86518ff3  com.apple.CoreText (352.0 - 494.12) <ADBE8355-D4F5-3316-A6C4-D641D615CEC4> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff865c8000 -     0x7fff865dffff  libmarisa.dylib (4) <E4919B03-D9BD-3AF8-B436-C415C98E3F0A> /usr/lib/libmarisa.dylib
    0x7fff86642000 -     0x7fff86646fff  libcache.dylib (75) <9548AAE9-2AB7-3525-9ECE-A2A7C4688447> /usr/lib/system/libcache.dylib
    0x7fff86653000 -     0x7fff8665dfff  com.apple.NetAuth (6.0 - 6.0) <D692B1EF-534F-3892-8E2F-2BBA7C8AFD74> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8665e000 -     0x7fff866d2ff7  com.apple.Heimdal (4.0 - 2.0) <5D365381-8B5E-3259-8867-FC4A7D307BDE> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff87250000 -     0x7fff87251ffb  libremovefile.dylib (41) <552EF39E-14D7-363E-9059-4565AC2F894E> /usr/lib/system/libremovefile.dylib
    0x7fff8729f000 -     0x7fff87359fff  com.apple.DiscRecording (9.0.1 - 9010.4.3) <540853B2-B123-3560-8023-C92EE229051A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff87a8e000 -     0x7fff87b47ff7  libvMisc.dylib (563.5) <BF612F7D-FA3B-3F9F-8BE7-8D1BCB21ECC5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff87c8e000 -     0x7fff87cd4ff7  libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib
    0x7fff87cd5000 -     0x7fff87cd7fff  libCGXType.A.dylib (960.3) <70FA6D91-53BC-3DA6-92F3-7FEB33C73948> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff87d06000 -     0x7fff87d22ff7  libsystem_malloc.dylib (67.40.1) <5748E8B2-F81C-34C6-8B13-456213127678> /usr/lib/system/libsystem_malloc.dylib
    0x7fff87d23000 -     0x7fff87dacff7  com.apple.PerformanceAnalysis (1.0 - 1) <1BC106BB-3C7F-37C9-8496-43F584A6F304> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff87f37000 -     0x7fff88026ff7  libxml2.2.dylib (29.10) <B3B03292-7E1A-34AB-888C-3D49D63D60C6> /usr/lib/libxml2.2.dylib
    0x7fff88027000 -     0x7fff88043ff7  libextension.dylib (78) <FD952DA6-BBEC-3CB6-98B3-E1D111C5C54E> /usr/lib/libextension.dylib
    0x7fff88044000 -     0x7fff88c6dff7  com.apple.AppKit (6.9 - 1404.47) <F3411F6E-DD87-34D0-8C68-C69B2205E41D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff88c85000 -     0x7fff88c85fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <848125D3-AF14-3526-8745-FFCDB200CD76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff88ca8000 -     0x7fff88ceaff7  com.apple.Metal (56.6 - 56.6) <30518711-8D00-3759-AA19-800D3C88E693> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff88ceb000 -     0x7fff89119fff  com.apple.vision.FaceCore (3.3.1 - 3.3.1) <E54028EA-4217-3078-A2B1-C52E4214D59E> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff891af000 -     0x7fff891c8fff  com.apple.openscripting (1.7.1 - 169.1) <36EBF6A7-334A-3197-838F-E8C7B27FCDBB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff89338000 -     0x7fff89344ff7  com.apple.OpenDirectory (10.11 - 194) <31A67AD5-5CC2-350A-96D7-821DF4BC4196> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff89345000 -     0x7fff89347ff7  com.apple.securityhi (9.0 - 55006) <1E7BE52B-97EA-371A-AECA-1EE2AD246D8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff89cb2000 -     0x7fff89cd6ff7  libJPEG.dylib (1459) <30F85216-E836-37B3-874E-62F1D040B098> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff89cd7000 -     0x7fff89d87fff  com.apple.backup.framework (1.7.4 - 1.7.4) <F304E9D1-991A-379E-9659-BF85C35B4808> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff89ec7000 -     0x7fff89eecff7  libPng.dylib (1459) <F98F6D50-BC82-3ED7-885F-FEE708E401CC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff89f37000 -     0x7fff89f53ff3  libresolv.9.dylib (60) <A650B5C8-1950-36A0-86D1-0B2465318BFA> /usr/lib/libresolv.9.dylib
    0x7fff8a0c5000 -     0x7fff8a0c5fff  com.apple.Cocoa (6.11 - 22) <807787AB-D231-3F51-A99B-A9314623C571> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8a0c6000 -     0x7fff8a561ffb  com.apple.GeoServices (1.0 - 1151.49.1) <2D887517-B73D-30FF-91DC-AF6AD91F96B9> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8a59b000 -     0x7fff8a59bfff  libmetal_timestamp.dylib (600.0.44.2) <DEEA1127-7A5D-3EF2-A4B2-AE125CBA5DB5> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
    0x7fff8a59f000 -     0x7fff8a826fff  com.apple.CFNetwork (760.6.3 - 760.6.3) <8CB9CB2E-D0FB-31D4-A1AE-2A5FE028AD6B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8a88f000 -     0x7fff8a892ffb  libScreenReader.dylib (426.42) <16FC79D1-4573-3E90-945F-CBA22D5185FD> /usr/lib/libScreenReader.dylib
    0x7fff8a998000 -     0x7fff8aaa6ff3  com.apple.desktopservices (1.10.3 - 1.10.3) <3A6906D4-C0B8-30D1-B589-0466E5E42B69> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff8aaa7000 -     0x7fff8aaaaff7  com.apple.help (1.3.3 - 46) <35DA4D48-0BC2-35A1-8D7C-40905CDF4F64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff8aaab000 -     0x7fff8aaacff3  com.apple.print.framework.Print (10.0 - 266) <3E85F70C-D7D4-34E1-B88A-C1F503F99CDA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff8aab0000 -     0x7fff8aaeaff7  com.apple.DebugSymbols (132 - 132) <23A42C53-B941-3871-9EE2-4C87A46005B5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff8aca8000 -     0x7fff8acabfff  libCoreVMClient.dylib (119.5) <560D70FB-709F-3030-96C9-F249FCB7DA6D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff8acac000 -     0x7fff8acc7ff7  libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib
    0x7fff8adeb000 -     0x7fff8adf3fef  libcldcpuengine.dylib (2.7.3) <385BE8CE-16D8-3FCB-8558-8EB744D3DFE6> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fff8adf7000 -     0x7fff8ae00ff3  libsystem_notify.dylib (150.40.1) <D48BDE34-0F7E-34CA-A0FF-C578E39987CC> /usr/lib/system/libsystem_notify.dylib
    0x7fff8ae4e000 -     0x7fff8ae51fff  com.apple.IOSurface (108.2.3 - 108.2.3) <52E51D16-42E9-3DDB-A16C-48225EF262C4> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8ae52000 -     0x7fff8ae52ff7  libunc.dylib (29) <DDB1E947-C775-33B8-B461-63E5EB698F0E> /usr/lib/system/libunc.dylib
    0x7fff8ae53000 -     0x7fff8af0bff7  com.apple.CoreDuet (1.0 - 1) <FC1EAEE1-73A4-3B13-A634-1D2A94D0C0B7> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff8af64000 -     0x7fff8af6cfff  libGFXShared.dylib (12.1) <5A0C2493-200C-30BE-97D5-8E8C0B8E604D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff8afb2000 -     0x7fff8b03ffef  libsystem_c.dylib (1082.60.1) <28733D22-553E-3CBC-8D2C-EDCEB46E46AF> /usr/lib/system/libsystem_c.dylib
    0x7fff8b0a9000 -     0x7fff8b0b4fff  libGL.dylib (12.1) <70D51643-04AC-3400-8F11-A6FC25985289> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8b101000 -     0x7fff8b109fef  libsystem_platform.dylib (74.40.2) <29A905EF-6777-3C33-82B0-6C3A88C4BA15> /usr/lib/system/libsystem_platform.dylib
    0x7fff8b135000 -     0x7fff8b136fff  com.apple.TrustEvaluationAgent (2.0 - 25) <0239494E-FEFE-39BC-9FC7-E251BA5128F1> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff8c235000 -     0x7fff8c23bff7  com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <9E5A980A-F455-32D5-BBEE-3BD6018CC45E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff8c23c000 -     0x7fff8c244fff  com.apple.AppleSRP (5.0 - 1) <840A5C20-6452-36BB-ACF7-29BA6CBF7C48> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff8c245000 -     0x7fff8c25cff7  libsystem_asl.dylib (323.50.1) <41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9> /usr/lib/system/libsystem_asl.dylib
    0x7fff8c261000 -     0x7fff8c26cff7  libcommonCrypto.dylib (60075.50.1) <93732261-34B4-3914-B7A2-90A81A182DBA> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8c271000 -     0x7fff8c272fff  libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8c2e1000 -     0x7fff8c2fafff  com.apple.CFOpenDirectory (10.11 - 194) <11F95672-55E0-3F9D-9171-5E8C56AEE948> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff8c2fb000 -     0x7fff8c369ff7  com.apple.ApplicationServices.ATS (377 - 394.4) <9779E916-0788-3CAC-B1EC-F68BCB12A2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff8c36a000 -     0x7fff8c386fff  com.apple.GenerationalStorage (2.0 - 239.1) <8C821448-4294-3736-9CEF-467C93785CB9> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff8c3b9000 -     0x7fff8c3c4fff  libkxld.dylib (3248.60.10) <991CDFE9-AB87-321B-A4B2-5EFE64DDCF74> /usr/lib/system/libkxld.dylib
    0x7fff8c433000 -     0x7fff8c441ff7  libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib
    0x7fff8c445000 -     0x7fff8c4e5fff  com.apple.Metadata (10.7.0 - 972.34) <A58195C5-5D5C-32D5-8BBB-F4D32201E5AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff8c624000 -     0x7fff8c63bff7  libsystem_coretls.dylib (83.40.5) <C90DAE38-4082-381C-A185-2A6A8B677628> /usr/lib/system/libsystem_coretls.dylib
    0x7fff8c648000 -     0x7fff8c649fff  libsystem_secinit.dylib (20) <32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B> /usr/lib/system/libsystem_secinit.dylib
    0x7fff8c65a000 -     0x7fff8c65afff  com.apple.CoreServices (728.13 - 728.13) <E3DFECD2-ECEA-3242-972D-95B9646B57B8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8c65b000 -     0x7fff8c6b9fff  com.apple.CoreServices.OSServices (728.13 - 728.13) <27C12B92-7845-38DD-B82D-DC5B678352D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff8c6ba000 -     0x7fff8c6ffff3  libFontRegistry.dylib (155.2) <A70DD497-35F3-34DA-9C19-F4B90080E961> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8c764000 -     0x7fff8c76dfff  com.apple.icloud.FindMyDevice (1.0 - 1) <B9C741F2-6FAC-3BA7-B6E0-9A910C6E8D4E> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
    0x7fff8c76e000 -     0x7fff8c844ffb  com.apple.DiskImagesFramework (10.11.4 - 417.4) <B9525D22-6F0D-39C5-BA9B-9DF195FE1968> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff8c845000 -     0x7fff8c85bff7  libLinearAlgebra.dylib (1162.2) <FFE54EDF-F06F-3C0A-864A-4CA7BBFD4B2D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff8c877000 -     0x7fff8c8c5fff  libcurl.4.dylib (90) <12E01E4B-24C9-394C-9D2C-85CF85D5F459> /usr/lib/libcurl.4.dylib
    0x7fff8c8c6000 -     0x7fff8c8edfff  com.apple.ChunkingLibrary (167 - 167) <AD7F285C-005E-36BB-98A3-5826413533BE> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff8c92d000 -     0x7fff8ca1fff7  libJP2.dylib (1459) <90B4DD14-4D0B-3373-B1B6-DC8F53D78565> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8ca20000 -     0x7fff8ca25fff  com.apple.DiskArbitration (2.7 - 2.7) <F55902AA-5316-3255-A701-FDED5B553065> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8ca26000 -     0x7fff8ca2dff7  libcompiler_rt.dylib (62) <A13ECF69-F59F-38AE-8609-7B731450FBCD> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8ca2e000 -     0x7fff8ca2ffff  liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib
    0x7fff8ca30000 -     0x7fff8ca40ff3  com.apple.ProtocolBuffer (1 - 243) <BAE5E5C9-DD59-3BB8-9741-EEFC5E3046EE> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff8ccb3000 -     0x7fff8ccdeffb  libarchive.2.dylib (33.20.2) <6C370A21-63FD-3A68-B4B3-5333F24B770B> /usr/lib/libarchive.2.dylib
    0x7fff8d059000 -     0x7fff8d05dfff  libpam.2.dylib (20) <CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A> /usr/lib/libpam.2.dylib
    0x7fff8d067000 -     0x7fff8d0baff7  libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib
    0x7fff8d0bb000 -     0x7fff8d0c6ff7  libChineseTokenizer.dylib (16) <79B8C67A-3061-3C78-92CD-4650719E68D4> /usr/lib/libChineseTokenizer.dylib
    0x7fff8d181000 -     0x7fff8d34aff7  com.apple.ImageIO.framework (3.3.0 - 1459) <72B4D556-2600-3CA0-89F1-6BA24A4274B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8d34b000 -     0x7fff8d3c0fff  com.apple.framework.IOKit (2.0.2 - 1179.50.2) <A509D3AE-9D48-31B7-89C7-326A7A2007B2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8dea6000 -     0x7fff8e2a8fff  libLAPACK.dylib (1162.2) <42238ED4-6B7A-39D0-BFF2-304A0C287213> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff8e3ec000 -     0x7fff8e43cff7  com.apple.Symbolication (1.4 - 58044) <F70BF765-FBE9-3F1E-85CA-BB2F8E53E8C2> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff8e4f5000 -     0x7fff8e4f5fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <5831771A-C1C3-3625-9FE9-2CCB6B2E7EE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8e4f6000 -     0x7fff8e5e8ff7  libiconv.2.dylib (44) <F05A0A5A-92A9-3668-8F20-F27CBDA26BE9> /usr/lib/libiconv.2.dylib
    0x7fff8e5e9000 -     0x7fff8e67efff  com.apple.ink.framework (10.9 - 214) <1F76CF36-3F79-36B8-BC37-C540AF34B338> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff8e67f000 -     0x7fff8e6d0ff7  libcups.2.dylib (435.2) <91584A40-214D-33E8-A613-CE22289037C8> /usr/lib/libcups.2.dylib
    0x7fff8ea58000 -     0x7fff8ea5affb  libutil.dylib (43) <4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C> /usr/lib/libutil.dylib
    0x7fff8ea5b000 -     0x7fff8ea6ffff  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <1D60D60C-914A-3BAB-8607-79F68F4C712E> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
    0x7fff8ea70000 -     0x7fff8ea71ffb  libSystem.B.dylib (1226.10.1) <ECAA07BE-A114-3461-AA13-C57838775FC2> /usr/lib/libSystem.B.dylib
    0x7fff8eadc000 -     0x7fff8eae7fff  com.apple.CrashReporterSupport (10.11 - 718) <05892B57-F2CD-3C84-B984-0417F6B361DB> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff8eaf0000 -     0x7fff8eb35ff7  com.apple.coreservices.SharedFileList (24.4 - 24.5) <1D2AD77B-778F-3253-A295-3D0A32A8121C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff8eb36000 -     0x7fff8ebadff7  com.apple.MMCS (1.3 - 357.1) <549FBEFC-55F7-3101-BF51-A0B1F7CF2B46> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
    0x7fff8ebae000 -     0x7fff8ebb9fff  libcsfde.dylib (517.50.1) <52F0DB6A-13B8-355E-ADFD-72834D3CA183> /usr/lib/libcsfde.dylib
    0x7fff8ed54000 -     0x7fff8ee9eff7  com.apple.coreui (2.1 - 366.1) <8138636F-A0A7-31C7-896C-5F5747FA1B2A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8eeae000 -     0x7fff8eeb1ffb  libdyld.dylib (360.22) <1F9FCF2C-5E94-3F2D-B4A5-1238587AA5C6> /usr/lib/system/libdyld.dylib
    0x7fff8ef4a000 -     0x7fff8f16bff7  com.apple.CoreImage (11.4.0 - 366.4.19) <F5B7B115-E43A-3C61-A6AD-EFCDE7FC43A1> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff8f202000 -     0x7fff8f202ff7  libkeymgr.dylib (28) <8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0> /usr/lib/system/libkeymgr.dylib
    0x7fff8f203000 -     0x7fff8f252ff7  com.apple.opencl (2.7.0 - 2.7.0) <39581F1A-04FE-3CCA-9118-E9BB9053F7A1> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8f253000 -     0x7fff8f26dfff  com.apple.Kerberos (3.0 - 1) <1B4744BF-E5AE-38E2-AA56-E22D3270F2E8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8f455000 -     0x7fff8f4e4ff7  libCoreStorage.dylib (517.50.1) <E6283FE9-B5AC-3110-8D4C-8E2BF185983E> /usr/lib/libCoreStorage.dylib
    0x7fff8f563000 -     0x7fff8f571fff  com.apple.opengl (12.1.0 - 12.1.0) <0718DB60-BA4F-3CF7-A117-10A2515D931F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8f6b1000 -     0x7fff8f797ff7  libcrypto.0.9.8.dylib (59.60.1) <D68067AD-D1E0-3196-9796-51BE9B969C8E> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8f7a2000 -     0x7fff8f7b5fff  com.apple.CoreBluetooth (1.0 - 1) <E54CA9A2-A5C6-30C5-9D6E-8472DBA9371E> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff8f815000 -     0x7fff8faa5ff7  com.apple.RawCamera.bundle (6.19 - 844) <F14992BD-D9D8-36EE-8A51-989A220E1846> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8faa6000 -     0x7fff8fc66ffb  libBLAS.dylib (1162.2) <B4C21826-5EB3-3C6D-B75D-CA4886E2B6A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff90352000 -     0x7fff903bdff7  com.apple.framework.CoreWLAN (11.0 - 1101.20) <3B35C543-7FCE-333F-80C1-432FA41DDCDE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff903be000 -     0x7fff905c9fff  libFosl_dynamic.dylib (16.24) <5F9DB82D-FD4B-3952-8531-CE020F93ED49> /usr/lib/libFosl_dynamic.dylib
    0x7fff9061f000 -     0x7fff90652ff7  com.apple.MediaKit (16 - 809) <BF8032FE-6645-37F6-A622-BC7EEE3EAABF> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff90655000 -     0x7fff9065aff7  com.apple.AssetCacheServices (14.1 - 14.1) <5F249F84-660A-3E94-B073-6729E7ED56D9> /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/AssetCacheServices
    0x7fff9065b000 -     0x7fff909affff  com.apple.Foundation (6.9 - 1259) <71A9D3A0-0B1F-3E3A-86F3-1486365A6EF2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff909b0000 -     0x7fff90e26fff  com.apple.CoreFoundation (6.9 - 1258.1) <943A1383-DA6A-3DC0-ABCD-D9AEB3D0D34D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff90e27000 -     0x7fff90fcdff7  com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <370E95BC-956C-3962-86CC-0A14CF6A0389> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff91bda000 -     0x7fff91bdfff3  libunwind.dylib (35.3) <F6EB48E5-4D12-359A-AB54-C937FBBE9043> /usr/lib/system/libunwind.dylib
    0x7fff91be0000 -     0x7fff91c87fff  com.apple.LanguageModeling (1.0 - 1) <58C18A47-BDE7-3CBE-81C0-797029D170A1> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff91c88000 -     0x7fff91c8afff  libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff91c8b000 -     0x7fff91cf1ff7  libsystem_network.dylib (583.50.1) <B52DAB73-92DC-3DA7-B9F4-B899D66445C1> /usr/lib/system/libsystem_network.dylib
    0x7fff91cf2000 -     0x7fff91cfbff7  libsystem_pthread.dylib (138.10.4) <3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559> /usr/lib/system/libsystem_pthread.dylib
    0x7fff91cfc000 -     0x7fff91d1efff  com.apple.IconServices (68.1 - 68.1) <CDEEDBE6-F53B-3BA1-82D4-23BCA3DD8949> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff9217f000 -     0x7fff9227bff7  libFontParser.dylib (158.6) <267A9AE4-4138-3112-8D73-BDFDC96568FF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff934be000 -     0x7fff935d0fef  libvDSP.dylib (563.5) <5702650E-DF08-3D58-B16F-9EF0A28702B3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff93ff0000 -     0x7fff93ff8fff  libsystem_networkextension.dylib (385.40.36) <66095DC7-6539-38F2-95EE-458F15F6D014> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff94074000 -     0x7fff9412dff7  com.apple.cloudkit.CloudKit (482.29 - 482.29) <E235B37E-1491-3857-BDE8-38450D4FE8D0> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff942fe000 -     0x7fff942fefff  libenergytrace.dylib (10.40.1) <0A491CA7-3451-3FD5-999A-58AB4362682B> /usr/lib/libenergytrace.dylib
    0x7fff94342000 -     0x7fff94344ff7  libRadiance.dylib (1459) <1FE4F408-D135-3CA5-A06B-B0FCE974997C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff943a1000 -     0x7fff943d5ff7  com.apple.CoreVideo (1.8 - 191.3) <1AA24A1B-CB84-3F6B-B6DE-11494542649C> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff943d6000 -     0x7fff9467cff7  com.apple.CoreData (120 - 641.3) <A29A5491-6169-372B-828F-84EE0CFD4BC4> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff9467d000 -     0x7fff9468dfff  libSparseBLAS.dylib (1162.2) <6F591A0F-80D0-384D-8304-B035C4ED1BBD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff9473a000 -     0x7fff947defff  com.apple.Bluetooth (4.4.6 - 4.4.6f1) <F8E54D34-DAAB-319F-8AE7-F3C55CA0CC68> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff947df000 -     0x7fff947e1fff  com.apple.EFILogin (2.0 - 2) <38150198-DD7F-3C73-BCAA-C74BB376393A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff94c17000 -     0x7fff94c1cfff  com.apple.ImageCapture (9.0 - 9.0) <ACECF0B7-7D92-3A22-BF47-E8FADF4C5378> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff94c3f000 -     0x7fff94e4cfff  libicucore.A.dylib (551.51.4) <3899B146-3840-3D4A-8C4A-FE391D5D25C7> /usr/lib/libicucore.A.dylib
    0x7fff94e4d000 -     0x7fff94e52fff  com.apple.TCC (1.0 - 1) <F5EEB2D3-9517-3975-97BE-22CB8E11B8A3> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff94e8b000 -     0x7fff94e97fff  com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <6BA06290-D4A3-351C-87F9-B61EF61FF055> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff94ea8000 -     0x7fff94eb9ff7  libsystem_trace.dylib (201.10.3) <1DD0C1FD-74E2-3949-9C2C-B81D19C2CA5E> /usr/lib/system/libsystem_trace.dylib
    0x7fff95821000 -     0x7fff95830ffb  com.apple.LangAnalysis (1.7.0 - 1.7.0) <18D21123-A3E7-3851-974A-08E5D4540475> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff9585f000 -     0x7fff9585ffff  libOpenScriptingUtil.dylib (169.1) <AD0DAC8A-9849-3077-999F-9AEC6112BDAB> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff95869000 -     0x7fff9594ffef  unorm8_bgra.dylib (2.7.3) <B315AE9C-9E09-3D9F-9513-EC2195908516> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
    0x7fff95965000 -     0x7fff95987ff7  com.apple.Sharing (442.13.6 - 442.13.6) <DDD2811C-6ECB-32F2-8EE1-69BF9657B4A8> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff95988000 -     0x7fff9598bfff  libsystem_sandbox.dylib (460.60.2) <2A68B39C-B786-3A05-87A2-56E688469FB8> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff9598c000 -     0x7fff959e1fff  com.apple.AE (701 - 701) <AD492742-F884-386B-A450-FAC281B9FFA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff959e2000 -     0x7fff959eefff  com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <71DA00B8-5EA2-326B-8814-59DB25512F65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff959fe000 -     0x7fff95a4aff7  com.apple.corelocation (1486.17 - 1615.38) <6336CFC5-9D7D-3B76-B263-56DD6EBD0B8D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff95b55000 -     0x7fff95b74ff7  com.apple.framework.Apple80211 (11.0 - 1121.34.2) <90477FAE-B835-3931-80FB-FDFF02B21D9D> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff95b75000 -     0x7fff95ba7ff7  libTrueTypeScaler.dylib (158.6) <469A7620-3B6F-3E06-80A7-8D89E5DD9C81> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff95ba8000 -     0x7fff95d26fff  com.apple.UIFoundation (1.0 - 436.1) <AABB5267-E7B7-3D75-B051-E665BDA8DEF4> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff95d27000 -     0x7fff9600cffb  com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) <2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff96012000 -     0x7fff96139fff  com.apple.LaunchServices (728.13 - 728.13) <DF9A69C3-06AD-3062-A40A-50ED12CA18CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff9613a000 -     0x7fff96140fff  com.apple.IOAccelerator (205.11 - 205.11) <C51BF724-F8E8-3B9F-806E-A00C65056445> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff9623a000 -     0x7fff9623afff  com.apple.ApplicationServices (48 - 48) <ADD57D3A-142F-3EF5-BFD8-EACD82164884> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff9623b000 -     0x7fff9623bfff  com.apple.Carbon (154 - 157) <8F6ED602-5943-3E29-A793-BC331E2C183D> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff9623c000 -     0x7fff96265fff  com.apple.ProtectedCloudStorage (1.0 - 1) <7436B2B3-943A-3500-B099-80F133B3E002> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff96273000 -     0x7fff96731fcf  com.apple.vImage (8.0 - 8.0) <85FB412E-EB30-3433-A79B-B3970FC83580> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff96974000 -     0x7fff96979ff7  libmacho.dylib (875.1) <318264FA-58F1-39D8-8285-1F6254EE410E> /usr/lib/system/libmacho.dylib
    0x7fff96a1a000 -     0x7fff96a33fe7  libcompression.dylib (28) <F83F421D-115D-3457-A9AA-1BEB5070A30B> /usr/lib/libcompression.dylib
    0x7fff96fcc000 -     0x7fff97059dd7  com.apple.AppleJPEG (1.0 - 1) <BF7EDBDB-A52D-37F7-BDE4-EAD49310D7A9> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff970e4000 -     0x7fff97113ffb  libsystem_m.dylib (3105) <08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4> /usr/lib/system/libsystem_m.dylib
    0x7fff97200000 -     0x7fff97208fff  com.apple.NetFS (6.0 - 4.0) <842A5346-24C3-3F22-9ECF-E586A10EA1F2> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff97226000 -     0x7fff97591657  libobjc.A.dylib (680) <D55D5807-1FBE-32A5-9105-44D7AFE68C27> /usr/lib/libobjc.A.dylib
    0x7fff97592000 -     0x7fff9759afff  com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff9759c000 -     0x7fff975aefff  libsasl2.2.dylib (209) <11C7D200-0CA5-30F4-A19A-178CA81D48FE> /usr/lib/libsasl2.2.dylib
    0x7fff975af000 -     0x7fff9760dfff  com.apple.SystemConfiguration (1.14 - 1.14) <D801FAD7-5A2D-3E5E-9F44-B6C9B8BEA747> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff97882000 -     0x7fff97886fff  com.apple.CommonPanels (1.2.6 - 96) <4AE7E5AE-55B3-37FA-9BDE-B23147ADA2E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff97887000 -     0x7fff978b6ff7  com.apple.DictionaryServices (1.2 - 250.3) <30250542-CBAA-39C1-91AA-B57A5DE17594> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff978d4000 -     0x7fff978e5ff7  libz.1.dylib (61.20.1) <B3EBB42F-48E3-3287-9F0D-308E04D407AC> /usr/lib/libz.1.dylib
    0x7fff978e6000 -     0x7fff978eefff  libcopyfile.dylib (127) <A48637BC-F3F2-34F2-BB68-4C65FD012832> /usr/lib/system/libcopyfile.dylib
    0x7fff97c6e000 -     0x7fff97d8bfff  libsqlite3.dylib (216.4) <DC3D59E7-91A3-374F-957C-6699729CD82B> /usr/lib/libsqlite3.dylib
    0x7fff97d9b000 -     0x7fff97dc8fff  libdispatch.dylib (501.40.12) <C7499857-61A5-3D7D-A5EA-65DCC8C3DF92> /usr/lib/system/libdispatch.dylib
    0x7fff97df1000 -     0x7fff97df3fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <7C932160-AC9C-3173-900F-98138E829CB3> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
    0x7fff97e0c000 -     0x7fff97e11ff7  libheimdal-asn1.dylib (453.40.10) <981DE40B-FA16-36F7-BE92-8C8A115D6CD9> /usr/lib/libheimdal-asn1.dylib
    0x7fff98397000 -     0x7fff983e3fff  com.apple.print.framework.PrintCore (11.2 - 472.2) <5AE8AA6B-CE09-397D-B0D4-0F9CCBF1F77D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff987c1000 -     0x7fff987c3fff  com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff987c9000 -     0x7fff9881bfff  com.apple.CloudDocs (1.0 - 383.13) <5FD9138D-09D9-3B97-BBAD-5692E1687F30> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff98a64000 -     0x7fff98acbfff  com.apple.framework.CoreWiFi (11.0 - 1101.20) <993592F1-B3F1-3FAD-87BD-EA83C361BCCF> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff98ad1000 -     0x7fff98aefff7  libsystem_kernel.dylib (3248.60.10) <C1A6A0B9-1869-36AB-B4A2-D862EB09A4BE> /usr/lib/system/libsystem_kernel.dylib
    0x7fff98b31000 -     0x7fff98bb9fff  com.apple.CoreSymbolication (3.1 - 58048.1) <4730422E-4178-34F9-8550-BB92F2A4F44B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff98bbd000 -     0x7fff98bc5fff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <CC53DC12-9231-3C4F-921B-9A770D463323> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff98bc6000 -     0x7fff98bf0ff7  libc++abi.dylib (307.2) <922EFB36-0E9E-315B-8270-E81AC43472C0> /usr/lib/libc++abi.dylib
    0x7fff98d62000 -     0x7fff98d64ff7  libsystem_configuration.dylib (802.40.13) <3DEB7DF9-6804-37E1-BC83-0166882FF0FF> /usr/lib/system/libsystem_configuration.dylib
    0x7fff98dac000 -     0x7fff98dbdfff  libcmph.dylib (6) <BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF> /usr/lib/libcmph.dylib
    0x7fff98df9000 -     0x7fff98fc7ff3  com.apple.QuartzCore (1.11 - 410.14) <076BDE58-8AED-3D47-84FD-548CF8E8EDB9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff98fca000 -     0x7fff99041feb  libcorecrypto.dylib (335.50.1) <B5C05FD7-A540-345A-87BF-8E41848A3C17> /usr/lib/system/libcorecrypto.dylib
    0x7fff99042000 -     0x7fff99057ff3  libCGInterfaces.dylib (317.9) <473434E1-5269-3077-A047-D05E024AE631> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff99165000 -     0x7fff9919dff7  com.apple.RemoteViewServices (2.0 - 101) <B2881449-8CFE-3D1C-B4BF-155640392533> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff991da000 -     0x7fff991ddff7  libCoreFSCache.dylib (119.5) <2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff991fe000 -     0x7fff99206ffb  libsystem_dnssd.dylib (625.60.4) <80189998-32B0-316C-B5C5-53857486713D> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff993be000 -     0x7fff993effff  com.apple.GSS (4.0 - 2.0) <B490333A-3B3E-397A-AD75-68846E9A9140> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff996c7000 -     0x7fff99705ff7  libGLImage.dylib (12.1) <BB1F1A93-5101-3906-AB17-8D83FCB200F9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff9971a000 -     0x7fff99751ff7  com.apple.LDAPFramework (2.4.28 - 194.5) <9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff99752000 -     0x7fff99776fff  com.apple.MultitouchSupport.framework (304.12 - 304.12) <65CB7653-EACD-3ADB-ABB6-2E0671708301> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff99777000 -     0x7fff99779ff7  com.apple.xpc.ServiceManagement (1.0 - 1) <D96D7A6D-EDEB-35EE-B5D9-E33A3BF011B5> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff997ab000 -     0x7fff99a41fff  libmecabra.dylib (696.5) <EF6C0BD4-5FE8-34FB-8ADF-69A53CEC97A9> /usr/lib/libmecabra.dylib
    0x7fff99a42000 -     0x7fff99a8effb  com.apple.HIServices (1.22 - 550) <6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff99ac6000 -     0x7fff99b00fff  com.apple.QD (3.12 - 302) <0FE53180-2895-3D14-A1E7-F82DE1D106E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff99cec000 -     0x7fff99d3dfff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <EA7D4F3B-062B-3C81-A98C-C89264D00D48> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff99d3e000 -     0x7fff99d67fff  libsystem_info.dylib (477.50.4) <FAA9226D-64DE-3769-A6D8-6CABA4B7FF4D> /usr/lib/system/libsystem_info.dylib
    0x7fff99d8e000 -     0x7fff99d97ff7  com.apple.CommonAuth (4.0 - 2.0) <4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff99d98000 -     0x7fff99d98ff7  liblaunch.dylib (765.50.8) <834ED605-5114-3641-AA4D-ECF31B801C50> /usr/lib/system/liblaunch.dylib
    0x7fff99d99000 -     0x7fff99e79ff7  unorm8_rgba.dylib (2.7.3) <9EB6C346-CFF6-32D7-B4A1-2409DFBCB216> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib
    0x7fff9a150000 -     0x7fff9a152fff  libCVMSPluginSupport.dylib (12.1) <D81B3D8D-B83F-3918-BD4B-6C794A30AF9F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff9a784000 -     0x7fff9a786ff7  libquarantine.dylib (80) <0F4169F0-0C84-3A25-B3AE-E47B3586D908> /usr/lib/system/libquarantine.dylib
    0x7fff9a787000 -     0x7fff9aa21ff3  com.apple.security (7.0 - 57337.60.2) <E2E553E7-28C4-3296-B3B6-BB1B3CA73943> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff9aa22000 -     0x7fff9aa22fff  com.apple.audio.units.AudioUnit (1.13 - 1.13) <378B5292-F216-32AB-B628-8C33A72D7052> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff9aa23000 -     0x7fff9aa51ff7  com.apple.CoreServicesInternal (248.2 - 248.2) <6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff9aa77000 -     0x7fff9aaebff3  com.apple.securityfoundation (6.0 - 55126) <DAA4FDD0-7F84-30AA-BE6F-96BB9F871F07> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff9ab0f000 -     0x7fff9ab29ff3  liblzma.5.dylib (10) <CC03591B-FA57-3CA5-AC81-0D76033AC0CE> /usr/lib/liblzma.5.dylib
    0x7fff9ae81000 -     0x7fff9aec2ff7  libGLU.dylib (12.1) <CD7A5916-3E3C-3EF3-A275-B281016B99CB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff9b19f000 -     0x7fff9b1bcff7  com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <41378C0B-B56A-3A73-9BD0-E06FA1F87B8C> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff9b26c000 -     0x7fff9b295ff7  libxslt.1.dylib (14.4) <72CD1CA4-1FBD-3672-ADCE-A89AB741689A> /usr/lib/libxslt.1.dylib
    0x7fff9b44e000 -     0x7fff9b4bdfff  com.apple.datadetectorscore (7.0 - 460) <E8616F01-90AC-3863-B18C-426E6DD1ACDE> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore

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

VM Region Summary:
ReadOnly portion of Libraries: Total=243.9M resident=0K(0%) swapped_out_or_unallocated=243.9M(100%)
Writable regions: Total=533.0M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=533.0M(100%)

                                VIRTUAL   REGION
REGION TYPE                        SIZE    COUNT (non-coalesced)
===========                     =======  =======
Accelerate.framework               128K        2
Activity Tracing                  2048K        2
CG backing stores                 2892K        5
CG image                         167.5M       17
CG shared images                   336K       11
CoreAnimation                      156K       21
CoreUI image data                  912K        8
CoreUI image file                  192K        4
Dispatch continuations            4096K        2
Foundation                           4K        2
Kernel Alloc Once                    8K        3
MALLOC                           326.6M       49
MALLOC guard page                   32K        7
Memory Tag 242                      12K        2
OpenCL                               8K        2
Process Corpse Info               2048K        2
STACK GUARD                       56.0M        9
Stack                             10.7M       11
VM_ALLOCATE                        132K        8
__DATA                            26.4M      274
__IMAGE                            528K        2
__LINKEDIT                        94.4M       57
__TEXT                           149.5M      274
__UNICODE                          552K        2
mapped file                       46.7M       16
shared memory                     16.3M        9
===========                     =======  =======
TOTAL                            907.9M      775

Model: MacBookAir7,2, BootROM VirtualBox, 2 processors, 1,8 GHz, 2 GB, SMC 2.3f35
Graphics: Display, PCI, 3 MB
Memory Module: Bank 0/DIMM 0, 2 GB, DRAM, 1600 MHz, innotek GmbH, -
Network Service: Ethernet, Ethernet, en0
Serial ATA Device: VBOX HARDDISK, 32,21 GB
Serial ATA Device: VBOX CD-ROM
USB Device: USB 2.0 Bus
USB Device: USB Bus
USB Device: USB Tablet
USB Device: USB Keyboard
Thunderbolt Bus: