duckling 0.4.0

A Rust port of Facebook's Duckling library for parsing natural language into structured data
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
use super::{Direction, IntervalDirection, PartOfDay, TimeData, TimeForm};
use crate::dimensions::time_grain::Grain;
use crate::pattern::{dim, regex};
use crate::types::{DimensionKind, Rule, TokenData};

pub fn rules() -> Vec<Rule> {
    let mut rules = super::en::rules();
    rules.extend(vec![
        Rule {
            name: "now (el)".to_string(),
            pattern: vec![regex("τ[ώω]ρα")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Now)))),
        },
        Rule {
            name: "today (el)".to_string(),
            pattern: vec![regex("σ[ήη]μερα")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Today)))),
        },
        Rule {
            name: "tomorrow (el)".to_string(),
            pattern: vec![regex("α[ύυ]ριο")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Tomorrow)))),
        },
        Rule {
            name: "tonight (el)".to_string(),
            pattern: vec![regex("απ(ό|ο)ψε|σ(ή|η)μερα\\s+το\\s+βρ(ά|α)δυ")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::PartOfDay(PartOfDay::Evening))))),
        },
        Rule {
            name: "midnight (el)".to_string(),
            pattern: vec![regex("(τα\\s+)?μεσ(ά|α)νυχτα")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Hour(0, false))))),
        },
        Rule {
            name: "noon (el)".to_string(),
            pattern: vec![regex("(το\\s+)?μεσημ(έ|ε)ρι(ού)?")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Hour(12, false))))),
        },
        Rule {
            name: "yesterday (el)".to_string(),
            pattern: vec![regex("χθες|εχθ(έ|ε)ς")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Yesterday)))),
        },
        Rule {
            name: "day before yesterday / day after tomorrow (el)".to_string(),
            pattern: vec![regex("προχθ(έ|ε)ς|προχτ(έ|ε)ς|μεθα(ύ|υ)ριο")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                if s.starts_with("πρ") {
                    Some(TokenData::Time(TimeData::new(TimeForm::DayBeforeYesterday)))
                } else {
                    Some(TokenData::Time(TimeData::new(TimeForm::DayAfterTomorrow)))
                }
            }),
        },
        Rule {
            name: "day of week (el)".to_string(),
            pattern: vec![regex("δευτ(έρας?|\\.?)|τρ[ιί](της?|\\.?)|τετ(άρτης?|\\.?)|π[εέ]μ(πτης?|\\.?)|παρ(ασκευής?|\\.?)|σ[αά]β(β[αά]το[νυ]?|\\.?)|κυρ(ιακής?|\\.?)")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                let dow = if s.contains("δευ") {
                    0
                } else if s.contains("τρί") || s.contains("τρι") {
                    1
                } else if s.contains("τετ") {
                    2
                } else if s.contains("πέμ") || s.contains("πεμ") {
                    3
                } else if s.contains("παρασκευ") || s.starts_with("παρ") {
                    4
                } else if s.contains("σάβ") || s.contains("σαβ") {
                    5
                } else if s.contains("κυριακ") || s.starts_with("κυρ") {
                    6
                } else {
                    return None;
                };
                Some(TokenData::Time(TimeData::new(TimeForm::DayOfWeek(dow))))
            }),
        },
        Rule {
            name: "day-of-month ordinal token (el)".to_string(),
            pattern: vec![dim(DimensionKind::Ordinal)],
            production: Box::new(|nodes| {
                let day = match &nodes[0].token_data {
                    TokenData::Ordinal(o) if (1..=31).contains(&o.value) => o.value as u32,
                    _ => return None,
                };
                Some(TokenData::Time(TimeData::new(TimeForm::DayOfMonth(day))))
            }),
        },
        Rule {
            name: "the day-of-month ordinal (el)".to_string(),
            pattern: vec![regex("τ?η[νς]?\\s*([012]?\\d|30|31)η")],
            production: Box::new(|nodes| {
                let d = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(1)?,
                    _ => return None,
                };
                let day: u32 = d.parse().ok()?;
                if !(1..=31).contains(&day) {
                    return None;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::DayOfMonth(day))))
            }),
        },
        Rule {
            name: "date with flevary (el)".to_string(),
            pattern: vec![regex("(\\d{1,2})\\s+φ(λεβ[άα]ρη|εβρουαρ[ίι]ου)(,\\s*δευτ)?")],
            production: Box::new(|nodes| {
                let d = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(1)?,
                    _ => return None,
                };
                let day: u32 = d.parse().ok()?;
                if !(1..=31).contains(&day) {
                    return None;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::DateMDY {
                    month: 2,
                    day,
                    year: None,
                })))
            }),
        },
        Rule {
            name: "january abbr (el)".to_string(),
            pattern: vec![regex("ιαν")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(1))))),
        },
        Rule {
            name: "january colloquial (el)".to_string(),
            pattern: vec![regex("γενάρης|γεναρης|γενάρη")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(1))))),
        },
        Rule {
            name: "february variants (el)".to_string(),
            pattern: vec![regex("φεβ|φεβρουάριο|φεβρουαρίου|φλεβάρη")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(2))))),
        },
        Rule {
            name: "march variants (el)".to_string(),
            pattern: vec![regex("μάρτης|μαρτης|μάρτιος")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(3))))),
        },
        Rule {
            name: "march short (el)".to_string(),
            pattern: vec![regex("μάρτη|μαρτη")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(3))))),
        },
        Rule {
            name: "μαρτίου (el)".to_string(),
            pattern: vec![regex("μαρτίου|μαρτιου")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(3))))),
        },
        Rule {
            name: "μάρτιο (el)".to_string(),
            pattern: vec![regex("μάρτιο|μαρτιο|μάρτιον|μαρτιον")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(3))))),
        },
        Rule {
            name: "μαρ (el)".to_string(),
            pattern: vec![regex("μαρ\\.?")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(3))))),
        },
        Rule {
            name: "απρίλης (el)".to_string(),
            pattern: vec![regex("απρίλης|απριλης")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(4))))),
        },
        Rule {
            name: "απρ (el)".to_string(),
            pattern: vec![regex("απρ\\.?")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(4))))),
        },
        Rule {
            name: "μάη (el)".to_string(),
            pattern: vec![regex("μάη|μαη")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(5))))),
        },
        Rule {
            name: "μαϊου (el)".to_string(),
            pattern: vec![regex("μα[ϊι]ου")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(5))))),
        },
        Rule {
            name: "μάιο (el)".to_string(),
            pattern: vec![regex("μάιο|μαιο")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(5))))),
        },
        Rule {
            name: "ιούνιος (el)".to_string(),
            pattern: vec![regex("ιούνιος|ιουνιος")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(6))))),
        },
        Rule {
            name: "ιουνίου (el)".to_string(),
            pattern: vec![regex("ιουνίου|ιουνιου")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(6))))),
        },
        Rule {
            name: "ιούνη (el)".to_string(),
            pattern: vec![regex("ιούνη|ιουνη")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(6))))),
        },
        Rule {
            name: "ιούνιον (el)".to_string(),
            pattern: vec![regex("ιούνιον|ιουνιον")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(6))))),
        },
        Rule {
            name: "ιουν (el)".to_string(),
            pattern: vec![regex("ιουν\\.?")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(6))))),
        },
        Rule {
            name: "ιουλ (el)".to_string(),
            pattern: vec![regex("ιουλ\\.?|Ιουλ\\.?")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(7))))),
        },
        Rule {
            name: "ιούλη (el)".to_string(),
            pattern: vec![regex("ιούλη|ιουλη")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(7))))),
        },
        Rule {
            name: "ιούλιο (el)".to_string(),
            pattern: vec![regex("ιούλιο|ιουλιο")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(7))))),
        },
        Rule {
            name: "αυγ (el)".to_string(),
            pattern: vec![regex("αυγ\\.?")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(8))))),
        },
        Rule {
            name: "αύγουστο (el)".to_string(),
            pattern: vec![regex("αύγουστο|αυγουστο")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(8))))),
        },
        Rule {
            name: "σεπτ (el)".to_string(),
            pattern: vec![regex("σεπτ\\.?")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(9))))),
        },
        Rule {
            name: "Οκτ (el)".to_string(),
            pattern: vec![regex("οκτ([ωώ]βρ([ιί]ο([νυ]?)|η)ς?)?\\.?")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(10))))),
        },
        Rule {
            name: "νοεμ (el)".to_string(),
            pattern: vec![regex("νοεμ\\.?|νοέμβρης|νοεμβρης|νοέμβριος|νοεμβριος|νοέμβριο|νοεμβριο|νοέμβρη|νοεμβρη")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(11))))),
        },
        Rule {
            name: "δεκ (el)".to_string(),
            pattern: vec![regex("δεκ\\.?|δεκέμβρης|δεκεμβρης|δεκέμβριος|δεκεμβριος|δεκέμβριο|δεκεμβριο|δεκέμβρη|δεκεμβρη")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Month(12))))),
        },
        Rule {
            name: "year (el)".to_string(),
            pattern: vec![regex("\\b(\\d{4})\\b")],
            production: Box::new(|nodes| {
                let y = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(1)?,
                    _ => return None,
                };
                let year: i32 = y.parse().ok()?;
                Some(TokenData::Time(TimeData::new(TimeForm::Year(year))))
            }),
        },
        Rule {
            name: "evangelismos (el)".to_string(),
            pattern: vec![regex("ευαγγελισμ(ό|ο)ς της θεοτ(ό|ο)κου|ευαγγελισμο(ύ|υ) της θεοτ(ό|ο)κου")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::DateMDY { month: 3, day: 25, year: None })))),
        },
        Rule {
            name: "christmas (el)".to_string(),
            pattern: vec![regex("χριστο(ύ|υ)γεννα")],
            production: Box::new(|_| {
                Some(TokenData::Time(TimeData::new(TimeForm::Holiday(
                    "christmas day".to_string(),
                    None,
                ))))
            }),
        },
        Rule {
            name: "season (el)".to_string(),
            pattern: vec![regex("αυτ(ό|ο)\\s+το\\s+φθιν(ό|ο)πωρο|αυτο(ύ|υ)\\s+του\\s+φθινοπ(ώ|ο)ρου|φθιν(ό|ο)πωρο|καλοκα(ί|ι)ρι|χειμ(ώ|ο)να|(ά|α)νοιξη")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                let season = if s.contains("άνοι") || s.contains("ανοι") {
                    0
                } else if s.contains("καλοκα") {
                    1
                } else if s.contains("φθιν") {
                    2
                } else {
                    3
                };
                Some(TokenData::Time(TimeData::new(TimeForm::Season(season))))
            }),
        },
        Rule {
            name: "new year eve/day (el)".to_string(),
            pattern: vec![regex("παραμον(ή|ε)ς πρωτοχρονι(ά|α)ς|αν(ή|η)μερα πρωτοχρονι(ά|α)ς")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                let name = if s.contains("παραμον") {
                    "new year's eve"
                } else {
                    "new year's day"
                };
                Some(TokenData::Time(TimeData::new(TimeForm::Holiday(
                    name.to_string(),
                    None,
                ))))
            }),
        },
        Rule {
            name: "mother/father/revolution/halloween (el)".to_string(),
            pattern: vec![regex("η(μέρα| μέρα| μερα)? της μητ(έ|ε)ρας|η( μέρα|μέρα)? του πατ(έ|ε)ρα|η( περασμ(έ|ε)νη)? μέρα της επαν(ά|α)στασης|halloween|του\\s+αγ(ί|ι)ου\\s+βαλεντ(ί|ι)νου")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                if s.contains("μητ") {
                    return Some(TokenData::Time(TimeData::new(TimeForm::Holiday(
                        "mother's day".to_string(),
                        None,
                    ))));
                }
                if s.contains("πατ") {
                    return Some(TokenData::Time(TimeData::new(TimeForm::Holiday(
                        "father's day".to_string(),
                        None,
                    ))));
                }
                if s.contains("halloween") {
                    return Some(TokenData::Time(TimeData::new(TimeForm::Holiday(
                        "halloween".to_string(),
                        None,
                    ))));
                }
                if s.contains("βαλεντ") {
                    return Some(TokenData::Time(TimeData::new(TimeForm::DateMDY {
                        month: 2,
                        day: 14,
                        year: None,
                    })));
                }
                Some(TokenData::Time(TimeData::new(TimeForm::DateMDY {
                    month: 3,
                    day: 25,
                    year: None,
                })))
            }),
        },
        Rule {
            name: "one year after christmas (el)".to_string(),
            pattern: vec![regex("(ένα|μια|μία|\\d{1,3})\\s+χρ(ό|ο)νο\\s+μετ(ά|α)\\s+τα\\s+χριστο(ύ|υ)γεννα")],
            production: Box::new(|nodes| {
                let n = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(1)?,
                    _ => return None,
                };
                let years: i64 = match n {
                    "ένα" | "μια" | "μία" => 1,
                    _ => n.parse().ok()?,
                };
                let base = TimeData::new(TimeForm::Holiday("christmas day".to_string(), None));
                Some(TokenData::Time(TimeData::new(TimeForm::DurationAfter {
                    n: years,
                    grain: Grain::Year,
                    base: Box::new(base),
                })))
            }),
        },
        Rule {
            name: "this week (el)".to_string(),
            pattern: vec![regex("αυτ(ή|η)\\s+τη\\s+(βδομ(ά|α)δα|εβδομ(ά|α)δα)|τρ(έ|ε)χουσα\\s+εβδομ(ά|α)δα")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::AllGrain(Grain::Week))))),
        },
        Rule {
            name: "prev/next week (el)".to_string(),
            pattern: vec![regex("(περασμ(έ|ε)νη|προηγο(ύ|υ)μενη)\\s+εβδομ(ά|α)δα|επ(ό|ο)μενη\\s+εβδομ(ά|α)δα")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                if s.contains("επ") {
                    Some(TokenData::Time(TimeData::new(TimeForm::GrainOffset { grain: Grain::Week, offset: 1 })))
                } else {
                    Some(TokenData::Time(TimeData::new(TimeForm::GrainOffset { grain: Grain::Week, offset: -1 })))
                }
            }),
        },
        Rule {
            name: "prev/next month (el)".to_string(),
            pattern: vec![regex("τον\\s+προηγο(ύ|υ)μενο\\s+μ(ή|η)να|τον\\s+επ(ό|ο)μενο\\s+μ(ή|η)να")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                if s.contains("επ") {
                    Some(TokenData::Time(TimeData::new(TimeForm::GrainOffset { grain: Grain::Month, offset: 1 })))
                } else {
                    Some(TokenData::Time(TimeData::new(TimeForm::GrainOffset { grain: Grain::Month, offset: -1 })))
                }
            }),
        },
        Rule {
            name: "this/prev/next year (el)".to_string(),
            pattern: vec![regex("αυτ(ή|η)\\s+τη\\s+χρονι(ά|α)|αυτ(ό|ο)\\s+το\\s+(έ|ε)τος|την\\s+περασμ(έ|ε)νη\\s+χρονι(ά|α)|την\\s+επ(ό|ο)μενη\\s+χρονι(ά|α)|τον\\s+επ(ό|ο)μενο\\s+χρ(ό|ο)νο|του\\s+χρ(ό|ο)νου|τουχρ(ό|ο)νου")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                if s.contains("αυτ") {
                    Some(TokenData::Time(TimeData::new(TimeForm::AllGrain(Grain::Year))))
                } else if s.contains("επ") || s.contains("τουχρ") || s.contains("του χρ") {
                    Some(TokenData::Time(TimeData::new(TimeForm::GrainOffset { grain: Grain::Year, offset: 1 })))
                } else {
                    Some(TokenData::Time(TimeData::new(TimeForm::GrainOffset { grain: Grain::Year, offset: -1 })))
                }
            }),
        },
        Rule {
            name: "φέτος/πέρσι (el)".to_string(),
            pattern: vec![regex("φ(έ|ε)τος|π(έ|ε)ρσι|π(έ|ε)ρυσι")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                if s.starts_with("φ") {
                    Some(TokenData::Time(TimeData::new(TimeForm::AllGrain(Grain::Year))))
                } else {
                    Some(TokenData::Time(TimeData::new(TimeForm::GrainOffset {
                        grain: Grain::Year,
                        offset: -1,
                    })))
                }
            }),
        },
        Rule {
            name: "next weekday (el)".to_string(),
            pattern: vec![regex("(την\\s+)?επ(ό|ο)μενη\\s+(δευτ(έ|ε)ρα|τρ(ί|ι)τη|τετ(ά|α)ρτη|π(έ|ε)μπτη|παρασκευ(ή|η)|κυριακ(ή|η)|σαββατο)")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(3)?.to_lowercase(),
                    _ => return None,
                };
                let dow = if s.starts_with("δευτ") {
                    0
                } else if s.starts_with("τρ") {
                    1
                } else if s.starts_with("τετ") {
                    2
                } else if s.starts_with("π") {
                    3
                } else if s.starts_with("παρασκ") {
                    4
                } else if s.starts_with("σαβ") {
                    5
                } else {
                    6
                };
                let mut td = TimeData::new(TimeForm::DayOfWeek(dow));
                td.direction = Some(Direction::Future);
                Some(TokenData::Time(td))
            }),
        },
        Rule {
            name: "last weekend / sk (el)".to_string(),
            pattern: vec![regex("το\\s+(περασμ(έ|ε)νο|προηγο(ύ|υ)μενο)\\s+σαββατοκ(ύ|υ)ριακο|το\\s+(περασμ(έ|ε)νο|προηγο(ύ|υ)μενο)\\s+σκ")],
            production: Box::new(|_| {
                Some(TokenData::Time(TimeData::new(TimeForm::GrainOffset {
                    grain: Grain::Week,
                    offset: -1,
                })))
            }),
        },
        Rule {
            name: "this weekend / sk (el)".to_string(),
            pattern: vec![regex("αυτ(ό|ο)\\s+το\\s+σαββατοκ(ύ|υ)ριακο|αυτ(ό|ο)\\s+το\\s+σκ")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::Weekend)))),
        },
        Rule {
            name: "last/next n cycles (el)".to_string(),
            pattern: vec![regex("(τα|τις|οι)?\\s*(τελευτα(ί|ι)α|επ(ό|ο)μενα|επ(ό|ο)μενες|επ(ό|ο)μενοι)\\s+(\\d{1,3})\\s+(δε(ύ|υ)τερα|λεπτ(ά|α)|ώρες|μ(έ|ε)ρες|βδομ(ά|α)δες|μ(ή|η)νες|χρ(ό|ο)νια)")],
            production: Box::new(|nodes| {
                let (dir, n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(2)?.to_lowercase(), m.group(5)?, m.group(6)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = n.parse().ok()?;
                let grain = if unit.starts_with("δε") {
                    Grain::Second
                } else if unit.starts_with("λεπτ") {
                    Grain::Minute
                } else if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                let past = dir.starts_with("τελευτα");
                Some(TokenData::Time(TimeData::new(TimeForm::NthGrain {
                    n: value,
                    grain,
                    past,
                    interval: true,
                })))
            }),
        },
        Rule {
            name: "τα τελευταία 2 δεύτερα (el)".to_string(),
            pattern: vec![regex("τα\\s+τελευτα(ί|ι)α\\s+(ένα|μια|μία|δύο|δυο|τρία|τρεις|\\d{1,3})\\s+(δε(ύ|υ)τερα|λεπτ(ά|α)|ώρες|μ(έ|ε)ρες|βδομ(ά|α)δες|μ(ή|η)νες|χρ(ό|ο)νια)")],
            production: Box::new(|nodes| {
                let (n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(2)?, m.group(3)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = match n {
                    "ένα" | "μια" | "μία" => 1,
                    "δύο" | "δυο" => 2,
                    "τρία" | "τρεις" => 3,
                    _ => n.parse().ok()?,
                };
                let grain = if unit.starts_with("δε") {
                    Grain::Second
                } else if unit.starts_with("λεπτ") {
                    Grain::Minute
                } else if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                Some(TokenData::Time(TimeData::new(TimeForm::NthGrain {
                    n: value,
                    grain,
                    past: true,
                    interval: true,
                })))
            }),
        },
        Rule {
            name: "τα επόμενα 3 δεύτερα (el)".to_string(),
            pattern: vec![regex("(τα|τις|οι)\\s+επ(ό|ο)μεν(α|ες|οι)\\s+(ένα|μια|μία|δύο|δυο|τρία|τρεις|\\d{1,3})\\s+(δε(ύ|υ)τερα|λεπτ(ά|α)|ώρες|μ(έ|ε)ρες|βδομ(ά|α)δες|μ(ή|η)νες|χρ(ό|ο)νια)")],
            production: Box::new(|nodes| {
                let (n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(4)?, m.group(5)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = match n {
                    "ένα" | "μια" | "μία" => 1,
                    "δύο" | "δυο" => 2,
                    "τρία" | "τρεις" => 3,
                    _ => n.parse().ok()?,
                };
                let grain = if unit.starts_with("δε") {
                    Grain::Second
                } else if unit.starts_with("λεπτ") {
                    Grain::Minute
                } else if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                Some(TokenData::Time(TimeData::new(TimeForm::NthGrain {
                    n: value,
                    grain,
                    past: false,
                    interval: true,
                })))
            }),
        },
        Rule {
            name: "η τελευταία 1 ώρα (el)".to_string(),
            pattern: vec![regex("η\\s+τελευτα(ί|ι)α\\s+(ένα|μια|μία|\\d{1,3})\\s+(ώρα|μ(έ|ε)ρα|βδομ(ά|α)δα|μ(ή|η)να|χρ(ό|ο)νο)")],
            production: Box::new(|nodes| {
                let (n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(2)?, m.group(3)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = match n {
                    "ένα" | "μια" | "μία" => 1,
                    _ => n.parse().ok()?,
                };
                let grain = if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                Some(TokenData::Time(TimeData::new(TimeForm::NthGrain {
                    n: value,
                    grain,
                    past: true,
                    interval: true,
                })))
            }),
        },
        Rule {
            name: "τελευταίες 2 μέρες (el)".to_string(),
            pattern: vec![regex("(τελευτα(ί|ι)(ες?|οι|α)|περασμ(έ|ε)(νες?|νοι|να))\\s+(\\d{1,3})\\s+(μ(έ|ε)ρες|ώρες|λεπτ(ά|α)|βδομ(ά|α)δες|εβδομ(ά|α)δες|μ(ή|η)νες|χρ(ό|ο)νια)")],
            production: Box::new(|nodes| {
                let (n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(6)?, m.group(7)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = n.parse().ok()?;
                let grain = if unit.starts_with("λεπτ") {
                    Grain::Minute
                } else if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                Some(TokenData::Time(TimeData::new(TimeForm::NthGrain {
                    n: value,
                    grain,
                    past: true,
                    interval: true,
                })))
            }),
        },
        Rule {
            name: "επόμενες τρεις μέρες (el)".to_string(),
            pattern: vec![regex("επ(ό|ο)μεν(ες?|α|οι)\\s+(ένα|μια|μία|δύο|δυο|τρία|τρεις|\\d{1,3})\\s+(μ(έ|ε)ρες|ώρες|λεπτ(ά|α)|βδομ(ά|α)δες|εβδομ(ά|α)δες|μ(ή|η)νες|χρ(ό|ο)νια)")],
            production: Box::new(|nodes| {
                let (n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(3)?, m.group(4)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = match n {
                    "ένα" | "μια" | "μία" => 1,
                    "δύο" | "δυο" => 2,
                    "τρία" | "τρεις" => 3,
                    _ => n.parse().ok()?,
                };
                let grain = if unit.starts_with("λεπτ") {
                    Grain::Minute
                } else if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                Some(TokenData::Time(TimeData::new(TimeForm::NthGrain {
                    n: value,
                    grain,
                    past: false,
                    interval: true,
                })))
            }),
        },
        Rule {
            name: "επόμενες μερικές μέρες (el)".to_string(),
            pattern: vec![regex("επ(ό|ο)μεν(ες?|α)\\s+μερικ(έ|ε)ς\\s+μ(έ|ε)ρες")],
            production: Box::new(|_| {
                Some(TokenData::Time(TimeData::new(TimeForm::NthGrain {
                    n: 3,
                    grain: Grain::Day,
                    past: false,
                    interval: true,
                })))
            }),
        },
        Rule {
            name: "μέχρι το τέλος της ημέρας/μήνα (el)".to_string(),
            pattern: vec![regex("μ(έ|ε)χρι\\s+το\\s+τ(έ|ε)λος\\s+της\\s+ημ(έ|ε)ρας|μ(έ|ε)χρι\\s+το\\s+τ(έ|ε)λος\\s+του\\s+(επ(ό|ο)μενου\\s+)?μ(ή|η)να")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                let target = if s.contains("ημ") {
                    TimeForm::GrainOffset { grain: Grain::Day, offset: 0 }
                } else if s.contains("επ") {
                    TimeForm::GrainOffset { grain: Grain::Month, offset: 1 }
                } else {
                    TimeForm::GrainOffset { grain: Grain::Month, offset: 0 }
                };
                let mut td = TimeData::new(TimeForm::BeginEnd {
                    begin: false,
                    target: Box::new(target),
                });
                td.open_interval_direction = Some(IntervalDirection::Before);
                Some(TokenData::Time(td))
            }),
        },
        Rule {
            name: "3πμ / 5μμ (el)".to_string(),
            pattern: vec![regex("στις?\\s*(\\d{1,2})(:(\\d{2}))?\\s*(πμ|μμ)|(\\d{1,2})(:(\\d{2}))?\\s*(πμ|μμ)")],
            production: Box::new(|nodes| {
                let m = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m,
                    _ => return None,
                };
                let htxt = m.group(1).or_else(|| m.group(5))?;
                let mtxt = m.group(3).or_else(|| m.group(7)).unwrap_or("0");
                let ap = m.group(4).or_else(|| m.group(8))?;
                let mut hour: u32 = htxt.parse().ok()?;
                let minute: u32 = mtxt.parse().ok()?;
                if ap == "μμ" && hour < 12 {
                    hour = hour.checked_add(12)?;
                }
                if ap == "πμ" && hour == 12 {
                    hour = 0;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, minute, false))))
            }),
        },
        Rule {
            name: "3 το πρωί / 8 το βράδυ (el)".to_string(),
            pattern: vec![regex("(\\d{1,2})(\\s+η\\s+ώρα)?\\s+το\\s+(πρω(ί|ι)|βρ(ά|α)δυ|απ(ό|ο)γευμα)")],
            production: Box::new(|nodes| {
                let (h, pod) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(1)?, m.group(3)?.to_lowercase()),
                    _ => return None,
                };
                let mut hour: u32 = h.parse().ok()?;
                if (pod.contains("βρ") || pod.contains("απ")) && hour < 12 {
                    hour = hour.checked_add(12)?;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, 0, false))))
            }),
        },
        Rule {
            name: "3:18π / 3:18μ (el)".to_string(),
            pattern: vec![regex("(\\d{1,2}):(\\d{2})(π|μ)")],
            production: Box::new(|nodes| {
                let (h, m, ap) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?, rm.group(2)?, rm.group(3)?),
                    _ => return None,
                };
                let mut hour: u32 = h.parse().ok()?;
                let minute: u32 = m.parse().ok()?;
                if ap == "π" && hour < 12 {
                    hour = hour.checked_add(12)?;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, minute, false))))
            }),
        },
        Rule {
            name: "3 η ώρα μμ/πμ (el)".to_string(),
            pattern: vec![regex("(\\d{1,2})\\s+η\\s+ώρα\\s+(μμ|πμ)")],
            production: Box::new(|nodes| {
                let (h, ap) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?, rm.group(2)?),
                    _ => return None,
                };
                let mut hour: u32 = h.parse().ok()?;
                if ap == "μμ" && hour < 12 {
                    hour = hour.checked_add(12)?;
                }
                if ap == "πμ" && hour == 12 {
                    hour = 0;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, 0, false))))
            }),
        },
        Rule {
            name: "3 και κάτι μμ (el)".to_string(),
            pattern: vec![regex("(\\d{1,2})\\s+και\\s+κ(ά|α)τι\\s+(μμ|πμ)")],
            production: Box::new(|nodes| {
                let (h, ap) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?, rm.group(3)?),
                    _ => return None,
                };
                let mut hour: u32 = h.parse().ok()?;
                if ap == "μμ" && hour < 12 {
                    hour = hour.checked_add(12)?;
                }
                if ap == "πμ" && hour == 12 {
                    hour = 0;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, 0, false))))
            }),
        },
        Rule {
            name: "3 και τέταρτο/μισή μμ (el)".to_string(),
            pattern: vec![regex("(\\d{1,2})\\s+και\\s+(τ(έ|ε)ταρτο|μισ(ή|η))\\s+(μμ|πμ)")],
            production: Box::new(|nodes| {
                let (h, part, ap) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?, rm.group(2)?.to_lowercase(), rm.group(5)?),
                    _ => return None,
                };
                let mut hour: u32 = h.parse().ok()?;
                if ap == "μμ" && hour < 12 {
                    hour = hour.checked_add(12)?;
                }
                if ap == "πμ" && hour == 12 {
                    hour = 0;
                }
                let minute = if part.contains("ταρ") { 15 } else { 30 };
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, minute, false))))
            }),
        },
        Rule {
            name: "στις 3 και 15 (el)".to_string(),
            pattern: vec![regex("στις?\\s*(\\d{1,2})\\s+και\\s+(\\d{1,2})")],
            production: Box::new(|nodes| {
                let (h, m) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?, rm.group(2)?),
                    _ => return None,
                };
                let hour: u32 = h.parse().ok()?;
                let minute: u32 = m.parse().ok()?;
                if hour > 23 || minute > 59 {
                    return None;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, minute, false))))
            }),
        },
        Rule {
            name: "στις τρεις και είκοσι (el)".to_string(),
            pattern: vec![regex("στις?\\s*(μία|μια|δύο|δυο|τρεις|τέσσερις|τέσσερες|πέντε|έξι|επτά|εφτά|οκτώ|εννιά|δέκα|έντεκα|δώδεκα)\\s+και\\s+(δέκα|είκοσι|τριάντα|σαράντα|πενήντα)")],
            production: Box::new(|nodes| {
                let (h, m) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?.to_lowercase(), rm.group(2)?.to_lowercase()),
                    _ => return None,
                };
                let hour = match h.as_str() {
                    "μία" | "μια" => 1,
                    "δύο" | "δυο" => 2,
                    "τρεις" => 3,
                    "τέσσερις" | "τέσσερες" => 4,
                    "πέντε" => 5,
                    "έξι" => 6,
                    "επτά" | "εφτά" => 7,
                    "οκτώ" => 8,
                    "εννιά" => 9,
                    "δέκα" => 10,
                    "έντεκα" => 11,
                    "δώδεκα" => 12,
                    _ => return None,
                };
                let minute = match m.as_str() {
                    "δέκα" => 10,
                    "είκοσι" => 20,
                    "τριάντα" => 30,
                    "σαράντα" => 40,
                    "πενήντα" => 50,
                    _ => return None,
                };
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, minute, false))))
            }),
        },
        Rule {
            name: "στις τρεις και μισή μμ (el)".to_string(),
            pattern: vec![regex("στις?\\s*(μία|μια|δύο|δυο|τρεις|τέσσερις|τέσσερες|πέντε|έξι|επτά|εφτά|οκτώ|εννιά|δέκα|έντεκα|δώδεκα)\\s+και\\s+μισ(ή|η)\\s+(μμ|πμ)")],
            production: Box::new(|nodes| {
                let (h, ap) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?.to_lowercase(), rm.group(3)?),
                    _ => return None,
                };
                let mut hour: u32 = match h.as_str() {
                    "μία" | "μια" => 1,
                    "δύο" | "δυο" => 2,
                    "τρεις" => 3,
                    "τέσσερις" | "τέσσερες" => 4,
                    "πέντε" => 5,
                    "έξι" => 6,
                    "επτά" | "εφτά" => 7,
                    "οκτώ" => 8,
                    "εννιά" => 9,
                    "δέκα" => 10,
                    "έντεκα" => 11,
                    "δώδεκα" => 12,
                    _ => return None,
                };
                if ap == "μμ" && hour < 12 {
                    hour = hour.checked_add(12)?;
                }
                if ap == "πμ" && hour == 12 {
                    hour = 0;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, 30, false))))
            }),
        },
        Rule {
            name: "τρεισήμισι μμ (el)".to_string(),
            pattern: vec![regex("τρεισ(ή|η)μισι\\s+(μμ|πμ)")],
            production: Box::new(|nodes| {
                let ap = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => rm.group(2)?,
                    _ => return None,
                };
                let hour = if ap == "μμ" { 15 } else { 3 };
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, 30, false))))
            }),
        },
        Rule {
            name: "330 μ.μ. (el)".to_string(),
            pattern: vec![regex("([1-9])(\\d{2})\\s*(μ\\.?μ\\.?|π\\.?μ\\.?)")],
            production: Box::new(|nodes| {
                let (h, m, ap) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?, rm.group(2)?, rm.group(3)?),
                    _ => return None,
                };
                let mut hour: u32 = h.parse().ok()?;
                let minute: u32 = m.parse().ok()?;
                if ap.starts_with('μ') && hour < 12 {
                    hour = hour.checked_add(12)?;
                }
                if ap.starts_with('π') && hour == 12 {
                    hour = 0;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, minute, false))))
            }),
        },
        Rule {
            name: "τρεις και μισή (el)".to_string(),
            pattern: vec![regex("(μία|μια|δύο|δυο|τρεις|τέσσερις|τέσσερες|πέντε|έξι|επτά|εφτά|οκτώ|εννιά|δέκα|έντεκα|δώδεκα)\\s+και\\s+μισ(ή|η)")],
            production: Box::new(|nodes| {
                let h = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => rm.group(1)?.to_lowercase(),
                    _ => return None,
                };
                let hour = match h.as_str() {
                    "μία" | "μια" => 1,
                    "δύο" | "δυο" => 2,
                    "τρεις" => 3,
                    "τέσσερις" | "τέσσερες" => 4,
                    "πέντε" => 5,
                    "έξι" => 6,
                    "επτά" | "εφτά" => 7,
                    "οκτώ" => 8,
                    "εννιά" => 9,
                    "δέκα" => 10,
                    "έντεκα" => 11,
                    "δώδεκα" => 12,
                    _ => return None,
                };
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, 30, true))))
            }),
        },
        Rule {
            name: "quarter before noon (el)".to_string(),
            pattern: vec![regex("ένα\\s+τ(έ|ε)ταρτο\\s+πριν\\s+το\\s+μεσημ(έ|ε)ρι")],
            production: Box::new(|_| Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(11, 45, false))))),
        },
        Rule {
            name: "tonight at 8 (el)".to_string(),
            pattern: vec![regex("απ(ό|ο)ψε\\s+στις\\s*(\\d{1,2})|σ(ή|η)μερα\\s+το\\s+βρ(ά|α)δυ\\s+στις\\s*(\\d{1,2})")],
            production: Box::new(|nodes| {
                let h = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(2).or_else(|| m.group(4))?,
                    _ => return None,
                };
                let mut hour: u32 = h.parse().ok()?;
                if hour < 12 {
                    hour = hour.checked_add(12)?;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, 0, false))))
            }),
        },
        Rule {
            name: "σε ένα/δύο <cycle> (el)".to_string(),
            pattern: vec![regex("σε\\s+(ένα|μια|μία|δύο|δυο|τρία|τρεις|\\d{1,3})\\s+(δε(ύ|υ)τερ(ο|α)?|λεπτ(ό|ο|ά|α)|ώρ(α|ες)|μ(έ|ε)ρ(α|ες)|βδομ(ά|α)δ(α|ες)|εβδομ(ά|α)δ(α|ες)|μ(ή|η)ν(α|ες)|χρ(ό|ο)ν(ο|ια))")],
            production: Box::new(|nodes| {
                let (n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(1)?, m.group(2)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = match n {
                    "ένα" | "μια" | "μία" => 1,
                    "δύο" | "δυο" => 2,
                    "τρία" | "τρεις" => 3,
                    _ => n.parse().ok()?,
                };
                let grain = if unit.starts_with("δε") {
                    Grain::Second
                } else if unit.starts_with("λεπτ") {
                    Grain::Minute
                } else if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain { n: value, grain })))
            }),
        },
        Rule {
            name: "πριν από <n> <cycle> (el)".to_string(),
            pattern: vec![regex("πριν\\s+απ(ό|ο)\\s+(ένα|μια|μία|δύο|δυο|τρία|τρεις|\\d{1,3})\\s+(χρ(ό|ο)νια|χρ(ό|ο)νο|εβδομ(ά|α)δες|εβδομ(ά|α)δα|βδομ(ά|α)δες|βδομ(ά|α)δα|μ(ή|η)νες|μ(ή|η)να|μ(έ|ε)ρες|μ(έ|ε)ρα|ώρες|ώρα|λεπτ(ά|α)|λεπτ(ό|ο)|δε(ύ|υ)τερα|δε(ύ|υ)τερο)")],
            production: Box::new(|nodes| {
                let (n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(2)?, m.group(3)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = match n {
                    "ένα" | "μια" => 1,
                    "δύο" | "δυο" => 2,
                    "τρία" | "τρεις" => 3,
                    _ => n.parse().ok()?,
                };
                let grain = if unit.starts_with("δε") {
                    Grain::Second
                } else if unit.starts_with("λεπτ") {
                    Grain::Minute
                } else if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: value.checked_neg()?,
                    grain,
                })))
            }),
        },
        Rule {
            name: "<n> <cycle> πριν (el)".to_string(),
            pattern: vec![regex("(\\d{1,3})\\s+(χρ(ό|ο)νια|εβδομ(ά|α)δες|μ(ή|η)νες|μ(έ|ε)ρες|ώρες|λεπτ(ά|α)|δε(ύ|υ)τερα)\\s+πριν")],
            production: Box::new(|nodes| {
                let (n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(1)?, m.group(2)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = n.parse().ok()?;
                let grain = if unit.starts_with("δε") {
                    Grain::Second
                } else if unit.starts_with("λεπτ") {
                    Grain::Minute
                } else if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: value.checked_neg()?,
                    grain,
                })))
            }),
        },
        Rule {
            name: "εδώ και <n> <cycle> (el)".to_string(),
            pattern: vec![regex("εδ(ώ|ω)\\s+και\\s+(ένα|μια|μία|δύο|δυο|τρία|τρεις|\\d{1,3})\\s+(χρ(ό|ο)νια|χρ(ό|ο)νο|εβδομ(ά|α)δες|εβδομ(ά|α)δα|βδομ(ά|α)δες|βδομ(ά|α)δα|μ(ή|η)νες|μ(ή|η)να|μ(έ|ε)ρες|μ(έ|ε)ρα|ώρες|ώρα|λεπτ(ά|α)|λεπτ(ό|ο)|δε(ύ|υ)τερα|δε(ύ|υ)τερο)")],
            production: Box::new(|nodes| {
                let (n, unit) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(2)?, m.group(3)?.to_lowercase()),
                    _ => return None,
                };
                let value: i64 = match n {
                    "ένα" | "μια" | "μία" => 1,
                    "δύο" | "δυο" => 2,
                    "τρία" | "τρεις" => 3,
                    _ => n.parse().ok()?,
                };
                let grain = if unit.starts_with("δε") {
                    Grain::Second
                } else if unit.starts_with("λεπτ") {
                    Grain::Minute
                } else if unit.starts_with("ώ") || unit.starts_with("ω") {
                    Grain::Hour
                } else if unit.starts_with("μ") && unit.contains("ερ") {
                    Grain::Day
                } else if unit.contains("βδομ") {
                    Grain::Week
                } else if unit.starts_with("μ") && unit.contains("ην") {
                    Grain::Month
                } else {
                    Grain::Year
                };
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: value.checked_neg()?,
                    grain,
                })))
            }),
        },
        Rule {
            name: "σε 1\" / σε 2' (el)".to_string(),
            pattern: vec![regex("σε\\s*(\\d{1,3})\\s*([\"'])")],
            production: Box::new(|nodes| {
                let (n, sym) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(1)?, m.group(2)?),
                    _ => return None,
                };
                let value: i64 = n.parse().ok()?;
                let grain = if sym == "\"" {
                    Grain::Second
                } else {
                    Grain::Minute
                };
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain { n: value, grain })))
            }),
        },
        Rule {
            name: "20 λεπτά πριν τις 12 (el)".to_string(),
            pattern: vec![regex("(\\d{1,2})\\s+λεπτ(ά|α)\\s+πριν\\s+τις\\s+(\\d{1,2})")],
            production: Box::new(|nodes| {
                let (m, h) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?, rm.group(3)?),
                    _ => return None,
                };
                let mins: u32 = m.parse().ok()?;
                let hour: u32 = h.parse().ok()?;
                if mins >= 60 || !(1..=24).contains(&hour) {
                    return None;
                }
                let out_hour = if hour == 24 { 23 } else { hour.checked_sub(1)? };
                let out_min = 60_u32.checked_sub(mins)?;
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(out_hour, out_min, false))))
            }),
        },
        Rule {
            name: "20 λεπτά μετά τις 12 (el)".to_string(),
            pattern: vec![regex("(\\d{1,2})\\s+λεπτ(ά|α)\\s+μετ(ά|α)\\s+τις\\s+(\\d{1,2})")],
            production: Box::new(|nodes| {
                let (m, h) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?, rm.group(3)?),
                    _ => return None,
                };
                let mins: u32 = m.parse().ok()?;
                let hour: u32 = h.parse().ok()?;
                if mins >= 60 || hour > 23 {
                    return None;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, mins, false))))
            }),
        },
        Rule {
            name: "minutes after hour fallback (el)".to_string(),
            pattern: vec![regex("(\\d{1,2})\\s*λεπτ.*\\s*μετ.*\\s*τις\\s*(\\d{1,2})")],
            production: Box::new(|nodes| {
                let (m, h) = match &nodes[0].token_data {
                    TokenData::RegexMatch(rm) => (rm.group(1)?, rm.group(2)?),
                    _ => return None,
                };
                let mins: u32 = m.parse().ok()?;
                let hour: u32 = h.parse().ok()?;
                if mins >= 60 || hour > 23 {
                    return None;
                }
                Some(TokenData::Time(TimeData::new(TimeForm::HourMinute(hour, mins, false))))
            }),
        },
        Rule {
            name: "in a few minutes/days (el)".to_string(),
            pattern: vec![regex("σε\\s+μερικ(ά|α)\\s+λεπτ(ά|α)|σε\\s+μερικ(έ|ε)ς\\s+μ(έ|ε)ρες|σε\\s+μερικ(έ|ε)ς\\s+ώρες")],
            production: Box::new(|nodes| {
                let s = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(0)?.to_lowercase(),
                    _ => return None,
                };
                let (n, grain) = if s.contains("λεπτ") {
                    (3, Grain::Minute)
                } else if s.contains("ώρ") || s.contains("ωρ") {
                    (3, Grain::Hour)
                } else {
                    (3, Grain::Day)
                };
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain { n, grain })))
            }),
        },
        Rule {
            name: "in a quarter of an hour (el)".to_string(),
            pattern: vec![regex("σε\\s+ένα\\s+τ(έ|ε)ταρτο\\s+της\\s+ώρας")],
            production: Box::new(|_| {
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: 15,
                    grain: Grain::Minute,
                })))
            }),
        },
        Rule {
            name: "σε 1/4ω (el)".to_string(),
            pattern: vec![regex("σε\\s*1/4\\s*ω")],
            production: Box::new(|_| {
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: 15,
                    grain: Grain::Minute,
                })))
            }),
        },
        Rule {
            name: "σε 1ω (el)".to_string(),
            pattern: vec![regex("σε\\s*(\\d{1,3})\\s*ω")],
            production: Box::new(|nodes| {
                let n = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(1)?,
                    _ => return None,
                };
                let h: i64 = n.parse().ok()?;
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: h,
                    grain: Grain::Hour,
                })))
            }),
        },
        Rule {
            name: "σε μισή ώρα (el)".to_string(),
            pattern: vec![regex("σε\\s+(περ(ί|ι)που\\s+)?μισ(ή|η)\\s+ώρα")],
            production: Box::new(|_| {
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: 30,
                    grain: Grain::Minute,
                })))
            }),
        },
        Rule {
            name: "σε 1/2ω (el)".to_string(),
            pattern: vec![regex("σε\\s*1/2\\s*ω")],
            production: Box::new(|_| {
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: 30,
                    grain: Grain::Minute,
                })))
            }),
        },
        Rule {
            name: "σε 3/4ω (el)".to_string(),
            pattern: vec![regex("σε\\s*(3/4\\s*(ω|της\\s+ώρας)|τρία\\s+τ(έ|ε)ταρτα\\s+της\\s+ώρας)")],
            production: Box::new(|_| {
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: 45,
                    grain: Grain::Minute,
                })))
            }),
        },
        Rule {
            name: "σε 2,5 ώρες (el)".to_string(),
            pattern: vec![regex("σε\\s*(\\d+),(\\d+)\\s+ώρες")],
            production: Box::new(|nodes| {
                let (h, frac) = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => (m.group(1)?, m.group(2)?),
                    _ => return None,
                };
                let hh: i64 = h.parse().ok()?;
                let num: i64 = frac.parse().ok()?;
                let den = 10_i64.pow(frac.len() as u32);
                let minutes = hh.checked_mul(60)?.checked_add(num.checked_mul(60)?.checked_div(den)?)?;
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: minutes,
                    grain: Grain::Minute,
                })))
            }),
        },
        Rule {
            name: "σε 2 και μισή ώρες (el)".to_string(),
            pattern: vec![regex("σε\\s*(\\d+)\\s+και\\s+μισ(ή|η)\\s+ώρες")],
            production: Box::new(|nodes| {
                let h = match &nodes[0].token_data {
                    TokenData::RegexMatch(m) => m.group(1)?,
                    _ => return None,
                };
                let hh: i64 = h.parse().ok()?;
                Some(TokenData::Time(TimeData::new(TimeForm::RelativeGrain {
                    n: hh.checked_mul(60)?.checked_add(30)?,
                    grain: Grain::Minute,
                })))
            }),
        },
    ]);
    rules
}