forked from StevenBlack/hosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sourcestats.nb
11624 lines (11608 loc) · 457 KB
/
sourcestats.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='WolframDesktop 13.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 161, 7]
NotebookDataLength[ 467816, 11616]
NotebookOptionsPosition[ 466753, 11593]
NotebookOutlinePosition[ 467149, 11609]
CellTagsIndexPosition[ 467106, 11606]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"ClearAll", "[", "\"\<Global`\>\"", "]"}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"folders", "=",
RowBox[{"{",
RowBox[{
"\"\<data/Adguard-cname/\>\"", ",", "\"\<data/Badd-Boyz-Hosts/\>\"",
",", "\"\<data/KADhosts/\>\"", ",", "\"\<data/MetaMask/\>\"", ",",
"\"\<data/StevenBlack/\>\"", ",", "\"\<data/URLHaus/\>\"", ",",
"\"\<data/UncheckyAds/\>\"", ",", "\"\<data/adaway.org/\>\"", ",",
"\"\<data/add.2o7Net/\>\"", ",", "\"\<data/add.Dead/\>\"", ",",
"\"\<data/add.Risk/\>\"", ",", "\"\<data/add.Spam/\>\"", ",",
"\"\<data/hostsVN/\>\"", ",", "\"\<data/minecraft-hosts/\>\"", ",",
"\"\<data/mvps.org/\>\"", ",", "\"\<data/shady-hosts/\>\"", ",",
"\"\<data/someonewhocares.org/\>\"", ",", "\"\<data/tiuxo/\>\"", ",",
"\"\<data/yoyo.org/\>\"", ",", "\"\<extensions/fakenews/\>\"", ",",
"\"\<extensions/gambling/\>\"", ",",
"\"\<extensions/porn/brijrajparmar27/\>\"", ",",
"\"\<extensions/porn/clefspeare13/\>\"", ",",
"\"\<extensions/porn/sinfonietta/\>\"", ",",
"\"\<extensions/porn/sinfonietta-snuff/\>\"", ",",
"\"\<extensions/porn/tiuxo/\>\"", ",",
"\"\<extensions/social/sinfonietta/\>\"", ",",
"\"\<extensions/social/tiuxo/\>\""}], "}"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"sourcegraph", "[", "folder_", "]"}], " ", ":=",
RowBox[{"(", "\[IndentingNewLine]",
RowBox[{
RowBox[{"SetDirectory", "[",
RowBox[{
RowBox[{"NotebookDirectory", "[", "]"}], "<>", "folder"}], "]"}], ";",
"\[IndentingNewLine]",
RowBox[{"data", "=",
RowBox[{"Import", "[", "\"\<stats.out\>\"", "]"}]}], ";",
"\[IndentingNewLine]",
RowBox[{"graphtitle", "=", " ",
RowBox[{
"folder", " ", "<>", " ", "\"\< domain contribution history\>\""}]}],
";", "\[IndentingNewLine]",
RowBox[{"data", "=",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"DateObject", "[",
RowBox[{
"#1", "\[LeftDoubleBracket]", "1", "\[RightDoubleBracket]"}],
"]"}], ",",
RowBox[{
"#1", "\[LeftDoubleBracket]", "2", "\[RightDoubleBracket]"}]}],
"}"}], "&"}], ")"}], "/@", "data"}]}], ";", "\[IndentingNewLine]",
RowBox[{"lastitem", "=",
RowBox[{"Callout", "[",
RowBox[{
RowBox[{"Last", "[", "data", "]"}], ",",
RowBox[{"ToString", "[",
RowBox[{
RowBox[{"Last", "[", "data", "]"}], "[",
RowBox[{"[", "2", "]"}], "]"}], "]"}], ",", "Right", ",", " ",
RowBox[{"LabelStyle", "->", "Small"}], ",", " ",
RowBox[{"Background", "->", "LightBlue"}]}], "]"}]}], ";",
"\[IndentingNewLine]",
RowBox[{
RowBox[{"data", "[",
RowBox[{"[",
RowBox[{"Length", "[", "data", "]"}], "]"}], "]"}], "=",
"lastitem"}], ";", "\[IndentingNewLine]",
RowBox[{"graph", "=",
RowBox[{"DateListPlot", "[",
RowBox[{"data", "\[IndentingNewLine]", ",",
RowBox[{"PlotTheme", "\[Rule]", "\"\<Detailed\>\""}],
"\[IndentingNewLine]", ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"HoldForm", "[",
RowBox[{"Unique", " ", "domains"}], "]"}], ",", "None"}],
"}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"HoldForm", "[", "Year", "]"}], ",", "None"}], "}"}]}],
"}"}]}], "\[IndentingNewLine]", ",",
RowBox[{"FrameTicks", "->",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"All", ",", "All"}], "}"}], ",", "Automatic"}], "}"}]}],
"\[IndentingNewLine]", ",",
RowBox[{"ImageMargins", "\[Rule]", "10"}], "\[IndentingNewLine]",
",",
RowBox[{"ImageSize", " ", "->", " ", "Large"}],
"\[IndentingNewLine]", ",",
RowBox[{"PlotLabel", " ", "->", " ", "\[IndentingNewLine]",
RowBox[{"Column", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{"{", "\[IndentingNewLine]",
RowBox[{
RowBox[{"Style", "[",
RowBox[{"graphtitle", ",", "16", ",", "Bold"}], "]"}],
"\[IndentingNewLine]", ",",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"\"\<updated: \>\"", "<>",
RowBox[{"DateString", "[",
RowBox[{"TimeZone", "->", "\"\<Zulu\>\""}], "]"}], " ", "<>",
" ", "\"\< UTC\>\""}], ",", "12"}], "]"}]}],
"\[IndentingNewLine]", "}"}], "\[IndentingNewLine]", ",",
"Center"}], "\[IndentingNewLine]", "]"}]}], "\[IndentingNewLine]",
",",
RowBox[{"LabelStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"GrayLevel", "[", "0", "]"}], "}"}]}]}],
"\[IndentingNewLine]", "]"}]}], ";", "\[IndentingNewLine]",
RowBox[{"Export", "[",
RowBox[{"\"\<stats.png\>\"", ",", " ", "graph"}], "]"}], ";",
"\[IndentingNewLine]",
RowBox[{"SetDirectory", "[",
RowBox[{"NotebookDirectory", "[", "]"}], "]"}], ";",
"\[IndentingNewLine]",
RowBox[{"Return", "[", "graph", "]"}], ";"}], "\[IndentingNewLine]",
")"}]}], ";"}], "\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"sourcegraph", " ", "/@", " ", "folders"}]}], "Input",
CellChangeTimes->{{3.8671865652072144`*^9, 3.867186567959504*^9}, {
3.8671866556947737`*^9, 3.867186670522201*^9}, {3.867186775392453*^9,
3.867186776891725*^9}, 3.867186837903651*^9, {3.867186904930146*^9,
3.867186940968878*^9}, {3.8671872869760838`*^9, 3.867187304612606*^9}, {
3.867187379649686*^9, 3.867187384392969*^9}, {3.8671874248081408`*^9,
3.867187425393301*^9}, {3.8671874629428263`*^9, 3.867187467876066*^9}, {
3.8671875851202183`*^9, 3.8671875923328257`*^9}, {3.867190421572784*^9,
3.867190455350173*^9}, {3.867191170483214*^9, 3.867191170658471*^9}, {
3.8671912032969103`*^9, 3.867191245177144*^9}, {3.867443579626745*^9,
3.867443615991692*^9}, {3.867445864801002*^9, 3.867445865695055*^9}, {
3.8675854619929047`*^9, 3.867585470469511*^9}, {3.86813554466776*^9,
3.868135571241589*^9}, {3.868135635079336*^9, 3.868135635502597*^9}, {
3.8681356903652143`*^9, 3.868135701390979*^9}, {3.868135775822659*^9,
3.868135790241622*^9}, {3.868135952641184*^9, 3.868135972101877*^9}, {
3.8681374541536837`*^9, 3.86813745521286*^9}, {3.8681382973480062`*^9,
3.868138313234252*^9}, {3.868138346135013*^9, 3.868138346349607*^9}},
NumberMarks->False,ExpressionUUID->"55c17c4f-14a9-40f1-a01c-ab0b0c9b3309"],
Cell[BoxData[
TemplateBox[{
"DateObject", "str",
"\"String \\!\\(\\*RowBox[{\\\"\\\\\\\"2021-05-06,6\\\\\\\"\\\"}]\\) \
cannot be interpreted as a date.\"", 2, 37, 15, 32713529922192098914, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.868135985453944*^9, 3.868137405508877*^9,
3.868138329961256*^9},
CellLabel->
"During evaluation of \
In[34]:=",ExpressionUUID->"4ca3ba94-008f-4145-addb-c3539e5004e5"],
Cell[BoxData[
TemplateBox[{
"Part", "partw",
"\"Part \\!\\(\\*RowBox[{\\\"2\\\"}]\\) of \\!\\(\\*RowBox[{\\\"{\\\", \
\\\"\\\\\\\"2021-05-06,6\\\\\\\"\\\", \\\"}\\\"}]\\) does not exist.\"", 2,
37, 16, 32713529922192098914, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.868135985453944*^9, 3.868137405508877*^9,
3.868138330013876*^9},
CellLabel->
"During evaluation of \
In[34]:=",ExpressionUUID->"f4839df9-1dbc-4ecc-bf72-0d73bd96d7aa"],
Cell[BoxData[
TemplateBox[{
"DateObject", "str",
"\"String \\!\\(\\*RowBox[{\\\"\\\\\\\"2021-05-06,6\\\\\\\"\\\"}]\\) \
cannot be interpreted as a date.\"", 2, 37, 17, 32713529922192098914, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.868135985453944*^9, 3.868137405508877*^9,
3.868138330067642*^9},
CellLabel->
"During evaluation of \
In[34]:=",ExpressionUUID->"37f42174-66d3-41cf-92fb-a6be6e472262"],
Cell[BoxData[
TemplateBox[{
"Part", "partw",
"\"Part \\!\\(\\*RowBox[{\\\"2\\\"}]\\) of \\!\\(\\*RowBox[{\\\"{\\\", \
\\\"\\\\\\\"2021-05-06,6\\\\\\\"\\\", \\\"}\\\"}]\\) does not exist.\"", 2,
37, 18, 32713529922192098914, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.868135985453944*^9, 3.868137405508877*^9,
3.86813833012331*^9},
CellLabel->
"During evaluation of \
In[34]:=",ExpressionUUID->"d1ef8f4f-ee93-4db3-b9e5-02d6eb4d79a3"],
Cell[BoxData[
TemplateBox[{
"DateListPlot", "ldata",
"\"\\!\\(\\*RowBox[{\\\"{\\\", RowBox[{RowBox[{\\\"{\\\", RowBox[{RowBox[{\
\\\"DateObject\\\", \\\"[\\\", \\\"\\\\\\\"2021-05-06,6\\\\\\\"\\\", \
\\\"]\\\"}], \\\",\\\", RowBox[{RowBox[{\\\"{\\\", \\\"\\\\\\\"2021-05-06,6\\\
\\\\\"\\\", \\\"}\\\"}], \\\"\[LeftDoubleBracket]\\\", \\\"2\\\", \\\"\
\[RightDoubleBracket]\\\"}]}], \\\"}\\\"}], \\\",\\\", \
RowBox[{\\\"Callout\\\", \\\"[\\\", RowBox[{RowBox[{\\\"{\\\", \
RowBox[{RowBox[{\\\"DateObject\\\", \\\"[\\\", \\\"\\\\\\\"2021-05-06,6\\\\\\\
\"\\\", \\\"]\\\"}], \\\",\\\", RowBox[{RowBox[{\\\"{\\\", \
\\\"\\\\\\\"2021-05-06,6\\\\\\\"\\\", \\\"}\\\"}], \\\"\[LeftDoubleBracket]\\\
\", \\\"2\\\", \\\"\[RightDoubleBracket]\\\"}]}], \\\"}\\\"}], \\\",\\\", \
\\\"\\\\\\\"{2021-05-06,6}[[2]]\\\\\\\"\\\", \\\",\\\", \\\"Right\\\", \
\\\",\\\", RowBox[{\\\"LabelStyle\\\", \\\"\[Rule]\\\", \\\"Small\\\"}], \
\\\",\\\", RowBox[{\\\"Background\\\", \\\"\[Rule]\\\", \
TemplateBox[Association[Rule[\\\"color\\\", RGBColor[0.87`, 0.94`, 1]]], \
\\\"RGBColorSwatchTemplate\\\"]}]}], \\\"]\\\"}]}], \\\"}\\\"}]\\) is not a \
valid dataset or list of datasets.\"", 2, 37, 19, 32713529922192098914,
"Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.868135985453944*^9, 3.868137405508877*^9,
3.8681383301627903`*^9},
CellLabel->
"During evaluation of \
In[34]:=",ExpressionUUID->"acb2d75b-e8ce-4baa-8b9d-b11d0e47541a"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
GraphicsBox[{{}, {{{}, {},
{RGBColor[0.368417, 0.506779, 0.709798], PointSize[
0.011000000000000001`], AbsoluteThickness[1.6],
LineBox[CompressedData["
1:eJxV1FFIE3EcB/B/PfVQdPrUU9yEniI7yKLeroewl2AEPUo2SHwJJ0X50MOM
ZmWRhzXLqLlapWLlyEWEmeeqTZ3rTp1kWXmQ2mlRI+khGpH3ve9RDcb24fv/
/X7////YfIG6/YdXCyEqV97O58pLzTR+2e18iVV+VP+1sIccm/Zpui7tWO8P
04WsY1lqoueQxw6dodteIu876zo0i1xqOkcXkGuvm2lj2HEif571a2BRvEDv
dPMTF+ll9DOPtdA5uFCv0RUZ7Heplf3fw9anS8xbBx0r6yPMy9E/tKON+eZR
9K+6QnfA/t6r9ABsbWln/Ubchymu0fYY5k963oNc3XSdLnuF+8neoI9jffB7
lK7Beu1bB+ctYV4oFWMecuct3qRN5HJJ3Lv/ETyPwG3mRVhO3qEPoj44c5de
xnxtupPelsN5G7tcq7dMzJvoZu4z8DwaeuiI2893j/M/oF7fe5+5wHljXx8w
n0KuDfUy74QtO0FvQH9Fesj5RzHfv66P3pVHv4ok1z9y97fqMfNyWM/Two9+
wnjC9Zcn0P+n59px3K/cz/pBuDr91HX1ARvz2weYG9OYrz9zrf94g/st1Tlv
8a1jad7z1hn0W5ti/TDqrarnrI9ivRJ+wXwfbIk0Lb3D/n/Tcvwz5v3KMI+j
X7BshOcJTyGPjtIN+H1L9Vn61CTuPzXG/Z2cxfkjOXo7cqXE8H4fmKe30PKR
BfSfo9UinkciYP73f6Ikx//6D3bKU20=
"]]}},
TagBox[
{Opacity[0.], PointBox[{{3.8680416*^9, 39485.}}]},
Annotation[#, {{Callout}, Charting`Private`Tag$131700, {
71}}]& ]}, {{{}, {{}, GraphicsGroupBox[{
{RGBColor[0.87, 0.94, 1], AbsoluteThickness[4], Opacity[
NCache[
Rational[2, 3], 0.6666666666666666]], CapForm["Butt"], JoinForm[
"Round"],
BSplineCurveBox[{
Offset[{3., 0.}, {3.86810525625*^9, 39485.}],
Offset[{8., 0.}, {3.86810525625*^9, 39485.}],
Offset[{10., 0.}, {3.86810525625*^9, 39485.}],
Offset[{12., 0.}, {3.86810525625*^9, 39485.}],
Offset[{12., 0.}, {3.86810525625*^9, 39485.}]}]},
{RGBColor[
0.6666666666666666, 0.6666666666666666, 0.6666666666666666],
AbsoluteThickness[1.25],
BSplineCurveBox[{
Offset[{3., 0.}, {3.86810525625*^9, 39485.}],
Offset[{8., 0.}, {3.86810525625*^9, 39485.}],
Offset[{10., 0.}, {3.86810525625*^9, 39485.}],
Offset[{12., 0.}, {3.86810525625*^9, 39485.}],
Offset[{12., 0.}, {3.86810525625*^9, 39485.}]}]},
{EdgeForm[None], FaceForm[{RGBColor[0.87, 0.94, 1], Opacity[
NCache[
Rational[2, 3], 0.6666666666666666]]}],
PolygonBox[{
Offset[{43., 6.0000000000000036`}, {3.86810525625*^9, 39485.}],
Offset[{43., -5.9999999999999964`}, {3.86810525625*^9, 39485.}],
Offset[{12.000000000000002`, -6.0000000000000036`}, {
3.86810525625*^9, 39485.}],
Offset[{11.999999999999998`, 5.9999999999999964`}, {
3.86810525625*^9, 39485.}]}]},
{RGBColor[
0.6666666666666666, 0.6666666666666666, 0.6666666666666666],
AbsoluteThickness[1.25], EdgeForm[None]}, {}, InsetBox[
StyleBox[
RotationBox["\<\"39485\"\>",
BoxRotation->0.],
StripOnInput->False,
LineColor->GrayLevel[0],
LineOpacity->1,
FrontFaceColor->GrayLevel[0],
BackFaceColor->GrayLevel[0],
FrontFaceOpacity->1,
BackFaceOpacity->1,
GraphicsColor->GrayLevel[0],
Opacity->1,
FontSize->Small,
FontColor->GrayLevel[0],
FontOpacity->1], Offset[{27.5, 0.}, {3.86810525625*^9, 39485.}],
NCache[ImageScaled[{Rational[1, 2], Rational[1, 2]}],
ImageScaled[{0.5, 0.5}]]]}]}}, {}}},
AspectRatio->NCache[GoldenRatio^(-1), 0.6180339887498948],
Axes->{False, False},
AxesLabel->{None, None},
AxesOrigin->{3.8261376*^9, 0},
DisplayFunction->Identity,
Frame->{{True, True}, {True, True}},
FrameLabel->{{
FormBox[
TagBox[
TagBox[
RowBox[{"Unique", " ", "domains"}], HoldForm], HoldForm],
TraditionalForm], None}, {
FormBox[
TagBox[
TagBox["Year", HoldForm], HoldForm], TraditionalForm], None}},
FrameStyle->Automatic,
FrameTicks->FrontEndValueCache[{{All, All}, {
Charting`DateTicksFunction[Automatic, DateTicksFormat -> {Automatic}],
Charting`DateTicksFunction[
Automatic, DateTicksFormat -> {Automatic}, "TickLabels" -> None]}}, {{
All, All}, {{{3.818448*^9,
FormBox[
StyleBox["\"Jan\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.826224*^9,
FormBox[
StyleBox["\"Apr\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.8340864*^9,
FormBox[
StyleBox["\"Jul\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.8420352*^9,
FormBox[
StyleBox["\"Oct\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.849984*^9,
FormBox[
StyleBox["\"Jan\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.85776*^9,
FormBox[
StyleBox["\"Apr\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.8656224*^9,
FormBox[
StyleBox["\"Jul\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.8735712*^9,
FormBox[
StyleBox["\"Oct\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.818448*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8211264*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8235456*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.826224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.826224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.828816*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8314944*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8340864*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8340864*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8367648*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8394432*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8420352*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8420352*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8447136*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8473056*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8526624*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8550816*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.85776*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.85776*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.860352*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8630304*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8656224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8656224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8683008*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8709792*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8735712*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}}, {{3.818448*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.826224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.8340864*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.8420352*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.85776*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.8656224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.8735712*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.818448*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8211264*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8235456*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.826224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.826224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.828816*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8314944*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8340864*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8340864*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8367648*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8394432*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8420352*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8420352*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8447136*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8473056*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8526624*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8550816*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.85776*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.85776*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.860352*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8630304*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8656224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8656224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8683008*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8709792*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8735712*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}}}}],
GridLines->FrontEndValueCache[{Charting`ScaledTickValues[
((Transpose[{#,
Table[
Directive[
GrayLevel[0.4, 0.5],
AbsoluteThickness[1],
AbsoluteDashing[{1, 2}]], {
Length[#]}]}]& )[
Part[
Select[
Charting`DateTicksFunction[
Automatic, DateTicksFormat -> {Automatic}][
SlotSequence[1]], And[
FreeQ[#,
Alternatives["",
Spacer[{0, 0}]]], Head[#] === List, Length[#] > 0]& ], All,
1]]& )[
SlotSequence[1]], {Identity, Identity}]& ,
Automatic}, {{{3.818448*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.826224*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.8340864*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.8420352*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.849984*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.85776*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.8656224*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.8735712*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}}, Automatic}],
GridLinesStyle->Directive[
GrayLevel[0.4, 0.5],
AbsoluteThickness[1],
AbsoluteDashing[{1, 2}]],
ImageMargins->10,
ImagePadding->{{All, All}, {All, All}},
ImageSize->Large,
LabelStyle->{
GrayLevel[0]},
Method->{
"NoShowPlotTheme" -> "Detailed", "OptimizePlotMarkers" -> True,
"OptimizePlotMarkers" -> True,
"CoordinatesToolOptions" -> {"DisplayFunction" -> ({
Identity[
Part[#, 1]],
Identity[
Part[#, 2]]}& ), "CopiedValueFunction" -> ({
Identity[
Part[#, 1]],
Identity[
Part[#, 2]]}& )}},
PlotLabel->FormBox[
TagBox[
GridBox[{{
StyleBox[
"\"data/Adguard-cname/ domaicontribution history\"", 16, Bold,
StripOnInput -> False]}, {
StyleBox[
"\"updated: Sat 30 Jul 2022 02:52:07 UTC\"", 12, StripOnInput ->
False]}}, GridBoxAlignment -> {"Columns" -> {{Center}}},
DefaultBaseStyle -> "Column",
GridBoxItemSize -> {
"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], "Column"],
TraditionalForm],
PlotRange->{{3.8261376*^9, 3.8680416*^9}, {0, 56601.}},
PlotRangePadding->{{
Scaled[0.02],
Scaled[0.02]}, {
Scaled[0.02],
Scaled[0.08090169943749476]}},
Ticks->{{}, Automatic}], ",",
GraphicsBox[{{}, {{{}, {},
{RGBColor[0.368417, 0.506779, 0.709798], PointSize[
0.007333333333333334], AbsoluteThickness[1.6], LineBox[CompressedData["
1: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
mG/L3Xw+Cs0/AYM93Uk=
"]]}},
TagBox[
{Opacity[0.], PointBox[{{3.8635488*^9, 1384.}}]},
Annotation[#, {{Callout}, Charting`Private`Tag$132989, {
312}}]& ]}, {{{}, {{}, GraphicsGroupBox[{
{RGBColor[0.87, 0.94, 1], AbsoluteThickness[4], Opacity[
NCache[
Rational[2, 3], 0.6666666666666666]], CapForm["Butt"], JoinForm[
"Round"],
BSplineCurveBox[{
Offset[{3., 0.}, {3.86380224375*^9, 1384.}],
Offset[{8., 0.}, {3.86380224375*^9, 1384.}],
Offset[{10., 0.}, {3.86380224375*^9, 1384.}],
Offset[{12., 0.}, {3.86380224375*^9, 1384.}],
Offset[{12., 0.}, {3.86380224375*^9, 1384.}]}]},
{RGBColor[
0.6666666666666666, 0.6666666666666666, 0.6666666666666666],
AbsoluteThickness[1.25],
BSplineCurveBox[{
Offset[{3., 0.}, {3.86380224375*^9, 1384.}],
Offset[{8., 0.}, {3.86380224375*^9, 1384.}],
Offset[{10., 0.}, {3.86380224375*^9, 1384.}],
Offset[{12., 0.}, {3.86380224375*^9, 1384.}],
Offset[{12., 0.}, {3.86380224375*^9, 1384.}]}]},
{EdgeForm[None], FaceForm[{RGBColor[0.87, 0.94, 1], Opacity[
NCache[
Rational[2, 3], 0.6666666666666666]]}],
PolygonBox[{
Offset[{38., 6.000000000000003}, {3.86380224375*^9, 1384.}],
Offset[{38., -5.999999999999997}, {3.86380224375*^9, 1384.}],
Offset[{12.000000000000002`, -6.000000000000003}, {
3.86380224375*^9, 1384.}],
Offset[{11.999999999999998`, 5.999999999999997}, {
3.86380224375*^9, 1384.}]}]},
{RGBColor[
0.6666666666666666, 0.6666666666666666, 0.6666666666666666],
AbsoluteThickness[1.25], EdgeForm[None]}, {}, InsetBox[
StyleBox[
RotationBox["\<\"1384\"\>",
BoxRotation->0.],
StripOnInput->False,
LineColor->GrayLevel[0],
LineOpacity->1,
FrontFaceColor->GrayLevel[0],
BackFaceColor->GrayLevel[0],
FrontFaceOpacity->1,
BackFaceOpacity->1,
GraphicsColor->GrayLevel[0],
Opacity->1,
FontSize->Small,
FontColor->GrayLevel[0],
FontOpacity->1], Offset[{25., 0.}, {3.86380224375*^9, 1384.}],
NCache[ImageScaled[{Rational[1, 2], Rational[1, 2]}],
ImageScaled[{0.5, 0.5}]]]}]}}, {}}},
AspectRatio->NCache[GoldenRatio^(-1), 0.6180339887498948],
Axes->{False, False},
AxesLabel->{None, None},
AxesOrigin->{3.6967104*^9, 0},
DisplayFunction->Identity,
Frame->{{True, True}, {True, True}},
FrameLabel->{{
FormBox[
TagBox[
TagBox[
RowBox[{"Unique", " ", "domains"}], HoldForm], HoldForm],
TraditionalForm], None}, {
FormBox[
TagBox[
TagBox["Year", HoldForm], HoldForm], TraditionalForm], None}},
FrameStyle->Automatic,
FrameTicks->FrontEndValueCache[{{All, All}, {
Charting`DateTicksFunction[Automatic, DateTicksFormat -> {Automatic}],
Charting`DateTicksFunction[
Automatic, DateTicksFormat -> {Automatic}, "TickLabels" -> None]}}, {{
All, All}, {{{3.6922176*^9,
FormBox[
StyleBox["\"2017\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.7237536*^9,
FormBox[
StyleBox["\"2018\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.7552896*^9,
FormBox[
StyleBox["\"2019\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.7868256*^9,
FormBox[
StyleBox["\"2020\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.818448*^9,
FormBox[
StyleBox["\"2021\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.849984*^9,
FormBox[
StyleBox["\"2022\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.88152*^9,
FormBox[
StyleBox["\"2023\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.6922176*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.6973152*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7025856*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.707856*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7132128*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7184832*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7237536*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7237536*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7288512*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7341216*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.739392*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7447488*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7500192*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7552896*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7552896*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7603872*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7656576*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.770928*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7762848*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7815552*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7868256*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7868256*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7920096*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.79728*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8025504*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8079072*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8131776*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.818448*^9,