-
Notifications
You must be signed in to change notification settings - Fork 3
/
AutoCorrectsLog.ahk
2738 lines (2732 loc) · 90.3 KB
/
AutoCorrectsLog.ahk
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
; ========== AUTO CORRECTION LOG and ANALYZER === Version 2-9-2024 =============
; Determines frequency of items in below list, then sorts by f.
; Date not factored in sort. There's no hotkey, just run the script.
; It reports the top X hotstrings that were immediately followed by
; 'Backspace' (<<), and how many times they were used without backspacing (--)).
; Sort one or the other. Intended for use with kunkel321's 'AutoCorrect for v2.'
;===============================================================================
#SingleInstance
#Requires AutoHotkey v2+
^Esc::ExitApp ; Ctrl+Esc to Kill/End process, if you're tired of waiting...
; Ctrl+C on MessageBox will send report to Clipboard.
; Note: 1300 items takes about 1 second, but 10k lines takes 44 seconds. 2310 takes ~3.
;===============================================================================
getStartLine() ; Go get line number where hotstrings start, then come back...
SortByBS := 1 ; Set to 0 to sort by OK items. Set to 1 to sort by BackSpaced item count.
ShowX := 40 ; Show top X results.
;===============================================================================
AllStrs := FileRead(A_ScriptName) ; ahk file... Know thyself.
TotalLines := StrSplit(AllStrs, "`n").Length ; Determines number of lines for Prog Bar range.
pg := Gui()
pg.Opt("-MinimizeBox +alwaysOnTop +Owner")
MyProgress := pg.Add("Progress", "w400 h30 cGreen Range0-" . TotalLines, "0")
reportType := "Top " ShowX (SortByBS? " backspaced autocorrects." : " kept autocorrects.")
pg.Title := reportType " Percent complete: 0 %." ; Starting title (immediately gets updated below.)
pg.Show()
Loop parse AllStrs, "`n`r"
{ MyProgress.Value += 1
; pg.Title := "Lines of file remaining: " (TotalLines - MyProgress.Value) "..." ; For progress bar.
pg.Title := reportType " Percent complete: " Round((MyProgress.Value/TotalLines)*100) "%." ; For progress bar.
If A_Index < startLine || InStr(A_LoopField, "Cap ") ; Skip these.
Continue
okTally := 0, bsTally := 0
oStr := SubStr(A_LoopField, 15) ; o is "outter loop"
Loop parse AllStrs, "`n`r" {
If A_Index < startLine || InStr(A_LoopField, "Cap ") ; Skip these.
Continue
iStr := SubStr(A_LoopField, 15) ; i is "inner loop"
If iStr = oStr {
If SubStr(A_LoopField, 12, 2) = "--" ; "--" means the item was logged, and backspace was not pressed.
okTally++
If SubStr(A_LoopField, 12, 2) = "<<" ; "<<" means Backspace was pressed right after autocorrection.
bsTally++
}
}
If SortByBS = 1
Report .= bsTally "<< and " okTally "-- for" ((bsTally>9 or okTally>9)? "oneTab":"twoTabs") oStr "`n"
else
Report .= okTally "-- and " bsTally "<< for" ((okTally>9 or bsTally>9)? "oneTab":"twoTabs") oStr "`n"
AllStrs := strReplace(AllStrs, oStr, "Cap fix") ; Replace it with 'cap fix' so we don't keep finding it.
}
Report := Sort(Sort(Report, "/U"), "NR") ; U is 'remove duplicates.' NR is 'numeric' and 'reverse sort.'
For idx, item in strSplit(Report, "`n")
If idx <= ShowX ; Only use first X lines.
trunkReport .= item "`n"
else break
msgTrunkReport := strReplace(strReplace(trunkReport, "oneTab", "`t"), "twoTabs", "`t") ; So right colomn lines up in msgboxes.
txtTrunkReport := strReplace(strReplace(trunkReport, "oneTab", "`t"), "twoTabs", "`t`t") ; So right colomn lines up in text editors.
pg.Destroy() ; Remove progress bar.
msgbox reportType "`n=====================`n" msgTrunkReport, "Autocorrect Report"
ExitApp ; Kill script when msgbox is closed.
#HotIf WinActive("Autocorrect Report") ; Ctrl+C sends report to clipboard, but only if msgbox is active window.
^c::A_Clipboard := reportType "`n=====================`n" txtTrunkReport
#HotIf
getStartLine(*) {
Global startLine := A_LineNumber + 7
}
/*
;=====================================================================
; Log of all autocorrects sent via f(unction), or Case Corrector.
; YYYY-MM-DD date format. "<<" indicates that Backspace was pressed right after.
2023-11-11 << :?:realy::really
2023-11-11 -- Cap fix: COr
2023-11-11 << :?*:borrom::bottom
2023-11-11 -- Cap fix: WHa
2023-11-11 -- :?:;ll::'ll
2023-11-11 -- :?*:cuas::caus
2023-11-11 -- :?*:fucnt::funct
2023-11-11 -- Cap fix: THe
2023-11-11 << :?:herefor::herefore
2023-11-11 -- :*C:ime::imme
2023-11-11 << ::fo::of
2023-11-11 << :?*:pulare::pular
2023-11-11 -- Cap fix: ISo
2023-11-11 -- ::upto::up to
2023-11-12 -- :*:english::English <made case-sensitive>
2023-11-12 -- Cap fix: SIl
2023-11-12 -- :*:licence::license
2023-11-12 -- :*:tthe::the
2023-11-12 -- :*:puch::push
2023-11-12 << :?*:durring::during
2023-11-12 -- :?*:wierd::weird
2023-11-12 -- :*:excell::excel
2023-11-12 -- :?*:inng::ing
2023-11-12 -- :?*:occuran::occurren
2023-11-13 -- Cap fix: ELs
2023-11-13 -- :?*:cheif::chief
2023-11-13 -- Cap fix: THe
2023-11-13 -- Cap fix: FLu
2023-11-13 -- Cap fix: THe
2023-11-13 -- Cap fix: FOr
2023-11-13 -- Cap fix: THi
2023-11-13 -- Cap fix: TSt
2023-11-13 -- Cap fix: COu
2023-11-13 << :*:counr::countr
2023-11-13 -- :?*:durring::during
2023-11-13 -- ::upto::up to
2023-11-13 -- :?:occured::occurred
2023-11-13 -- :?*:durring::during
2023-11-13 -- :?*:durring::during
2023-11-13 -- Cap fix: THe
2023-11-13 -- Cap fix: THe
2023-11-13 -- :?:cually::cularly
2023-11-13 -- Cap fix: HSh
2023-11-13 -- Cap fix: IDi
2023-11-13 -- ::transfered::transferred
2023-11-13 -- :*:threee::three
2023-11-13 -- :?*:durring::during
2023-11-13 << ::whic::which <removed>
2023-11-13 << :?:realy::really
2023-11-13 -- Cap fix: DIe
2023-11-13 << :?*:iht::ith
2023-11-13 -- :?*:cogntivie::cognitive
2023-11-13 << :?:rthe::r the
2023-11-13 -- ::fo::of
2023-11-13 -- Cap fix: THa
2023-11-13 -- Cap fix: SOc
2023-11-13 -- Cap fix: THe
2023-11-13 -- Cap fix: COm
2023-11-13 -- :*:dissap::disap
2023-11-13 -- Cap fix: GLo
2023-11-13 -- Cap fix: COu
2023-11-13 -- Cap fix: COu
2023-11-14 -- Cap fix: WHi
2023-11-14 -- Cap fix: THe
2023-11-14 -- Cap fix: THe
2023-11-14 -- Cap fix: THe
2023-11-14 -- Cap fix: THe
2023-11-14 << :*:if is::it is
2023-11-14 -- :?*:extention::extension
2023-11-14 -- ::to pickup::to pick up
2023-11-14 -- :*:femail::female
2023-11-14 -- :*:lable::label
2023-11-14 << :?*:admited::admitted
2023-11-14 << :*:nver::never
2023-11-14 -- :?*:durring::during
2023-11-14 -- :?*:eild::ield
2023-11-14 << :*:escta::ecsta
2023-11-14 -- :?*:nclr::ncr
2023-11-14 -- :?*:durring::during
2023-11-14 -- :?*:durring::during
2023-11-14 << ::ther::there <removed>
2023-11-14 -- :?*:durring::during
2023-11-14 -- :*:puch::push
2023-11-14 -- :*:puch::push
2023-11-14 -- :*C:ime::imme
2023-11-14 -- Cap fix: SPe
2023-11-14 << :*:enought::enough
2023-11-14 -- ::affects of::effects of
2023-11-14 -- :?*:cogntivie::cognitive
2023-11-14 -- Cap fix: THe
2023-11-14 << :*:sould::should
2023-11-14 -- Cap fix: OTh
2023-11-15 -- Cap fix: FOl
2023-11-15 -- :*:puch::push
2023-11-15 -- :*C:ime::imme
2023-11-15 -- :?:iatly::iately
2023-11-15 -- :*:english::English <made case-sensitive>
2023-11-15 -- Cap fix: OTo
2023-11-15 -- Cap fix: AAn
2023-11-15 -- :?*:iblit::ibilit
2023-11-15 -- :?*:alowe::allowe
2023-11-15 -- :*:dont::don't
2023-11-15 -- :?:eamil::email
2023-11-15 -- :*:recie::recei
2023-11-15 << :*:tyo::to
2023-11-15 -- Cap fix: IEp
2023-11-15 -- :*:sumar::summar
2023-11-16 -- :?*:exsis::exis
2023-11-16 -- :*:lable::label
2023-11-16 << :*:wih::whi <removed>
2023-11-16 -- :?*:appol::apol
2023-11-16 -- :?*:reing::ring
2023-11-16 -- :*:Karent::Karen
2023-11-16 -- :?*:follwo::follow
2023-11-17 -- :*:english::English <made case-sensitive>
2023-11-17 -- Cap fix: WOr
2023-11-17 -- :?*:oulb::oubl
2023-11-17 << :*:a ab::an ab
2023-11-17 -- :?*:pld::ple
2023-11-17 -- Cap fix: TSo
2023-11-17 -- :*:amme::ame
2023-11-17 -- :?:atn::ant
2023-11-17 -- :*:puch::push
2023-11-17 << :*:puch::push
2023-11-17 << :?*:nght::ngth
2023-11-17 << :?*:opth::ophth
2023-11-17 -- :?*:appol::apol
2023-11-17 -- :*:reliz::realiz
2023-11-17 -- Cap fix: AWe
2023-11-17 -- :?*:tje::the
2023-11-17 << :*:femail::female
2023-11-17 -- :*:retrun::return
2023-11-17 -- :*:the follow up::the follow-up
2023-11-18 -- :?*:cuas::caus
2023-11-18 -- Cap fix: THe
2023-11-18 -- :?*:nervious::nervous
2023-11-18 << :?*:daty::day <removed>
2023-11-18 << :?*:availb::availab
2023-11-18 -- Cap fix: HTh
2023-11-18 -- :*:is were::is where
2023-11-18 -- :?*:scipt::script
2023-11-18 -- :*:if is::it is
2023-11-18 -- Cap fix: GLo
2023-11-19 -- :*:english::English <made case-sensitive>
2023-11-19 -- :*:retrun::return
2023-11-19 -- :?*:boxs::boxes
2023-11-19 -- Cap fix: SHo
2023-11-20 -- :?*:pld::ple
2023-11-20 -- Cap fix: ANd
2023-11-20 -- :*:amme::ame
2023-11-20 -- :?*:entatr::entar
2023-11-20 -- :*:excell::excel
2023-11-20 -- :*:excell::excel
2023-11-20 -- Cap fix: THe
2023-11-20 << :*:hge::he
2023-11-20 -- :?*:suffician::sufficien
2023-11-20 -- Cap fix: PSp
2023-11-20 -- Cap fix: WOr
2023-11-20 -- :?:ualy::ually
2023-11-20 -- Cap fix: FTh
2023-11-20 -- :?:fthe::f the
2023-11-20 -- :?*:cuas::caus
2023-11-20 -- :?*:oportun::opportun
2023-11-20 -- Cap fix: SKi
2023-11-20 -- :?*:supriz::surpris
2023-11-20 << :*:wih::whi <removed>
2023-11-20 -- :*:recie::recei
2023-11-20 -- :?*:tradion::tradition
2023-11-20 -- :?*:sourse::source
2023-11-20 << :*:recie::recei
2023-11-20 -- :*:futhe::furthe
2023-11-20 -- :?*:cogntivie::cognitive
2023-11-20 -- :?*:aiton::ation
2023-11-20 -- Cap fix: AS
2023-11-20 << ::ther::there <removed>
2023-11-20 -- :?*:aggree::agree
2023-11-20 << :?*:juct::junct
2023-11-20 -- :?*:durring::during
2023-11-20 -- Cap fix: CCi
2023-11-20 -- Cap fix: THi
2023-11-20 << :?*:likl::likel
2023-11-20 << ::some one::someone
2023-11-20 -- :?*:durring::during
2023-11-20 -- :*:amme::ame
2023-11-20 << ::whic::which <removed>
2023-11-21 -- :*:english::English <made case-sensitive>
2023-11-21 -- Cap fix: IT
2023-11-21 -- Cap fix: IT
2023-11-21 -- Cap fix: AS
2023-11-21 -- Cap fix: AS
2023-11-21 -- Cap fix: WOr
2023-11-21 -- Cap fix: WIl
2023-11-21 -- :?*:mtion::mation
2023-11-21 -- :*:reliz::realiz
2023-11-21 -- :?*:surpriz::surpris
2023-11-22 -- :*:healthercare::healthcare
2023-11-22 -- :*:to login::to log in
2023-11-22 -- :*:healther::health
2023-11-22 -- :?*:aggree::agree
2023-11-22 -- Cap fix: THe
2023-11-22 -- :*:superce::superse
2023-11-22 -- Cap fix: THe
2023-11-22 -- :?*:responc::respons
2023-11-22 -- :?*:surpriz::surpris
2023-11-22 -- Cap fix: THe
2023-11-22 -- Cap fix: THe
2023-11-22 << :?*:cuas::caus
2023-11-22 -- Cap fix: LIn
2023-11-22 -- :?*:cuas::caus
2023-11-23 -- :*:english::English <made case-sensitive>
2023-11-23 << :?*:allto::alto
2023-11-23 -- :?*:untion::unction
2023-11-23 -- :*:retrun::return
2023-11-23 -- :*:recie::recei
2023-11-23 -- Cap fix: FOm
2023-11-23 -- Cap fix: FOr
2023-11-23 -- :*:retrun::return
2023-11-23 -- :*:with it's::with its
2023-11-23 -- :*:explainat::explanat
2023-11-23 -- :*:lable::label
2023-11-23 -- Cap fix: FOr
2023-11-23 -- Cap fix: FOr
2023-11-23 -- :?*:nght::ngth
2023-11-23 -- :?*:quesion::question
2023-11-23 -- Cap fix: FOr
2023-11-23 -- :*:friut::fruit
2023-11-23 -- Cap fix: FOr
2023-11-23 -- :*:wih::whi <removed>
2023-11-23 -- Cap fix: FOr
2023-11-23 -- Cap fix: THi
2023-11-23 -- :?:efull::eful
2023-11-23 -- Cap fix: FOr
2023-11-23 << :?*:mtion::mation
2023-11-23 -- Cap fix: FOr
2023-11-23 -- Cap fix: FOr
2023-11-23 << :*:prepat::preparat
2023-11-23 << :?*:wirt::writ
2023-11-23 -- :?*:occuran::occurren
2023-11-23 -- Cap fix: FOr
2023-11-23 -- Cap fix: THe
2023-11-23 -- :*:sould::should
2023-11-24 -- Cap fix: THa
2023-11-24 -- :*:have went::have gone
2023-11-24 -- Cap fix: FOr
2023-11-24 -- Cap fix: FOr
2023-11-24 -- Cap fix: FOr
2023-11-24 -- Cap fix: FOr
2023-11-24 -- Cap fix: FOr
2023-11-24 << :*:puch::push
2023-11-25 -- :*:english::English <made case-sensitive>
2023-11-25 -- :?*:deffin::defin
2023-11-25 -- :*:achei::achie
2023-11-25 -- :?*:aggree::agree
2023-11-25 -- Cap fix: CFo
2023-11-25 << :?*:exampt::exempt
2023-11-25 << :?*:exsis::exis
2023-11-25 -- Cap fix: MEn
2023-11-25 -- Cap fix: FOr
2023-11-26 -- Cap fix: WIn
2023-11-26 -- :*:english::English <made case-sensitive>
2023-11-26 << :?*:tje::the
2023-11-26 << :*:wih::whi <removed>
2023-11-26 -- :?*:grama::gramma
2023-11-26 -- :?*:udnet::udent
2023-11-26 -- :*:hier::heir
2023-11-26 -- :?*:segement::segment
2023-11-26 -- Cap fix: WIn
2023-11-27 << :*:if is::it is
2023-11-27 -- Cap fix: AS
2023-11-27 -- :?*:paralel::parallel
2023-11-27 -- :?*:copty::copy
2023-11-27 -- :*:begining::beginning
2023-11-27 << :?*:responc::respons
2023-11-27 << :?*:eccu::ecu
2023-11-27 -- :*:use to::used to
2023-11-27 << :?*:attemt::attempt
2023-11-27 -- ::t he::the
2023-11-27 -- :?*:cogntivie::cognitive
2023-11-27 -- Cap fix: THi
2023-11-27 -- :?*:nsern::ncern
2023-11-27 -- :*:wih::whi <removed>
2023-11-27 -- Cap fix: SDt
2023-11-27 -- :?:ualy::ually
2023-11-27 -- :?*:wierd::weird
2023-11-27 -- :?*:eild::ield
2023-11-27 << ::wat::way <removed>
2023-11-27 -- :?*:couraing::couraging
2023-11-27 -- :?*:sourse::source
2023-11-27 -- :?*:rixon::rison
2023-11-27 -- :?*:rtnat::rtant
2023-11-27 -- :?:itiy::ity
2023-11-27 -- :*:gaol::goal
2023-11-27 -- :*:infact::in fact
2023-11-27 -- :*:bve::be
2023-11-27 -- Cap fix: WEe
2023-11-27 -- Cap fix: AS
2023-11-27 -- Cap fix: IHe
2023-11-27 << :?:;ll::'ll
2023-11-27 -- :*:Karent::Karen
2023-11-27 -- Cap fix: IAs
2023-11-27 -- Cap fix: DId
2023-11-28 -- Cap fix: ASe
2023-11-28 -- Cap fix: TEa
2023-11-28 -- :?*:cogntivie::cognitive
2023-11-28 -- ::aslo::also
2023-11-28 -- :*:safegard::safeguard
2023-11-28 -- :*:cansent::consent
2023-11-28 -- Cap fix: THe
2023-11-28 -- :*:allready::already
2023-11-28 -- :?:comming::coming
2023-11-28 -- Cap fix: EMm
2023-11-28 -- :*:eyt::yet
2023-11-28 -- :*:eyt::yet
2023-11-28 -- :*:eyt::yet
2023-11-28 << ::whic::which <removed>
2023-11-28 -- :*:potatos::potatoes
2023-11-28 -- :*:lable::label
2023-11-28 << ::fro::for
2023-11-28 -- Cap fix: DOe
2023-11-28 -- Cap fix: THo
2023-11-28 -- Cap fix: ONe
2023-11-28 -- Cap fix: WIl
2023-11-28 -- :?*:pld::ple
2023-11-28 -- :?*:spyc::psyc
2023-11-29 << :*:a el::an el
2023-11-29 -- :?*:exsis::exis
2023-11-29 << :*:your a::you're a
2023-11-29 -- :?*:ssition::sition
2023-11-29 -- Cap fix: ALs
2023-11-29 -- :?*:dimention::dimension
2023-11-29 -- :?*:wierd::weird
2023-11-29 -- Cap fix: RSp
2023-11-29 -- Cap fix: ENt
2023-11-29 -- :?*:mision::mission
2023-11-29 -- :?*:efered::eferred
2023-11-29 -- Cap fix: TSh
2023-11-29 -- Cap fix: THe
2023-11-29 -- :?*:voiu::viou
2023-11-29 << :?*:tionne::tione
2023-11-29 -- :*:retrun::return
2023-11-29 -- :?*:nsern::ncern
2023-11-29 -- Cap fix: COd
2023-11-29 -- Cap fix: TRa
2023-11-29 -- Cap fix: THe
2023-11-29 -- :?:comming::coming
2023-11-29 -- Cap fix: BUt
2023-11-29 -- :?*:ssition::sition
2023-11-29 -- Cap fix: TO
2023-11-29 -- Cap fix: THe
2023-11-29 -- :?*:efern::eferen
2023-11-29 -- Cap fix: THa
2023-11-29 -- Cap fix: THi
2023-11-29 -- Cap fix: SHi
2023-11-29 -- Cap fix: RIc
2023-11-29 -- Cap fix: THi
2023-11-29 -- Cap fix: CHe
2023-11-29 << :*:andd::and
2023-11-29 -- Cap fix: DSe
2023-11-30 -- :?:ywat::yway
2023-11-30 -- Cap fix: SOm
2023-11-30 -- :?*:osible::osable
2023-11-30 << :*:wih::whi <removed>
2023-11-30 -- Cap fix: VSc
2023-11-30 << :*:puch::push
2023-11-30 -- :?*:casue::cause
2023-11-30 -- :C:Im::I'm
2023-11-30 -- :?*:exsis::exis
2023-11-30 -- Cap fix: FOl
2023-11-30 -- Cap fix: COg
2023-11-30 << :*:wih::whi <removed>
2023-11-30 << :?*C:mnt::ment
2023-11-30 << :*C:ime::imme
2023-11-30 -- :*:Janurary::January
2023-11-30 -- :*:Janurary::January
2023-11-30 -- :?*:daty::day <removed>
2023-12-01 -- :*:english::English <made case-sensitive>
2023-12-01 -- :*:amme::ame
2023-12-01 -- Cap fix: THe
2023-12-01 -- Cap fix: OUr
2023-12-01 -- :?*:nsern::ncern
2023-12-01 -- Cap fix: THe
2023-12-01 -- Cap fix: THe
2023-12-01 -- :?*:durring::during
2023-12-01 << :?C:hc::ch
2023-12-01 -- :?*:apropri::appropri
2023-12-01 -- :*:amme::ame
2023-12-01 -- :?*:boxs::boxes
2023-12-01 -- :?*:occassi::occasi
2023-12-01 -- :?*:accro::acro
2023-12-01 -- :?*:cogntivie::cognitive
2023-12-01 -- :?*:comun::commun
2023-12-01 << :*:wih::whi <removed>
2023-12-01 -- :?*:cogntivie::cognitive
2023-12-01 -- Cap fix: LSt
2023-12-01 -- Cap fix: THe
2023-12-01 << :?*:useing::using
2023-12-01 -- Cap fix: GLo
2023-12-01 -- Cap fix: VWi
2023-12-01 -- :*:your a::you're a
2023-12-01 -- :?*:asr::ase
2023-12-02 -- Cap fix: THe
2023-12-02 -- :*:thats::that's
2023-12-02 -- Cap fix: THe
2023-12-02 -- Cap fix: CLi
2023-12-02 << ::becaus::because
2023-12-02 -- :?*:durring::during
2023-12-02 -- Cap fix: THe
2023-12-02 -- Cap fix: CLi
2023-12-02 -- :*:whould::would
2023-12-02 -- :*:recie::recei
2023-12-02 << :?*:tatn::tant
2023-12-02 << :?*:daty::day <removed>
2023-12-02 -- :*:tyo::to
2023-12-02 << :?*:pld::ple
2023-12-02 -- :*:alse::else
2023-12-02 -- :*:senc::sens
2023-12-02 -- ::ect::etc
2023-12-02 -- :*:recie::recei
2023-12-02 -- :*:recie::recei
2023-12-02 << :*:with in::within <fixed>
2023-12-02 -- :?*:efering::eferring
2023-12-02 -- :*:recie::recei
2023-12-02 -- Cap fix: WIt
2023-12-02 -- Cap fix: IWi
2023-12-02 -- Cap fix: WIn
2023-12-02 << :*:quess::guess
2023-12-02 -- :?*:casue::cause
2023-12-02 -- :?*:grama::gramma
2023-12-02 -- :?*:releven::relevan
2023-12-02 -- :*:recie::recei
2023-12-02 -- :?*:grama::gramma
2023-12-03 -- :*:english::English <made case-sensitive>
2023-12-03 -- Cap fix: UIs
2023-12-03 -- Cap fix: THe
2023-12-04 -- :*:english::English <made case-sensitive>
2023-12-04 -- :?*:aggree::agree
2023-12-04 -- Cap fix: HOm
2023-12-04 -- :*:dissap::disap
2023-12-04 -- Cap fix: ITh
2023-12-04 -- :?:kn::nk
2023-12-04 -- Cap fix: HOm
2023-12-04 -- Cap fix: THe
2023-12-04 -- Cap fix: TRe
2023-12-04 -- :?*:accro::acro
2023-12-04 -- :?*:cuas::caus
2023-12-04 -- :?*:nlcu::nclu
2023-12-04 -- :?*:ytou::you
2023-12-04 -- :?*:accro::acro
2023-12-04 -- :?*:couraing::couraging
2023-12-04 -- :?*:obelm::oblem
2023-12-04 -- Cap fix: SKi
2023-12-04 << :?*:behaio::behavio
2023-12-04 -- :*:amme::ame
2023-12-04 -- Cap fix: NKn
2023-12-04 -- :?*:durring::during
2023-12-04 << :*:lias::liais
2023-12-04 -- :?*:durring::during
2023-12-04 -- :?*:efered::eferred
2023-12-04 -- :*:tiem::time
2023-12-04 -- Cap fix: HWh
2023-12-05 -- :*:english::English <made case-sensitive>
2023-12-05 -- :?*C:mnt::ment
2023-12-05 -- :?:ngment::ngement
2023-12-05 -- :?*:durring::during
2023-12-05 -- :?*:paralel::parallel
2023-12-05 -- :*:sould::should
2023-12-05 -- :?*:accro::acro
2023-12-05 -- :?*:lcud::clud
2023-12-05 -- Cap fix: THe
2023-12-05 -- :*:there last::their last
2023-12-05 -- Cap fix: GLo
2023-12-05 -- :*:lable::label
2023-12-05 -- :?*:exsis::exis
2023-12-05 -- ::tou::you
2023-12-05 -- :?:occure::occur
2023-12-05 << :?*:nsern::ncern
2023-12-06 -- :*:english::English <made case-sensitive>
2023-12-06 -- :*:Karent::Karen
2023-12-06 -- Cap fix: WIt
2023-12-06 << :?*:grama::gramma
2023-12-06 << :?:comming::coming
2023-12-06 -- :?:itiy::ity
2023-12-06 -- :C:nad::and
2023-12-06 -- Cap fix: TWh
2023-12-06 -- :?*:exsis::exis
2023-12-06 -- :*:amme::ame
2023-12-06 -- Cap fix: THe
2023-12-06 -- :*:amme::ame
2023-12-06 << :*:alse::else
2023-12-06 << :*C:ime::imme
2023-12-06 -- :*:i"m::I'm
2023-12-06 -- :*C:ime::imme
2023-12-06 << :*:andd::and
2023-12-06 -- Cap fix: IWh
2023-12-06 -- Cap fix: HCa
2023-12-06 -- :*:i"m::I'm
2023-12-07 -- :*:thsi::this
2023-12-07 -- Cap fix: SPa
2023-12-07 -- :*:hellow::hello
2023-12-07 << :*:did attempted::did attempt
2023-12-07 -- Cap fix: WOr
2023-12-07 << :*:senc::sens
2023-12-07 -- :?:lyu::ly
2023-12-07 -- :?:occured::occurred
2023-12-07 << :*:thats::that's
2023-12-07 -- :?*:cuas::caus
2023-12-07 -- :?*:morot::motor
2023-12-07 << :*:tyo::to
2023-12-07 -- :?*:ytou::you
2023-12-07 -- Cap fix: WHa
2023-12-07 -- ::do to::due to
2023-12-08 -- Cap fix: ANo
2023-12-08 -- :*:english::English <made case-sensitive>
2023-12-08 -- :?*:cirp::crip
2023-12-08 -- :*:hellow::hello
2023-12-08 -- :*:oposi::opposi
2023-12-08 -- :?*:dminst::dminist
2023-12-08 << :?*:fisi::fissi
2023-12-08 -- :?*:durring::during
2023-12-08 -- :?*:focuss::focus
2023-12-08 -- :?*:stong::strong
2023-12-08 -- :*:counr::countr
2023-12-08 -- Cap fix: COl
2023-12-08 -- :?*:cogntivie::cognitive
2023-12-08 -- :?:itiy::ity
2023-12-08 -- :?*:cogntivie::cognitive
2023-12-08 -- :?*:paralel::parallel
2023-12-08 -- Cap fix: IEp
2023-12-08 -- :?*:nsern::ncern
2023-12-08 << :?*:whant::want
2023-12-08 -- ::apon::upon
2023-12-08 -- Cap fix: STe
2023-12-08 -- Cap fix: CLi
2023-12-09 -- Cap fix: TOt
2023-12-09 -- Cap fix: ODo
2023-12-09 -- :?*C:mnt::ment
2023-12-09 -- :?*C:mnt::ment
2023-12-09 -- :?*C:mnt::ment
2023-12-09 -- :?*C:mnt::ment
2023-12-09 -- :*:lable::label
2023-12-10 -- :*:english::English <made case-sensitive>
2023-12-11 -- :*:english::English <made case-sensitive>
2023-12-11 -- :?:sthe::s the
2023-12-11 -- :*:aquir::acquir
2023-12-11 -- :?*:efered::eferred
2023-12-11 -- :*:tyhe::they
2023-12-11 -- :*:with be::will be
2023-12-11 -- :?*:paralel::parallel
2023-12-11 -- :*:betwen::between
2023-12-11 -- :?*:accro::acro
2023-12-11 -- :?*:exsis::exis
2023-12-11 -- :?*:beei::bei
2023-12-11 << ::fo::of
2023-12-11 -- Cap fix: YWe
2023-12-11 -- :?*:durring::during
2023-12-11 -- Cap fix: YWe
2023-12-11 -- Cap fix: IS
2023-12-11 -- Cap fix: IS
2023-12-11 -- Cap fix: IS
2023-12-11 -- Cap fix: THa
2023-12-11 -- :?*:addm::adm
2023-12-11 -- :*:if is::it is
2023-12-11 -- :*:hellow::hello
2023-12-11 -- :*:senc::sens
2023-12-12 -- Cap fix: EIt
2023-12-12 -- Cap fix: THa
2023-12-12 -- Cap fix: THa
2023-12-12 -- :*:amme::ame
2023-12-12 -- :?*:mtion::mation
2023-12-12 -- :?*:ommm::omm
2023-12-12 -- Cap fix: ISi
2023-12-12 -- Cap fix: CVi
2023-12-12 -- Cap fix: VCi
2023-12-12 -- :*:thats::that's
2023-12-12 -- Cap fix: THa
2023-12-12 -- Cap fix: SOu
2023-12-12 -- :?*:eild::ield
2023-12-12 -- :?:;s::'s
2023-12-12 << :*:betwen::between
2023-12-12 -- :*:try and::try to
2023-12-12 -- Cap fix: BFe
2023-12-12 -- :?*:efered::eferred
2023-12-12 -- :*:recie::recei
2023-12-13 -- Cap fix: IAr
2023-12-13 -- Cap fix: YOu
2023-12-13 -- :*:your a::you're a
2023-12-13 -- :*:your a::you're a
2023-12-13 << :*:puch::push
2023-12-13 -- :*:emial::email
2023-12-13 -- :?:occured::occurred
2023-12-13 -- :*:try and::try to
2023-12-13 -- Cap fix: TWh
2023-12-13 -- :*:recie::recei
2023-12-13 -- Cap fix: THu
2023-12-14 -- :?*:cogntivie::cognitive
2023-12-14 -- Cap fix: MBe
2023-12-14 -- Cap fix: VCi
2023-12-14 << :?*:tatn::tant
2023-12-14 -- :?*:durring::during
2023-12-14 << ::ther::there <removed>
2023-12-15 -- Cap fix: CHe
2023-12-15 -- :*:i"m::I'm
2023-12-15 -- Cap fix: CIn
2023-12-15 -- Cap fix: HHi
2023-12-15 -- Cap fix: FOl
2023-12-15 -- Cap fix: THa
2023-12-15 << :*:thats::that's
2023-12-15 -- :*:english::English <made case-sensitive>
2023-12-15 -- Cap fix: IHa
2023-12-15 -- :*:if is::it is
2023-12-15 -- :?*:scipt::script
2023-12-15 -- :*:deside::decide
2023-12-15 << :*:with in::within <fixed>
2023-12-15 << ::wat::way <removed>
2023-12-15 -- :?*:degrat::degrad
2023-12-15 -- :?*:eferan::eferen
2023-12-15 -- :?*:cuas::caus
2023-12-15 -- :?*:cuas::caus
2023-12-15 -- :?*:cuas::caus
2023-12-15 -- :*:senc::sens
2023-12-15 -- :?*:intented::intended
2023-12-15 -- :?*:cogntivie::cognitive
2023-12-15 -- Cap fix: THa
2023-12-15 -- :*:happend::happened
2023-12-15 -- :?*:cogntivie::cognitive
2023-12-15 -- :*:levle::level
2023-12-15 -- :*:resently::recently
2023-12-15 -- Cap fix: ACa
2023-12-15 -- :*:senc::sens
2023-12-15 -- :?*:durring::during
2023-12-15 -- :?*:siad::said
2023-12-15 -- :?*:efered::eferred
2023-12-15 -- :*:can checkout::can check out
2023-12-15 << :*:sentan::senten
2023-12-16 -- Cap fix: GLo
2023-12-16 -- Cap fix: CHa
2023-12-16 -- Cap fix: THe
2023-12-16 -- Cap fix: THi
2023-12-16 -- ::alway::always
2023-12-16 -- Cap fix: DOn
2023-12-16 -- :*:recomen::recommen
2023-12-16 << :*:anyother::any other
2023-12-16 -- :?*:focuss::focus
2023-12-16 -- Cap fix: IN
2023-12-16 << ::fo::of
2023-12-16 -- Cap fix: SWi
2023-12-16 -- Cap fix: SPa
2023-12-16 -- Cap fix: WIn
2023-12-16 -- Cap fix: THe
2023-12-16 -- :?*:cuas::caus
2023-12-16 -- Cap fix: FOr
2023-12-16 -- Cap fix: THe
2023-12-16 -- Cap fix: THe
2023-12-16 -- Cap fix: IN
2023-12-16 -- :*:recomen::recommen
2023-12-16 -- Cap fix: WIn
2023-12-16 -- Cap fix: CVa
2023-12-16 -- :?*:efered::eferred
2023-12-17 << :*:eyt::yet
2023-12-17 -- :*:bve::be
2023-12-17 -- Cap fix: THe
2023-12-17 << :?*:iopn::ion
2023-12-17 -- :?*:dipend::depend
2023-12-17 -- :?*:accessab::accessib
2023-12-17 -- :?:itiy::ity
2023-12-17 -- :?*:dependan::dependen
2023-12-17 -- :?*:releven::relevan
2023-12-17 << :?*:daty::day <removed>
2023-12-17 -- Cap fix: WIt
2023-12-17 << :?*:jist::gist
2023-12-17 -- :?*:cuas::caus
2023-12-17 -- :?*:belei::belie
2023-12-17 -- :?*:tioj::tion
2023-12-17 -- Cap fix: THi
2023-12-18 -- :*:english::English <made case-sensitive>
2023-12-18 << :*:incread::incred
2023-12-18 << :?*:daty::day <removed>
2023-12-18 -- :?*:sourse::source
2023-12-18 << :?*:ugth::ught
2023-12-18 << :?*:responc::respons
2023-12-18 -- :?*:cogntivie::cognitive
2023-12-18 << :*:a am::an am
2023-12-18 << :*:hda::had
2023-12-18 -- :*:hda::had
2023-12-18 << :*:hda::had
2023-12-18 -- :?*:responc::respons
2023-12-18 -- :*:tyo::to
2023-12-18 -- Cap fix: TCa
2023-12-18 -- Cap fix: NHo
2023-12-19 -- :?*:pld::ple
2023-12-19 -- Cap fix: THi
2023-12-19 -- :*:senc::sens
2023-12-19 -- :*:sould::should
2023-12-19 -- :?C:hc::ch
2023-12-19 -- :*:ToolTop::ToolTip
2023-12-19 -- :*:ToolTop::ToolTip
2023-12-19 -- :?*:efered::eferred
2023-12-19 -- Cap fix: COg
2023-12-19 -- :?*:mision::mission
2023-12-19 << :*:with be::will be
2023-12-19 << :?*:pld::ple
2023-12-19 -- :*:if is::it is
2023-12-19 << :?*:addm::adm
2023-12-19 -- :?*:cogntivie::cognitive
2023-12-20 -- :*:english::English <made case-sensitive>
2023-12-20 -- Cap fix: MNu
2023-12-20 -- :*:transfered::transferred
2023-12-20 -- :?*:commite::committe
2023-12-20 << :*:uise::use
2023-12-20 -- :*:everytime::every time
2023-12-20 -- :?*:woh::who
2023-12-20 -- Cap fix: FOr
2023-12-20 << ::alway::always
2023-12-20 << :*:thn::then
2023-12-20 -- ::averag::average
2023-12-20 -- :?*:strengh::strength
2023-12-20 -- Cap fix: SIm
2023-12-20 -- Cap fix: CKa
2023-12-20 -- Cap fix: TSh
2023-12-20 -- Cap fix: PRo
2023-12-20 -- Cap fix: LKa
2023-12-20 -- :*:agian::again
2023-12-20 -- Cap fix: SHe
2023-12-20 -- :?*:cuas::caus
2023-12-21 -- :*:english::English <made case-sensitive>
2023-12-21 -- :*:ToolTop::ToolTip
2023-12-21 -- Cap fix: SIn
2023-12-21 -- Cap fix: RIg
2023-12-21 -- :?:;ll::'ll
2023-12-21 -- :?:;s::'s
2023-12-21 -- :*:explainat::explanat
2023-12-21 -- :*:explainat::explanat
2023-12-22 -- Cap fix: IOn
2023-12-22 -- :?*:tiion::tion
2023-12-22 -- Cap fix: THi
2023-12-22 -- Cap fix: THi
2023-12-22 -- Cap fix: CHa
2023-12-23 -- :?*:mounth::month
2023-12-23 << :?*:nessec::necess
2023-12-23 -- Cap fix: RIg
2023-12-23 -- Cap fix: THe
2023-12-23 -- :*:tyo::to
2023-12-23 -- :?*:exsis::exis
2023-12-23 -- :*:if is::it is
2023-12-24 -- :?*:itina::itiona
2023-12-24 -- Cap fix: CHa
2023-12-24 << :*:wih::whi <removed>
2023-12-24 -- Cap fix: SUn
2023-12-25 -- :*:english::English <made case-sensitive>
2023-12-25 -- Cap fix: CHr
2023-12-25 -- :?*:eild::ield
2023-12-25 -- :*:tomorow::tomorrow
2023-12-25 -- Cap fix: THe
2023-12-25 -- Cap fix: THe
2023-12-25 -- Cap fix: THe
2023-12-25 -- Cap fix: THe
2023-12-25 -- Cap fix: THe
2023-12-25 << :?*:instu::instru
2023-12-25 -- :?*:anomo::anoma
2023-12-25 -- Cap fix: THa
2023-12-25 << :*:your a::you're a
2023-12-25 -- :?*:iopn::ion
2023-12-26 << :*:if is::it is
2023-12-26 -- :?*:exsis::exis
2023-12-26 -- :?*:assoca::associa
2023-12-27 -- :*:english::English <made case-sensitive>
2023-12-27 -- Cap fix: DOc
2023-12-27 -- Cap fix: THi
2023-12-28 << :*:hsa::has
2023-12-28 -- :?*:campain::campaign
2023-12-30 -- :*:english::English <made case-sensitive>
2023-12-30 -- :*:english::English <made case-sensitive>
2023-12-31 -- :*:wih::whi <removed>
2023-12-31 << :?*:releven::relevan
2023-12-31 -- :?*:tioj::tion
2023-12-31 -- :*:lable::label
2024-01-01 -- :*:your a::you're a
2024-01-01 -- :*:your a::you're a
2024-01-01 -- :*:try and::try to
2024-01-01 -- :*:your a::you're a
2024-01-01 << ::ther::there <removed>
2024-01 01 -- Cap fix: THe
2024-01-01 -- :?*:durring::during
2024-01-01 -- :?*:acadm::academ
2024-01-01 -- :*:if was::it was
2024-01-01 << :*:a un::an un
2024-01-01 -- :*:a un::an un
2024-01-01 -- :*:a un::an un
2024-01 01 -- Cap fix: AKa
2024-01-01 << :*:dont::don't
2024-01-01 -- :?:throught::through
2024-01-01 << :?*:iopn::ion
2024-01-01 << :?*:asr::ase
2024-01 01 -- Cap fix: WOr
2024-01-01 << ::fro::for
2024-01 01 -- Cap fix: THe
2024-01-01 << :?*:cuas::caus
2024-01 01 -- Cap fix: THi
2024-01-02 -- :?*:efering::eferring
2024-01-02 -- :*:as apposed to::as opposed to
2024-01-02 -- :?:herefor::herefore
2024-01-02 << :*:its a::it's a
2024-01-02 << :*:tyhe::they
2024-01 02 -- Cap fix: AHk
2024-01-02 -- :?*:cuas::caus
2024-01 02 -- Cap fix: TO
2024-01-02 -- :*:a ig::an ig
2024-01 02 -- Cap fix: ANo
2024-01-02 << :?*:wtih::with
2024-01 02 -- Cap fix: COn
2024-01 02 -- Cap fix: THi
2024-01 02 -- Cap fix: CHa
2024-01-02 -- :*:mispell::misspell
2024-01 02 -- Cap fix: THe
2024-01-02 -- :?*:grama::gramma
2024-01-03 -- :*:english::English <made case-sensitive>
2024-01 03 -- Cap fix: WSe
2024-01-03 -- :?*:pld::ple
2024-01 03 -- Cap fix: LWe
2024-01-03 << :?*:inng::ing
2024-01-03 -- :*:cant::can't
2024-01-03 -- :*:english::English <made case-sensitive>
2024-01-03 -- :*:mispell::misspell
2024-01-03 -- :*:senc::sens
2024-01 03 -- Cap fix: COr
2024-01-03 -- :*:artical::article
2024-01-03 -- :*:proof read::proofread
2024-01-03 -- :*:artical::article
2024-01-03 << :?*:expalin::explain
2024-01-04 -- :*:english::English <made case-sensitive>
2024-01-04 << :?*:cogntivie::cognitive
2024-01-04 -- :?*:behaio::behavio
2024-01 04 -- Cap fix: AAs
2024-01-04 -- ::t he::the
2024-01-04 -- :?*:durring::during
2024-01-04 << :*:bve::be
2024-01-04 << :?*:daty::day <removed>
2024-01-04 -- :?*:grama::gramma
2024-01 04 -- Cap fix: COr
2024-01-04 -- :*:thier::their
2024-01-04 -- :?*:neccessar::necessar
2024-01-04 << :?*:daty::day <removed>
2024-01-05 -- :*:it's own::its own
2024-01 05 -- Cap fix: BRo
2024-01 05 -- Cap fix: BGo
2024-01 05 -- Cap fix: SPe
2024-01 05 -- Cap fix: WRe
2024-01-05 << :?*:reiv::riev
2024-01-05 -- :?*:pcial::pical
2024-01-05 << :?*:abilt::abilit
2024-01-05 -- :*:fouth::fourth
2024-01 05 -- Cap fix: THe
2024-01-05 << :*:a af::an af
2024-01-05 -- :?*:belei::belie
2024-01-05 -- :*:whould::would
2024-01-05 -- :*:is it's::is its
2024-01-05 -- :?:culem::culum
2024-01-05 -- :*:the affects of::the effects of
2024-01-05 -- :?:itiy::ity
2024-01-05 -- :?*:exsis::exis
2024-01-05 -- :?*:mrak::mark
2024-01-05 -- :?*:mrak::mark
2024-01-05 -- :?*:mrak::mark
2024-01-05 -- :?*:cuas::caus
2024-01-05 -- :*:thier::their
2024-01-05 << :*:with in::within <fixed>
2024-01-05 -- :*:beggining::beginning
2024-01-05 -- :*:beggining::beginning
2024-01-05 -- :?*:sttr::str
2024-01-05 << ::fro::for
2024-01-05 -- :?:herefor::herefore
2024-01 06 -- Cap fix: FOr
2024-01 06 -- Cap fix: SIn
2024-01 06 -- Cap fix: ZBo
2024-01 06 -- Cap fix: ANa
2024-01 06 -- Cap fix: THe
2024-01 06 -- Cap fix: THe
2024-01-06 << :*:faster then::faster than
2024-01 06 -- Cap fix: FOr
2024-01-06 -- :?*:seach::search
2024-01-06 -- :*:hellow::hello
2024-01 06 -- Cap fix: NEn
2024-01 06 -- Cap fix: HHo
2024-01-06 << :?*:asr::ase
2024-01 08 -- Cap fix: JUs
2024-01-08 -- :?*:efering::eferring
2024-01-08 -- :?*:tranf::transf
2024-01-08 << :?*:exsis::exis
2024-01-08 -- :?*:cuas::caus
2024-01-08 -- :*:femail::female
2024-01 08 -- Cap fix: SIn
2024-01 08 -- Cap fix: FOr
2024-01-08 << :?*:yuo::you
2024-01-08 -- :?*:yuo::you
2024-01 08 -- Cap fix: COn
2024-01-08 -- :?*:efering::eferring
2024-01-08 -- :?*:exsis::exis
2024-01-08 -- :*:occation::occasion
2024-01-08 -- :*?:combon::combin
2024-01-08 -- :*?:combon::combin
2024-01-08 -- :*:english::English <made case-sensitive>
2024-01-08 -- :?*:yuo::you
2024-01-08 -- :*?:combon::combin
2024-01 08 -- Cap fix: REi
2024-01-09 -- :*:english::English <made case-sensitive>
2024-01 09 -- Cap fix: WQh
2024-01-09 -- :?*:nsern::ncern
2024-01 09 -- Cap fix: DOe
2024-01-09 -- ::theri::their
2024-01-09 -- :*:has it's::has its
2024-01-09 -- :?*:inng::ing
2024-01 09 -- Cap fix: XCo
2024-01-09 -- :?*:acom::accom
2024-01-09 -- :?*:cuas::caus
2024-01-09 -- :?:herefor::herefore
2024-01 09 -- Cap fix: COr
2024-01 09 -- Cap fix: OIf
2024-01 09 -- Cap fix: HGo
2024-01 09 -- Cap fix: THe
2024-01 09 -- Cap fix: FOr
2024-01-09 << :*:tyhe::they
2024-01 09 -- Cap fix: THe
2024-01 09 -- Cap fix: ASt
2024-01 09 -- Cap fix: COr