-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathexamplequantstatsreport.html
More file actions
21332 lines (21309 loc) · 567 KB
/
examplequantstatsreport.html
File metadata and controls
21332 lines (21309 loc) · 567 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
<!DOCTYPE html>
<!-- saved from url=(1446)https://ffbb7e8ba7155176b2f66e3e518711dc1b0601a90868cd37c086387-apidata.googleusercontent.com/download/storage/v1/b/tradingbotrunresults/o/AdaptiveMeanReversionBot%2Fsharpewinner%2Freport.html?jk=AR8mTxCY-m65hi8Ghz88GMwABJwTPcyqnB6q5juWMM3u7EnXAuH4f9UNTEjucM9VIA6zkAieCUJ1Gk7v9gFl1gUxpHoim_LARLJHTjXSKPEK7gyH4RP-qjQA0dmBiTbol_n_BD6mWQodBXsleDe7SR_WWTmopgjmyWZ321L4YyjCu073KdJVnGazTpdkOd_iETauBFQYert9LMT7YtQSWY7kyql8-4iJrzjllNN2Ei8A0EFIAzsg2S0BPJEchbXvcJYOqtE5z0ad493pM9nMZ8rMbvyNDF61ChbwfFiebKg3NWwOEkzZx02Q4_eeSSZPfNnFdEUKDeGWBnl6-t77AT7pXMzvn74UJZ30OTUs57xdYl3NKgO3lWqO_Wl49VxwNDQXUaYY5BBOC2JfGthjJd8fTmm_D39tePea7xBcP1k8H9J-zRs4b2cD5tiDnU4NJSb-2dp4uG4oICTxyDMxFreMMNSiYAwNQI14w1DAmMORjnRP3oLXcSlakpbwwPEZyq4mLf2tk9TEjg-r-vmg9cOWDKHxsuorUT8lxmhPgwztm9MY9_XmRJjs1Gq_YCCfhHblo11Q0OiLXrgm7xjPdDXznrHn4jTM0zrnefSQB7Dy4fXtkuFKMXdetM0dAGhcnjgYDpnmr0VHCB3UXLERGD_NhHuKzgkZNQP2FZ1N9MVoPbcykzg0S3daxD5ck85GT-nf-i6vIi5K8HK96lLorSz6xvC-YMcGiINK6m7LUpPo_FaYcj9ORdxOnqqZtTvDSZ081C_RchUmhXdudUsGtio1H8ukMGP-fy5Frrv_I3HID9S_INan8tOZ1u2jeZQ1rByP7ZIM-iwo_Fw5aRecoxFNajQOqrQp29ZITOmI_3tVODzMSkNJbULlJPLoCelWQ4R_EfkWvm_DlcvbSsZF5dOiArHhL4mpWBLHpSDTaS-huCE5xNpPxHrEPAMcBd90Z0HPW-KyTO5Oy1hrecCS2xIhPls2LnV7cT-GNy-ObJn2iS94E5V1p9m7at40AprVuGuyy1tLPBuU_epz33uBG0yaeGnici0v8JukVay7RCQByqEhpZeFC6xtEhGP1Vtke1AIPqdK-CSL25gV_Gc9FeS6D5_UzuDzk-rsxMPC-Ig7M8V8D_1umB52ZI3i2ZSQCrB0duDZmhm7m2XqzZGedpe-bhvPPv-Ov4kmrjlyvdCbpP9_pqNpBLWBf5bwix0BF4yW_sX24a8z8yeUcscRibdXFQ4&isca=1 -->
<html lang="en"><script src="chrome-extension://pgojnojmmhpofjgdmaebadhbocahppod/assets/aW5qZWN0X2hhc2g/aW5qZWN0X2hhc2g-s.js"></script><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><script src="chrome-extension://pgojnojmmhpofjgdmaebadhbocahppod/assets/aW5qZWN0X2hhc2g/aW5qZWN0X2hhc2g-t.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Tearsheet (generated by QuantStats)</title>
<meta name="robots" content="noindex, nofollow">
<link rel="shortcut icon" href="https://qtpylib.io/favicon.ico" type="image/x-icon">
<style>
body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:30px;background:#fff;color:#000}body,p,table,td,th{font:13px/1.4 Arial,sans-serif}.container{max-width:960px;margin:auto}img,svg{width:100%}h1,h2,h3,h4{font-weight:400;margin:0}h1 dt{display:inline;margin-left:10px;font-size:14px}h3{margin-bottom:10px;font-weight:700}h4{color:grey}h4 a{color:#09c;text-decoration:none}h4 a:hover{color:#069;text-decoration:underline}hr{margin:25px 0 40px;height:0;border:0;border-top:1px solid #ccc}#left{width:620px;margin-right:18px;margin-top:-1.2rem;float:left}#right{width:320px;float:right}#left svg{margin:-1.5rem 0}#monthly_heatmap{overflow:hidden}#monthly_heatmap svg{margin:-1.5rem 0}table{margin:0 0 40px;border:0;border-spacing:0;width:100%}table td,table th{text-align:right;padding:4px 5px 3px 5px}table th{text-align:right;padding:6px 5px 5px 5px}table td:first-of-type,table th:first-of-type{text-align:left;padding-left:2px}table td:last-of-type,table th:last-of-type{text-align:right;padding-right:2px}td hr{margin:5px 0}table th{font-weight:400}table thead th{font-weight:700;background:#eee}#eoy table td:after{content:"%"}#eoy table td:first-of-type:after,#eoy table td:last-of-type:after,#eoy table td:nth-of-type(4):after{content:""}#eoy table th{text-align:right}#eoy table th:first-of-type{text-align:left}#eoy table td:after{content:"%"}#eoy table td:first-of-type:after,#eoy table td:last-of-type:after{content:""}#ddinfo table td:nth-of-type(3):after{content:"%"}#ddinfo table th{text-align:right}#ddinfo table td:first-of-type,#ddinfo table td:nth-of-type(2),#ddinfo table th:first-of-type,#ddinfo table th:nth-of-type(2){text-align:left}#ddinfo table td:nth-of-type(3):after{content:"%"}
@media print{hr{margin:25px 0}body{margin:0}.container{max-width:100%;margin:0}#left{width:55%;margin:0}#left svg{margin:0 0 -10%}#left svg:first-of-type{margin-top:-30%}#right{margin:0;width:45%}}
</style>
<cp-w></cp-w></head>
<body onload="save()">
<div class="container">
<h1>AdaptiveMeanReversionBot – sharpewinner (Compounded) <dt> 1 May, 2025 - 20 Mar, 2026 (matched dates)</dt></h1>
<h4>Benchmark: BENCHMARK • Periods/Year: 252 • RF: 0.0% | Generated by <a href="http://quantstats.io/" target="quantstats">QuantStats</a> (v. 0.0.81)</h4>
<hr>
<div id="left">
<div>
<!--?xml version="1.0" encoding="utf-8" standalone="no"?-->
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="576pt" height="360pt" viewBox="0 0 576 360" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:rdf xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"></dc:type>
<dc:date>2026-03-23T10:55:31.108737</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:agent>
<dc:title>Matplotlib v3.10.8, https://matplotlib.org/</dc:title>
</cc:agent>
</dc:creator>
</cc:work>
</rdf:rdf>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 360
L 576 360
L 576 0
L 0 0
z
" style="fill: #ffffff"></path>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 51.926 304.795926
L 561.744 304.795926
L 561.744 41.472
L 51.926 41.472
z
" style="fill: #ffffff"></path>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 75.099545 304.795926
L 75.099545 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_1">
<!-- 2025-05 -->
<g style="fill: #666666" transform="translate(35.44443 343.997195) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-32" d="M 3222 541
L 3222 0
L 194 0
Q 188 203 259 391
Q 375 700 629 1000
Q 884 1300 1366 1694
Q 2113 2306 2375 2664
Q 2638 3022 2638 3341
Q 2638 3675 2398 3904
Q 2159 4134 1775 4134
Q 1369 4134 1125 3890
Q 881 3647 878 3216
L 300 3275
Q 359 3922 746 4261
Q 1134 4600 1788 4600
Q 2447 4600 2831 4234
Q 3216 3869 3216 3328
Q 3216 3053 3103 2787
Q 2991 2522 2730 2228
Q 2469 1934 1863 1422
Q 1356 997 1212 845
Q 1069 694 975 541
L 3222 541
z
" transform="scale(0.015625)"></path>
<path id="ArialMT-30" d="M 266 2259
Q 266 3072 433 3567
Q 600 4063 929 4331
Q 1259 4600 1759 4600
Q 2128 4600 2406 4451
Q 2684 4303 2865 4023
Q 3047 3744 3150 3342
Q 3253 2941 3253 2259
Q 3253 1453 3087 958
Q 2922 463 2592 192
Q 2263 -78 1759 -78
Q 1097 -78 719 397
Q 266 969 266 2259
z
M 844 2259
Q 844 1131 1108 757
Q 1372 384 1759 384
Q 2147 384 2411 759
Q 2675 1134 2675 2259
Q 2675 3391 2411 3762
Q 2147 4134 1753 4134
Q 1366 4134 1134 3806
Q 844 3388 844 2259
z
" transform="scale(0.015625)"></path>
<path id="ArialMT-35" d="M 266 1200
L 856 1250
Q 922 819 1161 601
Q 1400 384 1738 384
Q 2144 384 2425 690
Q 2706 997 2706 1503
Q 2706 1984 2436 2262
Q 2166 2541 1728 2541
Q 1456 2541 1237 2417
Q 1019 2294 894 2097
L 366 2166
L 809 4519
L 3088 4519
L 3088 3981
L 1259 3981
L 1013 2750
Q 1425 3038 1878 3038
Q 2478 3038 2890 2622
Q 3303 2206 3303 1553
Q 3303 931 2941 478
Q 2500 -78 1738 -78
Q 1113 -78 717 272
Q 322 622 266 1200
z
" transform="scale(0.015625)"></path>
<path id="ArialMT-2d" d="M 203 1375
L 203 1941
L 1931 1941
L 1931 1375
L 203 1375
z
" transform="scale(0.015625)"></path>
</defs>
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-35" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-35" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<path d="M 119.466902 304.795926
L 119.466902 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_2">
<!-- 2025-06 -->
<g style="fill: #666666" transform="translate(79.811786 343.997195) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-36" d="M 3184 3459
L 2625 3416
Q 2550 3747 2413 3897
Q 2184 4138 1850 4138
Q 1581 4138 1378 3988
Q 1113 3794 959 3422
Q 806 3050 800 2363
Q 1003 2672 1297 2822
Q 1591 2972 1913 2972
Q 2475 2972 2870 2558
Q 3266 2144 3266 1488
Q 3266 1056 3080 686
Q 2894 316 2569 119
Q 2244 -78 1831 -78
Q 1128 -78 684 439
Q 241 956 241 2144
Q 241 3472 731 4075
Q 1159 4600 1884 4600
Q 2425 4600 2770 4297
Q 3116 3994 3184 3459
z
M 888 1484
Q 888 1194 1011 928
Q 1134 663 1356 523
Q 1578 384 1822 384
Q 2178 384 2434 671
Q 2691 959 2691 1453
Q 2691 1928 2437 2201
Q 2184 2475 1800 2475
Q 1419 2475 1153 2201
Q 888 1928 888 1484
z
" transform="scale(0.015625)"></path>
</defs>
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-35" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-36" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_3">
<path d="M 162.403054 304.795926
L 162.403054 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_3">
<!-- 2025-07 -->
<g style="fill: #666666" transform="translate(122.747938 343.997195) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-37" d="M 303 3981
L 303 4522
L 3269 4522
L 3269 4084
Q 2831 3619 2401 2847
Q 1972 2075 1738 1259
Q 1569 684 1522 0
L 944 0
Q 953 541 1156 1306
Q 1359 2072 1739 2783
Q 2119 3494 2547 3981
L 303 3981
z
" transform="scale(0.015625)"></path>
</defs>
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-35" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-37" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_4">
<path d="M 206.77041 304.795926
L 206.77041 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_4">
<!-- 2025-08 -->
<g style="fill: #666666" transform="translate(167.115295 343.997195) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-38" d="M 1131 2484
Q 781 2613 612 2850
Q 444 3088 444 3419
Q 444 3919 803 4259
Q 1163 4600 1759 4600
Q 2359 4600 2725 4251
Q 3091 3903 3091 3403
Q 3091 3084 2923 2848
Q 2756 2613 2416 2484
Q 2838 2347 3058 2040
Q 3278 1734 3278 1309
Q 3278 722 2862 322
Q 2447 -78 1769 -78
Q 1091 -78 675 323
Q 259 725 259 1325
Q 259 1772 486 2073
Q 713 2375 1131 2484
z
M 1019 3438
Q 1019 3113 1228 2906
Q 1438 2700 1772 2700
Q 2097 2700 2305 2904
Q 2513 3109 2513 3406
Q 2513 3716 2298 3927
Q 2084 4138 1766 4138
Q 1444 4138 1231 3931
Q 1019 3725 1019 3438
z
M 838 1322
Q 838 1081 952 856
Q 1066 631 1291 507
Q 1516 384 1775 384
Q 2178 384 2440 643
Q 2703 903 2703 1303
Q 2703 1709 2433 1975
Q 2163 2241 1756 2241
Q 1359 2241 1098 1978
Q 838 1716 838 1322
z
" transform="scale(0.015625)"></path>
</defs>
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-35" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-38" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_5">
<path d="M 251.137767 304.795926
L 251.137767 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_5">
<!-- 2025-09 -->
<g style="fill: #666666" transform="translate(211.482651 343.997195) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-39" d="M 350 1059
L 891 1109
Q 959 728 1153 556
Q 1347 384 1650 384
Q 1909 384 2104 503
Q 2300 622 2425 820
Q 2550 1019 2634 1356
Q 2719 1694 2719 2044
Q 2719 2081 2716 2156
Q 2547 1888 2255 1720
Q 1963 1553 1622 1553
Q 1053 1553 659 1965
Q 266 2378 266 3053
Q 266 3750 677 4175
Q 1088 4600 1706 4600
Q 2153 4600 2523 4359
Q 2894 4119 3086 3673
Q 3278 3228 3278 2384
Q 3278 1506 3087 986
Q 2897 466 2520 194
Q 2144 -78 1638 -78
Q 1100 -78 759 220
Q 419 519 350 1059
z
M 2653 3081
Q 2653 3566 2395 3850
Q 2138 4134 1775 4134
Q 1400 4134 1122 3828
Q 844 3522 844 3034
Q 844 2597 1108 2323
Q 1372 2050 1759 2050
Q 2150 2050 2401 2323
Q 2653 2597 2653 3081
z
" transform="scale(0.015625)"></path>
</defs>
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-35" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-39" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_6">
<path d="M 294.073919 304.795926
L 294.073919 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_6">
<!-- 2025-10 -->
<g style="fill: #666666" transform="translate(254.418803 343.997195) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-31" d="M 2384 0
L 1822 0
L 1822 3584
Q 1619 3391 1289 3197
Q 959 3003 697 2906
L 697 3450
Q 1169 3672 1522 3987
Q 1875 4303 2022 4600
L 2384 4600
L 2384 0
z
" transform="scale(0.015625)"></path>
</defs>
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-35" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-31" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_7">
<path d="M 338.441275 304.795926
L 338.441275 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_7">
<!-- 2025-11 -->
<g style="fill: #666666" transform="translate(299.558979 343.551008) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-35" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-31" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-31" transform="translate(304.001953 0)"></use>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_8">
<path d="M 381.377427 304.795926
L 381.377427 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_8">
<!-- 2025-12 -->
<g style="fill: #666666" transform="translate(341.722311 343.997195) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-35" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-31" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_9">
<path d="M 425.744783 304.795926
L 425.744783 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_9">
<!-- 2026-01 -->
<g style="fill: #666666" transform="translate(386.089668 343.997195) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-36" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-31" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_10">
<g id="line2d_10">
<path d="M 470.11214 304.795926
L 470.11214 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_10">
<!-- 2026-02 -->
<g style="fill: #666666" transform="translate(430.457024 343.997195) rotate(-30) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-36" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_11">
<g id="line2d_11">
<path d="M 510.185882 304.795926
L 510.185882 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_11">
<!-- 2026-03 -->
<g style="fill: #666666" transform="translate(470.530766 343.997195) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-33" d="M 269 1209
L 831 1284
Q 928 806 1161 595
Q 1394 384 1728 384
Q 2125 384 2398 659
Q 2672 934 2672 1341
Q 2672 1728 2419 1979
Q 2166 2231 1775 2231
Q 1616 2231 1378 2169
L 1441 2663
Q 1497 2656 1531 2656
Q 1891 2656 2178 2843
Q 2466 3031 2466 3422
Q 2466 3731 2256 3934
Q 2047 4138 1716 4138
Q 1388 4138 1169 3931
Q 950 3725 888 3313
L 325 3413
Q 428 3978 793 4289
Q 1159 4600 1703 4600
Q 2078 4600 2393 4439
Q 2709 4278 2876 4000
Q 3044 3722 3044 3409
Q 3044 3113 2884 2869
Q 2725 2625 2413 2481
Q 2819 2388 3044 2092
Q 3269 1797 3269 1353
Q 3269 753 2831 336
Q 2394 -81 1725 -81
Q 1122 -81 723 278
Q 325 638 269 1209
z
" transform="scale(0.015625)"></path>
</defs>
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-36" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-33" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
<g id="xtick_12">
<g id="line2d_12">
<path d="M 554.553238 304.795926
L 554.553238 41.472
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_12">
<!-- 2026-04 -->
<g style="fill: #666666" transform="translate(514.898123 343.997195) rotate(-30) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-34" d="M 2069 0
L 2069 1097
L 81 1097
L 81 1613
L 2172 4581
L 2631 4581
L 2631 1613
L 3250 1613
L 3250 1097
L 2631 1097
L 2631 0
L 2069 0
z
M 2069 1613
L 2069 3678
L 634 1613
L 2069 1613
z
" transform="scale(0.015625)"></path>
</defs>
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-32" transform="translate(111.230469 0)"></use>
<use xlink:href="#ArialMT-36" transform="translate(166.845703 0)"></use>
<use xlink:href="#ArialMT-2d" transform="translate(222.460938 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(255.761719 0)"></use>
<use xlink:href="#ArialMT-34" transform="translate(311.376953 0)"></use>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_13">
<path d="M 51.926 275.928953
L 561.744 275.928953
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_13">
<!-- -10% -->
<g style="fill: #666666" transform="translate(14.180062 280.259429) scale(0.121 -0.121)">
<defs>
<path id="ArialMT-25" d="M 372 3481
Q 372 3972 619 4315
Q 866 4659 1334 4659
Q 1766 4659 2048 4351
Q 2331 4044 2331 3447
Q 2331 2866 2045 2552
Q 1759 2238 1341 2238
Q 925 2238 648 2547
Q 372 2856 372 3481
z
M 1350 4272
Q 1141 4272 1002 4090
Q 863 3909 863 3425
Q 863 2984 1003 2804
Q 1144 2625 1350 2625
Q 1563 2625 1702 2806
Q 1841 2988 1841 3469
Q 1841 3913 1700 4092
Q 1559 4272 1350 4272
z
M 1353 -169
L 3859 4659
L 4316 4659
L 1819 -169
L 1353 -169
z
M 3334 1075
Q 3334 1569 3581 1911
Q 3828 2253 4300 2253
Q 4731 2253 5014 1945
Q 5297 1638 5297 1041
Q 5297 459 5011 145
Q 4725 -169 4303 -169
Q 3888 -169 3611 142
Q 3334 453 3334 1075
z
M 4316 1866
Q 4103 1866 3964 1684
Q 3825 1503 3825 1019
Q 3825 581 3965 400
Q 4106 219 4313 219
Q 4528 219 4667 400
Q 4806 581 4806 1063
Q 4806 1506 4665 1686
Q 4525 1866 4316 1866
z
" transform="scale(0.015625)"></path>
</defs>
<use xlink:href="#ArialMT-2d"></use>
<use xlink:href="#ArialMT-31" transform="translate(33.300781 0)"></use>
<use xlink:href="#ArialMT-30" transform="translate(88.916016 0)"></use>
<use xlink:href="#ArialMT-25" transform="translate(144.53125 0)"></use>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_14">
<path d="M 51.926 225.385827
L 561.744 225.385827
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_14">
<!-- 0% -->
<g style="fill: #666666" transform="translate(24.937719 229.716304) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-30"></use>
<use xlink:href="#ArialMT-25" transform="translate(55.615234 0)"></use>
</g>
</g>
</g>
<g id="ytick_3">
<g id="line2d_15">
<path d="M 51.926 174.842701
L 561.744 174.842701
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_15">
<!-- 10% -->
<g style="fill: #666666" transform="translate(18.208984 179.173178) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-31"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-25" transform="translate(111.230469 0)"></use>
</g>
</g>
</g>
<g id="ytick_4">
<g id="line2d_16">
<path d="M 51.926 124.299576
L 561.744 124.299576
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_16">
<!-- 20% -->
<g style="fill: #666666" transform="translate(18.208984 128.630052) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-32"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-25" transform="translate(111.230469 0)"></use>
</g>
</g>
</g>
<g id="ytick_5">
<g id="line2d_17">
<path d="M 51.926 73.75645
L 561.744 73.75645
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #dddddd; stroke-width: 0.5; stroke-linecap: round"></path>
</g>
<g id="text_17">
<!-- 30% -->
<g style="fill: #666666" transform="translate(18.208984 78.086926) scale(0.121 -0.121)">
<use xlink:href="#ArialMT-33"></use>
<use xlink:href="#ArialMT-30" transform="translate(55.615234 0)"></use>
<use xlink:href="#ArialMT-25" transform="translate(111.230469 0)"></use>
</g>
</g>
</g>
</g>
<g id="line2d_18">
<path d="M 51.926 225.385827
L 561.744 225.385827
" clip-path="url(#p0f2a3b53a5)" style="fill: none; stroke: #808080; stroke-linecap: round"></path>
</g>
<g id="line2d_19">
<path d="M 75.099545 214.29447
L 76.530751 211.346901
L 80.824366 220.905488
L 82.255571 223.811015
L 83.686776 237.159339
L 85.117981 237.180424
L 86.549186 233.201175
L 90.842801 229.569291
L 92.274006 256.40293
L 93.705211 285.868209
L 95.136416 284.794487
L 96.567621 292.826656
L 100.861236 240.254314
L 102.292441 261.119048
L 103.723647 252.465755
L 105.154852 249.223407
L 106.586057 248.686529
L 112.310877 263.22445
L 113.742082 263.308663
L 115.173287 274.877993
L 116.604492 262.908617
L 120.898107 252.297328
L 122.329312 238.833163
L 123.760517 233.348549
L 125.191722 233.506465
L 126.622927 230.22201
L 130.916543 230.28517
L 132.347748 223.747855
L 133.778953 216.220967
L 135.210158 219.273835
L 136.641363 224.032059
L 140.934978 222.042467
L 142.366183 216.78944
L 143.797388 217.126294
L 146.659798 196.198433
L 150.953413 188.050422
L 152.384618 184.797627
L 153.815823 184.197493
L 155.247028 181.818365
L 156.678233 181.292063
L 160.971849 183.123739
L 162.403054 190.734872
L 163.834259 189.724246
L 165.265464 194.735175
L 170.990284 182.123752
L 172.421489 184.555497
L 173.852694 183.481678
L 175.283899 184.344963
L 176.715104 180.028731
L 182.439924 174.175764
L 183.871129 178.365547
L 185.302335 172.965179
L 186.73354 172.143936
L 191.027155 168.448988
L 192.45836 170.343921
L 193.889565 169.028036
L 195.32077 176.081078
L 196.751975 168.364774
L 201.04559 173.84942
L 202.476795 173.944144
L 203.908 176.217974
L 205.339205 170.515314
L 206.77041 161.947202
L 211.064025 160.49294
L 212.495231 155.160149
L 213.926436 153.189385
L 215.357641 149.448074
L 216.788846 154.348707
L 221.082461 150.333348
L 222.513666 144.621274
L 223.944871 149.037002
L 225.376076 148.710271
L 226.807281 144.589613
L 231.100896 145.432715
L 232.532101 146.750147
L 233.963306 144.631784
L 236.825716 143.493612
L 241.119332 138.740579
L 242.550537 139.309633
L 243.981742 136.242804
L 245.412947 139.320143
L 246.844152 136.622216
L 252.568972 135.357531
L 254.000177 133.924225
L 255.431382 132.058889
L 256.862587 132.986269
L 261.156202 132.185274
L 262.587407 135.357531
L 264.018612 147.087388
L 265.449817 136.316572
L 266.881023 140.353016
L 268.312228 132.923012
L 269.743433 130.899631
L 271.174638 125.303431
L 272.605843 127.095064
L 274.037048 119.507015
L 275.468253 119.20137
L 276.899458 119.675571
L 278.330663 122.363052
L 279.761868 122.605504
L 281.193073 130.857396
L 282.624278 134.419511
L 284.055483 137.180759
L 285.486688 128.022444
L 286.917893 129.761395
L 288.349098 127.347962
L 289.780303 126.420518
L 291.211508 122.637036
L 292.642714 129.677053
L 294.073919 134.714645
L 295.505124 130.024804
L 296.936329 124.586778
L 298.367534 123.71208
L 299.798739 120.750615
L 301.229944 119.022175
L 302.661149 118.821958
L 304.092354 115.259843
L 305.523559 112.54083
L 308.385969 112.54083
L 309.817174 107.250275
L 311.248379 107.777157
L 312.679584 109.020757
L 314.110789 103.414111
L 315.541994 99.166939
L 318.404404 99.166939
L 319.83561 95.427563
L 321.266815 99.647975
L 322.69802 101.86377
L 324.129225 104.575368
L 325.56043 102.000923
L 328.42284 102.000923
L 329.854045 99.088787
L 331.28525 97.358412
L 332.716455 94.319698
L 334.14766 91.703018
L 335.578865 94.39353
L 338.441275 94.39353
L 339.87248 89.613865
L 341.303685 92.990208
L 342.73489 85.67827
L 344.166095 86.459083
L 345.5973 108.827505
L 348.459711 108.827505
L 349.890916 95.628038
L 351.322121 99.859025
L 352.753326 95.406477
L 354.184531 97.759361
L 355.615736 93.602206
L 358.478146 93.602206
L 359.909351 85.572842
L 361.340556 85.741592
L 362.771761 91.956239
L 364.202966 86.585661
L 365.634171 79.706398
L 368.496581 79.706398
L 369.927786 68.110599
L 371.358991 63.014457
L 372.790196 60.007338
L 374.221402 70.263073
L 375.652607 67.07663
L 378.515017 67.07663
L 379.946222 63.900762
L 381.377427 77.437857
L 382.808632 73.18572
L 384.239837 85.435625
L 385.671042 87.472031
L 388.533452 87.472031
L 389.964657 73.23853
L 391.395862 74.989991
L 392.352981 75.507007
L 392.647173 88.885799
L 392.827067 88.400507
L 395.509583 88.400507
L 395.689477 93.887088
L 397.120682 101.642146
L 398.371993 97.88594
L 401.414298 112.868592
L 402.665608 108.226081
L 404.096813 108.226081
L 404.276708 92.304441
L 405.528018 88.368847
L 405.707913 82.692302
L 406.959223 82.692302
L 407.139118 77.437857
L 411.432733 77.437857
L 412.684043 79.632502
L 412.863938 74.536295
L 414.115248 72.932499
L 414.295143 73.544497
L 415.367553 70.864496
L 418.408864 70.864496
L 421.451168 72.1306
L 422.394372 72.248216
L 422.702479 71.387639
L 422.882373 71.318192
L 424.313578 68.617105
L 425.564889 67.837904
L 427.175988 70.758939
L 428.427299 83.378133
L 431.469604 82.565144
L 432.720914 86.627897
L 432.900809 85.861335
L 434.149138 85.351218
L 434.332014 84.466782
L 435.583324 97.316241
L 435.763219 96.552839
L 437.194424 87.266398
L 441.488039 79.759144
L 442.919244 78.719566
L 444.350449 76.63828
L 445.781654 76.701666
L 447.212859 73.574546
L 452.937679 73.46886
L 454.368884 71.651757
L 457.231295 71.693993
L 461.52491 71.746804
L 462.956115 74.884563
L 464.38732 75.476185
L 465.818525 74.873988
L 467.24973 76.405887
L 468.50104 81.815024
L 468.680935 81.846685
L 470.11214 83.07223
L 471.543345 83.103891
L 472.794656 77.927211
L 472.97455 77.969446
L 474.405755 71.789104
L 475.628243 71.546071
L 475.657066 75.307178
L 475.83696 75.370563
L 477.268165 68.228794
L 478.519476 69.211307
L 481.56178 76.279115
L 482.813091 73.923136
L 482.992986 74.472523
L 484.244296 88.417982
L 484.424191 79.733739
L 485.636739 75.000759
L 485.675501 70.035322
L 485.855396 64.045137
L 487.106706 61.837144
L 487.286601 65.841154
L 488.537911 73.828089
L 494.442626 73.891475
L 495.693937 69.200732
L 495.873831 79.480195
L 497.125142 79.554156
L 497.305036 90.858432
L 498.556347 89.696338
L 501.598651 89.421644
L 502.849962 90.995779
L 503.029856 100.070848
L 504.281167 100.018037
L 504.461061 86.738161
L 505.472844 86.759311
L 505.511606 81.804449
L 505.67361 84.815437
L 505.683549 84.773136
L 505.892266 83.082805
L 507.143577 82.522843
L 507.323471 83.230727
L 508.574782 83.220152
L 511.617087 96.256995
L 512.868397 96.341531
L 513.048292 94.904743
L 514.065044 95.010364
L 514.299602 95.559751
L 514.479497 95.675948
L 515.496249 90.816197
L 515.692045 93.119301
L 515.702978 90.942968
L 515.730807 93.267222
L 515.910702 93.256647
L 517.162012 87.625627
L 517.341907 87.562241
L 518.358659 95.443555
L 518.593217 95.43298
L 521.635522 88.618714
L 522.652274 88.650375
L 522.827199 79.311188
L 523.066727 81.223402
L 524.258404 80.742689
L 524.497932 80.985141
L 525.514684 79.886948
L 525.689609 80.008432
L 525.929137 87.171351
L 526.945889 87.150201
L 527.020431 89.231487
L 527.120814 89.162814