tpmkms_4wp 9.3.0-beta.5 → 9.3.0-beta.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/common/animals.instance.json +0 -65
  2. package/common/asking.js +16 -2
  3. package/common/colors.instance.json +28 -70
  4. package/common/comparable.instance.json +0 -15
  5. package/common/concept.test.json +279 -193
  6. package/common/crew.instance.json +0 -166
  7. package/common/dateTimeSelectors.instance.json +151 -0
  8. package/common/dateTimeSelectors.js +171 -0
  9. package/common/dateTimeSelectors.test.json +85622 -0
  10. package/common/dates.instance.json +285 -479
  11. package/common/dates.js +111 -10
  12. package/common/dates.test.json +11021 -514
  13. package/common/dialogues.js +8 -46
  14. package/common/dimension.instance.json +0 -5
  15. package/common/edible.instance.json +56 -160
  16. package/common/emotions.instance.json +0 -5
  17. package/common/evaluate.js +1 -1
  18. package/common/events.js +1 -1
  19. package/common/fastfood.instance.json +149 -880
  20. package/common/fastfood.test.json +16291 -6597
  21. package/common/formulas.instance.json +0 -5
  22. package/common/helpers/dateTimeSelectors.js +198 -0
  23. package/common/helpers/dialogues.js +11 -8
  24. package/common/helpers/properties.js +2 -2
  25. package/common/helpers.js +57 -32
  26. package/common/hierarchy.js +9 -9
  27. package/common/kirk.instance.json +0 -5
  28. package/common/length.instance.json +0 -75
  29. package/common/math.instance.json +0 -5
  30. package/common/menus.instance.json +0 -35
  31. package/common/meta.js +2 -2
  32. package/common/numbers.js +1 -1
  33. package/common/numbers.test.json +89 -23
  34. package/common/ordering.instance.json +0 -10
  35. package/common/people.instance.json +36 -40
  36. package/common/percentages.js +1 -1
  37. package/common/pipboy.instance.json +56 -85
  38. package/common/pipboy.test.json +4377 -3386
  39. package/common/pokemon.instance.json +0 -65
  40. package/common/pressure.instance.json +0 -20
  41. package/common/properties.instance.json +0 -5
  42. package/common/properties.js +4 -4
  43. package/common/reminders.instance.json +196 -10
  44. package/common/reminders.js +273 -79
  45. package/common/reminders.test.json +71435 -23
  46. package/common/reports.instance.json +2 -12
  47. package/common/scorekeeper.test.json +3565 -7550
  48. package/common/spock.instance.json +0 -5
  49. package/common/temperature.instance.json +112 -20
  50. package/common/time.js +63 -30
  51. package/common/time.test.json +4124 -124
  52. package/common/ui.instance.json +0 -5
  53. package/common/ui.js +3 -1
  54. package/common/weight.instance.json +0 -60
  55. package/common/wp.instance.json +56 -70
  56. package/common/wp.test.json +8057 -3867
  57. package/main.js +2 -0
  58. package/package.json +8 -4
