-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.log
1219 lines (1219 loc) · 164 KB
/
debug.log
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
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[1228/142841.170:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1228/142841.186:ERROR:exception_snapshot_win.cc(88)] thread ID 14600 not found in process
[1228/142841.186:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1228/142841.186:ERROR:exception_snapshot_win.cc(88)] thread ID 15552 not found in process
[1228/142919.895:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1228/142919.895:ERROR:exception_snapshot_win.cc(88)] thread ID 8820 not found in process
[1228/145741.739:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1228/145741.740:ERROR:exception_snapshot_win.cc(88)] thread ID 18304 not found in process
[1228/145741.742:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1228/145741.743:ERROR:exception_snapshot_win.cc(88)] thread ID 2476 not found in process
[1228/200014.423:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1228/200014.425:ERROR:exception_snapshot_win.cc(88)] thread ID 18968 not found in process
[1228/200014.433:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1228/200014.434:ERROR:exception_snapshot_win.cc(88)] thread ID 17616 not found in process
[1228/220504.912:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1228/220504.918:ERROR:exception_snapshot_win.cc(88)] thread ID 7440 not found in process
[1228/220504.923:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1228/220504.925:ERROR:exception_snapshot_win.cc(88)] thread ID 17028 not found in process
[1229/180748.104:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1229/180748.107:ERROR:exception_snapshot_win.cc(88)] thread ID 20208 not found in process
[1229/180748.109:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1229/180748.110:ERROR:exception_snapshot_win.cc(88)] thread ID 12956 not found in process
[1231/113752.366:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1231/113752.373:ERROR:exception_snapshot_win.cc(88)] thread ID 23684 not found in process
[1231/113752.375:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1231/113752.377:ERROR:exception_snapshot_win.cc(88)] thread ID 22396 not found in process
[1231/161659.006:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1231/161659.008:ERROR:exception_snapshot_win.cc(88)] thread ID 15676 not found in process
[1231/161659.030:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[1231/161659.031:ERROR:exception_snapshot_win.cc(88)] thread ID 15604 not found in process
[0102/170324.494:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/170324.496:ERROR:exception_snapshot_win.cc(88)] thread ID 20988 not found in process
[0102/170324.546:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/170324.547:ERROR:exception_snapshot_win.cc(88)] thread ID 6972 not found in process
[0102/170509.934:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/170509.935:ERROR:exception_snapshot_win.cc(88)] thread ID 25584 not found in process
[0102/170509.951:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/170509.952:ERROR:exception_snapshot_win.cc(88)] thread ID 100 not found in process
[0102/181917.900:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/181917.902:ERROR:exception_snapshot_win.cc(88)] thread ID 15976 not found in process
[0102/181917.902:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/181917.902:ERROR:exception_snapshot_win.cc(88)] thread ID 16740 not found in process
[0102/192010.320:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/192010.323:ERROR:exception_snapshot_win.cc(88)] thread ID 1936 not found in process
[0102/192010.324:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/192010.325:ERROR:exception_snapshot_win.cc(88)] thread ID 6484 not found in process
[0102/195147.336:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/195147.339:ERROR:exception_snapshot_win.cc(88)] thread ID 324 not found in process
[0102/195147.347:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0102/195147.350:ERROR:exception_snapshot_win.cc(88)] thread ID 2960 not found in process
[0103/200209.367:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0103/200209.369:ERROR:exception_snapshot_win.cc(88)] thread ID 16496 not found in process
[0103/200209.416:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0103/200209.419:ERROR:exception_snapshot_win.cc(88)] thread ID 19692 not found in process
[0104/195543.942:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0104/195543.944:ERROR:exception_snapshot_win.cc(88)] thread ID 12924 not found in process
[0104/195543.974:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0104/195543.978:ERROR:exception_snapshot_win.cc(88)] thread ID 17356 not found in process
[0105/180424.084:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0105/180424.089:ERROR:exception_snapshot_win.cc(88)] thread ID 21932 not found in process
[0105/180424.104:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0105/180424.111:ERROR:exception_snapshot_win.cc(88)] thread ID 10396 not found in process
[0107/214538.600:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0107/214538.608:ERROR:exception_snapshot_win.cc(88)] thread ID 26828 not found in process
[0107/214538.605:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0107/214538.608:ERROR:exception_snapshot_win.cc(88)] thread ID 27952 not found in process
[0108/214600.463:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0108/214600.469:ERROR:exception_snapshot_win.cc(88)] thread ID 10888 not found in process
[0108/214600.469:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0108/214600.473:ERROR:exception_snapshot_win.cc(88)] thread ID 30576 not found in process
[0110/195700.120:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0110/195700.130:ERROR:exception_snapshot_win.cc(88)] thread ID 5128 not found in process
[0110/195700.148:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0110/195700.150:ERROR:exception_snapshot_win.cc(88)] thread ID 3664 not found in process
[0110/201212.568:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0110/201212.573:ERROR:exception_snapshot_win.cc(88)] thread ID 15924 not found in process
[0110/201212.577:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0110/201212.578:ERROR:exception_snapshot_win.cc(88)] thread ID 17912 not found in process
[0111/000326.810:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0111/000326.812:ERROR:exception_snapshot_win.cc(88)] thread ID 18148 not found in process
[0111/000326.830:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0111/000326.832:ERROR:exception_snapshot_win.cc(88)] thread ID 19136 not found in process
[0113/124808.949:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0113/124808.951:ERROR:exception_snapshot_win.cc(88)] thread ID 22516 not found in process
[0113/124808.955:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0113/124808.956:ERROR:exception_snapshot_win.cc(88)] thread ID 18920 not found in process
[0113/212211.279:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0113/212211.280:ERROR:exception_snapshot_win.cc(88)] thread ID 8092 not found in process
[0113/212211.299:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0113/212211.302:ERROR:exception_snapshot_win.cc(88)] thread ID 13416 not found in process
[0114/114128.096:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0114/114128.099:ERROR:exception_snapshot_win.cc(88)] thread ID 18720 not found in process
[0114/114128.097:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0114/114128.099:ERROR:exception_snapshot_win.cc(88)] thread ID 16868 not found in process
[0114/162252.856:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0114/162252.857:ERROR:exception_snapshot_win.cc(88)] thread ID 21148 not found in process
[0114/162252.858:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0114/162252.858:ERROR:exception_snapshot_win.cc(88)] thread ID 9272 not found in process
[0115/161528.494:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0115/161528.494:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0115/161528.501:ERROR:exception_snapshot_win.cc(88)] thread ID 6500 not found in process
[0115/161528.501:ERROR:exception_snapshot_win.cc(88)] thread ID 15992 not found in process
[0116/161818.650:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0116/161818.656:ERROR:exception_snapshot_win.cc(88)] thread ID 13484 not found in process
[0116/161818.656:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0116/161818.657:ERROR:exception_snapshot_win.cc(88)] thread ID 25272 not found in process
[0117/161859.319:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0117/161859.324:ERROR:exception_snapshot_win.cc(88)] thread ID 26248 not found in process
[0117/161859.357:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0117/161859.358:ERROR:exception_snapshot_win.cc(88)] thread ID 5948 not found in process
[0118/153112.016:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0118/153112.022:ERROR:exception_snapshot_win.cc(88)] thread ID 26932 not found in process
[0118/153112.047:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0118/153112.049:ERROR:exception_snapshot_win.cc(88)] thread ID 24436 not found in process
[0120/212714.240:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0120/212714.244:ERROR:exception_snapshot_win.cc(88)] thread ID 18088 not found in process
[0120/212714.254:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0120/212714.258:ERROR:exception_snapshot_win.cc(88)] thread ID 32472 not found in process
[0121/154613.736:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0121/154613.741:ERROR:exception_snapshot_win.cc(88)] thread ID 26240 not found in process
[0121/154613.739:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0121/154613.741:ERROR:exception_snapshot_win.cc(88)] thread ID 18444 not found in process
[0121/161930.161:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0121/161930.162:ERROR:exception_snapshot_win.cc(88)] thread ID 34256 not found in process
[0121/161930.173:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0121/161930.176:ERROR:exception_snapshot_win.cc(88)] thread ID 25248 not found in process
[0122/135659.412:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0122/135659.418:ERROR:exception_snapshot_win.cc(88)] thread ID 36508 not found in process
[0122/135659.414:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0122/135659.419:ERROR:exception_snapshot_win.cc(88)] thread ID 36520 not found in process
[0122/161544.253:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0122/161544.257:ERROR:exception_snapshot_win.cc(88)] thread ID 26000 not found in process
[0122/161544.289:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0122/161544.293:ERROR:exception_snapshot_win.cc(88)] thread ID 34612 not found in process
[0129/161628.117:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0129/161628.122:ERROR:exception_snapshot_win.cc(88)] thread ID 25476 not found in process
[0129/161628.145:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0129/161628.149:ERROR:exception_snapshot_win.cc(88)] thread ID 13088 not found in process
[0130/152146.269:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0130/152146.274:ERROR:exception_snapshot_win.cc(88)] thread ID 17004 not found in process
[0130/152146.288:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0130/152146.289:ERROR:exception_snapshot_win.cc(88)] thread ID 38184 not found in process
[0130/161830.810:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0130/161830.811:ERROR:exception_snapshot_win.cc(88)] thread ID 40812 not found in process
[0130/161830.810:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0130/161830.811:ERROR:exception_snapshot_win.cc(88)] thread ID 39832 not found in process
[0131/162823.915:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0131/162823.916:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0131/162823.920:ERROR:exception_snapshot_win.cc(88)] thread ID 37896 not found in process
[0131/162823.920:ERROR:exception_snapshot_win.cc(88)] thread ID 13932 not found in process
[0204/115322.863:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0204/115322.869:ERROR:exception_snapshot_win.cc(88)] thread ID 28360 not found in process
[0204/115322.910:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0204/115322.912:ERROR:exception_snapshot_win.cc(88)] thread ID 33120 not found in process
[0204/171544.841:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0204/171544.842:ERROR:exception_snapshot_win.cc(88)] thread ID 29264 not found in process
[0204/171544.849:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0204/171544.850:ERROR:exception_snapshot_win.cc(88)] thread ID 39868 not found in process
[0204/172059.099:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0204/172059.100:ERROR:exception_snapshot_win.cc(88)] thread ID 29816 not found in process
[0204/172059.102:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0204/172059.103:ERROR:exception_snapshot_win.cc(88)] thread ID 2760 not found in process
[0205/171649.511:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0205/171649.516:ERROR:exception_snapshot_win.cc(88)] thread ID 36280 not found in process
[0205/171649.518:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0205/171649.522:ERROR:exception_snapshot_win.cc(88)] thread ID 38176 not found in process
[0206/090910.478:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0206/090910.482:ERROR:exception_snapshot_win.cc(88)] thread ID 42692 not found in process
[0206/090910.553:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0206/090910.555:ERROR:exception_snapshot_win.cc(88)] thread ID 11764 not found in process
[0206/101757.737:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0206/101757.742:ERROR:exception_snapshot_win.cc(88)] thread ID 41504 not found in process
[0225/115549.453:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0225/115549.457:ERROR:exception_snapshot_win.cc(88)] thread ID 6544 not found in process
[0225/115549.472:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0225/115549.474:ERROR:exception_snapshot_win.cc(88)] thread ID 5380 not found in process
[0225/151049.278:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0225/151049.281:ERROR:exception_snapshot_win.cc(88)] thread ID 21484 not found in process
[0225/151049.302:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0225/151049.303:ERROR:exception_snapshot_win.cc(88)] thread ID 21848 not found in process
[0225/171611.174:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0225/171611.177:ERROR:exception_snapshot_win.cc(88)] thread ID 11872 not found in process
[0225/171611.177:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0225/171611.179:ERROR:exception_snapshot_win.cc(88)] thread ID 21296 not found in process
[0226/171517.101:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0226/171517.105:ERROR:exception_snapshot_win.cc(88)] thread ID 18748 not found in process
[0226/171517.163:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0226/171517.165:ERROR:exception_snapshot_win.cc(88)] thread ID 23644 not found in process
[0227/171529.062:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0227/171529.066:ERROR:exception_snapshot_win.cc(88)] thread ID 19132 not found in process
[0227/171529.126:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0227/171529.130:ERROR:exception_snapshot_win.cc(88)] thread ID 19276 not found in process
[0306/155745.577:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0306/155745.577:ERROR:exception_snapshot_win.cc(88)] thread ID 18040 not found in process
[0306/155745.637:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0306/155745.637:ERROR:exception_snapshot_win.cc(88)] thread ID 20136 not found in process
[0306/215408.220:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0306/215408.221:ERROR:exception_snapshot_win.cc(88)] thread ID 16692 not found in process
[0306/215408.242:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0306/215408.243:ERROR:exception_snapshot_win.cc(88)] thread ID 17300 not found in process
[0307/214707.894:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0307/214707.898:ERROR:exception_snapshot_win.cc(88)] thread ID 23420 not found in process
[0307/214707.910:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0307/214707.911:ERROR:exception_snapshot_win.cc(88)] thread ID 21760 not found in process
[0312/162311.694:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0312/162311.697:ERROR:exception_snapshot_win.cc(88)] thread ID 22376 not found in process
[0312/162311.699:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0312/162311.700:ERROR:exception_snapshot_win.cc(88)] thread ID 19416 not found in process
[0312/163610.009:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0312/163610.010:ERROR:exception_snapshot_win.cc(88)] thread ID 24992 not found in process
[0312/163610.108:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0312/163610.109:ERROR:exception_snapshot_win.cc(88)] thread ID 17972 not found in process
[0312/214510.307:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0312/214510.308:ERROR:exception_snapshot_win.cc(88)] thread ID 25244 not found in process
[0312/214510.405:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0312/214510.407:ERROR:exception_snapshot_win.cc(88)] thread ID 9328 not found in process
[0313/214554.143:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0313/214554.147:ERROR:exception_snapshot_win.cc(88)] thread ID 13340 not found in process
[0313/214554.153:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0313/214554.155:ERROR:exception_snapshot_win.cc(88)] thread ID 19464 not found in process
[0314/215112.245:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0314/215112.250:ERROR:exception_snapshot_win.cc(88)] thread ID 15368 not found in process
[0314/215112.250:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0314/215112.253:ERROR:exception_snapshot_win.cc(88)] thread ID 16536 not found in process
[0319/000314.145:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0319/000314.148:ERROR:exception_snapshot_win.cc(88)] thread ID 22972 not found in process
[0321/000314.786:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0321/000314.789:ERROR:exception_snapshot_win.cc(88)] thread ID 26628 not found in process
[0321/000314.859:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0321/000314.860:ERROR:exception_snapshot_win.cc(88)] thread ID 3204 not found in process
[0322/000501.263:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0322/000501.266:ERROR:exception_snapshot_win.cc(88)] thread ID 20944 not found in process
[0322/000501.357:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0322/000501.358:ERROR:exception_snapshot_win.cc(88)] thread ID 28252 not found in process
[0324/224646.447:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0324/224646.448:ERROR:exception_snapshot_win.cc(88)] thread ID 34628 not found in process
[0324/224646.538:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0324/224646.540:ERROR:exception_snapshot_win.cc(88)] thread ID 30344 not found in process
[0404/215343.374:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0404/215343.374:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0404/215343.379:ERROR:exception_snapshot_win.cc(98)] thread ID 6600 not found in process
[0404/215343.379:ERROR:exception_snapshot_win.cc(98)] thread ID 1064 not found in process
[0405/162623.389:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0405/162623.391:ERROR:exception_snapshot_win.cc(98)] thread ID 19304 not found in process
[0405/162623.400:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0405/162623.403:ERROR:exception_snapshot_win.cc(98)] thread ID 18640 not found in process
[0408/161614.567:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0408/161614.567:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0408/161614.569:ERROR:exception_snapshot_win.cc(98)] thread ID 22040 not found in process
[0408/161614.569:ERROR:exception_snapshot_win.cc(98)] thread ID 22148 not found in process
[0409/161731.778:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0409/161731.783:ERROR:exception_snapshot_win.cc(98)] thread ID 21976 not found in process
[0409/161731.786:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0409/161731.788:ERROR:exception_snapshot_win.cc(98)] thread ID 9028 not found in process
[0410/112654.459:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0410/112654.464:ERROR:exception_snapshot_win.cc(98)] thread ID 16316 not found in process
[0410/161702.622:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0410/161702.623:ERROR:exception_snapshot_win.cc(98)] thread ID 21708 not found in process
[0410/161702.629:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0410/161702.630:ERROR:exception_snapshot_win.cc(98)] thread ID 29048 not found in process
[0411/122427.934:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0411/122427.938:ERROR:exception_snapshot_win.cc(98)] thread ID 24512 not found in process
[0411/122427.964:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0411/122427.965:ERROR:exception_snapshot_win.cc(98)] thread ID 31652 not found in process
[0411/132521.907:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0411/132521.910:ERROR:exception_snapshot_win.cc(98)] thread ID 28444 not found in process
[0411/132521.962:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0411/132521.962:ERROR:exception_snapshot_win.cc(98)] thread ID 18588 not found in process
[0411/140215.215:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0411/140215.215:ERROR:exception_snapshot_win.cc(98)] thread ID 20856 not found in process
[0411/140215.309:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0411/140215.310:ERROR:exception_snapshot_win.cc(98)] thread ID 29432 not found in process
[0412/162205.305:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0412/162205.312:ERROR:exception_snapshot_win.cc(98)] thread ID 17484 not found in process
[0412/162205.310:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0412/162205.312:ERROR:exception_snapshot_win.cc(98)] thread ID 8560 not found in process
[0416/162040.638:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0416/162040.643:ERROR:exception_snapshot_win.cc(98)] thread ID 5852 not found in process
[0416/162040.722:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0416/162040.723:ERROR:exception_snapshot_win.cc(98)] thread ID 4536 not found in process
[0417/125811.779:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/125811.783:ERROR:exception_snapshot_win.cc(98)] thread ID 29372 not found in process
[0417/125811.843:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/125811.844:ERROR:exception_snapshot_win.cc(98)] thread ID 29664 not found in process
[0417/131538.440:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/131538.441:ERROR:exception_snapshot_win.cc(98)] thread ID 16936 not found in process
[0417/131538.486:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/131538.487:ERROR:exception_snapshot_win.cc(98)] thread ID 18012 not found in process
[0417/141102.021:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/141102.022:ERROR:exception_snapshot_win.cc(98)] thread ID 25888 not found in process
[0417/141102.067:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/141102.068:ERROR:exception_snapshot_win.cc(98)] thread ID 11788 not found in process
[0417/141243.730:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/141243.734:ERROR:exception_snapshot_win.cc(98)] thread ID 29240 not found in process
[0417/141243.747:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/141243.748:ERROR:exception_snapshot_win.cc(98)] thread ID 25260 not found in process
[0417/141424.794:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/141424.795:ERROR:exception_snapshot_win.cc(98)] thread ID 18128 not found in process
[0417/141424.815:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/141424.816:ERROR:exception_snapshot_win.cc(98)] thread ID 27016 not found in process
[0417/141837.570:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/141837.571:ERROR:exception_snapshot_win.cc(98)] thread ID 12700 not found in process
[0417/141837.672:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/141837.673:ERROR:exception_snapshot_win.cc(98)] thread ID 29808 not found in process
[0417/142324.443:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/142324.444:ERROR:exception_snapshot_win.cc(98)] thread ID 13928 not found in process
[0417/142324.446:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/142324.447:ERROR:exception_snapshot_win.cc(98)] thread ID 15280 not found in process
[0417/143313.103:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/143313.105:ERROR:exception_snapshot_win.cc(98)] thread ID 27032 not found in process
[0417/143313.191:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/143313.192:ERROR:exception_snapshot_win.cc(98)] thread ID 23248 not found in process
[0417/153405.520:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/153405.521:ERROR:exception_snapshot_win.cc(98)] thread ID 30840 not found in process
[0417/153405.574:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/153405.575:ERROR:exception_snapshot_win.cc(98)] thread ID 30820 not found in process
[0417/153509.118:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/153509.119:ERROR:exception_snapshot_win.cc(98)] thread ID 30364 not found in process
[0417/153509.191:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/153509.192:ERROR:exception_snapshot_win.cc(98)] thread ID 30860 not found in process
[0417/153821.134:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/153821.135:ERROR:exception_snapshot_win.cc(98)] thread ID 24864 not found in process
[0417/153821.202:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/153821.203:ERROR:exception_snapshot_win.cc(98)] thread ID 4088 not found in process
[0417/162149.496:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/162149.497:ERROR:exception_snapshot_win.cc(98)] thread ID 31808 not found in process
[0417/162149.505:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/162149.507:ERROR:exception_snapshot_win.cc(98)] thread ID 25816 not found in process
[0417/173530.856:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/173530.856:ERROR:exception_snapshot_win.cc(98)] thread ID 33128 not found in process
[0417/173530.859:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/173530.860:ERROR:exception_snapshot_win.cc(98)] thread ID 12316 not found in process
[0417/180406.411:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/180406.412:ERROR:exception_snapshot_win.cc(98)] thread ID 22996 not found in process
[0417/180406.493:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0417/180406.493:ERROR:exception_snapshot_win.cc(98)] thread ID 29852 not found in process
[0418/095915.336:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/095915.337:ERROR:exception_snapshot_win.cc(98)] thread ID 19688 not found in process
[0418/095915.355:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/095915.356:ERROR:exception_snapshot_win.cc(98)] thread ID 33716 not found in process
[0418/100815.489:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/100815.492:ERROR:exception_snapshot_win.cc(98)] thread ID 24388 not found in process
[0418/100815.557:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/100815.559:ERROR:exception_snapshot_win.cc(98)] thread ID 19312 not found in process
[0418/121146.148:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/121146.150:ERROR:exception_snapshot_win.cc(98)] thread ID 34940 not found in process
[0418/121146.173:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/121146.174:ERROR:exception_snapshot_win.cc(98)] thread ID 36604 not found in process
[0418/123457.416:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/123457.418:ERROR:exception_snapshot_win.cc(98)] thread ID 21664 not found in process
[0418/123457.489:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/123457.490:ERROR:exception_snapshot_win.cc(98)] thread ID 1660 not found in process
[0418/130053.066:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/130053.068:ERROR:exception_snapshot_win.cc(98)] thread ID 31020 not found in process
[0418/130709.821:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/130709.825:ERROR:exception_snapshot_win.cc(98)] thread ID 23368 not found in process
[0418/130709.932:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/130709.933:ERROR:exception_snapshot_win.cc(98)] thread ID 1060 not found in process
[0418/131343.930:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/131343.931:ERROR:exception_snapshot_win.cc(98)] thread ID 29172 not found in process
[0418/131344.014:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/131344.016:ERROR:exception_snapshot_win.cc(98)] thread ID 13272 not found in process
[0418/131651.212:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/131651.214:ERROR:exception_snapshot_win.cc(98)] thread ID 25824 not found in process
[0418/131651.272:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/131651.274:ERROR:exception_snapshot_win.cc(98)] thread ID 28084 not found in process
[0418/132904.387:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/132904.388:ERROR:exception_snapshot_win.cc(98)] thread ID 24216 not found in process
[0418/132904.452:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/132904.452:ERROR:exception_snapshot_win.cc(98)] thread ID 272 not found in process
[0418/134343.780:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/134343.781:ERROR:exception_snapshot_win.cc(98)] thread ID 36184 not found in process
[0418/134343.802:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/134343.803:ERROR:exception_snapshot_win.cc(98)] thread ID 27128 not found in process
[0418/141722.736:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/141722.736:ERROR:exception_snapshot_win.cc(98)] thread ID 25316 not found in process
[0418/141722.737:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/141722.738:ERROR:exception_snapshot_win.cc(98)] thread ID 7636 not found in process
[0418/161532.959:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/161532.962:ERROR:exception_snapshot_win.cc(98)] thread ID 30148 not found in process
[0418/161533.103:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0418/161533.104:ERROR:exception_snapshot_win.cc(98)] thread ID 36520 not found in process
[0419/135138.742:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/135138.744:ERROR:exception_snapshot_win.cc(98)] thread ID 37448 not found in process
[0419/135138.750:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/135138.751:ERROR:exception_snapshot_win.cc(98)] thread ID 3332 not found in process
[0419/135553.630:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/135553.631:ERROR:exception_snapshot_win.cc(98)] thread ID 9820 not found in process
[0419/135553.723:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/135553.724:ERROR:exception_snapshot_win.cc(98)] thread ID 8548 not found in process
[0419/143301.400:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/143301.401:ERROR:exception_snapshot_win.cc(98)] thread ID 19848 not found in process
[0419/143301.410:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/143301.414:ERROR:exception_snapshot_win.cc(98)] thread ID 2264 not found in process
[0419/143609.189:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/143609.189:ERROR:exception_snapshot_win.cc(98)] thread ID 27372 not found in process
[0419/143609.459:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/143609.460:ERROR:exception_snapshot_win.cc(98)] thread ID 6352 not found in process
[0419/150055.586:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/150055.587:ERROR:exception_snapshot_win.cc(98)] thread ID 2608 not found in process
[0419/150055.673:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/150055.674:ERROR:exception_snapshot_win.cc(98)] thread ID 32948 not found in process
[0419/151610.423:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/151610.424:ERROR:exception_snapshot_win.cc(98)] thread ID 29424 not found in process
[0419/151610.500:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/151610.501:ERROR:exception_snapshot_win.cc(98)] thread ID 8348 not found in process
[0419/152526.071:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/152526.072:ERROR:exception_snapshot_win.cc(98)] thread ID 38716 not found in process
[0419/152526.090:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/152526.097:ERROR:exception_snapshot_win.cc(98)] thread ID 12048 not found in process
[0419/153635.295:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/153635.295:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/153635.296:ERROR:exception_snapshot_win.cc(98)] thread ID 30088 not found in process
[0419/153635.296:ERROR:exception_snapshot_win.cc(98)] thread ID 35264 not found in process
[0419/154105.839:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/154105.840:ERROR:exception_snapshot_win.cc(98)] thread ID 9168 not found in process
[0419/154105.846:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/154105.847:ERROR:exception_snapshot_win.cc(98)] thread ID 37904 not found in process
[0419/154934.253:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/154934.253:ERROR:exception_snapshot_win.cc(98)] thread ID 28408 not found in process
[0419/154934.257:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/154934.257:ERROR:exception_snapshot_win.cc(98)] thread ID 5848 not found in process
[0419/155039.821:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155039.821:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155039.823:ERROR:exception_snapshot_win.cc(98)] thread ID 19832 not found in process
[0419/155039.823:ERROR:exception_snapshot_win.cc(98)] thread ID 36484 not found in process
[0419/155416.092:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155416.093:ERROR:exception_snapshot_win.cc(98)] thread ID 21184 not found in process
[0419/155416.193:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155416.194:ERROR:exception_snapshot_win.cc(98)] thread ID 10572 not found in process
[0419/155449.832:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155449.833:ERROR:exception_snapshot_win.cc(98)] thread ID 20292 not found in process
[0419/155449.913:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155449.916:ERROR:exception_snapshot_win.cc(98)] thread ID 16444 not found in process
[0419/155534.711:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155534.712:ERROR:exception_snapshot_win.cc(98)] thread ID 29948 not found in process
[0419/155534.711:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155534.712:ERROR:exception_snapshot_win.cc(98)] thread ID 28140 not found in process
[0419/155712.021:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155712.021:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/155712.022:ERROR:exception_snapshot_win.cc(98)] thread ID 33960 not found in process
[0419/155712.022:ERROR:exception_snapshot_win.cc(98)] thread ID 17856 not found in process
[0419/162447.172:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/162447.173:ERROR:exception_snapshot_win.cc(98)] thread ID 28776 not found in process
[0419/162447.254:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0419/162447.255:ERROR:exception_snapshot_win.cc(98)] thread ID 23340 not found in process
[0420/180416.502:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0420/180416.503:ERROR:exception_snapshot_win.cc(98)] thread ID 24068 not found in process
[0420/180416.507:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0420/180416.508:ERROR:exception_snapshot_win.cc(98)] thread ID 14420 not found in process
[0422/161529.490:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0422/161529.491:ERROR:exception_snapshot_win.cc(98)] thread ID 39924 not found in process
[0422/161529.759:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0422/161529.760:ERROR:exception_snapshot_win.cc(98)] thread ID 27052 not found in process
[0423/161822.725:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0423/161822.726:ERROR:exception_snapshot_win.cc(98)] thread ID 10332 not found in process
[0423/161822.836:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0423/161822.838:ERROR:exception_snapshot_win.cc(98)] thread ID 26464 not found in process
[0423/162037.646:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0423/162037.646:ERROR:exception_snapshot_win.cc(98)] thread ID 40072 not found in process
[0423/162113.201:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0423/162113.202:ERROR:exception_snapshot_win.cc(98)] thread ID 11568 not found in process
[0423/162221.493:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0423/162221.494:ERROR:exception_snapshot_win.cc(98)] thread ID 34192 not found in process
[0423/162335.499:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0423/162335.500:ERROR:exception_snapshot_win.cc(98)] thread ID 28140 not found in process
[0423/163318.075:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0423/163318.078:ERROR:exception_snapshot_win.cc(98)] thread ID 30544 not found in process
[0423/163344.621:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0423/163344.622:ERROR:exception_snapshot_win.cc(98)] thread ID 25056 not found in process
[0424/112627.417:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0424/112627.419:ERROR:exception_snapshot_win.cc(98)] thread ID 18504 not found in process
[0424/112627.453:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0424/112627.454:ERROR:exception_snapshot_win.cc(98)] thread ID 32144 not found in process
[0424/134419.089:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0424/134419.091:ERROR:exception_snapshot_win.cc(98)] thread ID 18584 not found in process
[0424/134419.404:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0424/134419.405:ERROR:exception_snapshot_win.cc(98)] thread ID 12356 not found in process
[0424/134504.849:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0424/134504.850:ERROR:exception_snapshot_win.cc(98)] thread ID 34708 not found in process
[0424/161952.607:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0424/161952.612:ERROR:exception_snapshot_win.cc(98)] thread ID 7896 not found in process
[0424/161952.611:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0424/161952.612:ERROR:exception_snapshot_win.cc(98)] thread ID 14984 not found in process
[0425/091216.032:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/091216.036:ERROR:exception_snapshot_win.cc(98)] thread ID 7604 not found in process
[0425/091216.062:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/091216.069:ERROR:exception_snapshot_win.cc(98)] thread ID 13648 not found in process
[0425/091457.037:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/091457.038:ERROR:exception_snapshot_win.cc(98)] thread ID 8948 not found in process
[0425/091457.159:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/091457.160:ERROR:exception_snapshot_win.cc(98)] thread ID 19736 not found in process
[0425/122619.075:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/122619.080:ERROR:exception_snapshot_win.cc(98)] thread ID 21844 not found in process
[0425/122619.089:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/122619.091:ERROR:exception_snapshot_win.cc(98)] thread ID 23440 not found in process
[0425/122650.603:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/122650.604:ERROR:exception_snapshot_win.cc(98)] thread ID 24524 not found in process
[0425/122650.791:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/122650.792:ERROR:exception_snapshot_win.cc(98)] thread ID 280 not found in process
[0425/123115.748:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/123115.752:ERROR:exception_snapshot_win.cc(98)] thread ID 16184 not found in process
[0425/123115.885:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/123115.886:ERROR:exception_snapshot_win.cc(98)] thread ID 16216 not found in process
[0425/123301.600:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/123301.600:ERROR:exception_snapshot_win.cc(98)] thread ID 16232 not found in process
[0425/142049.161:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/142049.166:ERROR:exception_snapshot_win.cc(98)] thread ID 20556 not found in process
[0425/142049.161:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/142049.171:ERROR:exception_snapshot_win.cc(98)] thread ID 7500 not found in process
[0425/142831.275:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/142831.276:ERROR:exception_snapshot_win.cc(98)] thread ID 9188 not found in process
[0425/142831.275:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/142831.276:ERROR:exception_snapshot_win.cc(98)] thread ID 20300 not found in process
[0425/143154.539:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/143154.543:ERROR:exception_snapshot_win.cc(98)] thread ID 14364 not found in process
[0425/143154.547:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/143154.552:ERROR:exception_snapshot_win.cc(98)] thread ID 21420 not found in process
[0425/143713.299:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/143713.301:ERROR:exception_snapshot_win.cc(98)] thread ID 11760 not found in process
[0425/143713.308:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/143713.311:ERROR:exception_snapshot_win.cc(98)] thread ID 14832 not found in process
[0425/150337.888:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/150337.893:ERROR:exception_snapshot_win.cc(98)] thread ID 21092 not found in process
[0425/150337.888:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/150337.893:ERROR:exception_snapshot_win.cc(98)] thread ID 17384 not found in process
[0425/161259.893:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/161259.896:ERROR:exception_snapshot_win.cc(98)] thread ID 16220 not found in process
[0425/161259.900:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/161259.907:ERROR:exception_snapshot_win.cc(98)] thread ID 9700 not found in process
[0425/162241.202:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/162241.202:ERROR:exception_snapshot_win.cc(98)] thread ID 17824 not found in process
[0425/162241.386:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0425/162241.386:ERROR:exception_snapshot_win.cc(98)] thread ID 19308 not found in process
[0426/092956.120:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/092956.124:ERROR:exception_snapshot_win.cc(98)] thread ID 10992 not found in process
[0426/092956.180:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/092956.181:ERROR:exception_snapshot_win.cc(98)] thread ID 20636 not found in process
[0426/094500.181:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/094500.184:ERROR:exception_snapshot_win.cc(98)] thread ID 10292 not found in process
[0426/094500.221:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/094500.222:ERROR:exception_snapshot_win.cc(98)] thread ID 22480 not found in process
[0426/115737.846:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/115737.848:ERROR:exception_snapshot_win.cc(98)] thread ID 26196 not found in process
[0426/115738.064:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/115738.065:ERROR:exception_snapshot_win.cc(98)] thread ID 1576 not found in process
[0426/135508.121:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/135508.122:ERROR:exception_snapshot_win.cc(98)] thread ID 8244 not found in process
[0426/135508.161:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/135508.162:ERROR:exception_snapshot_win.cc(98)] thread ID 9400 not found in process
[0426/140253.769:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/140253.770:ERROR:exception_snapshot_win.cc(98)] thread ID 1208 not found in process
[0426/140253.972:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/140253.973:ERROR:exception_snapshot_win.cc(98)] thread ID 21580 not found in process
[0426/140532.781:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/140532.783:ERROR:exception_snapshot_win.cc(98)] thread ID 19524 not found in process
[0426/140532.963:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/140532.964:ERROR:exception_snapshot_win.cc(98)] thread ID 22824 not found in process
[0426/140718.561:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/140718.561:ERROR:exception_snapshot_win.cc(98)] thread ID 25964 not found in process
[0426/140718.757:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/140718.758:ERROR:exception_snapshot_win.cc(98)] thread ID 13608 not found in process
[0426/142633.354:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/142633.355:ERROR:exception_snapshot_win.cc(98)] thread ID 22028 not found in process
[0426/142633.529:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/142633.530:ERROR:exception_snapshot_win.cc(98)] thread ID 23248 not found in process
[0426/161706.845:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/161706.845:ERROR:exception_snapshot_win.cc(98)] thread ID 20064 not found in process
[0426/161707.046:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/161707.047:ERROR:exception_snapshot_win.cc(98)] thread ID 19312 not found in process
[0426/162153.012:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/162153.013:ERROR:exception_snapshot_win.cc(98)] thread ID 18532 not found in process
[0426/162153.182:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/162153.182:ERROR:exception_snapshot_win.cc(98)] thread ID 17788 not found in process
[0426/162420.268:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/162420.269:ERROR:exception_snapshot_win.cc(98)] thread ID 7792 not found in process
[0426/162420.492:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0426/162420.493:ERROR:exception_snapshot_win.cc(98)] thread ID 11760 not found in process
[0430/161508.968:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0430/161508.973:ERROR:exception_snapshot_win.cc(98)] thread ID 8928 not found in process
[0430/161509.114:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0430/161509.115:ERROR:exception_snapshot_win.cc(98)] thread ID 14396 not found in process
[0502/151815.176:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0502/151815.179:ERROR:exception_snapshot_win.cc(98)] thread ID 968 not found in process
[0502/151815.374:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0502/151815.375:ERROR:exception_snapshot_win.cc(98)] thread ID 22008 not found in process
[0502/151848.879:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0502/151848.881:ERROR:exception_snapshot_win.cc(98)] thread ID 19104 not found in process
[0502/151849.057:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0502/151849.059:ERROR:exception_snapshot_win.cc(98)] thread ID 19832 not found in process
[0502/161811.633:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0502/161811.635:ERROR:exception_snapshot_win.cc(98)] thread ID 24888 not found in process
[0502/161811.800:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0502/161811.801:ERROR:exception_snapshot_win.cc(98)] thread ID 22552 not found in process
[0503/162002.454:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0503/162002.463:ERROR:exception_snapshot_win.cc(98)] thread ID 9512 not found in process
[0503/162002.699:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0503/162002.705:ERROR:exception_snapshot_win.cc(98)] thread ID 3652 not found in process
[0504/181310.448:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0504/181310.455:ERROR:exception_snapshot_win.cc(98)] thread ID 14828 not found in process
[0504/181310.757:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0504/181310.758:ERROR:exception_snapshot_win.cc(98)] thread ID 11396 not found in process
[0505/224542.255:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0505/224542.259:ERROR:exception_snapshot_win.cc(98)] thread ID 2996 not found in process
[0505/224542.560:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0505/224542.561:ERROR:exception_snapshot_win.cc(98)] thread ID 18276 not found in process
[0506/214749.434:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0506/214749.438:ERROR:exception_snapshot_win.cc(98)] thread ID 23724 not found in process
[0506/214749.662:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0506/214749.663:ERROR:exception_snapshot_win.cc(98)] thread ID 27516 not found in process
[0507/214546.197:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0507/214546.203:ERROR:exception_snapshot_win.cc(98)] thread ID 20884 not found in process
[0507/214546.431:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0507/214546.432:ERROR:exception_snapshot_win.cc(98)] thread ID 15552 not found in process
[0508/214532.385:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0508/214532.391:ERROR:exception_snapshot_win.cc(98)] thread ID 37044 not found in process
[0508/214532.640:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0508/214532.641:ERROR:exception_snapshot_win.cc(98)] thread ID 34624 not found in process
[0509/214644.384:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0509/214644.387:ERROR:exception_snapshot_win.cc(98)] thread ID 39316 not found in process
[0509/214644.642:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0509/214644.643:ERROR:exception_snapshot_win.cc(98)] thread ID 16952 not found in process
[0514/214643.345:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0514/214643.346:ERROR:exception_snapshot_win.cc(98)] thread ID 2036 not found in process
[0514/214643.596:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0514/214643.597:ERROR:exception_snapshot_win.cc(98)] thread ID 16936 not found in process
[0518/102212.561:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/102212.563:ERROR:exception_snapshot_win.cc(98)] thread ID 12596 not found in process
[0518/102442.535:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/102442.537:ERROR:exception_snapshot_win.cc(98)] thread ID 41664 not found in process
[0518/123223.806:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/123223.807:ERROR:exception_snapshot_win.cc(98)] thread ID 38512 not found in process
[0518/123527.062:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/123527.063:ERROR:exception_snapshot_win.cc(98)] thread ID 26332 not found in process
[0518/124514.918:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/124514.920:ERROR:exception_snapshot_win.cc(98)] thread ID 32180 not found in process
[0518/131502.340:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/131502.342:ERROR:exception_snapshot_win.cc(98)] thread ID 13840 not found in process
[0518/131502.572:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/131502.572:ERROR:exception_snapshot_win.cc(98)] thread ID 31180 not found in process
[0518/153828.121:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/153828.122:ERROR:exception_snapshot_win.cc(98)] thread ID 10048 not found in process
[0518/153828.310:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/153828.311:ERROR:exception_snapshot_win.cc(98)] thread ID 34948 not found in process
[0518/154228.091:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/154228.092:ERROR:exception_snapshot_win.cc(98)] thread ID 37884 not found in process
[0518/154228.304:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/154228.305:ERROR:exception_snapshot_win.cc(98)] thread ID 7084 not found in process
[0518/180510.936:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/180510.937:ERROR:exception_snapshot_win.cc(98)] thread ID 40764 not found in process
[0518/180511.170:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0518/180511.171:ERROR:exception_snapshot_win.cc(98)] thread ID 33080 not found in process
[0519/224631.958:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0519/224631.964:ERROR:exception_snapshot_win.cc(98)] thread ID 17184 not found in process
[0519/224632.105:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0519/224632.105:ERROR:exception_snapshot_win.cc(98)] thread ID 9748 not found in process
[0520/082035.065:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0520/082035.068:ERROR:exception_snapshot_win.cc(98)] thread ID 12868 not found in process
[0520/082035.213:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0520/082035.214:ERROR:exception_snapshot_win.cc(98)] thread ID 4152 not found in process
[0520/161907.723:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0520/161907.725:ERROR:exception_snapshot_win.cc(98)] thread ID 18032 not found in process
[0520/161907.898:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0520/161907.899:ERROR:exception_snapshot_win.cc(98)] thread ID 24100 not found in process
[0521/172630.289:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/172630.290:ERROR:exception_snapshot_win.cc(98)] thread ID 19448 not found in process
[0521/172630.474:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/172630.475:ERROR:exception_snapshot_win.cc(98)] thread ID 25460 not found in process
[0521/194653.478:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/194653.480:ERROR:exception_snapshot_win.cc(98)] thread ID 27824 not found in process
[0521/194653.660:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/194653.661:ERROR:exception_snapshot_win.cc(98)] thread ID 12324 not found in process
[0521/200941.242:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/200941.242:ERROR:exception_snapshot_win.cc(98)] thread ID 28388 not found in process
[0521/200941.427:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/200941.427:ERROR:exception_snapshot_win.cc(98)] thread ID 22940 not found in process
[0521/201206.467:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/201206.471:ERROR:exception_snapshot_win.cc(98)] thread ID 24740 not found in process
[0521/201206.643:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/201206.644:ERROR:exception_snapshot_win.cc(98)] thread ID 27384 not found in process
[0521/201444.426:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/201444.427:ERROR:exception_snapshot_win.cc(98)] thread ID 11272 not found in process
[0521/201444.581:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/201444.582:ERROR:exception_snapshot_win.cc(98)] thread ID 11852 not found in process
[0521/201547.647:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/201547.648:ERROR:exception_snapshot_win.cc(98)] thread ID 6436 not found in process
[0521/201547.812:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/201547.813:ERROR:exception_snapshot_win.cc(98)] thread ID 10444 not found in process
[0521/201934.870:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/201934.871:ERROR:exception_snapshot_win.cc(98)] thread ID 23628 not found in process
[0521/201935.043:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/201935.043:ERROR:exception_snapshot_win.cc(98)] thread ID 18136 not found in process
[0521/202028.129:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/202028.130:ERROR:exception_snapshot_win.cc(98)] thread ID 20228 not found in process
[0521/202028.336:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/202028.337:ERROR:exception_snapshot_win.cc(98)] thread ID 21640 not found in process
[0521/202217.723:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/202217.724:ERROR:exception_snapshot_win.cc(98)] thread ID 22788 not found in process
[0521/202217.886:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/202217.887:ERROR:exception_snapshot_win.cc(98)] thread ID 25416 not found in process
[0521/202249.964:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/202249.965:ERROR:exception_snapshot_win.cc(98)] thread ID 9616 not found in process
[0521/202250.155:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/202250.156:ERROR:exception_snapshot_win.cc(98)] thread ID 25524 not found in process
[0521/204347.775:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/204347.775:ERROR:exception_snapshot_win.cc(98)] thread ID 6016 not found in process
[0521/204347.939:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/204347.940:ERROR:exception_snapshot_win.cc(98)] thread ID 20936 not found in process
[0521/205154.822:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/205154.823:ERROR:exception_snapshot_win.cc(98)] thread ID 13712 not found in process
[0521/205154.987:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/205154.987:ERROR:exception_snapshot_win.cc(98)] thread ID 22744 not found in process
[0521/205234.789:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/205234.790:ERROR:exception_snapshot_win.cc(98)] thread ID 6804 not found in process
[0521/205234.940:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/205234.941:ERROR:exception_snapshot_win.cc(98)] thread ID 19876 not found in process
[0521/210014.367:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/210014.368:ERROR:exception_snapshot_win.cc(98)] thread ID 23448 not found in process
[0521/210014.528:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/210014.529:ERROR:exception_snapshot_win.cc(98)] thread ID 12824 not found in process
[0521/215104.746:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/215104.747:ERROR:exception_snapshot_win.cc(98)] thread ID 1752 not found in process
[0521/215104.930:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/215104.931:ERROR:exception_snapshot_win.cc(98)] thread ID 5504 not found in process
[0521/215150.839:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/215150.840:ERROR:exception_snapshot_win.cc(98)] thread ID 4276 not found in process
[0521/215151.052:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/215151.052:ERROR:exception_snapshot_win.cc(98)] thread ID 20416 not found in process
[0521/215413.741:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/215413.741:ERROR:exception_snapshot_win.cc(98)] thread ID 22408 not found in process
[0521/215413.939:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/215413.940:ERROR:exception_snapshot_win.cc(98)] thread ID 2568 not found in process
[0521/215632.377:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/215632.381:ERROR:exception_snapshot_win.cc(98)] thread ID 27388 not found in process
[0521/215632.589:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0521/215632.590:ERROR:exception_snapshot_win.cc(98)] thread ID 25192 not found in process
[0523/171115.444:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/171115.447:ERROR:exception_snapshot_win.cc(98)] thread ID 16044 not found in process
[0523/171115.662:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/171115.665:ERROR:exception_snapshot_win.cc(98)] thread ID 23904 not found in process
[0523/172137.977:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/172137.978:ERROR:exception_snapshot_win.cc(98)] thread ID 23076 not found in process
[0523/172138.196:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/172138.198:ERROR:exception_snapshot_win.cc(98)] thread ID 23864 not found in process
[0523/172621.494:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/172621.495:ERROR:exception_snapshot_win.cc(98)] thread ID 15724 not found in process
[0523/172621.693:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/172621.694:ERROR:exception_snapshot_win.cc(98)] thread ID 27300 not found in process
[0523/173044.487:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/173044.488:ERROR:exception_snapshot_win.cc(98)] thread ID 11484 not found in process
[0523/173044.672:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/173044.673:ERROR:exception_snapshot_win.cc(98)] thread ID 25988 not found in process
[0523/173727.162:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/173727.162:ERROR:exception_snapshot_win.cc(98)] thread ID 27784 not found in process
[0523/173727.376:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/173727.377:ERROR:exception_snapshot_win.cc(98)] thread ID 27916 not found in process
[0523/182720.978:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/182720.979:ERROR:exception_snapshot_win.cc(98)] thread ID 21048 not found in process
[0523/182721.290:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/182721.290:ERROR:exception_snapshot_win.cc(98)] thread ID 2724 not found in process
[0523/183336.777:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/183336.778:ERROR:exception_snapshot_win.cc(98)] thread ID 21236 not found in process
[0523/183337.031:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/183337.031:ERROR:exception_snapshot_win.cc(98)] thread ID 3636 not found in process
[0523/184213.299:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/184213.300:ERROR:exception_snapshot_win.cc(98)] thread ID 18544 not found in process
[0523/184213.510:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/184213.514:ERROR:exception_snapshot_win.cc(98)] thread ID 18012 not found in process
[0523/184213.785:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/184213.786:ERROR:exception_snapshot_win.cc(98)] thread ID 24272 not found in process
[0523/205411.182:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/205411.183:ERROR:exception_snapshot_win.cc(98)] thread ID 19296 not found in process
[0523/205411.386:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0523/205411.387:ERROR:exception_snapshot_win.cc(98)] thread ID 14604 not found in process
[0524/000409.554:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/000409.555:ERROR:exception_snapshot_win.cc(98)] thread ID 22960 not found in process
[0524/000409.880:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/000409.885:ERROR:exception_snapshot_win.cc(98)] thread ID 21520 not found in process
[0524/202246.878:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/202246.881:ERROR:exception_snapshot_win.cc(98)] thread ID 16012 not found in process
[0524/202247.124:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/202247.125:ERROR:exception_snapshot_win.cc(98)] thread ID 18820 not found in process
[0524/202719.256:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/202719.257:ERROR:exception_snapshot_win.cc(98)] thread ID 12488 not found in process
[0524/202719.531:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/202719.532:ERROR:exception_snapshot_win.cc(98)] thread ID 7364 not found in process
[0524/204816.281:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/204816.284:ERROR:exception_snapshot_win.cc(98)] thread ID 11760 not found in process
[0524/204816.538:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/204816.539:ERROR:exception_snapshot_win.cc(98)] thread ID 27548 not found in process
[0524/205435.993:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/205435.994:ERROR:exception_snapshot_win.cc(98)] thread ID 20072 not found in process
[0524/205436.199:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/205436.200:ERROR:exception_snapshot_win.cc(98)] thread ID 28728 not found in process
[0524/212834.962:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/212834.962:ERROR:exception_snapshot_win.cc(98)] thread ID 10124 not found in process
[0524/212835.224:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/212835.225:ERROR:exception_snapshot_win.cc(98)] thread ID 29616 not found in process
[0524/213058.163:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213058.164:ERROR:exception_snapshot_win.cc(98)] thread ID 8868 not found in process
[0524/213058.394:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213058.396:ERROR:exception_snapshot_win.cc(98)] thread ID 26108 not found in process
[0524/213150.316:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213150.317:ERROR:exception_snapshot_win.cc(98)] thread ID 16572 not found in process
[0524/213150.525:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213150.526:ERROR:exception_snapshot_win.cc(98)] thread ID 23628 not found in process
[0524/213228.583:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213228.584:ERROR:exception_snapshot_win.cc(98)] thread ID 13696 not found in process
[0524/213228.830:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213228.830:ERROR:exception_snapshot_win.cc(98)] thread ID 28800 not found in process
[0524/213330.338:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213330.339:ERROR:exception_snapshot_win.cc(98)] thread ID 2584 not found in process
[0524/213330.529:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213330.530:ERROR:exception_snapshot_win.cc(98)] thread ID 18952 not found in process
[0524/213406.946:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213406.947:ERROR:exception_snapshot_win.cc(98)] thread ID 26464 not found in process
[0524/213407.148:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213407.149:ERROR:exception_snapshot_win.cc(98)] thread ID 13196 not found in process
[0524/213634.048:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213634.049:ERROR:exception_snapshot_win.cc(98)] thread ID 22332 not found in process
[0524/213634.248:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/213634.249:ERROR:exception_snapshot_win.cc(98)] thread ID 16320 not found in process
[0524/214159.466:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214159.467:ERROR:exception_snapshot_win.cc(98)] thread ID 14300 not found in process
[0524/214159.699:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214159.700:ERROR:exception_snapshot_win.cc(98)] thread ID 14120 not found in process
[0524/214250.776:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214250.777:ERROR:exception_snapshot_win.cc(98)] thread ID 18012 not found in process
[0524/214250.962:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214250.962:ERROR:exception_snapshot_win.cc(98)] thread ID 1560 not found in process
[0524/214331.789:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214331.790:ERROR:exception_snapshot_win.cc(98)] thread ID 29624 not found in process
[0524/214332.045:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214332.047:ERROR:exception_snapshot_win.cc(98)] thread ID 20176 not found in process
[0524/214500.878:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214500.879:ERROR:exception_snapshot_win.cc(98)] thread ID 5924 not found in process
[0524/214501.068:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214501.069:ERROR:exception_snapshot_win.cc(98)] thread ID 28348 not found in process
[0524/214605.099:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214605.100:ERROR:exception_snapshot_win.cc(98)] thread ID 22436 not found in process
[0524/214605.351:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214605.351:ERROR:exception_snapshot_win.cc(98)] thread ID 3020 not found in process
[0524/214859.831:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214859.832:ERROR:exception_snapshot_win.cc(98)] thread ID 11032 not found in process
[0524/214900.031:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214900.032:ERROR:exception_snapshot_win.cc(98)] thread ID 27504 not found in process
[0524/214931.523:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214931.524:ERROR:exception_snapshot_win.cc(98)] thread ID 26124 not found in process
[0524/214931.773:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/214931.774:ERROR:exception_snapshot_win.cc(98)] thread ID 7128 not found in process
[0524/220753.007:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/220753.008:ERROR:exception_snapshot_win.cc(98)] thread ID 9352 not found in process
[0524/220753.185:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0524/220753.186:ERROR:exception_snapshot_win.cc(98)] thread ID 8356 not found in process
[0525/000346.362:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0525/000346.363:ERROR:exception_snapshot_win.cc(98)] thread ID 17992 not found in process
[0525/000346.591:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0525/000346.592:ERROR:exception_snapshot_win.cc(98)] thread ID 29460 not found in process
[0525/000508.941:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0525/000508.942:ERROR:exception_snapshot_win.cc(98)] thread ID 13176 not found in process
[0525/000509.215:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0525/000509.216:ERROR:exception_snapshot_win.cc(98)] thread ID 19196 not found in process
[0528/000312.533:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0528/000312.538:ERROR:exception_snapshot_win.cc(98)] thread ID 6520 not found in process
[0528/000312.866:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0528/000312.867:ERROR:exception_snapshot_win.cc(98)] thread ID 28456 not found in process
[0529/000406.468:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0529/000406.470:ERROR:exception_snapshot_win.cc(98)] thread ID 26584 not found in process
[0529/000406.782:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0529/000406.783:ERROR:exception_snapshot_win.cc(98)] thread ID 1880 not found in process
[0530/000242.725:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/000242.729:ERROR:exception_snapshot_win.cc(98)] thread ID 24292 not found in process
[0530/000243.045:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/000243.046:ERROR:exception_snapshot_win.cc(98)] thread ID 29744 not found in process
[0530/155720.138:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/155720.141:ERROR:exception_snapshot_win.cc(98)] thread ID 17924 not found in process
[0530/155720.450:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/155720.451:ERROR:exception_snapshot_win.cc(98)] thread ID 14092 not found in process
[0530/161118.205:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/161118.205:ERROR:exception_snapshot_win.cc(98)] thread ID 912 not found in process
[0530/161118.489:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/161118.489:ERROR:exception_snapshot_win.cc(98)] thread ID 34620 not found in process
[0530/161526.089:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/161526.090:ERROR:exception_snapshot_win.cc(98)] thread ID 2208 not found in process
[0530/161526.288:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/161526.289:ERROR:exception_snapshot_win.cc(98)] thread ID 22388 not found in process
[0530/162015.554:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/162015.555:ERROR:exception_snapshot_win.cc(98)] thread ID 12028 not found in process
[0530/162015.927:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/162015.932:ERROR:exception_snapshot_win.cc(98)] thread ID 23388 not found in process
[0530/162239.579:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/162239.581:ERROR:exception_snapshot_win.cc(98)] thread ID 13604 not found in process
[0530/162239.860:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/162239.860:ERROR:exception_snapshot_win.cc(98)] thread ID 15656 not found in process
[0530/163937.700:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/163937.701:ERROR:exception_snapshot_win.cc(98)] thread ID 30952 not found in process
[0530/163937.981:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/163937.982:ERROR:exception_snapshot_win.cc(98)] thread ID 32500 not found in process
[0530/164322.385:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/164322.386:ERROR:exception_snapshot_win.cc(98)] thread ID 6688 not found in process
[0530/164322.659:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/164322.660:ERROR:exception_snapshot_win.cc(98)] thread ID 20476 not found in process
[0530/165302.283:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/165302.287:ERROR:exception_snapshot_win.cc(98)] thread ID 7208 not found in process
[0530/165302.451:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/165302.452:ERROR:exception_snapshot_win.cc(98)] thread ID 19484 not found in process
[0530/172231.396:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/172231.396:ERROR:exception_snapshot_win.cc(98)] thread ID 20420 not found in process
[0530/172231.598:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/172231.599:ERROR:exception_snapshot_win.cc(98)] thread ID 15732 not found in process
[0530/183244.289:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/183244.290:ERROR:exception_snapshot_win.cc(98)] thread ID 15452 not found in process
[0530/183244.433:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/183244.434:ERROR:exception_snapshot_win.cc(98)] thread ID 12304 not found in process
[0530/224023.965:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/224023.966:ERROR:exception_snapshot_win.cc(98)] thread ID 22256 not found in process
[0530/224024.157:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/224024.158:ERROR:exception_snapshot_win.cc(98)] thread ID 19320 not found in process
[0530/232155.454:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/232155.455:ERROR:exception_snapshot_win.cc(98)] thread ID 12308 not found in process
[0530/233800.564:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/233800.566:ERROR:exception_snapshot_win.cc(98)] thread ID 12596 not found in process
[0530/233800.731:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/233800.732:ERROR:exception_snapshot_win.cc(98)] thread ID 22020 not found in process
[0530/234305.716:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/234305.718:ERROR:exception_snapshot_win.cc(98)] thread ID 24328 not found in process
[0530/234305.861:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0530/234305.862:ERROR:exception_snapshot_win.cc(98)] thread ID 7276 not found in process
[0531/133015.096:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0531/133015.100:ERROR:exception_snapshot_win.cc(98)] thread ID 20008 not found in process
[0531/133015.323:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0531/133015.324:ERROR:exception_snapshot_win.cc(98)] thread ID 14176 not found in process
[0531/171506.171:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0531/171506.173:ERROR:exception_snapshot_win.cc(98)] thread ID 16756 not found in process
[0531/171506.419:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0531/171506.421:ERROR:exception_snapshot_win.cc(98)] thread ID 17972 not found in process
[0603/161727.572:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0603/161727.575:ERROR:exception_snapshot_win.cc(98)] thread ID 25024 not found in process
[0603/161727.829:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0603/161727.829:ERROR:exception_snapshot_win.cc(98)] thread ID 33988 not found in process
[0603/215155.289:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0603/215155.293:ERROR:exception_snapshot_win.cc(98)] thread ID 2772 not found in process
[0603/215155.444:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0603/215155.445:ERROR:exception_snapshot_win.cc(98)] thread ID 15788 not found in process
[0604/152254.331:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0604/152254.338:ERROR:exception_snapshot_win.cc(98)] thread ID 4312 not found in process
[0604/152254.475:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0604/152254.478:ERROR:exception_snapshot_win.cc(98)] thread ID 7048 not found in process
[0604/153640.787:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0604/153640.789:ERROR:exception_snapshot_win.cc(98)] thread ID 17980 not found in process
[0604/153640.912:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0604/153640.915:ERROR:exception_snapshot_win.cc(98)] thread ID 12452 not found in process
[0604/161526.098:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0604/161526.098:ERROR:exception_snapshot_win.cc(98)] thread ID 20344 not found in process
[0604/161526.227:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0604/161526.228:ERROR:exception_snapshot_win.cc(98)] thread ID 9768 not found in process
[0605/214617.584:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0605/214617.587:ERROR:exception_snapshot_win.cc(98)] thread ID 18404 not found in process
[0605/214617.754:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0605/214617.755:ERROR:exception_snapshot_win.cc(98)] thread ID 18756 not found in process
[0606/161605.208:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0606/161605.210:ERROR:exception_snapshot_win.cc(98)] thread ID 3668 not found in process
[0606/161605.368:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0606/161605.369:ERROR:exception_snapshot_win.cc(98)] thread ID 1980 not found in process
[0607/161553.630:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0607/161553.633:ERROR:exception_snapshot_win.cc(98)] thread ID 8168 not found in process
[0607/161553.799:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0607/161553.803:ERROR:exception_snapshot_win.cc(98)] thread ID 22436 not found in process
[0610/215451.696:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0610/215451.700:ERROR:exception_snapshot_win.cc(98)] thread ID 27196 not found in process
[0610/215451.844:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0610/215451.847:ERROR:exception_snapshot_win.cc(98)] thread ID 4468 not found in process
[0611/161719.567:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0611/161719.569:ERROR:exception_snapshot_win.cc(98)] thread ID 6636 not found in process
[0611/161719.668:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0611/161719.669:ERROR:exception_snapshot_win.cc(98)] thread ID 8584 not found in process
[0612/153323.509:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0612/153323.512:ERROR:exception_snapshot_win.cc(98)] thread ID 22280 not found in process
[0612/153323.509:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0612/153323.512:ERROR:exception_snapshot_win.cc(98)] thread ID 13956 not found in process
[0612/215340.800:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0612/215340.801:ERROR:exception_snapshot_win.cc(98)] thread ID 8604 not found in process
[0612/215340.914:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0612/215340.915:ERROR:exception_snapshot_win.cc(98)] thread ID 18980 not found in process
[0613/154935.959:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0613/154935.967:ERROR:exception_snapshot_win.cc(98)] thread ID 21112 not found in process
[0613/154936.096:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0613/154936.098:ERROR:exception_snapshot_win.cc(98)] thread ID 27496 not found in process
[0613/161722.564:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0613/161722.566:ERROR:exception_snapshot_win.cc(98)] thread ID 16752 not found in process
[0613/161722.681:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0613/161722.682:ERROR:exception_snapshot_win.cc(98)] thread ID 21584 not found in process
[0614/080059.154:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0614/080059.156:ERROR:exception_snapshot_win.cc(98)] thread ID 7188 not found in process
[0614/161516.529:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0614/161516.530:ERROR:exception_snapshot_win.cc(98)] thread ID 5236 not found in process
[0614/161516.669:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0614/161516.671:ERROR:exception_snapshot_win.cc(98)] thread ID 20680 not found in process
[0618/075640.027:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0618/075640.030:ERROR:exception_snapshot_win.cc(98)] thread ID 25688 not found in process