-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfemu4_waf_1sec.txt
More file actions
4647 lines (4647 loc) · 241 KB
/
femu4_waf_1sec.txt
File metadata and controls
4647 lines (4647 loc) · 241 KB
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
Host Bytes with Metadata Written (HBMW): 0
Media Bytes with Metadata Written (MBMW): 0
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 1,892,286,464
Media Bytes with Metadata Written (MBMW): 1,892,286,464
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 4,324,458,496
Media Bytes with Metadata Written (MBMW): 4,324,458,496
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 6,646,398,976
Media Bytes with Metadata Written (MBMW): 6,646,398,976
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 8,948,285,440
Media Bytes with Metadata Written (MBMW): 8,948,285,440
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 11,373,117,440
Media Bytes with Metadata Written (MBMW): 11,373,117,440
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 13,710,262,272
Media Bytes with Metadata Written (MBMW): 13,710,262,272
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 15,998,648,320
Media Bytes with Metadata Written (MBMW): 15,998,648,320
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 18,398,052,352
Media Bytes with Metadata Written (MBMW): 18,398,052,352
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 20,750,139,392
Media Bytes with Metadata Written (MBMW): 20,750,139,392
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 23,121,494,016
Media Bytes with Metadata Written (MBMW): 23,121,494,016
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 25,540,820,992
Media Bytes with Metadata Written (MBMW): 25,540,820,992
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 27,930,787,840
Media Bytes with Metadata Written (MBMW): 27,930,787,840
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 30,210,785,280
Media Bytes with Metadata Written (MBMW): 30,210,785,280
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 32,507,822,080
Media Bytes with Metadata Written (MBMW): 32,507,822,080
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 34,842,476,544
Media Bytes with Metadata Written (MBMW): 34,842,476,544
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 37,134,139,392
Media Bytes with Metadata Written (MBMW): 37,134,139,392
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 39,510,867,968
Media Bytes with Metadata Written (MBMW): 39,510,867,968
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 41,847,488,512
Media Bytes with Metadata Written (MBMW): 41,847,488,512
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 44,204,556,288
Media Bytes with Metadata Written (MBMW): 44,204,556,288
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 46,597,144,576
Media Bytes with Metadata Written (MBMW): 46,597,144,576
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 48,972,169,216
Media Bytes with Metadata Written (MBMW): 48,972,169,216
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 51,377,340,416
Media Bytes with Metadata Written (MBMW): 51,377,340,416
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 53,701,115,904
Media Bytes with Metadata Written (MBMW): 53,701,115,904
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 56,043,503,616
Media Bytes with Metadata Written (MBMW): 56,043,503,616
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 58,310,262,784
Media Bytes with Metadata Written (MBMW): 58,310,262,784
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 60,680,175,616
Media Bytes with Metadata Written (MBMW): 60,680,175,616
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 63,062,540,288
Media Bytes with Metadata Written (MBMW): 63,062,540,288
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 65,430,618,112
Media Bytes with Metadata Written (MBMW): 65,430,618,112
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 67,719,135,232
Media Bytes with Metadata Written (MBMW): 67,719,135,232
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 70,154,977,280
Media Bytes with Metadata Written (MBMW): 70,154,977,280
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 72,545,599,488
Media Bytes with Metadata Written (MBMW): 72,545,599,488
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 74,923,114,496
Media Bytes with Metadata Written (MBMW): 74,923,114,496
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 77,280,313,344
Media Bytes with Metadata Written (MBMW): 77,280,313,344
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 79,511,158,784
Media Bytes with Metadata Written (MBMW): 79,511,158,784
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 81,904,664,576
Media Bytes with Metadata Written (MBMW): 81,904,664,576
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 84,343,521,280
Media Bytes with Metadata Written (MBMW): 84,343,521,280
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 86,759,702,528
Media Bytes with Metadata Written (MBMW): 86,759,702,528
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 89,161,596,928
Media Bytes with Metadata Written (MBMW): 89,161,596,928
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 91,456,143,360
Media Bytes with Metadata Written (MBMW): 91,456,143,360
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 93,773,234,176
Media Bytes with Metadata Written (MBMW): 93,773,234,176
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 96,115,359,744
Media Bytes with Metadata Written (MBMW): 96,115,359,744
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 98,392,997,888
Media Bytes with Metadata Written (MBMW): 98,392,997,888
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 100,702,224,384
Media Bytes with Metadata Written (MBMW): 100,702,224,384
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 103,004,504,064
Media Bytes with Metadata Written (MBMW): 103,004,504,064
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 105,417,539,584
Media Bytes with Metadata Written (MBMW): 105,417,539,584
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 107,684,954,112
Media Bytes with Metadata Written (MBMW): 107,684,954,112
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 0
Media Bytes with Metadata Written (MBMW): 0
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 1,986,658,304
Media Bytes with Metadata Written (MBMW): 1,986,658,304
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 4,265,345,024
Media Bytes with Metadata Written (MBMW): 4,265,345,024
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 6,596,460,544
Media Bytes with Metadata Written (MBMW): 6,596,460,544
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 9,002,680,320
Media Bytes with Metadata Written (MBMW): 9,002,680,320
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 11,428,167,680
Media Bytes with Metadata Written (MBMW): 11,428,167,680
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 13,738,573,824
Media Bytes with Metadata Written (MBMW): 13,738,573,824
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 16,172,056,576
Media Bytes with Metadata Written (MBMW): 16,172,056,576
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 18,526,896,128
Media Bytes with Metadata Written (MBMW): 18,526,896,128
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 20,925,775,872
Media Bytes with Metadata Written (MBMW): 20,925,775,872
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 23,275,896,832
Media Bytes with Metadata Written (MBMW): 23,275,896,832
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 25,589,579,776
Media Bytes with Metadata Written (MBMW): 25,589,579,776
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 27,978,891,264
Media Bytes with Metadata Written (MBMW): 27,978,891,264
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 30,321,934,336
Media Bytes with Metadata Written (MBMW): 30,321,934,336
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 32,695,517,184
Media Bytes with Metadata Written (MBMW): 32,695,517,184
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 34,949,300,224
Media Bytes with Metadata Written (MBMW): 34,949,300,224
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 37,303,353,344
Media Bytes with Metadata Written (MBMW): 37,303,353,344
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 39,615,856,640
Media Bytes with Metadata Written (MBMW): 39,615,856,640
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 42,004,381,696
Media Bytes with Metadata Written (MBMW): 42,004,381,696
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 44,247,810,048
Media Bytes with Metadata Written (MBMW): 44,247,810,048
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 46,516,666,368
Media Bytes with Metadata Written (MBMW): 46,516,666,368
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 48,778,575,872
Media Bytes with Metadata Written (MBMW): 48,778,575,872
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 51,131,973,632
Media Bytes with Metadata Written (MBMW): 51,131,973,632
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 53,451,423,744
Media Bytes with Metadata Written (MBMW): 53,451,423,744
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 55,810,850,816
Media Bytes with Metadata Written (MBMW): 55,810,850,816
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 58,163,068,928
Media Bytes with Metadata Written (MBMW): 58,163,068,928
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 60,523,020,288
Media Bytes with Metadata Written (MBMW): 60,523,020,288
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 62,885,593,088
Media Bytes with Metadata Written (MBMW): 62,885,593,088
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 65,188,134,912
Media Bytes with Metadata Written (MBMW): 65,188,134,912
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 67,547,037,696
Media Bytes with Metadata Written (MBMW): 67,547,037,696
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 69,851,676,672
Media Bytes with Metadata Written (MBMW): 69,851,676,672
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 72,188,690,432
Media Bytes with Metadata Written (MBMW): 72,188,690,432
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 74,541,301,760
Media Bytes with Metadata Written (MBMW): 74,541,301,760
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 76,831,129,600
Media Bytes with Metadata Written (MBMW): 76,831,129,600
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 79,203,663,872
Media Bytes with Metadata Written (MBMW): 79,203,663,872
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 81,483,005,952
Media Bytes with Metadata Written (MBMW): 81,483,005,952
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 83,747,799,040
Media Bytes with Metadata Written (MBMW): 83,747,799,040
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 86,144,188,416
Media Bytes with Metadata Written (MBMW): 86,144,188,416
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 88,551,063,552
Media Bytes with Metadata Written (MBMW): 88,551,063,552
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 90,841,284,608
Media Bytes with Metadata Written (MBMW): 90,841,284,608
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 93,147,365,376
Media Bytes with Metadata Written (MBMW): 93,147,365,376
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 95,431,163,904
Media Bytes with Metadata Written (MBMW): 95,431,163,904
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 97,820,606,464
Media Bytes with Metadata Written (MBMW): 97,820,606,464
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 100,218,961,920
Media Bytes with Metadata Written (MBMW): 100,218,961,920
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 102,592,020,480
Media Bytes with Metadata Written (MBMW): 102,592,020,480
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 104,921,694,208
Media Bytes with Metadata Written (MBMW): 104,921,694,208
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 107,280,334,848
Media Bytes with Metadata Written (MBMW): 107,280,334,848
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 109,630,717,952
Media Bytes with Metadata Written (MBMW): 109,630,717,952
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 111,994,077,184
Media Bytes with Metadata Written (MBMW): 111,994,077,184
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 0
Media Bytes with Metadata Written (MBMW): 0
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 1,903,951,872
Media Bytes with Metadata Written (MBMW): 1,903,951,872
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 4,281,466,880
Media Bytes with Metadata Written (MBMW): 4,281,466,880
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 6,643,646,464
Media Bytes with Metadata Written (MBMW): 6,643,646,464
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 8,977,514,496
Media Bytes with Metadata Written (MBMW): 8,977,514,496
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 11,331,829,760
Media Bytes with Metadata Written (MBMW): 11,331,829,760
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 13,662,683,136
Media Bytes with Metadata Written (MBMW): 13,662,683,136
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 15,977,676,800
Media Bytes with Metadata Written (MBMW): 15,977,676,800
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 18,284,150,784
Media Bytes with Metadata Written (MBMW): 18,284,150,784
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 20,642,267,136
Media Bytes with Metadata Written (MBMW): 20,642,267,136
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 23,047,831,552
Media Bytes with Metadata Written (MBMW): 23,047,831,552
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 25,322,586,112
Media Bytes with Metadata Written (MBMW): 25,322,586,112
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 27,643,871,232
Media Bytes with Metadata Written (MBMW): 27,643,871,232
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 30,090,723,328
Media Bytes with Metadata Written (MBMW): 30,090,723,328
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 32,492,355,584
Media Bytes with Metadata Written (MBMW): 32,492,355,584
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 34,875,375,616
Media Bytes with Metadata Written (MBMW): 34,875,375,616
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 37,276,483,584
Media Bytes with Metadata Written (MBMW): 37,276,483,584
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 39,582,957,568
Media Bytes with Metadata Written (MBMW): 39,582,957,568
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 41,903,849,472
Media Bytes with Metadata Written (MBMW): 41,903,849,472
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 44,215,042,048
Media Bytes with Metadata Written (MBMW): 44,215,042,048
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 46,572,765,184
Media Bytes with Metadata Written (MBMW): 46,572,765,184
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 48,979,378,176
Media Bytes with Metadata Written (MBMW): 48,979,378,176
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 51,385,204,736
Media Bytes with Metadata Written (MBMW): 51,385,204,736
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 53,797,978,112
Media Bytes with Metadata Written (MBMW): 53,797,978,112
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 56,199,610,368
Media Bytes with Metadata Written (MBMW): 56,199,610,368
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 58,568,736,768
Media Bytes with Metadata Written (MBMW): 58,568,736,768
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 60,949,397,504
Media Bytes with Metadata Written (MBMW): 60,949,397,504
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 63,313,018,880
Media Bytes with Metadata Written (MBMW): 63,313,018,880
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 65,708,621,824
Media Bytes with Metadata Written (MBMW): 65,708,621,824
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 68,092,690,432
Media Bytes with Metadata Written (MBMW): 68,092,690,432
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 70,509,002,752
Media Bytes with Metadata Written (MBMW): 70,509,002,752
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 72,873,541,632
Media Bytes with Metadata Written (MBMW): 72,873,541,632
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 75,274,256,384
Media Bytes with Metadata Written (MBMW): 75,274,256,384
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 77,610,876,928
Media Bytes with Metadata Written (MBMW): 77,610,876,928
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 80,001,761,280
Media Bytes with Metadata Written (MBMW): 80,001,761,280
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 82,370,494,464
Media Bytes with Metadata Written (MBMW): 82,370,494,464
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 84,690,731,008
Media Bytes with Metadata Written (MBMW): 84,690,731,008
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 87,078,469,632
Media Bytes with Metadata Written (MBMW): 87,078,469,632
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 89,506,316,288
Media Bytes with Metadata Written (MBMW): 89,506,316,288
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 91,913,453,568
Media Bytes with Metadata Written (MBMW): 91,913,453,568
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 94,261,346,304
Media Bytes with Metadata Written (MBMW): 94,261,346,304
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 96,649,084,928
Media Bytes with Metadata Written (MBMW): 96,649,084,928
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 99,070,902,272
Media Bytes with Metadata Written (MBMW): 99,070,902,272
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 101,514,870,784
Media Bytes with Metadata Written (MBMW): 101,514,870,784
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 103,928,037,376
Media Bytes with Metadata Written (MBMW): 103,928,037,376
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 106,362,437,632
Media Bytes with Metadata Written (MBMW): 106,362,437,632
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 0
Media Bytes with Metadata Written (MBMW): 0
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 1,888,354,304
Media Bytes with Metadata Written (MBMW): 1,888,354,304
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 4,297,588,736
Media Bytes with Metadata Written (MBMW): 4,297,588,736
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 6,663,831,552
Media Bytes with Metadata Written (MBMW): 6,663,831,552
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 8,963,751,936
Media Bytes with Metadata Written (MBMW): 8,963,751,936
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 11,363,549,184
Media Bytes with Metadata Written (MBMW): 11,363,549,184
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 13,761,773,568
Media Bytes with Metadata Written (MBMW): 13,761,773,568
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 16,120,152,064
Media Bytes with Metadata Written (MBMW): 16,120,152,064
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 18,369,871,872
Media Bytes with Metadata Written (MBMW): 18,369,871,872
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 20,649,213,952
Media Bytes with Metadata Written (MBMW): 20,649,213,952
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 23,023,845,376
Media Bytes with Metadata Written (MBMW): 23,023,845,376
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 25,372,000,256
Media Bytes with Metadata Written (MBMW): 25,372,000,256
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 27,792,375,808
Media Bytes with Metadata Written (MBMW): 27,792,375,808
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 30,136,074,240
Media Bytes with Metadata Written (MBMW): 30,136,074,240
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 32,453,820,416
Media Bytes with Metadata Written (MBMW): 32,453,820,416
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 34,831,990,784
Media Bytes with Metadata Written (MBMW): 34,831,990,784
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 37,256,953,856
Media Bytes with Metadata Written (MBMW): 37,256,953,856
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 39,589,642,240
Media Bytes with Metadata Written (MBMW): 39,589,642,240
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 41,836,871,680
Media Bytes with Metadata Written (MBMW): 41,836,871,680
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 44,185,419,776
Media Bytes with Metadata Written (MBMW): 44,185,419,776
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 46,508,277,760
Media Bytes with Metadata Written (MBMW): 46,508,277,760
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 48,920,788,992
Media Bytes with Metadata Written (MBMW): 48,920,788,992
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 51,356,368,896
Media Bytes with Metadata Written (MBMW): 51,356,368,896
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 53,681,061,888
Media Bytes with Metadata Written (MBMW): 53,681,061,888
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 56,004,050,944
Media Bytes with Metadata Written (MBMW): 56,004,050,944
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 58,392,182,784
Media Bytes with Metadata Written (MBMW): 58,392,182,784
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 60,668,641,280
Media Bytes with Metadata Written (MBMW): 60,668,641,280
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 63,079,841,792
Media Bytes with Metadata Written (MBMW): 63,079,841,792
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 65,539,276,800
Media Bytes with Metadata Written (MBMW): 65,539,276,800
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 67,926,622,208
Media Bytes with Metadata Written (MBMW): 67,926,622,208
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 70,363,250,688
Media Bytes with Metadata Written (MBMW): 70,363,250,688
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 72,715,075,584
Media Bytes with Metadata Written (MBMW): 72,715,075,584
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 75,044,356,096
Media Bytes with Metadata Written (MBMW): 75,044,356,096
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 77,371,015,168
Media Bytes with Metadata Written (MBMW): 77,371,015,168
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 79,728,082,944
Media Bytes with Metadata Written (MBMW): 79,728,082,944
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 82,179,522,560
Media Bytes with Metadata Written (MBMW): 82,179,522,560
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 84,605,534,208
Media Bytes with Metadata Written (MBMW): 84,605,534,208
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 87,052,386,304
Media Bytes with Metadata Written (MBMW): 87,052,386,304
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 89,416,269,824
Media Bytes with Metadata Written (MBMW): 89,416,269,824
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 91,827,470,336
Media Bytes with Metadata Written (MBMW): 91,827,470,336
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 94,156,619,776
Media Bytes with Metadata Written (MBMW): 94,156,619,776
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 96,452,870,144
Media Bytes with Metadata Written (MBMW): 96,452,870,144
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 98,835,759,104
Media Bytes with Metadata Written (MBMW): 98,835,759,104
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 101,191,385,088
Media Bytes with Metadata Written (MBMW): 101,191,385,088
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 103,491,174,400
Media Bytes with Metadata Written (MBMW): 103,491,174,400
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 105,844,572,160
Media Bytes with Metadata Written (MBMW): 105,844,572,160
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 108,266,520,576
Media Bytes with Metadata Written (MBMW): 108,266,520,576
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 110,615,986,176
Media Bytes with Metadata Written (MBMW): 110,615,986,176
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 112,928,489,472
Media Bytes with Metadata Written (MBMW): 112,928,489,472
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 115,334,709,248
Media Bytes with Metadata Written (MBMW): 115,334,709,248
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 117,736,210,432
Media Bytes with Metadata Written (MBMW): 117,736,210,432
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 119,468,457,984
Media Bytes with Metadata Written (MBMW): 119,468,457,984
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 121,850,691,584
Media Bytes with Metadata Written (MBMW): 121,850,691,584
Media Bytes Erased (MBE): 0
Host Bytes with Metadata Written (HBMW): 123,742,322,688
Media Bytes with Metadata Written (MBMW): 128,851,902,464
Media Bytes Erased (MBE): 5,129,633,792
Host Bytes with Metadata Written (HBMW): 123,833,155,584
Media Bytes with Metadata Written (MBMW): 148,046,315,520
Media Bytes Erased (MBE): 24,310,185,984
Host Bytes with Metadata Written (HBMW): 123,922,415,616
Media Bytes with Metadata Written (MBMW): 166,060,113,920
Media Bytes Erased (MBE): 42,307,944,448
Host Bytes with Metadata Written (HBMW): 124,012,462,080
Media Bytes with Metadata Written (MBMW): 184,463,097,856
Media Bytes Erased (MBE): 60,695,773,184
Host Bytes with Metadata Written (HBMW): 124,098,969,600
Media Bytes with Metadata Written (MBMW): 203,371,823,104
Media Bytes Erased (MBE): 79,595,307,008
Host Bytes with Metadata Written (HBMW): 124,182,855,680
Media Bytes with Metadata Written (MBMW): 221,810,343,936
Media Bytes Erased (MBE): 98,025,078,784
Host Bytes with Metadata Written (HBMW): 124,265,562,112
Media Bytes with Metadata Written (MBMW): 239,917,711,360
Media Bytes Erased (MBE): 116,123,500,544
Host Bytes with Metadata Written (HBMW): 124,346,826,752
Media Bytes with Metadata Written (MBMW): 258,253,389,824
Media Bytes Erased (MBE): 134,452,609,024
Host Bytes with Metadata Written (HBMW): 124,430,843,904
Media Bytes with Metadata Written (MBMW): 276,733,935,616
Media Bytes Erased (MBE): 152,924,323,840
Host Bytes with Metadata Written (HBMW): 124,515,123,200
Media Bytes with Metadata Written (MBMW): 295,410,860,032
Media Bytes Erased (MBE): 171,593,170,944
Host Bytes with Metadata Written (HBMW): 124,600,451,072
Media Bytes with Metadata Written (MBMW): 314,247,348,224
Media Bytes Erased (MBE): 190,421,401,600
Host Bytes with Metadata Written (HBMW): 124,684,206,080
Media Bytes with Metadata Written (MBMW): 333,028,343,808
Media Bytes Erased (MBE): 209,195,106,304
Host Bytes with Metadata Written (HBMW): 124,770,320,384
Media Bytes with Metadata Written (MBMW): 351,936,888,832
Media Bytes Erased (MBE): 228,094,640,128
Host Bytes with Metadata Written (HBMW): 124,854,599,680
Media Bytes with Metadata Written (MBMW): 370,877,235,200
Media Bytes Erased (MBE): 247,027,728,384
Host Bytes with Metadata Written (HBMW): 124,936,388,608
Media Bytes with Metadata Written (MBMW): 389,338,857,472
Media Bytes Erased (MBE): 265,482,665,984
Host Bytes with Metadata Written (HBMW): 125,017,391,104
Media Bytes with Metadata Written (MBMW): 407,549,132,800
Media Bytes Erased (MBE): 283,685,945,344
Host Bytes with Metadata Written (HBMW): 125,099,180,032
Media Bytes with Metadata Written (MBMW): 425,333,751,808
Media Bytes Erased (MBE): 301,461,405,696
Host Bytes with Metadata Written (HBMW): 125,182,017,536
Media Bytes with Metadata Written (MBMW): 443,253,571,584
Media Bytes Erased (MBE): 319,371,083,776
Host Bytes with Metadata Written (HBMW): 125,266,296,832
Media Bytes with Metadata Written (MBMW): 461,332,873,216
Media Bytes Erased (MBE): 337,440,145,408
Host Bytes with Metadata Written (HBMW): 125,350,576,128
Media Bytes with Metadata Written (MBMW): 479,846,973,440
Media Bytes Erased (MBE): 355,945,414,656
Host Bytes with Metadata Written (HBMW): 125,437,739,008
Media Bytes with Metadata Written (MBMW): 499,082,493,952
Media Bytes Erased (MBE): 375,172,104,192
Host Bytes with Metadata Written (HBMW): 125,522,542,592
Media Bytes with Metadata Written (MBMW): 517,918,932,992
Media Bytes Erased (MBE): 394,000,334,848
Host Bytes with Metadata Written (HBMW): 125,608,919,040
Media Bytes with Metadata Written (MBMW): 536,882,085,888
Media Bytes Erased (MBE): 412,954,394,624
Host Bytes with Metadata Written (HBMW): 125,690,839,040
Media Bytes with Metadata Written (MBMW): 555,059,396,608
Media Bytes Erased (MBE): 431,124,119,552
Host Bytes with Metadata Written (HBMW): 125,769,613,312
Media Bytes with Metadata Written (MBMW): 572,557,033,472
Media Bytes Erased (MBE): 448,614,367,232
Host Bytes with Metadata Written (HBMW): 125,819,027,456
Media Bytes with Metadata Written (MBMW): 583,333,740,544
Media Bytes Erased (MBE): 459,385,339,904
Host Bytes with Metadata Written (HBMW): 125,878,403,072
Media Bytes with Metadata Written (MBMW): 596,071,055,360
Media Bytes Erased (MBE): 472,115,052,544
Host Bytes with Metadata Written (HBMW): 125,950,754,816
Media Bytes with Metadata Written (MBMW): 612,330,061,824
Media Bytes Erased (MBE): 488,367,980,544
Host Bytes with Metadata Written (HBMW): 126,005,805,056
Media Bytes with Metadata Written (MBMW): 624,448,864,256
Media Bytes Erased (MBE): 500,481,130,496
Host Bytes with Metadata Written (HBMW): 126,052,990,976
Media Bytes with Metadata Written (MBMW): 634,859,749,376
Media Bytes Erased (MBE): 510,887,198,720
Host Bytes with Metadata Written (HBMW): 126,083,923,968
Media Bytes with Metadata Written (MBMW): 641,753,579,520
Media Bytes Erased (MBE): 517,778,440,192
Host Bytes with Metadata Written (HBMW): 126,121,017,344
Media Bytes with Metadata Written (MBMW): 649,839,886,336
Media Bytes Erased (MBE): 525,860,864,000
Host Bytes with Metadata Written (HBMW): 126,183,014,400
Media Bytes with Metadata Written (MBMW): 663,532,404,736
Media Bytes Erased (MBE): 539,546,877,952
Host Bytes with Metadata Written (HBMW): 126,244,093,952
Media Bytes with Metadata Written (MBMW): 676,793,368,576
Media Bytes Erased (MBE): 552,800,878,592
Host Bytes with Metadata Written (HBMW): 126,321,950,720
Media Bytes with Metadata Written (MBMW): 693,909,929,984
Media Bytes Erased (MBE): 569,909,444,608
Host Bytes with Metadata Written (HBMW): 126,399,938,560
Media Bytes with Metadata Written (MBMW): 710,780,239,872
Media Bytes Erased (MBE): 586,770,546,688
Host Bytes with Metadata Written (HBMW): 126,481,203,200
Media Bytes with Metadata Written (MBMW): 727,954,374,656
Media Bytes Erased (MBE): 603,933,638,656
Host Bytes with Metadata Written (HBMW): 126,524,588,032
Media Bytes with Metadata Written (MBMW): 737,601,372,160
Media Bytes Erased (MBE): 613,576,343,552
Host Bytes with Metadata Written (HBMW): 126,573,477,888
Media Bytes with Metadata Written (MBMW): 748,494,225,408
Media Bytes Erased (MBE): 624,464,756,736
Host Bytes with Metadata Written (HBMW): 126,617,780,224
Media Bytes with Metadata Written (MBMW): 758,609,870,848
Media Bytes Erased (MBE): 634,577,223,680
Host Bytes with Metadata Written (HBMW): 126,658,805,760
Media Bytes with Metadata Written (MBMW): 767,552,536,576
Media Bytes Erased (MBE): 643,515,285,504
Host Bytes with Metadata Written (HBMW): 126,720,933,888
Media Bytes with Metadata Written (MBMW): 780,890,177,536
Media Bytes Erased (MBE): 656,844,783,616
Host Bytes with Metadata Written (HBMW): 126,780,178,432
Media Bytes with Metadata Written (MBMW): 794,170,343,424
Media Bytes Erased (MBE): 670,119,755,776
Host Bytes with Metadata Written (HBMW): 126,839,029,760
Media Bytes with Metadata Written (MBMW): 806,860,668,928
Media Bytes Erased (MBE): 682,803,331,072
Host Bytes with Metadata Written (HBMW): 126,889,885,696
Media Bytes with Metadata Written (MBMW): 817,880,662,016
Media Bytes Erased (MBE): 693,817,573,376
Host Bytes with Metadata Written (HBMW): 126,941,921,280
Media Bytes with Metadata Written (MBMW): 829,595,107,328
Media Bytes Erased (MBE): 705,528,070,144
Host Bytes with Metadata Written (HBMW): 126,986,092,544
Media Bytes with Metadata Written (MBMW): 839,171,768,320
Media Bytes Erased (MBE): 715,099,471,872
Host Bytes with Metadata Written (HBMW): 127,032,754,176
Media Bytes with Metadata Written (MBMW): 849,515,511,808
Media Bytes Erased (MBE): 725,438,431,232
Host Bytes with Metadata Written (HBMW): 127,099,863,040
Media Bytes with Metadata Written (MBMW): 864,503,627,776
Media Bytes Erased (MBE): 740,420,485,120
Host Bytes with Metadata Written (HBMW): 127,185,846,272
Media Bytes with Metadata Written (MBMW): 883,583,008,768
Media Bytes Erased (MBE): 759,491,985,408
Host Bytes with Metadata Written (HBMW): 127,270,912,000
Media Bytes with Metadata Written (MBMW): 902,632,341,504
Media Bytes Erased (MBE): 778,534,125,568
Host Bytes with Metadata Written (HBMW): 127,357,288,448
Media Bytes with Metadata Written (MBMW): 921,729,368,064
Media Bytes Erased (MBE): 797,622,403,072
Host Bytes with Metadata Written (HBMW): 127,444,320,256
Media Bytes with Metadata Written (MBMW): 940,867,993,600
Media Bytes Erased (MBE): 816,752,623,616
Host Bytes with Metadata Written (HBMW): 127,527,813,120
Media Bytes with Metadata Written (MBMW): 959,164,039,168
Media Bytes Erased (MBE): 835,039,789,056
Host Bytes with Metadata Written (HBMW): 127,612,616,704
Media Bytes with Metadata Written (MBMW): 977,502,846,976
Media Bytes Erased (MBE): 853,368,897,536
Host Bytes with Metadata Written (HBMW): 127,697,682,432
Media Bytes with Metadata Written (MBMW): 996,213,620,736
Media Bytes Erased (MBE): 872,071,299,072
Host Bytes with Metadata Written (HBMW): 127,779,471,360
Media Bytes with Metadata Written (MBMW): 1,014,219,915,264
Media Bytes Erased (MBE): 890,069,057,536
Host Bytes with Metadata Written (HBMW): 127,864,668,160
Media Bytes with Metadata Written (MBMW): 1,032,484,274,176
Media Bytes Erased (MBE): 908,322,668,544
Host Bytes with Metadata Written (HBMW): 127,951,831,040
Media Bytes with Metadata Written (MBMW): 1,051,536,080,896
Media Bytes Erased (MBE): 927,364,808,704
Host Bytes with Metadata Written (HBMW): 128,035,979,264
Media Bytes with Metadata Written (MBMW): 1,070,446,493,696
Media Bytes Erased (MBE): 946,268,536,832
Host Bytes with Metadata Written (HBMW): 128,122,093,568
Media Bytes with Metadata Written (MBMW): 1,089,405,321,216
Media Bytes Erased (MBE): 965,218,402,304
Host Bytes with Metadata Written (HBMW): 128,205,979,648
Media Bytes with Metadata Written (MBMW): 1,108,357,644,288
Media Bytes Erased (MBE): 984,164,073,472
Host Bytes with Metadata Written (HBMW): 128,290,652,160
Media Bytes with Metadata Written (MBMW): 1,127,527,858,176
Media Bytes Erased (MBE): 1,003,327,848,448
Host Bytes with Metadata Written (HBMW): 128,378,470,400
Media Bytes with Metadata Written (MBMW): 1,146,718,289,920
Media Bytes Erased (MBE): 1,022,508,400,640
Host Bytes with Metadata Written (HBMW): 128,466,681,856
Media Bytes with Metadata Written (MBMW): 1,165,992,361,984
Media Bytes Erased (MBE): 1,041,772,838,912
Host Bytes with Metadata Written (HBMW): 128,553,451,520
Media Bytes with Metadata Written (MBMW): 1,185,010,188,288
Media Bytes Erased (MBE): 1,060,781,424,640
Host Bytes with Metadata Written (HBMW): 128,638,255,104
Media Bytes with Metadata Written (MBMW): 1,203,863,552,000
Media Bytes Erased (MBE): 1,079,626,432,512
Host Bytes with Metadata Written (HBMW): 128,724,500,480
Media Bytes with Metadata Written (MBMW): 1,223,148,273,664
Media Bytes Erased (MBE): 1,098,903,453,696
Host Bytes with Metadata Written (HBMW): 128,809,566,208
Media Bytes with Metadata Written (MBMW): 1,242,235,486,208
Media Bytes Erased (MBE): 1,117,983,342,592
Host Bytes with Metadata Written (HBMW): 128,895,025,152
Media Bytes with Metadata Written (MBMW): 1,261,256,294,400
Media Bytes Erased (MBE): 1,136,996,122,624
Host Bytes with Metadata Written (HBMW): 128,981,663,744
Media Bytes with Metadata Written (MBMW): 1,280,236,601,344
Media Bytes Erased (MBE): 1,155,966,959,616
Host Bytes with Metadata Written (HBMW): 129,066,729,472
Media Bytes with Metadata Written (MBMW): 1,299,202,703,360
Media Bytes Erased (MBE): 1,174,925,213,696
Host Bytes with Metadata Written (HBMW): 129,151,926,272
Media Bytes with Metadata Written (MBMW): 1,318,106,218,496
Media Bytes Erased (MBE): 1,193,820,553,216
Host Bytes with Metadata Written (HBMW): 129,237,647,360
Media Bytes with Metadata Written (MBMW): 1,337,365,381,120
Media Bytes Erased (MBE): 1,213,072,408,576
Host Bytes with Metadata Written (HBMW): 129,323,368,448
Media Bytes with Metadata Written (MBMW): 1,356,311,281,664
Media Bytes Erased (MBE): 1,232,009,691,136
Host Bytes with Metadata Written (HBMW): 129,408,434,176
Media Bytes with Metadata Written (MBMW): 1,374,796,873,728
Media Bytes Erased (MBE): 1,250,485,600,256
Host Bytes with Metadata Written (HBMW): 129,495,203,840
Media Bytes with Metadata Written (MBMW): 1,393,843,961,856
Media Bytes Erased (MBE): 1,269,523,546,112
Host Bytes with Metadata Written (HBMW): 129,583,022,080
Media Bytes with Metadata Written (MBMW): 1,413,105,057,792
Media Bytes Erased (MBE): 1,288,775,401,472
Host Bytes with Metadata Written (HBMW): 129,670,184,960
Media Bytes with Metadata Written (MBMW): 1,432,302,600,192
Media Bytes Erased (MBE): 1,307,964,342,272
Host Bytes with Metadata Written (HBMW): 129,756,299,264
Media Bytes with Metadata Written (MBMW): 1,451,219,812,352
Media Bytes Erased (MBE): 1,326,872,264,704
Host Bytes with Metadata Written (HBMW): 129,841,102,848
Media Bytes with Metadata Written (MBMW): 1,469,663,363,072
Media Bytes Erased (MBE): 1,345,306,230,784
Host Bytes with Metadata Written (HBMW): 129,927,610,368
Media Bytes with Metadata Written (MBMW): 1,488,371,531,776
Media Bytes Erased (MBE): 1,364,004,438,016
Host Bytes with Metadata Written (HBMW): 130,013,724,672
Media Bytes with Metadata Written (MBMW): 1,507,647,700,992
Media Bytes Erased (MBE): 1,383,273,070,592
Host Bytes with Metadata Written (HBMW): 130,100,494,336
Media Bytes with Metadata Written (MBMW): 1,526,840,999,936
Media Bytes Erased (MBE): 1,402,457,817,088
Host Bytes with Metadata Written (HBMW): 130,185,428,992
Media Bytes with Metadata Written (MBMW): 1,545,585,295,360
Media Bytes Erased (MBE): 1,421,193,773,056
Host Bytes with Metadata Written (HBMW): 130,270,756,864
Media Bytes with Metadata Written (MBMW): 1,564,514,025,472
Media Bytes Erased (MBE): 1,440,114,278,400
Host Bytes with Metadata Written (HBMW): 130,356,609,024
Media Bytes with Metadata Written (MBMW): 1,583,058,796,544
Media Bytes Erased (MBE): 1,458,648,907,776
Host Bytes with Metadata Written (HBMW): 130,443,771,904
Media Bytes with Metadata Written (MBMW): 1,602,064,596,992
Media Bytes Erased (MBE): 1,477,644,910,592
Host Bytes with Metadata Written (HBMW): 130,529,361,920
Media Bytes with Metadata Written (MBMW): 1,621,148,467,200
Media Bytes Erased (MBE): 1,496,720,605,184
Host Bytes with Metadata Written (HBMW): 130,617,180,160
Media Bytes with Metadata Written (MBMW): 1,640,388,444,160
Media Bytes Erased (MBE): 1,515,951,489,024
Host Bytes with Metadata Written (HBMW): 130,702,114,816
Media Bytes with Metadata Written (MBMW): 1,659,128,741,888
Media Bytes Erased (MBE): 1,534,683,250,688
Host Bytes with Metadata Written (HBMW): 130,788,491,264
Media Bytes with Metadata Written (MBMW): 1,678,250,672,128
Media Bytes Erased (MBE): 1,553,796,694,016
Host Bytes with Metadata Written (HBMW): 130,876,571,648
Media Bytes with Metadata Written (MBMW): 1,697,716,502,528
Media Bytes Erased (MBE): 1,573,254,070,272
Host Bytes with Metadata Written (HBMW): 130,962,685,952
Media Bytes with Metadata Written (MBMW): 1,716,432,388,096
Media Bytes Erased (MBE): 1,591,960,666,112
Host Bytes with Metadata Written (HBMW): 131,048,538,112
Media Bytes with Metadata Written (MBMW): 1,734,956,056,576
Media Bytes Erased (MBE): 1,610,474,323,968
Host Bytes with Metadata Written (HBMW): 131,133,079,552
Media Bytes with Metadata Written (MBMW): 1,753,641,795,584
Media Bytes Erased (MBE): 1,629,151,559,680
Host Bytes with Metadata Written (HBMW): 131,219,193,856
Media Bytes with Metadata Written (MBMW): 1,772,274,696,192
Media Bytes Erased (MBE): 1,647,774,269,440
Host Bytes with Metadata Written (HBMW): 131,306,356,736
Media Bytes with Metadata Written (MBMW): 1,791,706,529,792
Media Bytes Erased (MBE): 1,667,198,091,264
Host Bytes with Metadata Written (HBMW): 131,392,471,040
Media Bytes with Metadata Written (MBMW): 1,810,665,504,768
Media Bytes Erased (MBE): 1,686,147,956,736
Host Bytes with Metadata Written (HBMW): 131,477,405,696
Media Bytes with Metadata Written (MBMW): 1,829,485,035,520
Media Bytes Erased (MBE): 1,704,959,410,176
Host Bytes with Metadata Written (HBMW): 131,563,913,216
Media Bytes with Metadata Written (MBMW): 1,848,899,551,232
Media Bytes Erased (MBE): 1,724,366,454,784
Host Bytes with Metadata Written (HBMW): 131,649,241,088
Media Bytes with Metadata Written (MBMW): 1,867,978,637,312
Media Bytes Erased (MBE): 1,743,437,955,072
Host Bytes with Metadata Written (HBMW): 131,733,651,456
Media Bytes with Metadata Written (MBMW): 1,886,559,911,936
Media Bytes Erased (MBE): 1,762,010,333,184
Host Bytes with Metadata Written (HBMW): 131,817,537,536
Media Bytes with Metadata Written (MBMW): 1,905,478,975,488
Media Bytes Erased (MBE): 1,780,922,449,920
Host Bytes with Metadata Written (HBMW): 131,900,899,328
Media Bytes with Metadata Written (MBMW): 1,923,796,058,112
Media Bytes Erased (MBE): 1,799,230,586,880
Host Bytes with Metadata Written (HBMW): 131,986,620,416
Media Bytes with Metadata Written (MBMW): 1,942,370,074,624
Media Bytes Erased (MBE): 1,817,794,576,384
Host Bytes with Metadata Written (HBMW): 132,072,210,432
Media Bytes with Metadata Written (MBMW): 1,960,998,404,096
Media Bytes Erased (MBE): 1,836,413,091,840
Host Bytes with Metadata Written (HBMW): 132,158,717,952
Media Bytes with Metadata Written (MBMW): 1,980,484,124,672
Media Bytes Erased (MBE): 1,855,891,439,616
Host Bytes with Metadata Written (HBMW): 132,245,356,544
Media Bytes with Metadata Written (MBMW): 1,999,217,836,032
Media Bytes Erased (MBE): 1,874,614,812,672
Host Bytes with Metadata Written (HBMW): 132,331,208,704
Media Bytes with Metadata Written (MBMW): 2,018,159,886,336
Media Bytes Erased (MBE): 1,893,547,900,928
Host Bytes with Metadata Written (HBMW): 132,417,454,080
Media Bytes with Metadata Written (MBMW): 2,037,444,804,608
Media Bytes Erased (MBE): 1,912,824,922,112
Host Bytes with Metadata Written (HBMW): 132,502,519,808
Media Bytes with Metadata Written (MBMW): 2,056,080,801,792
Media Bytes Erased (MBE): 1,931,451,826,176
Host Bytes with Metadata Written (HBMW): 132,589,551,616
Media Bytes with Metadata Written (MBMW): 2,075,010,973,696
Media Bytes Erased (MBE): 1,950,372,331,520
Host Bytes with Metadata Written (HBMW): 132,676,059,136
Media Bytes with Metadata Written (MBMW): 2,093,990,756,352
Media Bytes Erased (MBE): 1,969,343,168,512
Host Bytes with Metadata Written (HBMW): 132,760,993,792
Media Bytes with Metadata Written (MBMW): 2,113,186,381,824
Media Bytes Erased (MBE): 1,988,532,109,312
Host Bytes with Metadata Written (HBMW): 132,845,928,448
Media Bytes with Metadata Written (MBMW): 2,131,809,959,936
Media Bytes Erased (MBE): 2,007,146,430,464
Host Bytes with Metadata Written (HBMW): 132,931,780,608
Media Bytes with Metadata Written (MBMW): 2,150,576,144,384
Media Bytes Erased (MBE): 2,025,903,357,952
Host Bytes with Metadata Written (HBMW): 133,016,453,120
Media Bytes with Metadata Written (MBMW): 2,169,613,287,424
Media Bytes Erased (MBE): 2,044,932,915,200
Host Bytes with Metadata Written (HBMW): 133,101,125,632
Media Bytes with Metadata Written (MBMW): 2,188,516,442,112
Media Bytes Erased (MBE): 2,063,828,254,720
Host Bytes with Metadata Written (HBMW): 133,185,536,000
Media Bytes with Metadata Written (MBMW): 2,207,026,774,016
Media Bytes Erased (MBE): 2,082,329,329,664
Host Bytes with Metadata Written (HBMW): 133,270,470,656
Media Bytes with Metadata Written (MBMW): 2,225,483,202,560
Media Bytes Erased (MBE): 2,100,775,878,656
Host Bytes with Metadata Written (HBMW): 133,353,177,088
Media Bytes with Metadata Written (MBMW): 2,244,196,286,464
Media Bytes Erased (MBE): 2,119,482,474,496
Host Bytes with Metadata Written (HBMW): 133,435,621,376
Media Bytes with Metadata Written (MBMW): 2,262,082,207,744
Media Bytes Erased (MBE): 2,137,358,598,144
Host Bytes with Metadata Written (HBMW): 133,520,031,744
Media Bytes with Metadata Written (MBMW): 2,280,546,189,312
Media Bytes Erased (MBE): 2,155,813,535,744
Host Bytes with Metadata Written (HBMW): 133,601,427,456
Media Bytes with Metadata Written (MBMW): 2,298,723,336,192
Media Bytes Erased (MBE): 2,173,983,260,672
Host Bytes with Metadata Written (HBMW): 133,688,459,264
Media Bytes with Metadata Written (MBMW): 2,317,728,858,112
Media Bytes Erased (MBE): 2,192,979,263,488
Host Bytes with Metadata Written (HBMW): 133,774,835,712
Media Bytes with Metadata Written (MBMW): 2,336,871,645,184
Media Bytes Erased (MBE): 2,212,113,678,336
Host Bytes with Metadata Written (HBMW): 133,859,901,440
Media Bytes with Metadata Written (MBMW): 2,355,491,127,296
Media Bytes Erased (MBE): 2,230,723,805,184
Host Bytes with Metadata Written (HBMW): 133,944,573,952
Media Bytes with Metadata Written (MBMW): 2,374,285,049,856
Media Bytes Erased (MBE): 2,249,510,092,800
Host Bytes with Metadata Written (HBMW): 134,031,081,472
Media Bytes with Metadata Written (MBMW): 2,393,381,896,192
Media Bytes Erased (MBE): 2,268,598,370,304
Host Bytes with Metadata Written (HBMW): 134,116,147,200
Media Bytes with Metadata Written (MBMW): 2,412,201,541,632
Media Bytes Erased (MBE): 2,287,409,823,744
Host Bytes with Metadata Written (HBMW): 134,200,950,784
Media Bytes with Metadata Written (MBMW): 2,431,063,359,488
Media Bytes Erased (MBE): 2,306,263,220,224
Host Bytes with Metadata Written (HBMW): 134,286,802,944
Media Bytes with Metadata Written (MBMW): 2,450,318,376,960
Media Bytes Erased (MBE): 2,325,510,881,280
Host Bytes with Metadata Written (HBMW): 134,372,917,248
Media Bytes with Metadata Written (MBMW): 2,469,640,568,832
Media Bytes Erased (MBE): 2,344,825,651,200
Host Bytes with Metadata Written (HBMW): 134,458,900,480
Media Bytes with Metadata Written (MBMW): 2,488,503,058,432
Media Bytes Erased (MBE): 2,363,679,047,680
Host Bytes with Metadata Written (HBMW): 134,548,160,512
Media Bytes with Metadata Written (MBMW): 2,507,894,882,304
Media Bytes Erased (MBE): 2,383,060,926,464
Host Bytes with Metadata Written (HBMW): 134,634,274,816
Media Bytes with Metadata Written (MBMW): 2,526,886,985,728
Media Bytes Erased (MBE): 2,402,044,346,368
Host Bytes with Metadata Written (HBMW): 134,720,126,976
Media Bytes with Metadata Written (MBMW): 2,546,054,119,424
Media Bytes Erased (MBE): 2,421,203,927,040
Host Bytes with Metadata Written (HBMW): 134,805,848,064