@@ -1,7 +1,13 @@
1
1
  {
2
2
  "configs": [
3
3
  "setidsuffix _dates",
4
+ {
5
+ "apply": "({config}) => {\n const months = [\"january\", \"february\", \"march\", \"april\", \"may\", \"june\", \"july\", \"august\", \"september\", \"october\", \"november\", \"december\"]\n config.addSemantic({\n match: ({context}) => {\n if (!context.makeObject) {\n return\n }\n return months.includes(context.value)\n },\n apply: ({context}) => {\n context.initial.month_ordinal = months.findIndex((month) => month == context.value) + 1\n },\n })\n }"
6
+ },
4
7
  "january, february, march, april, may, june, july, august, september, october, november and december are months",
8
+ {
9
+ "apply": "({config}) => {\n const days = [\"sunday\", \"monday\", \"tuesday\", \"wednesday\", \"thursday\", \"friday\", \"saturday\"]\n config.addSemantic({\n match: ({context}) => {\n if (!context.makeObject) {\n return\n }\n return days.includes(context.value)\n },\n apply: ({context}) => {\n context.initial.day_ordinal = days.findIndex((day) => day == context.value) + 1\n },\n })\n }"
10
+ },
5
11
  "monday, tuesday, wednesday, thursday, friday, saturday and sunday are days",
6
12
  "ac, bc, bce and ad are eras",
7
13
  {
@@ -13,9 +19,12 @@
13
19
  "([era_dates|])",
14
20
  "([date_dates|])",
15
21
  "([dateEra_dates] (date_dates/*) (era_dates/*))",
22
+ "([monthDay_dates] (month_dates/*) (dayNumber_dates/*))",
16
23
  "([monthYear_dates] (month_dates/*) (yearNumber_dates/*))",
17
24
  "([monthDayYear_dates] (month_dates/*) (dayNumber_dates/*) (yearNumber_dates/*))",
18
- "([monthDayYearWithSlashes_dates] (monthNumber_dates/*) (dateSeparator_dates/*) (dayNumber_dates/*) (dateSeparator_dates/*) (yearNumber_dates/*))"
25
+ "([monthDayYearWithSlashes_dates] (monthNumber_dates/*) (dateSeparator_dates/*) (dayNumber_dates/*) (dateSeparator_dates/*) (yearNumber_dates/*))",
26
+ "([onDate_dates|on] ([onDateValue_dates|]))",
27
+ "([afterDate_dates|after] ([afterDateValue_dates|]))"
19
28
  ],
20
29
  "associations": {
21
30
  "positive": [
@@ -41,6 +50,34 @@
41
50
  ]
42
51
  ],
43
52
  "bridges": [
53
+ {
54
+ "id": "onDateValue_dates",
55
+ "children": [
56
+ "day_dates",
57
+ "month_dates"
58
+ ]
59
+ },
60
+ {
61
+ "id": "onDate_dates",
62
+ "isA": [
63
+ "preposition"
64
+ ],
65
+ "bridge": "{ ...next(operator), date: after[0], onDate: operator, interpolate: '${onDate} ${date}' }"
66
+ },
67
+ {
68
+ "id": "afterDateValue_dates",
69
+ "children": [
70
+ "day_dates",
71
+ "month_dates"
72
+ ]
73
+ },
74
+ {
75
+ "id": "afterDate_dates",
76
+ "isA": [
77
+ "preposition"
78
+ ],
79
+ "bridge": "{ ...next(operator), date: after[0], afterDate: operator, interpolate: '${afterDate} ${date}' }"
80
+ },
44
81
  {
45
82
  "id": "era_dates",
46
83
  "words": [
@@ -54,6 +91,10 @@
54
91
  "date",
55
92
  "distributable"
56
93
  ],
94
+ "isA": [
95
+ "onDateValue_dates",
96
+ "afterDateValue_dates"
97
+ ],
57
98
  "bridge": "{ ...next(operator) }"
58
99
  },
59
100
  {
@@ -76,6 +117,9 @@
76
117
  "isA": [
77
118
  "date_dates"
78
119
  ],
120
+ "before": [
121
+ "preposition"
122
+ ],
79
123
  "convolution": true,
80
124
  "bridge": "{ ...next(operator), day: after[2], month: after[0], year: after[4], interpolate: '${month}/${day}/${year}' }"
81
125
  },
@@ -100,9 +144,29 @@
100
144
  ],
101
145
  "bridge": "{ ...next(operator) }"
102
146
  },
147
+ {
148
+ "id": "monthDay_dates",
149
+ "convolution": true,
150
+ "localHierarchy": [
151
+ [
152
+ "ordinal",
153
+ "dayNumber_dates"
154
+ ]
155
+ ],
156
+ "before": [
157
+ "preposition"
158
+ ],
159
+ "isA": [
160
+ "date_dates"
161
+ ],
162
+ "bridge": "{ ...next(operator), month: after[0], day: after[1], interpolate: '${month} ${day}' }"
163
+ },
103
164
  {
104
165
  "id": "monthYear_dates",
105
166
  "convolution": true,
167
+ "before": [
168
+ "preposition"
169
+ ],
106
170
  "isA": [
107
171
  "date_dates"
108
172
  ],
@@ -111,9 +175,14 @@
111
175
  {
112
176
  "id": "monthDayYear_dates",
113
177
  "convolution": true,
178
+ "before": [
179
+ "preposition",
180
+ "monthDay_dates"
181
+ ],
114
182
  "isA": [
115
183
  "date_dates"
116
184
  ],
185
+ "evaluator": "({context}) => {\n const year = context.year.value\n const day = context.day.value\n const month_ordinal = context.month.month_ordinal\n context.evalue = new Date(year, month_ordinal-1, day).toISOString()\n }",
117
186
  "localHierarchy": [
118
187
  [
119
188
  "ordinal",
@@ -183,7 +252,7 @@
183
252
  }
184
253
  },
185
254
  {
186
- "apply": "(args) => {\n const as = ['jan', 'feb', 'mar', 'apr', 'jun', 'jul', 'aug', 'sept', 'oct', 'nov', 'dec']\n const ms = ['january', 'february', 'march', 'april', 'june', 'july', 'august', 'september', 'october', 'november', 'december']\n for (let i = 0; i < as.length; ++i) {\n args.makeObject({...args, context: { word: as[i], value: `${as[i]}_dates`}, types: [`${ms[i]}_dates`]})\n }\n\n /*\n const word = 'bc'\n const synonym = 'bce'\n args.makeObject({...args, context: { word: synonym, value: `${synonym}_dates`}, types: [`${word}_dates`]})\n */\n }"
255
+ "apply": "(args) => {\n {\n const as = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sept', 'oct', 'nov', 'dec']\n const ms = ['january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november', 'december']\n // args.makeObject({...args, context: { word: as[i], value: `${ms[i]}_dates`}, types: [`${ms[i]}_dates`]})\n for (let i = 0; i < as.length; ++i) {\n const word = as[i]\n if (word == 'may') {\n continue\n }\n const id = `${ms[i]}_dates`\n args.addWords(id, word, { value: id, abbreviation: word, month_ordinal: i+1 })\n }\n }\n\n {\n const as = ['sun', 'mon', 'tues', 'weds', 'thurs', 'fri', 'sat']\n const ms = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday']\n // args.makeObject({...args, context: { word: as[i], value: `${ms[i]}_dates`}, types: [`${ms[i]}_dates`]})\n for (let i = 0; i < as.length; ++i) {\n const word = as[i]\n const id = `${ms[i]}_dates`\n args.addWords(id, word, { value: id, abbreviation: word, day_ordinal: i+1 })\n }\n }\n\n }"
187
256
  },
188
257
  "resetIdSuffix"
189
258
  ],
@@ -245,11 +314,6 @@
245
314
  "article",
246
315
  false
247
316
  ],
248
- [
249
- "evaluate",
250
- "verb",
251
- false
252
- ],
253
317
  [
254
318
  "every",
255
319
  "article",
@@ -712,6 +776,9 @@
712
776
  "query": "setidsuffix _dates"
713
777
  }
714
778
  },
779
+ {
780
+ "apply": "({config}) => {\n const months = [\"january\", \"february\", \"march\", \"april\", \"may\", \"june\", \"july\", \"august\", \"september\", \"october\", \"november\", \"december\"]\n config.addSemantic({\n match: ({context}) => {\n if (!context.makeObject) {\n return\n }\n return months.includes(context.value)\n },\n apply: ({context}) => {\n context.initial.month_ordinal = months.findIndex((month) => month == context.value) + 1\n },\n })\n }"
781
+ },
715
782
  {
716
783
  "hierarchy": [
717
784
  [
@@ -769,11 +836,6 @@
769
836
  "article",
770
837
  false
771
838
  ],
772
- [
773
- "evaluate",
774
- "verb",
775
- false
776
- ],
777
839
  [
778
840
  "every",
779
841
  "article",
@@ -3225,6 +3287,20 @@
3225
3287
  0
3226
3288
  ]
3227
3289
  ],
3290
+ [
3291
+ [
3292
+ "is",
3293
+ 0
3294
+ ],
3295
+ [
3296
+ "list",
3297
+ 1
3298
+ ],
3299
+ [
3300
+ "unknown",
3301
+ 0
3302
+ ]
3303
+ ],
3228
3304
  [
3229
3305
  [
3230
3306
  "is",
@@ -9689,6 +9765,9 @@
9689
9765
  "query": "january, february, march, april, may, june, july, august, september, october, november and december are months"
9690
9766
  }
9691
9767
  },
9768
+ {
9769
+ "apply": "({config}) => {\n const days = [\"sunday\", \"monday\", \"tuesday\", \"wednesday\", \"thursday\", \"friday\", \"saturday\"]\n config.addSemantic({\n match: ({context}) => {\n if (!context.makeObject) {\n return\n }\n return days.includes(context.value)\n },\n apply: ({context}) => {\n context.initial.day_ordinal = days.findIndex((day) => day == context.value) + 1\n },\n })\n }"
9770
+ },
9692
9771
  {
9693
9772
  "hierarchy": [
9694
9773
  [
@@ -9866,11 +9945,6 @@
9866
9945
  "article",
9867
9946
  false
9868
9947
  ],
9869
- [
9870
- "evaluate",
9871
- "verb",
9872
- false
9873
- ],
9874
9948
  [
9875
9949
  "every",
9876
9950
  "article",
@@ -11577,6 +11651,20 @@
11577
11651
  0
11578
11652
  ]
11579
11653
  ],
11654
+ [
11655
+ [
11656
+ "is",
11657
+ 0
11658
+ ],
11659
+ [
11660
+ "list",
11661
+ 1
11662
+ ],
11663
+ [
11664
+ "unknown",
11665
+ 0
11666
+ ]
11667
+ ],
11580
11668
  [
11581
11669
  [
11582
11670
  "is",
@@ -14178,11 +14266,6 @@
14178
14266
  "article",
14179
14267
  false
14180
14268
  ],
14181
- [
14182
- "evaluate",
14183
- "verb",
14184
- false
14185
- ],
14186
14269
  [
14187
14270
  "every",
14188
14271
  "article",
@@ -15671,6 +15754,20 @@
15671
15754
  0
15672
15755
  ]
15673
15756
  ],
15757
+ [
15758
+ [
15759
+ "is",
15760
+ 0
15761
+ ],
15762
+ [
15763
+ "list",
15764
+ 1
15765
+ ],
15766
+ [
15767
+ "unknown",
15768
+ 0
15769
+ ]
15770
+ ],
15674
15771
  [
15675
15772
  [
15676
15773
  "is",
@@ -16585,9 +16682,12 @@
16585
16682
  "([era_dates|])",
16586
16683
  "([date_dates|])",
16587
16684
  "([dateEra_dates] (date_dates/*) (era_dates/*))",
16685
+ "([monthDay_dates] (month_dates/*) (dayNumber_dates/*))",
16588
16686
  "([monthYear_dates] (month_dates/*) (yearNumber_dates/*))",
16589
16687
  "([monthDayYear_dates] (month_dates/*) (dayNumber_dates/*) (yearNumber_dates/*))",
16590
- "([monthDayYearWithSlashes_dates] (monthNumber_dates/*) (dateSeparator_dates/*) (dayNumber_dates/*) (dateSeparator_dates/*) (yearNumber_dates/*))"
16688
+ "([monthDayYearWithSlashes_dates] (monthNumber_dates/*) (dateSeparator_dates/*) (dayNumber_dates/*) (dateSeparator_dates/*) (yearNumber_dates/*))",
16689
+ "([onDate_dates|on] ([onDateValue_dates|]))",
16690
+ "([afterDate_dates|after] ([afterDateValue_dates|]))"
16591
16691
  ],
16592
16692
  "associations": {
16593
16693
  "positive": [
@@ -16613,6 +16713,34 @@
16613
16713
  ]
16614
16714
  ],
16615
16715
  "bridges": [
16716
+ {
16717
+ "id": "onDateValue_dates",
16718
+ "children": [
16719
+ "day_dates",
16720
+ "month_dates"
16721
+ ]
16722
+ },
16723
+ {
16724
+ "id": "onDate_dates",
16725
+ "isA": [
16726
+ "preposition"
16727
+ ],
16728
+ "bridge": "{ ...next(operator), date: after[0], onDate: operator, interpolate: '${onDate} ${date}' }"
16729
+ },
16730
+ {
16731
+ "id": "afterDateValue_dates",
16732
+ "children": [
16733
+ "day_dates",
16734
+ "month_dates"
16735
+ ]
16736
+ },
16737
+ {
16738
+ "id": "afterDate_dates",
16739
+ "isA": [
16740
+ "preposition"
16741
+ ],
16742
+ "bridge": "{ ...next(operator), date: after[0], afterDate: operator, interpolate: '${afterDate} ${date}' }"
16743
+ },
16616
16744
  {
16617
16745
  "id": "era_dates",
16618
16746
  "words": [
@@ -16626,6 +16754,10 @@
16626
16754
  "date",
16627
16755
  "distributable"
16628
16756
  ],
16757
+ "isA": [
16758
+ "onDateValue_dates",
16759
+ "afterDateValue_dates"
16760
+ ],
16629
16761
  "bridge": "{ ...next(operator) }"
16630
16762
  },
16631
16763
  {
@@ -16648,6 +16780,9 @@
16648
16780
  "isA": [
16649
16781
  "date_dates"
16650
16782
  ],
16783
+ "before": [
16784
+ "preposition"
16785
+ ],
16651
16786
  "convolution": true,
16652
16787
  "bridge": "{ ...next(operator), day: after[2], month: after[0], year: after[4], interpolate: '${month}/${day}/${year}' }"
16653
16788
  },
@@ -16672,9 +16807,29 @@
16672
16807
  ],
16673
16808
  "bridge": "{ ...next(operator) }"
16674
16809
  },
16810
+ {
16811
+ "id": "monthDay_dates",
16812
+ "convolution": true,
16813
+ "localHierarchy": [
16814
+ [
16815
+ "ordinal",
16816
+ "dayNumber_dates"
16817
+ ]
16818
+ ],
16819
+ "before": [
16820
+ "preposition"
16821
+ ],
16822
+ "isA": [
16823
+ "date_dates"
16824
+ ],
16825
+ "bridge": "{ ...next(operator), month: after[0], day: after[1], interpolate: '${month} ${day}' }"
16826
+ },
16675
16827
  {
16676
16828
  "id": "monthYear_dates",
16677
16829
  "convolution": true,
16830
+ "before": [
16831
+ "preposition"
16832
+ ],
16678
16833
  "isA": [
16679
16834
  "date_dates"
16680
16835
  ],
@@ -16683,6 +16838,10 @@
16683
16838
  {
16684
16839
  "id": "monthDayYear_dates",
16685
16840
  "convolution": true,
16841
+ "before": [
16842
+ "preposition",
16843
+ "monthDay_dates"
16844
+ ],
16686
16845
  "isA": [
16687
16846
  "date_dates"
16688
16847
  ],
@@ -16755,7 +16914,7 @@
16755
16914
  }
16756
16915
  },
16757
16916
  {
16758
- "apply": "(args) => {\n const as = ['jan', 'feb', 'mar', 'apr', 'jun', 'jul', 'aug', 'sept', 'oct', 'nov', 'dec']\n const ms = ['january', 'february', 'march', 'april', 'june', 'july', 'august', 'september', 'october', 'november', 'december']\n for (let i = 0; i < as.length; ++i) {\n args.makeObject({...args, context: { word: as[i], value: `${as[i]}_dates`}, types: [`${ms[i]}_dates`]})\n }\n\n /*\n const word = 'bc'\n const synonym = 'bce'\n args.makeObject({...args, context: { word: synonym, value: `${synonym}_dates`}, types: [`${word}_dates`]})\n */\n }"
16917
+ "apply": "(args) => {\n {\n const as = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sept', 'oct', 'nov', 'dec']\n const ms = ['january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november', 'december']\n // args.makeObject({...args, context: { word: as[i], value: `${ms[i]}_dates`}, types: [`${ms[i]}_dates`]})\n for (let i = 0; i < as.length; ++i) {\n const word = as[i]\n if (word == 'may') {\n continue\n }\n const id = `${ms[i]}_dates`\n args.addWords(id, word, { value: id, abbreviation: word, month_ordinal: i+1 })\n }\n }\n\n {\n const as = ['sun', 'mon', 'tues', 'weds', 'thurs', 'fri', 'sat']\n const ms = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday']\n // args.makeObject({...args, context: { word: as[i], value: `${ms[i]}_dates`}, types: [`${ms[i]}_dates`]})\n for (let i = 0; i < as.length; ++i) {\n const word = as[i]\n const id = `${ms[i]}_dates`\n args.addWords(id, word, { value: id, abbreviation: word, day_ordinal: i+1 })\n }\n }\n\n }"
16759
16918
  },
16760
16919
  {
16761
16920
  "hierarchy": [
@@ -16850,43 +17009,13 @@
16850
17009
  false
16851
17010
  ],
16852
17011
  [
16853
- "apr_dates",
16854
- "april_dates",
16855
- false
16856
- ],
16857
- [
16858
- "apr_dates",
16859
- "hierarchyAble",
16860
- false
16861
- ],
16862
- [
16863
- "apr_dates",
16864
- "isEdee",
16865
- false
16866
- ],
16867
- [
16868
- "apr_dates",
16869
- "isEder",
16870
- false
16871
- ],
16872
- [
16873
- "apr_dates",
16874
- "object",
16875
- false
16876
- ],
16877
- [
16878
- "apr_dates",
16879
- "property",
16880
- false
16881
- ],
16882
- [
16883
- "apr_dates",
16884
- "queryable",
17012
+ "afterDateValue_dates",
17013
+ "afterDateValue_dates",
16885
17014
  false
16886
17015
  ],
16887
17016
  [
16888
- "apr_dates",
16889
- "theAble",
17017
+ "afterDate_dates",
17018
+ "preposition",
16890
17019
  false
16891
17020
  ],
16892
17021
  [
@@ -16934,46 +17063,6 @@
16934
17063
  "article",
16935
17064
  false
16936
17065
  ],
16937
- [
16938
- "aug_dates",
16939
- "august_dates",
16940
- false
16941
- ],
16942
- [
16943
- "aug_dates",
16944
- "hierarchyAble",
16945
- false
16946
- ],
16947
- [
16948
- "aug_dates",
16949
- "isEdee",
16950
- false
16951
- ],
16952
- [
16953
- "aug_dates",
16954
- "isEder",
16955
- false
16956
- ],
16957
- [
16958
- "aug_dates",
16959
- "object",
16960
- false
16961
- ],
16962
- [
16963
- "aug_dates",
16964
- "property",
16965
- false
16966
- ],
16967
- [
16968
- "aug_dates",
16969
- "queryable",
16970
- false
16971
- ],
16972
- [
16973
- "aug_dates",
16974
- "theAble",
16975
- false
16976
- ],
16977
17066
  [
16978
17067
  "august_dates",
16979
17068
  "hierarchyAble",
@@ -17126,7 +17215,12 @@
17126
17215
  ],
17127
17216
  [
17128
17217
  "date_dates",
17218
+ "afterDateValue_dates",
17219
+ false
17220
+ ],
17221
+ [
17129
17222
  "date_dates",
17223
+ "onDateValue_dates",
17130
17224
  false
17131
17225
  ],
17132
17226
  [
@@ -17136,76 +17230,46 @@
17136
17230
  ],
17137
17231
  [
17138
17232
  "day_dates",
17139
- "hierarchyAble",
17233
+ "afterDateValue_dates",
17140
17234
  false
17141
17235
  ],
17142
17236
  [
17143
17237
  "day_dates",
17144
- "isEdee",
17238
+ "hierarchyAble",
17145
17239
  false
17146
17240
  ],
17147
17241
  [
17148
17242
  "day_dates",
17149
- "isEder",
17243
+ "isEdee",
17150
17244
  false
17151
17245
  ],
17152
17246
  [
17153
17247
  "day_dates",
17154
- "object",
17248
+ "isEder",
17155
17249
  false
17156
17250
  ],
17157
17251
  [
17158
17252
  "day_dates",
17159
- "property",
17253
+ "object",
17160
17254
  false
17161
17255
  ],
17162
17256
  [
17163
17257
  "day_dates",
17164
- "queryable",
17258
+ "onDateValue_dates",
17165
17259
  false
17166
17260
  ],
17167
17261
  [
17168
17262
  "day_dates",
17169
- "theAble",
17170
- false
17171
- ],
17172
- [
17173
- "dec_dates",
17174
- "december_dates",
17175
- false
17176
- ],
17177
- [
17178
- "dec_dates",
17179
- "hierarchyAble",
17180
- false
17181
- ],
17182
- [
17183
- "dec_dates",
17184
- "isEdee",
17185
- false
17186
- ],
17187
- [
17188
- "dec_dates",
17189
- "isEder",
17190
- false
17191
- ],
17192
- [
17193
- "dec_dates",
17194
- "object",
17195
- false
17196
- ],
17197
- [
17198
- "dec_dates",
17199
17263
  "property",
17200
17264
  false
17201
17265
  ],
17202
17266
  [
17203
- "dec_dates",
17267
+ "day_dates",
17204
17268
  "queryable",
17205
17269
  false
17206
17270
  ],
17207
17271
  [
17208
- "dec_dates",
17272
+ "day_dates",
17209
17273
  "theAble",
17210
17274
  false
17211
17275
  ],
@@ -17299,108 +17363,63 @@
17299
17363
  "theAble",
17300
17364
  false
17301
17365
  ],
17302
- [
17303
- "evaluate",
17304
- "verb",
17305
- false
17306
- ],
17307
17366
  [
17308
17367
  "every",
17309
17368
  "article",
17310
17369
  false
17311
17370
  ],
17312
17371
  [
17313
- "feb_dates",
17314
17372
  "february_dates",
17315
- false
17316
- ],
17317
- [
17318
- "feb_dates",
17319
17373
  "hierarchyAble",
17320
17374
  false
17321
17375
  ],
17322
17376
  [
17323
- "feb_dates",
17377
+ "february_dates",
17324
17378
  "isEdee",
17325
17379
  false
17326
17380
  ],
17327
17381
  [
17328
- "feb_dates",
17382
+ "february_dates",
17329
17383
  "isEder",
17330
17384
  false
17331
17385
  ],
17332
17386
  [
17333
- "feb_dates",
17387
+ "february_dates",
17388
+ "month_dates",
17389
+ false
17390
+ ],
17391
+ [
17392
+ "february_dates",
17334
17393
  "object",
17335
17394
  false
17336
17395
  ],
17337
17396
  [
17338
- "feb_dates",
17397
+ "february_dates",
17339
17398
  "property",
17340
17399
  false
17341
17400
  ],
17342
17401
  [
17343
- "feb_dates",
17402
+ "february_dates",
17344
17403
  "queryable",
17345
17404
  false
17346
17405
  ],
17347
17406
  [
17348
- "feb_dates",
17407
+ "february_dates",
17349
17408
  "theAble",
17350
17409
  false
17351
17410
  ],
17352
17411
  [
17353
- "february_dates",
17412
+ "friday_dates",
17413
+ "day_dates",
17414
+ false
17415
+ ],
17416
+ [
17417
+ "friday_dates",
17354
17418
  "hierarchyAble",
17355
17419
  false
17356
17420
  ],
17357
17421
  [
17358
- "february_dates",
17359
- "isEdee",
17360
- false
17361
- ],
17362
- [
17363
- "february_dates",
17364
- "isEder",
17365
- false
17366
- ],
17367
- [
17368
- "february_dates",
17369
- "month_dates",
17370
- false
17371
- ],
17372
- [
17373
- "february_dates",
17374
- "object",
17375
- false
17376
- ],
17377
- [
17378
- "february_dates",
17379
- "property",
17380
- false
17381
- ],
17382
- [
17383
- "february_dates",
17384
- "queryable",
17385
- false
17386
- ],
17387
- [
17388
- "february_dates",
17389
- "theAble",
17390
- false
17391
- ],
17392
- [
17393
- "friday_dates",
17394
- "day_dates",
17395
- false
17396
- ],
17397
- [
17398
- "friday_dates",
17399
- "hierarchyAble",
17400
- false
17401
- ],
17402
- [
17403
- "friday_dates",
17422
+ "friday_dates",
17404
17423
  "isEdee",
17405
17424
  false
17406
17425
  ],
@@ -17499,46 +17518,6 @@
17499
17518
  "toAble",
17500
17519
  false
17501
17520
  ],
17502
- [
17503
- "jan_dates",
17504
- "hierarchyAble",
17505
- false
17506
- ],
17507
- [
17508
- "jan_dates",
17509
- "isEdee",
17510
- false
17511
- ],
17512
- [
17513
- "jan_dates",
17514
- "isEder",
17515
- false
17516
- ],
17517
- [
17518
- "jan_dates",
17519
- "january_dates",
17520
- false
17521
- ],
17522
- [
17523
- "jan_dates",
17524
- "object",
17525
- false
17526
- ],
17527
- [
17528
- "jan_dates",
17529
- "property",
17530
- false
17531
- ],
17532
- [
17533
- "jan_dates",
17534
- "queryable",
17535
- false
17536
- ],
17537
- [
17538
- "jan_dates",
17539
- "theAble",
17540
- false
17541
- ],
17542
17521
  [
17543
17522
  "january_dates",
17544
17523
  "hierarchyAble",
@@ -17579,46 +17558,6 @@
17579
17558
  "theAble",
17580
17559
  false
17581
17560
  ],
17582
- [
17583
- "jul_dates",
17584
- "hierarchyAble",
17585
- false
17586
- ],
17587
- [
17588
- "jul_dates",
17589
- "isEdee",
17590
- false
17591
- ],
17592
- [
17593
- "jul_dates",
17594
- "isEder",
17595
- false
17596
- ],
17597
- [
17598
- "jul_dates",
17599
- "july_dates",
17600
- false
17601
- ],
17602
- [
17603
- "jul_dates",
17604
- "object",
17605
- false
17606
- ],
17607
- [
17608
- "jul_dates",
17609
- "property",
17610
- false
17611
- ],
17612
- [
17613
- "jul_dates",
17614
- "queryable",
17615
- false
17616
- ],
17617
- [
17618
- "jul_dates",
17619
- "theAble",
17620
- false
17621
- ],
17622
17561
  [
17623
17562
  "july_dates",
17624
17563
  "hierarchyAble",
@@ -17659,46 +17598,6 @@
17659
17598
  "theAble",
17660
17599
  false
17661
17600
  ],
17662
- [
17663
- "jun_dates",
17664
- "hierarchyAble",
17665
- false
17666
- ],
17667
- [
17668
- "jun_dates",
17669
- "isEdee",
17670
- false
17671
- ],
17672
- [
17673
- "jun_dates",
17674
- "isEder",
17675
- false
17676
- ],
17677
- [
17678
- "jun_dates",
17679
- "june_dates",
17680
- false
17681
- ],
17682
- [
17683
- "jun_dates",
17684
- "object",
17685
- false
17686
- ],
17687
- [
17688
- "jun_dates",
17689
- "property",
17690
- false
17691
- ],
17692
- [
17693
- "jun_dates",
17694
- "queryable",
17695
- false
17696
- ],
17697
- [
17698
- "jun_dates",
17699
- "theAble",
17700
- false
17701
- ],
17702
17601
  [
17703
17602
  "june_dates",
17704
17603
  "hierarchyAble",
@@ -17744,46 +17643,6 @@
17744
17643
  "theAble",
17745
17644
  false
17746
17645
  ],
17747
- [
17748
- "mar_dates",
17749
- "hierarchyAble",
17750
- false
17751
- ],
17752
- [
17753
- "mar_dates",
17754
- "isEdee",
17755
- false
17756
- ],
17757
- [
17758
- "mar_dates",
17759
- "isEder",
17760
- false
17761
- ],
17762
- [
17763
- "mar_dates",
17764
- "march_dates",
17765
- false
17766
- ],
17767
- [
17768
- "mar_dates",
17769
- "object",
17770
- false
17771
- ],
17772
- [
17773
- "mar_dates",
17774
- "property",
17775
- false
17776
- ],
17777
- [
17778
- "mar_dates",
17779
- "queryable",
17780
- false
17781
- ],
17782
- [
17783
- "mar_dates",
17784
- "theAble",
17785
- false
17786
- ],
17787
17646
  [
17788
17647
  "march_dates",
17789
17648
  "hierarchyAble",
@@ -17929,6 +17788,11 @@
17929
17788
  "date_dates",
17930
17789
  false
17931
17790
  ],
17791
+ [
17792
+ "monthDay_dates",
17793
+ "date_dates",
17794
+ false
17795
+ ],
17932
17796
  [
17933
17797
  "monthNumber_dates",
17934
17798
  "integer",
@@ -17939,6 +17803,11 @@
17939
17803
  "date_dates",
17940
17804
  false
17941
17805
  ],
17806
+ [
17807
+ "month_dates",
17808
+ "afterDateValue_dates",
17809
+ false
17810
+ ],
17942
17811
  [
17943
17812
  "month_dates",
17944
17813
  "hierarchyAble",
@@ -17961,66 +17830,31 @@
17961
17830
  ],
17962
17831
  [
17963
17832
  "month_dates",
17964
- "property",
17833
+ "onDateValue_dates",
17965
17834
  false
17966
17835
  ],
17967
17836
  [
17968
17837
  "month_dates",
17969
- "queryable",
17838
+ "property",
17970
17839
  false
17971
17840
  ],
17972
17841
  [
17973
17842
  "month_dates",
17974
- "theAble",
17975
- false
17976
- ],
17977
- [
17978
- "negatable",
17979
17843
  "queryable",
17980
17844
  false
17981
17845
  ],
17982
17846
  [
17983
- "noun",
17847
+ "month_dates",
17984
17848
  "theAble",
17985
17849
  false
17986
17850
  ],
17987
17851
  [
17988
- "nov_dates",
17989
- "hierarchyAble",
17990
- false
17991
- ],
17992
- [
17993
- "nov_dates",
17994
- "isEdee",
17995
- false
17996
- ],
17997
- [
17998
- "nov_dates",
17999
- "isEder",
18000
- false
18001
- ],
18002
- [
18003
- "nov_dates",
18004
- "november_dates",
18005
- false
18006
- ],
18007
- [
18008
- "nov_dates",
18009
- "object",
18010
- false
18011
- ],
18012
- [
18013
- "nov_dates",
18014
- "property",
18015
- false
18016
- ],
18017
- [
18018
- "nov_dates",
17852
+ "negatable",
18019
17853
  "queryable",
18020
17854
  false
18021
17855
  ],
18022
17856
  [
18023
- "nov_dates",
17857
+ "noun",
18024
17858
  "theAble",
18025
17859
  false
18026
17860
  ],
@@ -18084,46 +17918,6 @@
18084
17918
  "theAble",
18085
17919
  false
18086
17920
  ],
18087
- [
18088
- "oct_dates",
18089
- "hierarchyAble",
18090
- false
18091
- ],
18092
- [
18093
- "oct_dates",
18094
- "isEdee",
18095
- false
18096
- ],
18097
- [
18098
- "oct_dates",
18099
- "isEder",
18100
- false
18101
- ],
18102
- [
18103
- "oct_dates",
18104
- "object",
18105
- false
18106
- ],
18107
- [
18108
- "oct_dates",
18109
- "october_dates",
18110
- false
18111
- ],
18112
- [
18113
- "oct_dates",
18114
- "property",
18115
- false
18116
- ],
18117
- [
18118
- "oct_dates",
18119
- "queryable",
18120
- false
18121
- ],
18122
- [
18123
- "oct_dates",
18124
- "theAble",
18125
- false
18126
- ],
18127
17921
  [
18128
17922
  "october_dates",
18129
17923
  "hierarchyAble",
@@ -18164,6 +17958,16 @@
18164
17958
  "theAble",
18165
17959
  false
18166
17960
  ],
17961
+ [
17962
+ "onDateValue_dates",
17963
+ "onDateValue_dates",
17964
+ false
17965
+ ],
17966
+ [
17967
+ "onDate_dates",
17968
+ "preposition",
17969
+ false
17970
+ ],
18167
17971
  [
18168
17972
  "orAble",
18169
17973
  "ifAble",
@@ -18289,46 +18093,6 @@
18289
18093
  "theAble",
18290
18094
  false
18291
18095
  ],
18292
- [
18293
- "sept_dates",
18294
- "hierarchyAble",
18295
- false
18296
- ],
18297
- [
18298
- "sept_dates",
18299
- "isEdee",
18300
- false
18301
- ],
18302
- [
18303
- "sept_dates",
18304
- "isEder",
18305
- false
18306
- ],
18307
- [
18308
- "sept_dates",
18309
- "object",
18310
- false
18311
- ],
18312
- [
18313
- "sept_dates",
18314
- "property",
18315
- false
18316
- ],
18317
- [
18318
- "sept_dates",
18319
- "queryable",
18320
- false
18321
- ],
18322
- [
18323
- "sept_dates",
18324
- "september_dates",
18325
- false
18326
- ],
18327
- [
18328
- "sept_dates",
18329
- "theAble",
18330
- false
18331
- ],
18332
18096
  [
18333
18097
  "september_dates",
18334
18098
  "hierarchyAble",
@@ -18851,6 +18615,48 @@
18851
18615
  0
18852
18616
  ]
18853
18617
  ],
18618
+ [
18619
+ [
18620
+ "is",
18621
+ 0
18622
+ ],
18623
+ [
18624
+ "list",
18625
+ 1
18626
+ ],
18627
+ [
18628
+ "unknown",
18629
+ 0
18630
+ ]
18631
+ ],
18632
+ [
18633
+ [
18634
+ "is",
18635
+ 0
18636
+ ],
18637
+ [
18638
+ "list",
18639
+ 1
18640
+ ],
18641
+ [
18642
+ "unknown",
18643
+ 0
18644
+ ]
18645
+ ],
18646
+ [
18647
+ [
18648
+ "is",
18649
+ 0
18650
+ ],
18651
+ [
18652
+ "list",
18653
+ 1
18654
+ ],
18655
+ [
18656
+ "unknown",
18657
+ 0
18658
+ ]
18659
+ ],
18854
18660
  [
18855
18661
  [
18856
18662
  "setIdSuffix",