tpmkms 7.12.2-beta.4 → 7.12.2-beta.5
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.
- package/common/avatar.js +5 -4
- package/common/crew.test.json +45 -45
- package/common/dialogues.js +8 -2
- package/common/dimension.js +2 -2
- package/common/dimension.test.json +204 -158
- package/common/edible.instance.json +2 -2
- package/common/edible.test.json +34 -4
- package/common/fastfood.instance.json +486 -326
- package/common/fastfood.test.json +686 -2164
- package/common/formulas.test.json +25 -85
- package/common/gdefaults.js +2 -1
- package/common/hierarchy.js +2 -2
- package/common/math.js +12 -1
- package/common/math.test.json +127 -543
- package/common/people.instance.json +46 -14
- package/common/people.test.json +118 -56
- package/common/pipboy.test.json +1800 -86
- package/common/pokemon.test.json +1658 -4
- package/common/properties.test.json +198 -90
- package/common/reports.instance.json +1 -1
- package/common/scorekeeper.test.json +46 -46
- package/common/temperature.instance.json +54 -30
- package/common/weight.test.json +22 -22
- package/package.json +2 -6
- package/bin/create-km.js +0 -12
package/common/pipboy.test.json
CHANGED
@@ -48,6 +48,8 @@
|
|
48
48
|
"gdefaults": "gdefaults2",
|
49
49
|
"help": "help2",
|
50
50
|
"hierarchy": "hierarchy2",
|
51
|
+
"math": "math2",
|
52
|
+
"mathTemplate": "mathTemplate2",
|
51
53
|
"meta": "meta2",
|
52
54
|
"numbers": "numbers2",
|
53
55
|
"pipboy": "pipboy1",
|
@@ -81,6 +83,10 @@
|
|
81
83
|
},
|
82
84
|
"hierarchy2": {
|
83
85
|
},
|
86
|
+
"math2": {
|
87
|
+
},
|
88
|
+
"mathTemplate2": {
|
89
|
+
},
|
84
90
|
"meta2": {
|
85
91
|
},
|
86
92
|
"numbers2": {
|
@@ -156,6 +162,12 @@
|
|
156
162
|
"range",
|
157
163
|
"accuracy"
|
158
164
|
],
|
165
|
+
"mathematical_operator": [
|
166
|
+
"*",
|
167
|
+
"+",
|
168
|
+
"/",
|
169
|
+
"-"
|
170
|
+
],
|
159
171
|
"notAble": [
|
160
172
|
"unknown"
|
161
173
|
],
|
@@ -267,6 +279,11 @@
|
|
267
279
|
"that",
|
268
280
|
"orAble",
|
269
281
|
"ifAble",
|
282
|
+
"*",
|
283
|
+
"mathematical_operator",
|
284
|
+
"+",
|
285
|
+
"/",
|
286
|
+
"-",
|
270
287
|
"pistol",
|
271
288
|
"weapon",
|
272
289
|
"rifle",
|
@@ -305,6 +322,18 @@
|
|
305
322
|
"accuracy"
|
306
323
|
],
|
307
324
|
"parents": {
|
325
|
+
"*": [
|
326
|
+
"mathematical_operator"
|
327
|
+
],
|
328
|
+
"+": [
|
329
|
+
"mathematical_operator"
|
330
|
+
],
|
331
|
+
"-": [
|
332
|
+
"mathematical_operator"
|
333
|
+
],
|
334
|
+
"/": [
|
335
|
+
"mathematical_operator"
|
336
|
+
],
|
308
337
|
"a": [
|
309
338
|
"articlePOS"
|
310
339
|
],
|
@@ -499,6 +528,14 @@
|
|
499
528
|
"initHandlers": [
|
500
529
|
],
|
501
530
|
"root": {
|
531
|
+
"*": {
|
532
|
+
},
|
533
|
+
"+": {
|
534
|
+
},
|
535
|
+
"-": {
|
536
|
+
},
|
537
|
+
"/": {
|
538
|
+
},
|
502
539
|
"a": {
|
503
540
|
},
|
504
541
|
"accuracy": {
|
@@ -561,6 +598,8 @@
|
|
561
598
|
},
|
562
599
|
"luck": {
|
563
600
|
},
|
601
|
+
"mathematical_operator": {
|
602
|
+
},
|
564
603
|
"meat": {
|
565
604
|
},
|
566
605
|
"medicine": {
|
@@ -1262,6 +1301,8 @@
|
|
1262
1301
|
"gdefaults": "gdefaults2",
|
1263
1302
|
"help": "help2",
|
1264
1303
|
"hierarchy": "hierarchy2",
|
1304
|
+
"math": "math2",
|
1305
|
+
"mathTemplate": "mathTemplate2",
|
1265
1306
|
"meta": "meta2",
|
1266
1307
|
"numbers": "numbers2",
|
1267
1308
|
"pipboy": "pipboy1",
|
@@ -1295,6 +1336,10 @@
|
|
1295
1336
|
},
|
1296
1337
|
"hierarchy2": {
|
1297
1338
|
},
|
1339
|
+
"math2": {
|
1340
|
+
},
|
1341
|
+
"mathTemplate2": {
|
1342
|
+
},
|
1298
1343
|
"meta2": {
|
1299
1344
|
},
|
1300
1345
|
"numbers2": {
|
@@ -1370,6 +1415,12 @@
|
|
1370
1415
|
"range",
|
1371
1416
|
"accuracy"
|
1372
1417
|
],
|
1418
|
+
"mathematical_operator": [
|
1419
|
+
"*",
|
1420
|
+
"+",
|
1421
|
+
"/",
|
1422
|
+
"-"
|
1423
|
+
],
|
1373
1424
|
"notAble": [
|
1374
1425
|
"unknown"
|
1375
1426
|
],
|
@@ -1481,6 +1532,11 @@
|
|
1481
1532
|
"that",
|
1482
1533
|
"orAble",
|
1483
1534
|
"ifAble",
|
1535
|
+
"*",
|
1536
|
+
"mathematical_operator",
|
1537
|
+
"+",
|
1538
|
+
"/",
|
1539
|
+
"-",
|
1484
1540
|
"pistol",
|
1485
1541
|
"weapon",
|
1486
1542
|
"rifle",
|
@@ -1519,6 +1575,18 @@
|
|
1519
1575
|
"accuracy"
|
1520
1576
|
],
|
1521
1577
|
"parents": {
|
1578
|
+
"*": [
|
1579
|
+
"mathematical_operator"
|
1580
|
+
],
|
1581
|
+
"+": [
|
1582
|
+
"mathematical_operator"
|
1583
|
+
],
|
1584
|
+
"-": [
|
1585
|
+
"mathematical_operator"
|
1586
|
+
],
|
1587
|
+
"/": [
|
1588
|
+
"mathematical_operator"
|
1589
|
+
],
|
1522
1590
|
"a": [
|
1523
1591
|
"articlePOS"
|
1524
1592
|
],
|
@@ -1713,6 +1781,14 @@
|
|
1713
1781
|
"initHandlers": [
|
1714
1782
|
],
|
1715
1783
|
"root": {
|
1784
|
+
"*": {
|
1785
|
+
},
|
1786
|
+
"+": {
|
1787
|
+
},
|
1788
|
+
"-": {
|
1789
|
+
},
|
1790
|
+
"/": {
|
1791
|
+
},
|
1716
1792
|
"a": {
|
1717
1793
|
},
|
1718
1794
|
"accuracy": {
|
@@ -1775,6 +1851,8 @@
|
|
1775
1851
|
},
|
1776
1852
|
"luck": {
|
1777
1853
|
},
|
1854
|
+
"mathematical_operator": {
|
1855
|
+
},
|
1778
1856
|
"meat": {
|
1779
1857
|
},
|
1780
1858
|
"medicine": {
|
@@ -2476,6 +2554,8 @@
|
|
2476
2554
|
"gdefaults": "gdefaults2",
|
2477
2555
|
"help": "help2",
|
2478
2556
|
"hierarchy": "hierarchy2",
|
2557
|
+
"math": "math2",
|
2558
|
+
"mathTemplate": "mathTemplate2",
|
2479
2559
|
"meta": "meta2",
|
2480
2560
|
"numbers": "numbers2",
|
2481
2561
|
"pipboy": "pipboy1",
|
@@ -2509,6 +2589,10 @@
|
|
2509
2589
|
},
|
2510
2590
|
"hierarchy2": {
|
2511
2591
|
},
|
2592
|
+
"math2": {
|
2593
|
+
},
|
2594
|
+
"mathTemplate2": {
|
2595
|
+
},
|
2512
2596
|
"meta2": {
|
2513
2597
|
},
|
2514
2598
|
"numbers2": {
|
@@ -2584,6 +2668,12 @@
|
|
2584
2668
|
"range",
|
2585
2669
|
"accuracy"
|
2586
2670
|
],
|
2671
|
+
"mathematical_operator": [
|
2672
|
+
"*",
|
2673
|
+
"+",
|
2674
|
+
"/",
|
2675
|
+
"-"
|
2676
|
+
],
|
2587
2677
|
"notAble": [
|
2588
2678
|
"unknown"
|
2589
2679
|
],
|
@@ -2695,6 +2785,11 @@
|
|
2695
2785
|
"that",
|
2696
2786
|
"orAble",
|
2697
2787
|
"ifAble",
|
2788
|
+
"*",
|
2789
|
+
"mathematical_operator",
|
2790
|
+
"+",
|
2791
|
+
"/",
|
2792
|
+
"-",
|
2698
2793
|
"pistol",
|
2699
2794
|
"weapon",
|
2700
2795
|
"rifle",
|
@@ -2733,6 +2828,18 @@
|
|
2733
2828
|
"accuracy"
|
2734
2829
|
],
|
2735
2830
|
"parents": {
|
2831
|
+
"*": [
|
2832
|
+
"mathematical_operator"
|
2833
|
+
],
|
2834
|
+
"+": [
|
2835
|
+
"mathematical_operator"
|
2836
|
+
],
|
2837
|
+
"-": [
|
2838
|
+
"mathematical_operator"
|
2839
|
+
],
|
2840
|
+
"/": [
|
2841
|
+
"mathematical_operator"
|
2842
|
+
],
|
2736
2843
|
"a": [
|
2737
2844
|
"articlePOS"
|
2738
2845
|
],
|
@@ -2927,6 +3034,14 @@
|
|
2927
3034
|
"initHandlers": [
|
2928
3035
|
],
|
2929
3036
|
"root": {
|
3037
|
+
"*": {
|
3038
|
+
},
|
3039
|
+
"+": {
|
3040
|
+
},
|
3041
|
+
"-": {
|
3042
|
+
},
|
3043
|
+
"/": {
|
3044
|
+
},
|
2930
3045
|
"a": {
|
2931
3046
|
},
|
2932
3047
|
"accuracy": {
|
@@ -2989,6 +3104,8 @@
|
|
2989
3104
|
},
|
2990
3105
|
"luck": {
|
2991
3106
|
},
|
3107
|
+
"mathematical_operator": {
|
3108
|
+
},
|
2992
3109
|
"meat": {
|
2993
3110
|
},
|
2994
3111
|
"medicine": {
|
@@ -3733,6 +3850,8 @@
|
|
3733
3850
|
"gdefaults": "gdefaults2",
|
3734
3851
|
"help": "help2",
|
3735
3852
|
"hierarchy": "hierarchy2",
|
3853
|
+
"math": "math2",
|
3854
|
+
"mathTemplate": "mathTemplate2",
|
3736
3855
|
"meta": "meta2",
|
3737
3856
|
"numbers": "numbers2",
|
3738
3857
|
"pipboy": "pipboy1",
|
@@ -3766,6 +3885,10 @@
|
|
3766
3885
|
},
|
3767
3886
|
"hierarchy2": {
|
3768
3887
|
},
|
3888
|
+
"math2": {
|
3889
|
+
},
|
3890
|
+
"mathTemplate2": {
|
3891
|
+
},
|
3769
3892
|
"meta2": {
|
3770
3893
|
},
|
3771
3894
|
"numbers2": {
|
@@ -3841,6 +3964,12 @@
|
|
3841
3964
|
"range",
|
3842
3965
|
"accuracy"
|
3843
3966
|
],
|
3967
|
+
"mathematical_operator": [
|
3968
|
+
"*",
|
3969
|
+
"+",
|
3970
|
+
"/",
|
3971
|
+
"-"
|
3972
|
+
],
|
3844
3973
|
"notAble": [
|
3845
3974
|
"unknown"
|
3846
3975
|
],
|
@@ -3952,6 +4081,11 @@
|
|
3952
4081
|
"that",
|
3953
4082
|
"orAble",
|
3954
4083
|
"ifAble",
|
4084
|
+
"*",
|
4085
|
+
"mathematical_operator",
|
4086
|
+
"+",
|
4087
|
+
"/",
|
4088
|
+
"-",
|
3955
4089
|
"pistol",
|
3956
4090
|
"weapon",
|
3957
4091
|
"rifle",
|
@@ -3990,6 +4124,18 @@
|
|
3990
4124
|
"accuracy"
|
3991
4125
|
],
|
3992
4126
|
"parents": {
|
4127
|
+
"*": [
|
4128
|
+
"mathematical_operator"
|
4129
|
+
],
|
4130
|
+
"+": [
|
4131
|
+
"mathematical_operator"
|
4132
|
+
],
|
4133
|
+
"-": [
|
4134
|
+
"mathematical_operator"
|
4135
|
+
],
|
4136
|
+
"/": [
|
4137
|
+
"mathematical_operator"
|
4138
|
+
],
|
3993
4139
|
"a": [
|
3994
4140
|
"articlePOS"
|
3995
4141
|
],
|
@@ -4184,6 +4330,14 @@
|
|
4184
4330
|
"initHandlers": [
|
4185
4331
|
],
|
4186
4332
|
"root": {
|
4333
|
+
"*": {
|
4334
|
+
},
|
4335
|
+
"+": {
|
4336
|
+
},
|
4337
|
+
"-": {
|
4338
|
+
},
|
4339
|
+
"/": {
|
4340
|
+
},
|
4187
4341
|
"a": {
|
4188
4342
|
},
|
4189
4343
|
"accuracy": {
|
@@ -4246,6 +4400,8 @@
|
|
4246
4400
|
},
|
4247
4401
|
"luck": {
|
4248
4402
|
},
|
4403
|
+
"mathematical_operator": {
|
4404
|
+
},
|
4249
4405
|
"meat": {
|
4250
4406
|
},
|
4251
4407
|
"medicine": {
|
@@ -5058,6 +5214,8 @@
|
|
5058
5214
|
"gdefaults": "gdefaults2",
|
5059
5215
|
"help": "help2",
|
5060
5216
|
"hierarchy": "hierarchy2",
|
5217
|
+
"math": "math2",
|
5218
|
+
"mathTemplate": "mathTemplate2",
|
5061
5219
|
"meta": "meta2",
|
5062
5220
|
"numbers": "numbers2",
|
5063
5221
|
"pipboy": "pipboy1",
|
@@ -5091,6 +5249,10 @@
|
|
5091
5249
|
},
|
5092
5250
|
"hierarchy2": {
|
5093
5251
|
},
|
5252
|
+
"math2": {
|
5253
|
+
},
|
5254
|
+
"mathTemplate2": {
|
5255
|
+
},
|
5094
5256
|
"meta2": {
|
5095
5257
|
},
|
5096
5258
|
"numbers2": {
|
@@ -5166,6 +5328,12 @@
|
|
5166
5328
|
"range",
|
5167
5329
|
"accuracy"
|
5168
5330
|
],
|
5331
|
+
"mathematical_operator": [
|
5332
|
+
"*",
|
5333
|
+
"+",
|
5334
|
+
"/",
|
5335
|
+
"-"
|
5336
|
+
],
|
5169
5337
|
"notAble": [
|
5170
5338
|
"unknown"
|
5171
5339
|
],
|
@@ -5277,6 +5445,11 @@
|
|
5277
5445
|
"that",
|
5278
5446
|
"orAble",
|
5279
5447
|
"ifAble",
|
5448
|
+
"*",
|
5449
|
+
"mathematical_operator",
|
5450
|
+
"+",
|
5451
|
+
"/",
|
5452
|
+
"-",
|
5280
5453
|
"pistol",
|
5281
5454
|
"weapon",
|
5282
5455
|
"rifle",
|
@@ -5315,6 +5488,18 @@
|
|
5315
5488
|
"accuracy"
|
5316
5489
|
],
|
5317
5490
|
"parents": {
|
5491
|
+
"*": [
|
5492
|
+
"mathematical_operator"
|
5493
|
+
],
|
5494
|
+
"+": [
|
5495
|
+
"mathematical_operator"
|
5496
|
+
],
|
5497
|
+
"-": [
|
5498
|
+
"mathematical_operator"
|
5499
|
+
],
|
5500
|
+
"/": [
|
5501
|
+
"mathematical_operator"
|
5502
|
+
],
|
5318
5503
|
"a": [
|
5319
5504
|
"articlePOS"
|
5320
5505
|
],
|
@@ -5509,6 +5694,14 @@
|
|
5509
5694
|
"initHandlers": [
|
5510
5695
|
],
|
5511
5696
|
"root": {
|
5697
|
+
"*": {
|
5698
|
+
},
|
5699
|
+
"+": {
|
5700
|
+
},
|
5701
|
+
"-": {
|
5702
|
+
},
|
5703
|
+
"/": {
|
5704
|
+
},
|
5512
5705
|
"a": {
|
5513
5706
|
},
|
5514
5707
|
"accuracy": {
|
@@ -5571,6 +5764,8 @@
|
|
5571
5764
|
},
|
5572
5765
|
"luck": {
|
5573
5766
|
},
|
5767
|
+
"mathematical_operator": {
|
5768
|
+
},
|
5574
5769
|
"meat": {
|
5575
5770
|
},
|
5576
5771
|
"medicine": {
|
@@ -6394,6 +6589,8 @@
|
|
6394
6589
|
"gdefaults": "gdefaults2",
|
6395
6590
|
"help": "help2",
|
6396
6591
|
"hierarchy": "hierarchy2",
|
6592
|
+
"math": "math2",
|
6593
|
+
"mathTemplate": "mathTemplate2",
|
6397
6594
|
"meta": "meta2",
|
6398
6595
|
"numbers": "numbers2",
|
6399
6596
|
"pipboy": "pipboy1",
|
@@ -6427,6 +6624,10 @@
|
|
6427
6624
|
},
|
6428
6625
|
"hierarchy2": {
|
6429
6626
|
},
|
6627
|
+
"math2": {
|
6628
|
+
},
|
6629
|
+
"mathTemplate2": {
|
6630
|
+
},
|
6430
6631
|
"meta2": {
|
6431
6632
|
},
|
6432
6633
|
"numbers2": {
|
@@ -6503,6 +6704,12 @@
|
|
6503
6704
|
"range",
|
6504
6705
|
"accuracy"
|
6505
6706
|
],
|
6707
|
+
"mathematical_operator": [
|
6708
|
+
"*",
|
6709
|
+
"+",
|
6710
|
+
"/",
|
6711
|
+
"-"
|
6712
|
+
],
|
6506
6713
|
"notAble": [
|
6507
6714
|
"unknown"
|
6508
6715
|
],
|
@@ -6614,6 +6821,11 @@
|
|
6614
6821
|
"that",
|
6615
6822
|
"orAble",
|
6616
6823
|
"ifAble",
|
6824
|
+
"*",
|
6825
|
+
"mathematical_operator",
|
6826
|
+
"+",
|
6827
|
+
"/",
|
6828
|
+
"-",
|
6617
6829
|
"pistol",
|
6618
6830
|
"weapon",
|
6619
6831
|
"rifle",
|
@@ -6652,6 +6864,18 @@
|
|
6652
6864
|
"accuracy"
|
6653
6865
|
],
|
6654
6866
|
"parents": {
|
6867
|
+
"*": [
|
6868
|
+
"mathematical_operator"
|
6869
|
+
],
|
6870
|
+
"+": [
|
6871
|
+
"mathematical_operator"
|
6872
|
+
],
|
6873
|
+
"-": [
|
6874
|
+
"mathematical_operator"
|
6875
|
+
],
|
6876
|
+
"/": [
|
6877
|
+
"mathematical_operator"
|
6878
|
+
],
|
6655
6879
|
"a": [
|
6656
6880
|
"articlePOS"
|
6657
6881
|
],
|
@@ -6846,6 +7070,14 @@
|
|
6846
7070
|
"initHandlers": [
|
6847
7071
|
],
|
6848
7072
|
"root": {
|
7073
|
+
"*": {
|
7074
|
+
},
|
7075
|
+
"+": {
|
7076
|
+
},
|
7077
|
+
"-": {
|
7078
|
+
},
|
7079
|
+
"/": {
|
7080
|
+
},
|
6849
7081
|
"a": {
|
6850
7082
|
},
|
6851
7083
|
"accuracy": {
|
@@ -6908,6 +7140,8 @@
|
|
6908
7140
|
},
|
6909
7141
|
"luck": {
|
6910
7142
|
},
|
7143
|
+
"mathematical_operator": {
|
7144
|
+
},
|
6911
7145
|
"meat": {
|
6912
7146
|
},
|
6913
7147
|
"medicine": {
|
@@ -7725,6 +7959,8 @@
|
|
7725
7959
|
"gdefaults": "gdefaults2",
|
7726
7960
|
"help": "help2",
|
7727
7961
|
"hierarchy": "hierarchy2",
|
7962
|
+
"math": "math2",
|
7963
|
+
"mathTemplate": "mathTemplate2",
|
7728
7964
|
"meta": "meta2",
|
7729
7965
|
"numbers": "numbers2",
|
7730
7966
|
"pipboy": "pipboy1",
|
@@ -7758,6 +7994,10 @@
|
|
7758
7994
|
},
|
7759
7995
|
"hierarchy2": {
|
7760
7996
|
},
|
7997
|
+
"math2": {
|
7998
|
+
},
|
7999
|
+
"mathTemplate2": {
|
8000
|
+
},
|
7761
8001
|
"meta2": {
|
7762
8002
|
},
|
7763
8003
|
"numbers2": {
|
@@ -7834,6 +8074,12 @@
|
|
7834
8074
|
"range",
|
7835
8075
|
"accuracy"
|
7836
8076
|
],
|
8077
|
+
"mathematical_operator": [
|
8078
|
+
"*",
|
8079
|
+
"+",
|
8080
|
+
"/",
|
8081
|
+
"-"
|
8082
|
+
],
|
7837
8083
|
"notAble": [
|
7838
8084
|
"unknown"
|
7839
8085
|
],
|
@@ -7945,6 +8191,11 @@
|
|
7945
8191
|
"that",
|
7946
8192
|
"orAble",
|
7947
8193
|
"ifAble",
|
8194
|
+
"*",
|
8195
|
+
"mathematical_operator",
|
8196
|
+
"+",
|
8197
|
+
"/",
|
8198
|
+
"-",
|
7948
8199
|
"pistol",
|
7949
8200
|
"weapon",
|
7950
8201
|
"rifle",
|
@@ -7983,6 +8234,18 @@
|
|
7983
8234
|
"accuracy"
|
7984
8235
|
],
|
7985
8236
|
"parents": {
|
8237
|
+
"*": [
|
8238
|
+
"mathematical_operator"
|
8239
|
+
],
|
8240
|
+
"+": [
|
8241
|
+
"mathematical_operator"
|
8242
|
+
],
|
8243
|
+
"-": [
|
8244
|
+
"mathematical_operator"
|
8245
|
+
],
|
8246
|
+
"/": [
|
8247
|
+
"mathematical_operator"
|
8248
|
+
],
|
7986
8249
|
"a": [
|
7987
8250
|
"articlePOS"
|
7988
8251
|
],
|
@@ -8177,6 +8440,14 @@
|
|
8177
8440
|
"initHandlers": [
|
8178
8441
|
],
|
8179
8442
|
"root": {
|
8443
|
+
"*": {
|
8444
|
+
},
|
8445
|
+
"+": {
|
8446
|
+
},
|
8447
|
+
"-": {
|
8448
|
+
},
|
8449
|
+
"/": {
|
8450
|
+
},
|
8180
8451
|
"a": {
|
8181
8452
|
},
|
8182
8453
|
"accuracy": {
|
@@ -8239,6 +8510,8 @@
|
|
8239
8510
|
},
|
8240
8511
|
"luck": {
|
8241
8512
|
},
|
8513
|
+
"mathematical_operator": {
|
8514
|
+
},
|
8242
8515
|
"meat": {
|
8243
8516
|
},
|
8244
8517
|
"medicine": {
|
@@ -9013,6 +9286,8 @@
|
|
9013
9286
|
"gdefaults": "gdefaults2",
|
9014
9287
|
"help": "help2",
|
9015
9288
|
"hierarchy": "hierarchy2",
|
9289
|
+
"math": "math2",
|
9290
|
+
"mathTemplate": "mathTemplate2",
|
9016
9291
|
"meta": "meta2",
|
9017
9292
|
"numbers": "numbers2",
|
9018
9293
|
"pipboy": "pipboy1",
|
@@ -9046,6 +9321,10 @@
|
|
9046
9321
|
},
|
9047
9322
|
"hierarchy2": {
|
9048
9323
|
},
|
9324
|
+
"math2": {
|
9325
|
+
},
|
9326
|
+
"mathTemplate2": {
|
9327
|
+
},
|
9049
9328
|
"meta2": {
|
9050
9329
|
},
|
9051
9330
|
"numbers2": {
|
@@ -9122,6 +9401,12 @@
|
|
9122
9401
|
"range",
|
9123
9402
|
"accuracy"
|
9124
9403
|
],
|
9404
|
+
"mathematical_operator": [
|
9405
|
+
"*",
|
9406
|
+
"+",
|
9407
|
+
"/",
|
9408
|
+
"-"
|
9409
|
+
],
|
9125
9410
|
"notAble": [
|
9126
9411
|
"unknown"
|
9127
9412
|
],
|
@@ -9233,6 +9518,11 @@
|
|
9233
9518
|
"that",
|
9234
9519
|
"orAble",
|
9235
9520
|
"ifAble",
|
9521
|
+
"*",
|
9522
|
+
"mathematical_operator",
|
9523
|
+
"+",
|
9524
|
+
"/",
|
9525
|
+
"-",
|
9236
9526
|
"pistol",
|
9237
9527
|
"weapon",
|
9238
9528
|
"rifle",
|
@@ -9271,6 +9561,18 @@
|
|
9271
9561
|
"accuracy"
|
9272
9562
|
],
|
9273
9563
|
"parents": {
|
9564
|
+
"*": [
|
9565
|
+
"mathematical_operator"
|
9566
|
+
],
|
9567
|
+
"+": [
|
9568
|
+
"mathematical_operator"
|
9569
|
+
],
|
9570
|
+
"-": [
|
9571
|
+
"mathematical_operator"
|
9572
|
+
],
|
9573
|
+
"/": [
|
9574
|
+
"mathematical_operator"
|
9575
|
+
],
|
9274
9576
|
"a": [
|
9275
9577
|
"articlePOS"
|
9276
9578
|
],
|
@@ -9465,6 +9767,14 @@
|
|
9465
9767
|
"initHandlers": [
|
9466
9768
|
],
|
9467
9769
|
"root": {
|
9770
|
+
"*": {
|
9771
|
+
},
|
9772
|
+
"+": {
|
9773
|
+
},
|
9774
|
+
"-": {
|
9775
|
+
},
|
9776
|
+
"/": {
|
9777
|
+
},
|
9468
9778
|
"a": {
|
9469
9779
|
},
|
9470
9780
|
"accuracy": {
|
@@ -9527,6 +9837,8 @@
|
|
9527
9837
|
},
|
9528
9838
|
"luck": {
|
9529
9839
|
},
|
9840
|
+
"mathematical_operator": {
|
9841
|
+
},
|
9530
9842
|
"meat": {
|
9531
9843
|
},
|
9532
9844
|
"medicine": {
|
@@ -10338,6 +10650,8 @@
|
|
10338
10650
|
"gdefaults": "gdefaults2",
|
10339
10651
|
"help": "help2",
|
10340
10652
|
"hierarchy": "hierarchy2",
|
10653
|
+
"math": "math2",
|
10654
|
+
"mathTemplate": "mathTemplate2",
|
10341
10655
|
"meta": "meta2",
|
10342
10656
|
"numbers": "numbers2",
|
10343
10657
|
"pipboy": "pipboy1",
|
@@ -10371,6 +10685,10 @@
|
|
10371
10685
|
},
|
10372
10686
|
"hierarchy2": {
|
10373
10687
|
},
|
10688
|
+
"math2": {
|
10689
|
+
},
|
10690
|
+
"mathTemplate2": {
|
10691
|
+
},
|
10374
10692
|
"meta2": {
|
10375
10693
|
},
|
10376
10694
|
"numbers2": {
|
@@ -10447,6 +10765,12 @@
|
|
10447
10765
|
"range",
|
10448
10766
|
"accuracy"
|
10449
10767
|
],
|
10768
|
+
"mathematical_operator": [
|
10769
|
+
"*",
|
10770
|
+
"+",
|
10771
|
+
"/",
|
10772
|
+
"-"
|
10773
|
+
],
|
10450
10774
|
"notAble": [
|
10451
10775
|
"unknown"
|
10452
10776
|
],
|
@@ -10558,6 +10882,11 @@
|
|
10558
10882
|
"that",
|
10559
10883
|
"orAble",
|
10560
10884
|
"ifAble",
|
10885
|
+
"*",
|
10886
|
+
"mathematical_operator",
|
10887
|
+
"+",
|
10888
|
+
"/",
|
10889
|
+
"-",
|
10561
10890
|
"pistol",
|
10562
10891
|
"weapon",
|
10563
10892
|
"rifle",
|
@@ -10596,6 +10925,18 @@
|
|
10596
10925
|
"accuracy"
|
10597
10926
|
],
|
10598
10927
|
"parents": {
|
10928
|
+
"*": [
|
10929
|
+
"mathematical_operator"
|
10930
|
+
],
|
10931
|
+
"+": [
|
10932
|
+
"mathematical_operator"
|
10933
|
+
],
|
10934
|
+
"-": [
|
10935
|
+
"mathematical_operator"
|
10936
|
+
],
|
10937
|
+
"/": [
|
10938
|
+
"mathematical_operator"
|
10939
|
+
],
|
10599
10940
|
"a": [
|
10600
10941
|
"articlePOS"
|
10601
10942
|
],
|
@@ -10790,6 +11131,14 @@
|
|
10790
11131
|
"initHandlers": [
|
10791
11132
|
],
|
10792
11133
|
"root": {
|
11134
|
+
"*": {
|
11135
|
+
},
|
11136
|
+
"+": {
|
11137
|
+
},
|
11138
|
+
"-": {
|
11139
|
+
},
|
11140
|
+
"/": {
|
11141
|
+
},
|
10793
11142
|
"a": {
|
10794
11143
|
},
|
10795
11144
|
"accuracy": {
|
@@ -10852,6 +11201,8 @@
|
|
10852
11201
|
},
|
10853
11202
|
"luck": {
|
10854
11203
|
},
|
11204
|
+
"mathematical_operator": {
|
11205
|
+
},
|
10855
11206
|
"meat": {
|
10856
11207
|
},
|
10857
11208
|
"medicine": {
|
@@ -11620,6 +11971,8 @@
|
|
11620
11971
|
"gdefaults": "gdefaults2",
|
11621
11972
|
"help": "help2",
|
11622
11973
|
"hierarchy": "hierarchy2",
|
11974
|
+
"math": "math2",
|
11975
|
+
"mathTemplate": "mathTemplate2",
|
11623
11976
|
"meta": "meta2",
|
11624
11977
|
"numbers": "numbers2",
|
11625
11978
|
"pipboy": "pipboy1",
|
@@ -11653,6 +12006,10 @@
|
|
11653
12006
|
},
|
11654
12007
|
"hierarchy2": {
|
11655
12008
|
},
|
12009
|
+
"math2": {
|
12010
|
+
},
|
12011
|
+
"mathTemplate2": {
|
12012
|
+
},
|
11656
12013
|
"meta2": {
|
11657
12014
|
},
|
11658
12015
|
"numbers2": {
|
@@ -11729,6 +12086,12 @@
|
|
11729
12086
|
"range",
|
11730
12087
|
"accuracy"
|
11731
12088
|
],
|
12089
|
+
"mathematical_operator": [
|
12090
|
+
"*",
|
12091
|
+
"+",
|
12092
|
+
"/",
|
12093
|
+
"-"
|
12094
|
+
],
|
11732
12095
|
"notAble": [
|
11733
12096
|
"unknown"
|
11734
12097
|
],
|
@@ -11840,6 +12203,11 @@
|
|
11840
12203
|
"that",
|
11841
12204
|
"orAble",
|
11842
12205
|
"ifAble",
|
12206
|
+
"*",
|
12207
|
+
"mathematical_operator",
|
12208
|
+
"+",
|
12209
|
+
"/",
|
12210
|
+
"-",
|
11843
12211
|
"pistol",
|
11844
12212
|
"weapon",
|
11845
12213
|
"rifle",
|
@@ -11878,6 +12246,18 @@
|
|
11878
12246
|
"accuracy"
|
11879
12247
|
],
|
11880
12248
|
"parents": {
|
12249
|
+
"*": [
|
12250
|
+
"mathematical_operator"
|
12251
|
+
],
|
12252
|
+
"+": [
|
12253
|
+
"mathematical_operator"
|
12254
|
+
],
|
12255
|
+
"-": [
|
12256
|
+
"mathematical_operator"
|
12257
|
+
],
|
12258
|
+
"/": [
|
12259
|
+
"mathematical_operator"
|
12260
|
+
],
|
11881
12261
|
"a": [
|
11882
12262
|
"articlePOS"
|
11883
12263
|
],
|
@@ -12072,6 +12452,14 @@
|
|
12072
12452
|
"initHandlers": [
|
12073
12453
|
],
|
12074
12454
|
"root": {
|
12455
|
+
"*": {
|
12456
|
+
},
|
12457
|
+
"+": {
|
12458
|
+
},
|
12459
|
+
"-": {
|
12460
|
+
},
|
12461
|
+
"/": {
|
12462
|
+
},
|
12075
12463
|
"a": {
|
12076
12464
|
},
|
12077
12465
|
"accuracy": {
|
@@ -12134,6 +12522,8 @@
|
|
12134
12522
|
},
|
12135
12523
|
"luck": {
|
12136
12524
|
},
|
12525
|
+
"mathematical_operator": {
|
12526
|
+
},
|
12137
12527
|
"meat": {
|
12138
12528
|
},
|
12139
12529
|
"medicine": {
|
@@ -12903,6 +13293,8 @@
|
|
12903
13293
|
"gdefaults": "gdefaults2",
|
12904
13294
|
"help": "help2",
|
12905
13295
|
"hierarchy": "hierarchy2",
|
13296
|
+
"math": "math2",
|
13297
|
+
"mathTemplate": "mathTemplate2",
|
12906
13298
|
"meta": "meta2",
|
12907
13299
|
"numbers": "numbers2",
|
12908
13300
|
"pipboy": "pipboy1",
|
@@ -12936,6 +13328,10 @@
|
|
12936
13328
|
},
|
12937
13329
|
"hierarchy2": {
|
12938
13330
|
},
|
13331
|
+
"math2": {
|
13332
|
+
},
|
13333
|
+
"mathTemplate2": {
|
13334
|
+
},
|
12939
13335
|
"meta2": {
|
12940
13336
|
},
|
12941
13337
|
"numbers2": {
|
@@ -13012,6 +13408,12 @@
|
|
13012
13408
|
"range",
|
13013
13409
|
"accuracy"
|
13014
13410
|
],
|
13411
|
+
"mathematical_operator": [
|
13412
|
+
"*",
|
13413
|
+
"+",
|
13414
|
+
"/",
|
13415
|
+
"-"
|
13416
|
+
],
|
13015
13417
|
"notAble": [
|
13016
13418
|
"unknown"
|
13017
13419
|
],
|
@@ -13123,6 +13525,11 @@
|
|
13123
13525
|
"that",
|
13124
13526
|
"orAble",
|
13125
13527
|
"ifAble",
|
13528
|
+
"*",
|
13529
|
+
"mathematical_operator",
|
13530
|
+
"+",
|
13531
|
+
"/",
|
13532
|
+
"-",
|
13126
13533
|
"pistol",
|
13127
13534
|
"weapon",
|
13128
13535
|
"rifle",
|
@@ -13161,6 +13568,18 @@
|
|
13161
13568
|
"accuracy"
|
13162
13569
|
],
|
13163
13570
|
"parents": {
|
13571
|
+
"*": [
|
13572
|
+
"mathematical_operator"
|
13573
|
+
],
|
13574
|
+
"+": [
|
13575
|
+
"mathematical_operator"
|
13576
|
+
],
|
13577
|
+
"-": [
|
13578
|
+
"mathematical_operator"
|
13579
|
+
],
|
13580
|
+
"/": [
|
13581
|
+
"mathematical_operator"
|
13582
|
+
],
|
13164
13583
|
"a": [
|
13165
13584
|
"articlePOS"
|
13166
13585
|
],
|
@@ -13355,6 +13774,14 @@
|
|
13355
13774
|
"initHandlers": [
|
13356
13775
|
],
|
13357
13776
|
"root": {
|
13777
|
+
"*": {
|
13778
|
+
},
|
13779
|
+
"+": {
|
13780
|
+
},
|
13781
|
+
"-": {
|
13782
|
+
},
|
13783
|
+
"/": {
|
13784
|
+
},
|
13358
13785
|
"a": {
|
13359
13786
|
},
|
13360
13787
|
"accuracy": {
|
@@ -13417,6 +13844,8 @@
|
|
13417
13844
|
},
|
13418
13845
|
"luck": {
|
13419
13846
|
},
|
13847
|
+
"mathematical_operator": {
|
13848
|
+
},
|
13420
13849
|
"meat": {
|
13421
13850
|
},
|
13422
13851
|
"medicine": {
|
@@ -14185,6 +14614,8 @@
|
|
14185
14614
|
"gdefaults": "gdefaults2",
|
14186
14615
|
"help": "help2",
|
14187
14616
|
"hierarchy": "hierarchy2",
|
14617
|
+
"math": "math2",
|
14618
|
+
"mathTemplate": "mathTemplate2",
|
14188
14619
|
"meta": "meta2",
|
14189
14620
|
"numbers": "numbers2",
|
14190
14621
|
"pipboy": "pipboy1",
|
@@ -14218,6 +14649,10 @@
|
|
14218
14649
|
},
|
14219
14650
|
"hierarchy2": {
|
14220
14651
|
},
|
14652
|
+
"math2": {
|
14653
|
+
},
|
14654
|
+
"mathTemplate2": {
|
14655
|
+
},
|
14221
14656
|
"meta2": {
|
14222
14657
|
},
|
14223
14658
|
"numbers2": {
|
@@ -14294,6 +14729,12 @@
|
|
14294
14729
|
"range",
|
14295
14730
|
"accuracy"
|
14296
14731
|
],
|
14732
|
+
"mathematical_operator": [
|
14733
|
+
"*",
|
14734
|
+
"+",
|
14735
|
+
"/",
|
14736
|
+
"-"
|
14737
|
+
],
|
14297
14738
|
"notAble": [
|
14298
14739
|
"unknown"
|
14299
14740
|
],
|
@@ -14405,6 +14846,11 @@
|
|
14405
14846
|
"that",
|
14406
14847
|
"orAble",
|
14407
14848
|
"ifAble",
|
14849
|
+
"*",
|
14850
|
+
"mathematical_operator",
|
14851
|
+
"+",
|
14852
|
+
"/",
|
14853
|
+
"-",
|
14408
14854
|
"pistol",
|
14409
14855
|
"weapon",
|
14410
14856
|
"rifle",
|
@@ -14443,6 +14889,18 @@
|
|
14443
14889
|
"accuracy"
|
14444
14890
|
],
|
14445
14891
|
"parents": {
|
14892
|
+
"*": [
|
14893
|
+
"mathematical_operator"
|
14894
|
+
],
|
14895
|
+
"+": [
|
14896
|
+
"mathematical_operator"
|
14897
|
+
],
|
14898
|
+
"-": [
|
14899
|
+
"mathematical_operator"
|
14900
|
+
],
|
14901
|
+
"/": [
|
14902
|
+
"mathematical_operator"
|
14903
|
+
],
|
14446
14904
|
"a": [
|
14447
14905
|
"articlePOS"
|
14448
14906
|
],
|
@@ -14637,6 +15095,14 @@
|
|
14637
15095
|
"initHandlers": [
|
14638
15096
|
],
|
14639
15097
|
"root": {
|
15098
|
+
"*": {
|
15099
|
+
},
|
15100
|
+
"+": {
|
15101
|
+
},
|
15102
|
+
"-": {
|
15103
|
+
},
|
15104
|
+
"/": {
|
15105
|
+
},
|
14640
15106
|
"a": {
|
14641
15107
|
},
|
14642
15108
|
"accuracy": {
|
@@ -14699,6 +15165,8 @@
|
|
14699
15165
|
},
|
14700
15166
|
"luck": {
|
14701
15167
|
},
|
15168
|
+
"mathematical_operator": {
|
15169
|
+
},
|
14702
15170
|
"meat": {
|
14703
15171
|
},
|
14704
15172
|
"medicine": {
|
@@ -15468,6 +15936,8 @@
|
|
15468
15936
|
"gdefaults": "gdefaults2",
|
15469
15937
|
"help": "help2",
|
15470
15938
|
"hierarchy": "hierarchy2",
|
15939
|
+
"math": "math2",
|
15940
|
+
"mathTemplate": "mathTemplate2",
|
15471
15941
|
"meta": "meta2",
|
15472
15942
|
"numbers": "numbers2",
|
15473
15943
|
"pipboy": "pipboy1",
|
@@ -15501,6 +15971,10 @@
|
|
15501
15971
|
},
|
15502
15972
|
"hierarchy2": {
|
15503
15973
|
},
|
15974
|
+
"math2": {
|
15975
|
+
},
|
15976
|
+
"mathTemplate2": {
|
15977
|
+
},
|
15504
15978
|
"meta2": {
|
15505
15979
|
},
|
15506
15980
|
"numbers2": {
|
@@ -15577,6 +16051,12 @@
|
|
15577
16051
|
"range",
|
15578
16052
|
"accuracy"
|
15579
16053
|
],
|
16054
|
+
"mathematical_operator": [
|
16055
|
+
"*",
|
16056
|
+
"+",
|
16057
|
+
"/",
|
16058
|
+
"-"
|
16059
|
+
],
|
15580
16060
|
"notAble": [
|
15581
16061
|
"unknown"
|
15582
16062
|
],
|
@@ -15688,6 +16168,11 @@
|
|
15688
16168
|
"that",
|
15689
16169
|
"orAble",
|
15690
16170
|
"ifAble",
|
16171
|
+
"*",
|
16172
|
+
"mathematical_operator",
|
16173
|
+
"+",
|
16174
|
+
"/",
|
16175
|
+
"-",
|
15691
16176
|
"pistol",
|
15692
16177
|
"weapon",
|
15693
16178
|
"rifle",
|
@@ -15726,6 +16211,18 @@
|
|
15726
16211
|
"accuracy"
|
15727
16212
|
],
|
15728
16213
|
"parents": {
|
16214
|
+
"*": [
|
16215
|
+
"mathematical_operator"
|
16216
|
+
],
|
16217
|
+
"+": [
|
16218
|
+
"mathematical_operator"
|
16219
|
+
],
|
16220
|
+
"-": [
|
16221
|
+
"mathematical_operator"
|
16222
|
+
],
|
16223
|
+
"/": [
|
16224
|
+
"mathematical_operator"
|
16225
|
+
],
|
15729
16226
|
"a": [
|
15730
16227
|
"articlePOS"
|
15731
16228
|
],
|
@@ -15920,6 +16417,14 @@
|
|
15920
16417
|
"initHandlers": [
|
15921
16418
|
],
|
15922
16419
|
"root": {
|
16420
|
+
"*": {
|
16421
|
+
},
|
16422
|
+
"+": {
|
16423
|
+
},
|
16424
|
+
"-": {
|
16425
|
+
},
|
16426
|
+
"/": {
|
16427
|
+
},
|
15923
16428
|
"a": {
|
15924
16429
|
},
|
15925
16430
|
"accuracy": {
|
@@ -15982,6 +16487,8 @@
|
|
15982
16487
|
},
|
15983
16488
|
"luck": {
|
15984
16489
|
},
|
16490
|
+
"mathematical_operator": {
|
16491
|
+
},
|
15985
16492
|
"meat": {
|
15986
16493
|
},
|
15987
16494
|
"medicine": {
|
@@ -16750,10 +17257,6 @@
|
|
16750
17257
|
"outfit",
|
16751
17258
|
0
|
16752
17259
|
],
|
16753
|
-
[
|
16754
|
-
"the",
|
16755
|
-
0
|
16756
|
-
],
|
16757
17260
|
[
|
16758
17261
|
"unknown",
|
16759
17262
|
0
|
@@ -16797,6 +17300,8 @@
|
|
16797
17300
|
"gdefaults": "gdefaults2",
|
16798
17301
|
"help": "help2",
|
16799
17302
|
"hierarchy": "hierarchy2",
|
17303
|
+
"math": "math2",
|
17304
|
+
"mathTemplate": "mathTemplate2",
|
16800
17305
|
"meta": "meta2",
|
16801
17306
|
"numbers": "numbers2",
|
16802
17307
|
"pipboy": "pipboy1",
|
@@ -16830,6 +17335,10 @@
|
|
16830
17335
|
},
|
16831
17336
|
"hierarchy2": {
|
16832
17337
|
},
|
17338
|
+
"math2": {
|
17339
|
+
},
|
17340
|
+
"mathTemplate2": {
|
17341
|
+
},
|
16833
17342
|
"meta2": {
|
16834
17343
|
},
|
16835
17344
|
"numbers2": {
|
@@ -16905,6 +17414,12 @@
|
|
16905
17414
|
"range",
|
16906
17415
|
"accuracy"
|
16907
17416
|
],
|
17417
|
+
"mathematical_operator": [
|
17418
|
+
"*",
|
17419
|
+
"+",
|
17420
|
+
"/",
|
17421
|
+
"-"
|
17422
|
+
],
|
16908
17423
|
"notAble": [
|
16909
17424
|
"unknown"
|
16910
17425
|
],
|
@@ -17016,6 +17531,11 @@
|
|
17016
17531
|
"that",
|
17017
17532
|
"orAble",
|
17018
17533
|
"ifAble",
|
17534
|
+
"*",
|
17535
|
+
"mathematical_operator",
|
17536
|
+
"+",
|
17537
|
+
"/",
|
17538
|
+
"-",
|
17019
17539
|
"pistol",
|
17020
17540
|
"weapon",
|
17021
17541
|
"rifle",
|
@@ -17054,6 +17574,18 @@
|
|
17054
17574
|
"accuracy"
|
17055
17575
|
],
|
17056
17576
|
"parents": {
|
17577
|
+
"*": [
|
17578
|
+
"mathematical_operator"
|
17579
|
+
],
|
17580
|
+
"+": [
|
17581
|
+
"mathematical_operator"
|
17582
|
+
],
|
17583
|
+
"-": [
|
17584
|
+
"mathematical_operator"
|
17585
|
+
],
|
17586
|
+
"/": [
|
17587
|
+
"mathematical_operator"
|
17588
|
+
],
|
17057
17589
|
"a": [
|
17058
17590
|
"articlePOS"
|
17059
17591
|
],
|
@@ -17248,6 +17780,14 @@
|
|
17248
17780
|
"initHandlers": [
|
17249
17781
|
],
|
17250
17782
|
"root": {
|
17783
|
+
"*": {
|
17784
|
+
},
|
17785
|
+
"+": {
|
17786
|
+
},
|
17787
|
+
"-": {
|
17788
|
+
},
|
17789
|
+
"/": {
|
17790
|
+
},
|
17251
17791
|
"a": {
|
17252
17792
|
},
|
17253
17793
|
"accuracy": {
|
@@ -17310,6 +17850,8 @@
|
|
17310
17850
|
},
|
17311
17851
|
"luck": {
|
17312
17852
|
},
|
17853
|
+
"mathematical_operator": {
|
17854
|
+
},
|
17313
17855
|
"meat": {
|
17314
17856
|
},
|
17315
17857
|
"medicine": {
|
@@ -18116,10 +18658,6 @@
|
|
18116
18658
|
"outfit",
|
18117
18659
|
0
|
18118
18660
|
],
|
18119
|
-
[
|
18120
|
-
"the",
|
18121
|
-
0
|
18122
|
-
],
|
18123
18661
|
[
|
18124
18662
|
"unknown",
|
18125
18663
|
0
|
@@ -18188,6 +18726,8 @@
|
|
18188
18726
|
"gdefaults": "gdefaults2",
|
18189
18727
|
"help": "help2",
|
18190
18728
|
"hierarchy": "hierarchy2",
|
18729
|
+
"math": "math2",
|
18730
|
+
"mathTemplate": "mathTemplate2",
|
18191
18731
|
"meta": "meta2",
|
18192
18732
|
"numbers": "numbers2",
|
18193
18733
|
"pipboy": "pipboy1",
|
@@ -18221,6 +18761,10 @@
|
|
18221
18761
|
},
|
18222
18762
|
"hierarchy2": {
|
18223
18763
|
},
|
18764
|
+
"math2": {
|
18765
|
+
},
|
18766
|
+
"mathTemplate2": {
|
18767
|
+
},
|
18224
18768
|
"meta2": {
|
18225
18769
|
},
|
18226
18770
|
"numbers2": {
|
@@ -18300,6 +18844,12 @@
|
|
18300
18844
|
"range",
|
18301
18845
|
"accuracy"
|
18302
18846
|
],
|
18847
|
+
"mathematical_operator": [
|
18848
|
+
"*",
|
18849
|
+
"+",
|
18850
|
+
"/",
|
18851
|
+
"-"
|
18852
|
+
],
|
18303
18853
|
"notAble": [
|
18304
18854
|
"unknown"
|
18305
18855
|
],
|
@@ -18411,6 +18961,11 @@
|
|
18411
18961
|
"that",
|
18412
18962
|
"orAble",
|
18413
18963
|
"ifAble",
|
18964
|
+
"*",
|
18965
|
+
"mathematical_operator",
|
18966
|
+
"+",
|
18967
|
+
"/",
|
18968
|
+
"-",
|
18414
18969
|
"pistol",
|
18415
18970
|
"weapon",
|
18416
18971
|
"rifle",
|
@@ -18449,6 +19004,18 @@
|
|
18449
19004
|
"accuracy"
|
18450
19005
|
],
|
18451
19006
|
"parents": {
|
19007
|
+
"*": [
|
19008
|
+
"mathematical_operator"
|
19009
|
+
],
|
19010
|
+
"+": [
|
19011
|
+
"mathematical_operator"
|
19012
|
+
],
|
19013
|
+
"-": [
|
19014
|
+
"mathematical_operator"
|
19015
|
+
],
|
19016
|
+
"/": [
|
19017
|
+
"mathematical_operator"
|
19018
|
+
],
|
18452
19019
|
"a": [
|
18453
19020
|
"articlePOS"
|
18454
19021
|
],
|
@@ -18643,6 +19210,14 @@
|
|
18643
19210
|
"initHandlers": [
|
18644
19211
|
],
|
18645
19212
|
"root": {
|
19213
|
+
"*": {
|
19214
|
+
},
|
19215
|
+
"+": {
|
19216
|
+
},
|
19217
|
+
"-": {
|
19218
|
+
},
|
19219
|
+
"/": {
|
19220
|
+
},
|
18646
19221
|
"a": {
|
18647
19222
|
},
|
18648
19223
|
"accuracy": {
|
@@ -18705,6 +19280,8 @@
|
|
18705
19280
|
},
|
18706
19281
|
"luck": {
|
18707
19282
|
},
|
19283
|
+
"mathematical_operator": {
|
19284
|
+
},
|
18708
19285
|
"meat": {
|
18709
19286
|
},
|
18710
19287
|
"medicine": {
|
@@ -19569,10 +20146,6 @@
|
|
19569
20146
|
"outfit",
|
19570
20147
|
0
|
19571
20148
|
],
|
19572
|
-
[
|
19573
|
-
"the",
|
19574
|
-
0
|
19575
|
-
],
|
19576
20149
|
[
|
19577
20150
|
"this",
|
19578
20151
|
0
|
@@ -19662,6 +20235,8 @@
|
|
19662
20235
|
"gdefaults": "gdefaults2",
|
19663
20236
|
"help": "help2",
|
19664
20237
|
"hierarchy": "hierarchy2",
|
20238
|
+
"math": "math2",
|
20239
|
+
"mathTemplate": "mathTemplate2",
|
19665
20240
|
"meta": "meta2",
|
19666
20241
|
"numbers": "numbers2",
|
19667
20242
|
"pipboy": "pipboy1",
|
@@ -19695,6 +20270,10 @@
|
|
19695
20270
|
},
|
19696
20271
|
"hierarchy2": {
|
19697
20272
|
},
|
20273
|
+
"math2": {
|
20274
|
+
},
|
20275
|
+
"mathTemplate2": {
|
20276
|
+
},
|
19698
20277
|
"meta2": {
|
19699
20278
|
},
|
19700
20279
|
"numbers2": {
|
@@ -19791,6 +20370,12 @@
|
|
19791
20370
|
"range",
|
19792
20371
|
"accuracy"
|
19793
20372
|
],
|
20373
|
+
"mathematical_operator": [
|
20374
|
+
"*",
|
20375
|
+
"+",
|
20376
|
+
"/",
|
20377
|
+
"-"
|
20378
|
+
],
|
19794
20379
|
"notAble": [
|
19795
20380
|
"unknown"
|
19796
20381
|
],
|
@@ -19902,6 +20487,11 @@
|
|
19902
20487
|
"that",
|
19903
20488
|
"orAble",
|
19904
20489
|
"ifAble",
|
20490
|
+
"*",
|
20491
|
+
"mathematical_operator",
|
20492
|
+
"+",
|
20493
|
+
"/",
|
20494
|
+
"-",
|
19905
20495
|
"pistol",
|
19906
20496
|
"weapon",
|
19907
20497
|
"rifle",
|
@@ -19940,6 +20530,18 @@
|
|
19940
20530
|
"accuracy"
|
19941
20531
|
],
|
19942
20532
|
"parents": {
|
20533
|
+
"*": [
|
20534
|
+
"mathematical_operator"
|
20535
|
+
],
|
20536
|
+
"+": [
|
20537
|
+
"mathematical_operator"
|
20538
|
+
],
|
20539
|
+
"-": [
|
20540
|
+
"mathematical_operator"
|
20541
|
+
],
|
20542
|
+
"/": [
|
20543
|
+
"mathematical_operator"
|
20544
|
+
],
|
19943
20545
|
"a": [
|
19944
20546
|
"articlePOS"
|
19945
20547
|
],
|
@@ -20134,6 +20736,14 @@
|
|
20134
20736
|
"initHandlers": [
|
20135
20737
|
],
|
20136
20738
|
"root": {
|
20739
|
+
"*": {
|
20740
|
+
},
|
20741
|
+
"+": {
|
20742
|
+
},
|
20743
|
+
"-": {
|
20744
|
+
},
|
20745
|
+
"/": {
|
20746
|
+
},
|
20137
20747
|
"a": {
|
20138
20748
|
},
|
20139
20749
|
"accuracy": {
|
@@ -20196,6 +20806,8 @@
|
|
20196
20806
|
},
|
20197
20807
|
"luck": {
|
20198
20808
|
},
|
20809
|
+
"mathematical_operator": {
|
20810
|
+
},
|
20199
20811
|
"meat": {
|
20200
20812
|
},
|
20201
20813
|
"medicine": {
|
@@ -21055,6 +21667,8 @@
|
|
21055
21667
|
"gdefaults": "gdefaults2",
|
21056
21668
|
"help": "help2",
|
21057
21669
|
"hierarchy": "hierarchy2",
|
21670
|
+
"math": "math2",
|
21671
|
+
"mathTemplate": "mathTemplate2",
|
21058
21672
|
"meta": "meta2",
|
21059
21673
|
"numbers": "numbers2",
|
21060
21674
|
"pipboy": "pipboy1",
|
@@ -21088,6 +21702,10 @@
|
|
21088
21702
|
},
|
21089
21703
|
"hierarchy2": {
|
21090
21704
|
},
|
21705
|
+
"math2": {
|
21706
|
+
},
|
21707
|
+
"mathTemplate2": {
|
21708
|
+
},
|
21091
21709
|
"meta2": {
|
21092
21710
|
},
|
21093
21711
|
"numbers2": {
|
@@ -21167,6 +21785,12 @@
|
|
21167
21785
|
"range",
|
21168
21786
|
"accuracy"
|
21169
21787
|
],
|
21788
|
+
"mathematical_operator": [
|
21789
|
+
"*",
|
21790
|
+
"+",
|
21791
|
+
"/",
|
21792
|
+
"-"
|
21793
|
+
],
|
21170
21794
|
"notAble": [
|
21171
21795
|
"unknown"
|
21172
21796
|
],
|
@@ -21278,6 +21902,11 @@
|
|
21278
21902
|
"that",
|
21279
21903
|
"orAble",
|
21280
21904
|
"ifAble",
|
21905
|
+
"*",
|
21906
|
+
"mathematical_operator",
|
21907
|
+
"+",
|
21908
|
+
"/",
|
21909
|
+
"-",
|
21281
21910
|
"pistol",
|
21282
21911
|
"weapon",
|
21283
21912
|
"rifle",
|
@@ -21316,6 +21945,18 @@
|
|
21316
21945
|
"accuracy"
|
21317
21946
|
],
|
21318
21947
|
"parents": {
|
21948
|
+
"*": [
|
21949
|
+
"mathematical_operator"
|
21950
|
+
],
|
21951
|
+
"+": [
|
21952
|
+
"mathematical_operator"
|
21953
|
+
],
|
21954
|
+
"-": [
|
21955
|
+
"mathematical_operator"
|
21956
|
+
],
|
21957
|
+
"/": [
|
21958
|
+
"mathematical_operator"
|
21959
|
+
],
|
21319
21960
|
"a": [
|
21320
21961
|
"articlePOS"
|
21321
21962
|
],
|
@@ -21510,6 +22151,14 @@
|
|
21510
22151
|
"initHandlers": [
|
21511
22152
|
],
|
21512
22153
|
"root": {
|
22154
|
+
"*": {
|
22155
|
+
},
|
22156
|
+
"+": {
|
22157
|
+
},
|
22158
|
+
"-": {
|
22159
|
+
},
|
22160
|
+
"/": {
|
22161
|
+
},
|
21513
22162
|
"a": {
|
21514
22163
|
},
|
21515
22164
|
"accuracy": {
|
@@ -21572,6 +22221,8 @@
|
|
21572
22221
|
},
|
21573
22222
|
"luck": {
|
21574
22223
|
},
|
22224
|
+
"mathematical_operator": {
|
22225
|
+
},
|
21575
22226
|
"meat": {
|
21576
22227
|
},
|
21577
22228
|
"medicine": {
|
@@ -22296,6 +22947,7 @@
|
|
22296
22947
|
"default": true,
|
22297
22948
|
"item": {
|
22298
22949
|
"dead": true,
|
22950
|
+
"instance": true,
|
22299
22951
|
"level": 1,
|
22300
22952
|
"marker": "stimpak",
|
22301
22953
|
"modifiers": [
|
@@ -22436,6 +23088,8 @@
|
|
22436
23088
|
"gdefaults": "gdefaults2",
|
22437
23089
|
"help": "help2",
|
22438
23090
|
"hierarchy": "hierarchy2",
|
23091
|
+
"math": "math2",
|
23092
|
+
"mathTemplate": "mathTemplate2",
|
22439
23093
|
"meta": "meta2",
|
22440
23094
|
"numbers": "numbers2",
|
22441
23095
|
"pipboy": "pipboy1",
|
@@ -22469,6 +23123,10 @@
|
|
22469
23123
|
},
|
22470
23124
|
"hierarchy2": {
|
22471
23125
|
},
|
23126
|
+
"math2": {
|
23127
|
+
},
|
23128
|
+
"mathTemplate2": {
|
23129
|
+
},
|
22472
23130
|
"meta2": {
|
22473
23131
|
},
|
22474
23132
|
"numbers2": {
|
@@ -22548,6 +23206,12 @@
|
|
22548
23206
|
"range",
|
22549
23207
|
"accuracy"
|
22550
23208
|
],
|
23209
|
+
"mathematical_operator": [
|
23210
|
+
"*",
|
23211
|
+
"+",
|
23212
|
+
"/",
|
23213
|
+
"-"
|
23214
|
+
],
|
22551
23215
|
"notAble": [
|
22552
23216
|
"unknown"
|
22553
23217
|
],
|
@@ -22659,6 +23323,11 @@
|
|
22659
23323
|
"that",
|
22660
23324
|
"orAble",
|
22661
23325
|
"ifAble",
|
23326
|
+
"*",
|
23327
|
+
"mathematical_operator",
|
23328
|
+
"+",
|
23329
|
+
"/",
|
23330
|
+
"-",
|
22662
23331
|
"pistol",
|
22663
23332
|
"weapon",
|
22664
23333
|
"rifle",
|
@@ -22697,6 +23366,18 @@
|
|
22697
23366
|
"accuracy"
|
22698
23367
|
],
|
22699
23368
|
"parents": {
|
23369
|
+
"*": [
|
23370
|
+
"mathematical_operator"
|
23371
|
+
],
|
23372
|
+
"+": [
|
23373
|
+
"mathematical_operator"
|
23374
|
+
],
|
23375
|
+
"-": [
|
23376
|
+
"mathematical_operator"
|
23377
|
+
],
|
23378
|
+
"/": [
|
23379
|
+
"mathematical_operator"
|
23380
|
+
],
|
22700
23381
|
"a": [
|
22701
23382
|
"articlePOS"
|
22702
23383
|
],
|
@@ -22891,6 +23572,14 @@
|
|
22891
23572
|
"initHandlers": [
|
22892
23573
|
],
|
22893
23574
|
"root": {
|
23575
|
+
"*": {
|
23576
|
+
},
|
23577
|
+
"+": {
|
23578
|
+
},
|
23579
|
+
"-": {
|
23580
|
+
},
|
23581
|
+
"/": {
|
23582
|
+
},
|
22894
23583
|
"a": {
|
22895
23584
|
},
|
22896
23585
|
"accuracy": {
|
@@ -22953,6 +23642,8 @@
|
|
22953
23642
|
},
|
22954
23643
|
"luck": {
|
22955
23644
|
},
|
23645
|
+
"mathematical_operator": {
|
23646
|
+
},
|
22956
23647
|
"meat": {
|
22957
23648
|
},
|
22958
23649
|
"medicine": {
|
@@ -23062,6 +23753,7 @@
|
|
23062
23753
|
"default": true,
|
23063
23754
|
"item": {
|
23064
23755
|
"dead": true,
|
23756
|
+
"instance": true,
|
23065
23757
|
"level": 1,
|
23066
23758
|
"marker": "stimpak",
|
23067
23759
|
"modifiers": [
|
@@ -23679,6 +24371,7 @@
|
|
23679
24371
|
"default": true,
|
23680
24372
|
"item": {
|
23681
24373
|
"dead": true,
|
24374
|
+
"instance": true,
|
23682
24375
|
"level": 1,
|
23683
24376
|
"marker": "stimpak",
|
23684
24377
|
"modifiers": [
|
@@ -23819,6 +24512,8 @@
|
|
23819
24512
|
"gdefaults": "gdefaults2",
|
23820
24513
|
"help": "help2",
|
23821
24514
|
"hierarchy": "hierarchy2",
|
24515
|
+
"math": "math2",
|
24516
|
+
"mathTemplate": "mathTemplate2",
|
23822
24517
|
"meta": "meta2",
|
23823
24518
|
"numbers": "numbers2",
|
23824
24519
|
"pipboy": "pipboy1",
|
@@ -23852,6 +24547,10 @@
|
|
23852
24547
|
},
|
23853
24548
|
"hierarchy2": {
|
23854
24549
|
},
|
24550
|
+
"math2": {
|
24551
|
+
},
|
24552
|
+
"mathTemplate2": {
|
24553
|
+
},
|
23855
24554
|
"meta2": {
|
23856
24555
|
},
|
23857
24556
|
"numbers2": {
|
@@ -23931,6 +24630,12 @@
|
|
23931
24630
|
"range",
|
23932
24631
|
"accuracy"
|
23933
24632
|
],
|
24633
|
+
"mathematical_operator": [
|
24634
|
+
"*",
|
24635
|
+
"+",
|
24636
|
+
"/",
|
24637
|
+
"-"
|
24638
|
+
],
|
23934
24639
|
"notAble": [
|
23935
24640
|
"unknown"
|
23936
24641
|
],
|
@@ -24042,6 +24747,11 @@
|
|
24042
24747
|
"that",
|
24043
24748
|
"orAble",
|
24044
24749
|
"ifAble",
|
24750
|
+
"*",
|
24751
|
+
"mathematical_operator",
|
24752
|
+
"+",
|
24753
|
+
"/",
|
24754
|
+
"-",
|
24045
24755
|
"pistol",
|
24046
24756
|
"weapon",
|
24047
24757
|
"rifle",
|
@@ -24080,6 +24790,18 @@
|
|
24080
24790
|
"accuracy"
|
24081
24791
|
],
|
24082
24792
|
"parents": {
|
24793
|
+
"*": [
|
24794
|
+
"mathematical_operator"
|
24795
|
+
],
|
24796
|
+
"+": [
|
24797
|
+
"mathematical_operator"
|
24798
|
+
],
|
24799
|
+
"-": [
|
24800
|
+
"mathematical_operator"
|
24801
|
+
],
|
24802
|
+
"/": [
|
24803
|
+
"mathematical_operator"
|
24804
|
+
],
|
24083
24805
|
"a": [
|
24084
24806
|
"articlePOS"
|
24085
24807
|
],
|
@@ -24274,6 +24996,14 @@
|
|
24274
24996
|
"initHandlers": [
|
24275
24997
|
],
|
24276
24998
|
"root": {
|
24999
|
+
"*": {
|
25000
|
+
},
|
25001
|
+
"+": {
|
25002
|
+
},
|
25003
|
+
"-": {
|
25004
|
+
},
|
25005
|
+
"/": {
|
25006
|
+
},
|
24277
25007
|
"a": {
|
24278
25008
|
},
|
24279
25009
|
"accuracy": {
|
@@ -24336,6 +25066,8 @@
|
|
24336
25066
|
},
|
24337
25067
|
"luck": {
|
24338
25068
|
},
|
25069
|
+
"mathematical_operator": {
|
25070
|
+
},
|
24339
25071
|
"meat": {
|
24340
25072
|
},
|
24341
25073
|
"medicine": {
|
@@ -24445,6 +25177,7 @@
|
|
24445
25177
|
"default": true,
|
24446
25178
|
"item": {
|
24447
25179
|
"dead": true,
|
25180
|
+
"instance": true,
|
24448
25181
|
"level": 1,
|
24449
25182
|
"marker": "stimpak",
|
24450
25183
|
"modifiers": [
|
@@ -25217,10 +25950,6 @@
|
|
25217
25950
|
"outfit",
|
25218
25951
|
0
|
25219
25952
|
],
|
25220
|
-
[
|
25221
|
-
"the",
|
25222
|
-
0
|
25223
|
-
],
|
25224
25953
|
[
|
25225
25954
|
"this",
|
25226
25955
|
0
|
@@ -25335,6 +26064,8 @@
|
|
25335
26064
|
"gdefaults": "gdefaults2",
|
25336
26065
|
"help": "help2",
|
25337
26066
|
"hierarchy": "hierarchy2",
|
26067
|
+
"math": "math2",
|
26068
|
+
"mathTemplate": "mathTemplate2",
|
25338
26069
|
"meta": "meta2",
|
25339
26070
|
"numbers": "numbers2",
|
25340
26071
|
"pipboy": "pipboy1",
|
@@ -25368,6 +26099,10 @@
|
|
25368
26099
|
},
|
25369
26100
|
"hierarchy2": {
|
25370
26101
|
},
|
26102
|
+
"math2": {
|
26103
|
+
},
|
26104
|
+
"mathTemplate2": {
|
26105
|
+
},
|
25371
26106
|
"meta2": {
|
25372
26107
|
},
|
25373
26108
|
"numbers2": {
|
@@ -25479,6 +26214,12 @@
|
|
25479
26214
|
"range",
|
25480
26215
|
"accuracy"
|
25481
26216
|
],
|
26217
|
+
"mathematical_operator": [
|
26218
|
+
"*",
|
26219
|
+
"+",
|
26220
|
+
"/",
|
26221
|
+
"-"
|
26222
|
+
],
|
25482
26223
|
"notAble": [
|
25483
26224
|
"unknown"
|
25484
26225
|
],
|
@@ -25590,6 +26331,11 @@
|
|
25590
26331
|
"that",
|
25591
26332
|
"orAble",
|
25592
26333
|
"ifAble",
|
26334
|
+
"*",
|
26335
|
+
"mathematical_operator",
|
26336
|
+
"+",
|
26337
|
+
"/",
|
26338
|
+
"-",
|
25593
26339
|
"pistol",
|
25594
26340
|
"weapon",
|
25595
26341
|
"rifle",
|
@@ -25628,6 +26374,18 @@
|
|
25628
26374
|
"accuracy"
|
25629
26375
|
],
|
25630
26376
|
"parents": {
|
26377
|
+
"*": [
|
26378
|
+
"mathematical_operator"
|
26379
|
+
],
|
26380
|
+
"+": [
|
26381
|
+
"mathematical_operator"
|
26382
|
+
],
|
26383
|
+
"-": [
|
26384
|
+
"mathematical_operator"
|
26385
|
+
],
|
26386
|
+
"/": [
|
26387
|
+
"mathematical_operator"
|
26388
|
+
],
|
25631
26389
|
"a": [
|
25632
26390
|
"articlePOS"
|
25633
26391
|
],
|
@@ -25822,6 +26580,14 @@
|
|
25822
26580
|
"initHandlers": [
|
25823
26581
|
],
|
25824
26582
|
"root": {
|
26583
|
+
"*": {
|
26584
|
+
},
|
26585
|
+
"+": {
|
26586
|
+
},
|
26587
|
+
"-": {
|
26588
|
+
},
|
26589
|
+
"/": {
|
26590
|
+
},
|
25825
26591
|
"a": {
|
25826
26592
|
},
|
25827
26593
|
"accuracy": {
|
@@ -25884,6 +26650,8 @@
|
|
25884
26650
|
},
|
25885
26651
|
"luck": {
|
25886
26652
|
},
|
26653
|
+
"mathematical_operator": {
|
26654
|
+
},
|
25887
26655
|
"meat": {
|
25888
26656
|
},
|
25889
26657
|
"medicine": {
|
@@ -26663,6 +27431,8 @@
|
|
26663
27431
|
"gdefaults": "gdefaults2",
|
26664
27432
|
"help": "help2",
|
26665
27433
|
"hierarchy": "hierarchy2",
|
27434
|
+
"math": "math2",
|
27435
|
+
"mathTemplate": "mathTemplate2",
|
26666
27436
|
"meta": "meta2",
|
26667
27437
|
"numbers": "numbers2",
|
26668
27438
|
"pipboy": "pipboy1",
|
@@ -26696,6 +27466,10 @@
|
|
26696
27466
|
},
|
26697
27467
|
"hierarchy2": {
|
26698
27468
|
},
|
27469
|
+
"math2": {
|
27470
|
+
},
|
27471
|
+
"mathTemplate2": {
|
27472
|
+
},
|
26699
27473
|
"meta2": {
|
26700
27474
|
},
|
26701
27475
|
"numbers2": {
|
@@ -26772,6 +27546,12 @@
|
|
26772
27546
|
"range",
|
26773
27547
|
"accuracy"
|
26774
27548
|
],
|
27549
|
+
"mathematical_operator": [
|
27550
|
+
"*",
|
27551
|
+
"+",
|
27552
|
+
"/",
|
27553
|
+
"-"
|
27554
|
+
],
|
26775
27555
|
"notAble": [
|
26776
27556
|
"unknown"
|
26777
27557
|
],
|
@@ -26883,6 +27663,11 @@
|
|
26883
27663
|
"that",
|
26884
27664
|
"orAble",
|
26885
27665
|
"ifAble",
|
27666
|
+
"*",
|
27667
|
+
"mathematical_operator",
|
27668
|
+
"+",
|
27669
|
+
"/",
|
27670
|
+
"-",
|
26886
27671
|
"pistol",
|
26887
27672
|
"weapon",
|
26888
27673
|
"rifle",
|
@@ -26921,6 +27706,18 @@
|
|
26921
27706
|
"accuracy"
|
26922
27707
|
],
|
26923
27708
|
"parents": {
|
27709
|
+
"*": [
|
27710
|
+
"mathematical_operator"
|
27711
|
+
],
|
27712
|
+
"+": [
|
27713
|
+
"mathematical_operator"
|
27714
|
+
],
|
27715
|
+
"-": [
|
27716
|
+
"mathematical_operator"
|
27717
|
+
],
|
27718
|
+
"/": [
|
27719
|
+
"mathematical_operator"
|
27720
|
+
],
|
26924
27721
|
"a": [
|
26925
27722
|
"articlePOS"
|
26926
27723
|
],
|
@@ -27115,6 +27912,14 @@
|
|
27115
27912
|
"initHandlers": [
|
27116
27913
|
],
|
27117
27914
|
"root": {
|
27915
|
+
"*": {
|
27916
|
+
},
|
27917
|
+
"+": {
|
27918
|
+
},
|
27919
|
+
"-": {
|
27920
|
+
},
|
27921
|
+
"/": {
|
27922
|
+
},
|
27118
27923
|
"a": {
|
27119
27924
|
},
|
27120
27925
|
"accuracy": {
|
@@ -27177,6 +27982,8 @@
|
|
27177
27982
|
},
|
27178
27983
|
"luck": {
|
27179
27984
|
},
|
27985
|
+
"mathematical_operator": {
|
27986
|
+
},
|
27180
27987
|
"meat": {
|
27181
27988
|
},
|
27182
27989
|
"medicine": {
|
@@ -27886,6 +28693,8 @@
|
|
27886
28693
|
"gdefaults": "gdefaults2",
|
27887
28694
|
"help": "help2",
|
27888
28695
|
"hierarchy": "hierarchy2",
|
28696
|
+
"math": "math2",
|
28697
|
+
"mathTemplate": "mathTemplate2",
|
27889
28698
|
"meta": "meta2",
|
27890
28699
|
"numbers": "numbers2",
|
27891
28700
|
"pipboy": "pipboy1",
|
@@ -27919,6 +28728,10 @@
|
|
27919
28728
|
},
|
27920
28729
|
"hierarchy2": {
|
27921
28730
|
},
|
28731
|
+
"math2": {
|
28732
|
+
},
|
28733
|
+
"mathTemplate2": {
|
28734
|
+
},
|
27922
28735
|
"meta2": {
|
27923
28736
|
},
|
27924
28737
|
"numbers2": {
|
@@ -27995,6 +28808,12 @@
|
|
27995
28808
|
"range",
|
27996
28809
|
"accuracy"
|
27997
28810
|
],
|
28811
|
+
"mathematical_operator": [
|
28812
|
+
"*",
|
28813
|
+
"+",
|
28814
|
+
"/",
|
28815
|
+
"-"
|
28816
|
+
],
|
27998
28817
|
"notAble": [
|
27999
28818
|
"unknown"
|
28000
28819
|
],
|
@@ -28106,6 +28925,11 @@
|
|
28106
28925
|
"that",
|
28107
28926
|
"orAble",
|
28108
28927
|
"ifAble",
|
28928
|
+
"*",
|
28929
|
+
"mathematical_operator",
|
28930
|
+
"+",
|
28931
|
+
"/",
|
28932
|
+
"-",
|
28109
28933
|
"pistol",
|
28110
28934
|
"weapon",
|
28111
28935
|
"rifle",
|
@@ -28144,6 +28968,18 @@
|
|
28144
28968
|
"accuracy"
|
28145
28969
|
],
|
28146
28970
|
"parents": {
|
28971
|
+
"*": [
|
28972
|
+
"mathematical_operator"
|
28973
|
+
],
|
28974
|
+
"+": [
|
28975
|
+
"mathematical_operator"
|
28976
|
+
],
|
28977
|
+
"-": [
|
28978
|
+
"mathematical_operator"
|
28979
|
+
],
|
28980
|
+
"/": [
|
28981
|
+
"mathematical_operator"
|
28982
|
+
],
|
28147
28983
|
"a": [
|
28148
28984
|
"articlePOS"
|
28149
28985
|
],
|
@@ -28338,6 +29174,14 @@
|
|
28338
29174
|
"initHandlers": [
|
28339
29175
|
],
|
28340
29176
|
"root": {
|
29177
|
+
"*": {
|
29178
|
+
},
|
29179
|
+
"+": {
|
29180
|
+
},
|
29181
|
+
"-": {
|
29182
|
+
},
|
29183
|
+
"/": {
|
29184
|
+
},
|
28341
29185
|
"a": {
|
28342
29186
|
},
|
28343
29187
|
"accuracy": {
|
@@ -28400,6 +29244,8 @@
|
|
28400
29244
|
},
|
28401
29245
|
"luck": {
|
28402
29246
|
},
|
29247
|
+
"mathematical_operator": {
|
29248
|
+
},
|
28403
29249
|
"meat": {
|
28404
29250
|
},
|
28405
29251
|
"medicine": {
|
@@ -29213,10 +30059,6 @@
|
|
29213
30059
|
"put",
|
29214
30060
|
0
|
29215
30061
|
],
|
29216
|
-
[
|
29217
|
-
"the",
|
29218
|
-
0
|
29219
|
-
],
|
29220
30062
|
[
|
29221
30063
|
"unknown",
|
29222
30064
|
0
|
@@ -29319,6 +30161,8 @@
|
|
29319
30161
|
"gdefaults": "gdefaults2",
|
29320
30162
|
"help": "help2",
|
29321
30163
|
"hierarchy": "hierarchy2",
|
30164
|
+
"math": "math2",
|
30165
|
+
"mathTemplate": "mathTemplate2",
|
29322
30166
|
"meta": "meta2",
|
29323
30167
|
"numbers": "numbers2",
|
29324
30168
|
"pipboy": "pipboy1",
|
@@ -29352,6 +30196,10 @@
|
|
29352
30196
|
},
|
29353
30197
|
"hierarchy2": {
|
29354
30198
|
},
|
30199
|
+
"math2": {
|
30200
|
+
},
|
30201
|
+
"mathTemplate2": {
|
30202
|
+
},
|
29355
30203
|
"meta2": {
|
29356
30204
|
},
|
29357
30205
|
"numbers2": {
|
@@ -29431,6 +30279,12 @@
|
|
29431
30279
|
"range",
|
29432
30280
|
"accuracy"
|
29433
30281
|
],
|
30282
|
+
"mathematical_operator": [
|
30283
|
+
"*",
|
30284
|
+
"+",
|
30285
|
+
"/",
|
30286
|
+
"-"
|
30287
|
+
],
|
29434
30288
|
"notAble": [
|
29435
30289
|
"unknown"
|
29436
30290
|
],
|
@@ -29542,6 +30396,11 @@
|
|
29542
30396
|
"that",
|
29543
30397
|
"orAble",
|
29544
30398
|
"ifAble",
|
30399
|
+
"*",
|
30400
|
+
"mathematical_operator",
|
30401
|
+
"+",
|
30402
|
+
"/",
|
30403
|
+
"-",
|
29545
30404
|
"pistol",
|
29546
30405
|
"weapon",
|
29547
30406
|
"rifle",
|
@@ -29580,6 +30439,18 @@
|
|
29580
30439
|
"accuracy"
|
29581
30440
|
],
|
29582
30441
|
"parents": {
|
30442
|
+
"*": [
|
30443
|
+
"mathematical_operator"
|
30444
|
+
],
|
30445
|
+
"+": [
|
30446
|
+
"mathematical_operator"
|
30447
|
+
],
|
30448
|
+
"-": [
|
30449
|
+
"mathematical_operator"
|
30450
|
+
],
|
30451
|
+
"/": [
|
30452
|
+
"mathematical_operator"
|
30453
|
+
],
|
29583
30454
|
"a": [
|
29584
30455
|
"articlePOS"
|
29585
30456
|
],
|
@@ -29774,6 +30645,14 @@
|
|
29774
30645
|
"initHandlers": [
|
29775
30646
|
],
|
29776
30647
|
"root": {
|
30648
|
+
"*": {
|
30649
|
+
},
|
30650
|
+
"+": {
|
30651
|
+
},
|
30652
|
+
"-": {
|
30653
|
+
},
|
30654
|
+
"/": {
|
30655
|
+
},
|
29777
30656
|
"a": {
|
29778
30657
|
},
|
29779
30658
|
"accuracy": {
|
@@ -29836,6 +30715,8 @@
|
|
29836
30715
|
},
|
29837
30716
|
"luck": {
|
29838
30717
|
},
|
30718
|
+
"mathematical_operator": {
|
30719
|
+
},
|
29839
30720
|
"meat": {
|
29840
30721
|
},
|
29841
30722
|
"medicine": {
|
@@ -30681,6 +31562,8 @@
|
|
30681
31562
|
"gdefaults": "gdefaults2",
|
30682
31563
|
"help": "help2",
|
30683
31564
|
"hierarchy": "hierarchy2",
|
31565
|
+
"math": "math2",
|
31566
|
+
"mathTemplate": "mathTemplate2",
|
30684
31567
|
"meta": "meta2",
|
30685
31568
|
"numbers": "numbers2",
|
30686
31569
|
"pipboy": "pipboy1",
|
@@ -30714,6 +31597,10 @@
|
|
30714
31597
|
},
|
30715
31598
|
"hierarchy2": {
|
30716
31599
|
},
|
31600
|
+
"math2": {
|
31601
|
+
},
|
31602
|
+
"mathTemplate2": {
|
31603
|
+
},
|
30717
31604
|
"meta2": {
|
30718
31605
|
},
|
30719
31606
|
"numbers2": {
|
@@ -30792,6 +31679,12 @@
|
|
30792
31679
|
"range",
|
30793
31680
|
"accuracy"
|
30794
31681
|
],
|
31682
|
+
"mathematical_operator": [
|
31683
|
+
"*",
|
31684
|
+
"+",
|
31685
|
+
"/",
|
31686
|
+
"-"
|
31687
|
+
],
|
30795
31688
|
"notAble": [
|
30796
31689
|
"unknown"
|
30797
31690
|
],
|
@@ -30903,6 +31796,11 @@
|
|
30903
31796
|
"that",
|
30904
31797
|
"orAble",
|
30905
31798
|
"ifAble",
|
31799
|
+
"*",
|
31800
|
+
"mathematical_operator",
|
31801
|
+
"+",
|
31802
|
+
"/",
|
31803
|
+
"-",
|
30906
31804
|
"pistol",
|
30907
31805
|
"weapon",
|
30908
31806
|
"rifle",
|
@@ -30941,6 +31839,18 @@
|
|
30941
31839
|
"accuracy"
|
30942
31840
|
],
|
30943
31841
|
"parents": {
|
31842
|
+
"*": [
|
31843
|
+
"mathematical_operator"
|
31844
|
+
],
|
31845
|
+
"+": [
|
31846
|
+
"mathematical_operator"
|
31847
|
+
],
|
31848
|
+
"-": [
|
31849
|
+
"mathematical_operator"
|
31850
|
+
],
|
31851
|
+
"/": [
|
31852
|
+
"mathematical_operator"
|
31853
|
+
],
|
30944
31854
|
"a": [
|
30945
31855
|
"articlePOS"
|
30946
31856
|
],
|
@@ -31135,6 +32045,14 @@
|
|
31135
32045
|
"initHandlers": [
|
31136
32046
|
],
|
31137
32047
|
"root": {
|
32048
|
+
"*": {
|
32049
|
+
},
|
32050
|
+
"+": {
|
32051
|
+
},
|
32052
|
+
"-": {
|
32053
|
+
},
|
32054
|
+
"/": {
|
32055
|
+
},
|
31138
32056
|
"a": {
|
31139
32057
|
},
|
31140
32058
|
"accuracy": {
|
@@ -31197,6 +32115,8 @@
|
|
31197
32115
|
},
|
31198
32116
|
"luck": {
|
31199
32117
|
},
|
32118
|
+
"mathematical_operator": {
|
32119
|
+
},
|
31200
32120
|
"meat": {
|
31201
32121
|
},
|
31202
32122
|
"medicine": {
|
@@ -31944,6 +32864,7 @@
|
|
31944
32864
|
"dead": true,
|
31945
32865
|
"determiner": "the",
|
31946
32866
|
"focusableForPhrase": true,
|
32867
|
+
"instance": true,
|
31947
32868
|
"level": 1,
|
31948
32869
|
"marker": "weapon",
|
31949
32870
|
"modifiers": [
|
@@ -32098,6 +33019,8 @@
|
|
32098
33019
|
"gdefaults": "gdefaults2",
|
32099
33020
|
"help": "help2",
|
32100
33021
|
"hierarchy": "hierarchy2",
|
33022
|
+
"math": "math2",
|
33023
|
+
"mathTemplate": "mathTemplate2",
|
32101
33024
|
"meta": "meta2",
|
32102
33025
|
"numbers": "numbers2",
|
32103
33026
|
"pipboy": "pipboy1",
|
@@ -32131,6 +33054,10 @@
|
|
32131
33054
|
},
|
32132
33055
|
"hierarchy2": {
|
32133
33056
|
},
|
33057
|
+
"math2": {
|
33058
|
+
},
|
33059
|
+
"mathTemplate2": {
|
33060
|
+
},
|
32134
33061
|
"meta2": {
|
32135
33062
|
},
|
32136
33063
|
"numbers2": {
|
@@ -32207,6 +33134,12 @@
|
|
32207
33134
|
"range",
|
32208
33135
|
"accuracy"
|
32209
33136
|
],
|
33137
|
+
"mathematical_operator": [
|
33138
|
+
"*",
|
33139
|
+
"+",
|
33140
|
+
"/",
|
33141
|
+
"-"
|
33142
|
+
],
|
32210
33143
|
"notAble": [
|
32211
33144
|
"unknown"
|
32212
33145
|
],
|
@@ -32318,6 +33251,11 @@
|
|
32318
33251
|
"that",
|
32319
33252
|
"orAble",
|
32320
33253
|
"ifAble",
|
33254
|
+
"*",
|
33255
|
+
"mathematical_operator",
|
33256
|
+
"+",
|
33257
|
+
"/",
|
33258
|
+
"-",
|
32321
33259
|
"pistol",
|
32322
33260
|
"weapon",
|
32323
33261
|
"rifle",
|
@@ -32356,6 +33294,18 @@
|
|
32356
33294
|
"accuracy"
|
32357
33295
|
],
|
32358
33296
|
"parents": {
|
33297
|
+
"*": [
|
33298
|
+
"mathematical_operator"
|
33299
|
+
],
|
33300
|
+
"+": [
|
33301
|
+
"mathematical_operator"
|
33302
|
+
],
|
33303
|
+
"-": [
|
33304
|
+
"mathematical_operator"
|
33305
|
+
],
|
33306
|
+
"/": [
|
33307
|
+
"mathematical_operator"
|
33308
|
+
],
|
32359
33309
|
"a": [
|
32360
33310
|
"articlePOS"
|
32361
33311
|
],
|
@@ -32550,6 +33500,14 @@
|
|
32550
33500
|
"initHandlers": [
|
32551
33501
|
],
|
32552
33502
|
"root": {
|
33503
|
+
"*": {
|
33504
|
+
},
|
33505
|
+
"+": {
|
33506
|
+
},
|
33507
|
+
"-": {
|
33508
|
+
},
|
33509
|
+
"/": {
|
33510
|
+
},
|
32553
33511
|
"a": {
|
32554
33512
|
},
|
32555
33513
|
"accuracy": {
|
@@ -32612,6 +33570,8 @@
|
|
32612
33570
|
},
|
32613
33571
|
"luck": {
|
32614
33572
|
},
|
33573
|
+
"mathematical_operator": {
|
33574
|
+
},
|
32615
33575
|
"meat": {
|
32616
33576
|
},
|
32617
33577
|
"medicine": {
|
@@ -32730,6 +33690,7 @@
|
|
32730
33690
|
"dead": true,
|
32731
33691
|
"determiner": "the",
|
32732
33692
|
"focusableForPhrase": true,
|
33693
|
+
"instance": true,
|
32733
33694
|
"level": 1,
|
32734
33695
|
"marker": "weapon",
|
32735
33696
|
"modifiers": [
|
@@ -33443,6 +34404,8 @@
|
|
33443
34404
|
"gdefaults": "gdefaults2",
|
33444
34405
|
"help": "help2",
|
33445
34406
|
"hierarchy": "hierarchy2",
|
34407
|
+
"math": "math2",
|
34408
|
+
"mathTemplate": "mathTemplate2",
|
33446
34409
|
"meta": "meta2",
|
33447
34410
|
"numbers": "numbers2",
|
33448
34411
|
"pipboy": "pipboy1",
|
@@ -33476,6 +34439,10 @@
|
|
33476
34439
|
},
|
33477
34440
|
"hierarchy2": {
|
33478
34441
|
},
|
34442
|
+
"math2": {
|
34443
|
+
},
|
34444
|
+
"mathTemplate2": {
|
34445
|
+
},
|
33479
34446
|
"meta2": {
|
33480
34447
|
},
|
33481
34448
|
"numbers2": {
|
@@ -33552,6 +34519,12 @@
|
|
33552
34519
|
"range",
|
33553
34520
|
"accuracy"
|
33554
34521
|
],
|
34522
|
+
"mathematical_operator": [
|
34523
|
+
"*",
|
34524
|
+
"+",
|
34525
|
+
"/",
|
34526
|
+
"-"
|
34527
|
+
],
|
33555
34528
|
"notAble": [
|
33556
34529
|
"unknown"
|
33557
34530
|
],
|
@@ -33663,6 +34636,11 @@
|
|
33663
34636
|
"that",
|
33664
34637
|
"orAble",
|
33665
34638
|
"ifAble",
|
34639
|
+
"*",
|
34640
|
+
"mathematical_operator",
|
34641
|
+
"+",
|
34642
|
+
"/",
|
34643
|
+
"-",
|
33666
34644
|
"pistol",
|
33667
34645
|
"weapon",
|
33668
34646
|
"rifle",
|
@@ -33701,6 +34679,18 @@
|
|
33701
34679
|
"accuracy"
|
33702
34680
|
],
|
33703
34681
|
"parents": {
|
34682
|
+
"*": [
|
34683
|
+
"mathematical_operator"
|
34684
|
+
],
|
34685
|
+
"+": [
|
34686
|
+
"mathematical_operator"
|
34687
|
+
],
|
34688
|
+
"-": [
|
34689
|
+
"mathematical_operator"
|
34690
|
+
],
|
34691
|
+
"/": [
|
34692
|
+
"mathematical_operator"
|
34693
|
+
],
|
33704
34694
|
"a": [
|
33705
34695
|
"articlePOS"
|
33706
34696
|
],
|
@@ -33895,6 +34885,14 @@
|
|
33895
34885
|
"initHandlers": [
|
33896
34886
|
],
|
33897
34887
|
"root": {
|
34888
|
+
"*": {
|
34889
|
+
},
|
34890
|
+
"+": {
|
34891
|
+
},
|
34892
|
+
"-": {
|
34893
|
+
},
|
34894
|
+
"/": {
|
34895
|
+
},
|
33898
34896
|
"a": {
|
33899
34897
|
},
|
33900
34898
|
"accuracy": {
|
@@ -33957,6 +34955,8 @@
|
|
33957
34955
|
},
|
33958
34956
|
"luck": {
|
33959
34957
|
},
|
34958
|
+
"mathematical_operator": {
|
34959
|
+
},
|
33960
34960
|
"meat": {
|
33961
34961
|
},
|
33962
34962
|
"medicine": {
|
@@ -34770,6 +35770,8 @@
|
|
34770
35770
|
"gdefaults": "gdefaults2",
|
34771
35771
|
"help": "help2",
|
34772
35772
|
"hierarchy": "hierarchy2",
|
35773
|
+
"math": "math2",
|
35774
|
+
"mathTemplate": "mathTemplate2",
|
34773
35775
|
"meta": "meta2",
|
34774
35776
|
"numbers": "numbers2",
|
34775
35777
|
"pipboy": "pipboy1",
|
@@ -34803,6 +35805,10 @@
|
|
34803
35805
|
},
|
34804
35806
|
"hierarchy2": {
|
34805
35807
|
},
|
35808
|
+
"math2": {
|
35809
|
+
},
|
35810
|
+
"mathTemplate2": {
|
35811
|
+
},
|
34806
35812
|
"meta2": {
|
34807
35813
|
},
|
34808
35814
|
"numbers2": {
|
@@ -34879,6 +35885,12 @@
|
|
34879
35885
|
"range",
|
34880
35886
|
"accuracy"
|
34881
35887
|
],
|
35888
|
+
"mathematical_operator": [
|
35889
|
+
"*",
|
35890
|
+
"+",
|
35891
|
+
"/",
|
35892
|
+
"-"
|
35893
|
+
],
|
34882
35894
|
"notAble": [
|
34883
35895
|
"unknown"
|
34884
35896
|
],
|
@@ -34990,6 +36002,11 @@
|
|
34990
36002
|
"that",
|
34991
36003
|
"orAble",
|
34992
36004
|
"ifAble",
|
36005
|
+
"*",
|
36006
|
+
"mathematical_operator",
|
36007
|
+
"+",
|
36008
|
+
"/",
|
36009
|
+
"-",
|
34993
36010
|
"pistol",
|
34994
36011
|
"weapon",
|
34995
36012
|
"rifle",
|
@@ -35028,6 +36045,18 @@
|
|
35028
36045
|
"accuracy"
|
35029
36046
|
],
|
35030
36047
|
"parents": {
|
36048
|
+
"*": [
|
36049
|
+
"mathematical_operator"
|
36050
|
+
],
|
36051
|
+
"+": [
|
36052
|
+
"mathematical_operator"
|
36053
|
+
],
|
36054
|
+
"-": [
|
36055
|
+
"mathematical_operator"
|
36056
|
+
],
|
36057
|
+
"/": [
|
36058
|
+
"mathematical_operator"
|
36059
|
+
],
|
35031
36060
|
"a": [
|
35032
36061
|
"articlePOS"
|
35033
36062
|
],
|
@@ -35222,6 +36251,14 @@
|
|
35222
36251
|
"initHandlers": [
|
35223
36252
|
],
|
35224
36253
|
"root": {
|
36254
|
+
"*": {
|
36255
|
+
},
|
36256
|
+
"+": {
|
36257
|
+
},
|
36258
|
+
"-": {
|
36259
|
+
},
|
36260
|
+
"/": {
|
36261
|
+
},
|
35225
36262
|
"a": {
|
35226
36263
|
},
|
35227
36264
|
"accuracy": {
|
@@ -35284,6 +36321,8 @@
|
|
35284
36321
|
},
|
35285
36322
|
"luck": {
|
35286
36323
|
},
|
36324
|
+
"mathematical_operator": {
|
36325
|
+
},
|
35287
36326
|
"meat": {
|
35288
36327
|
},
|
35289
36328
|
"medicine": {
|
@@ -36111,6 +37150,8 @@
|
|
36111
37150
|
"gdefaults": "gdefaults2",
|
36112
37151
|
"help": "help2",
|
36113
37152
|
"hierarchy": "hierarchy2",
|
37153
|
+
"math": "math2",
|
37154
|
+
"mathTemplate": "mathTemplate2",
|
36114
37155
|
"meta": "meta2",
|
36115
37156
|
"numbers": "numbers2",
|
36116
37157
|
"pipboy": "pipboy1",
|
@@ -36144,6 +37185,10 @@
|
|
36144
37185
|
},
|
36145
37186
|
"hierarchy2": {
|
36146
37187
|
},
|
37188
|
+
"math2": {
|
37189
|
+
},
|
37190
|
+
"mathTemplate2": {
|
37191
|
+
},
|
36147
37192
|
"meta2": {
|
36148
37193
|
},
|
36149
37194
|
"numbers2": {
|
@@ -36222,6 +37267,12 @@
|
|
36222
37267
|
"range",
|
36223
37268
|
"accuracy"
|
36224
37269
|
],
|
37270
|
+
"mathematical_operator": [
|
37271
|
+
"*",
|
37272
|
+
"+",
|
37273
|
+
"/",
|
37274
|
+
"-"
|
37275
|
+
],
|
36225
37276
|
"notAble": [
|
36226
37277
|
"unknown"
|
36227
37278
|
],
|
@@ -36333,6 +37384,11 @@
|
|
36333
37384
|
"that",
|
36334
37385
|
"orAble",
|
36335
37386
|
"ifAble",
|
37387
|
+
"*",
|
37388
|
+
"mathematical_operator",
|
37389
|
+
"+",
|
37390
|
+
"/",
|
37391
|
+
"-",
|
36336
37392
|
"pistol",
|
36337
37393
|
"weapon",
|
36338
37394
|
"rifle",
|
@@ -36371,6 +37427,18 @@
|
|
36371
37427
|
"accuracy"
|
36372
37428
|
],
|
36373
37429
|
"parents": {
|
37430
|
+
"*": [
|
37431
|
+
"mathematical_operator"
|
37432
|
+
],
|
37433
|
+
"+": [
|
37434
|
+
"mathematical_operator"
|
37435
|
+
],
|
37436
|
+
"-": [
|
37437
|
+
"mathematical_operator"
|
37438
|
+
],
|
37439
|
+
"/": [
|
37440
|
+
"mathematical_operator"
|
37441
|
+
],
|
36374
37442
|
"a": [
|
36375
37443
|
"articlePOS"
|
36376
37444
|
],
|
@@ -36565,6 +37633,14 @@
|
|
36565
37633
|
"initHandlers": [
|
36566
37634
|
],
|
36567
37635
|
"root": {
|
37636
|
+
"*": {
|
37637
|
+
},
|
37638
|
+
"+": {
|
37639
|
+
},
|
37640
|
+
"-": {
|
37641
|
+
},
|
37642
|
+
"/": {
|
37643
|
+
},
|
36568
37644
|
"a": {
|
36569
37645
|
},
|
36570
37646
|
"accuracy": {
|
@@ -36627,6 +37703,8 @@
|
|
36627
37703
|
},
|
36628
37704
|
"luck": {
|
36629
37705
|
},
|
37706
|
+
"mathematical_operator": {
|
37707
|
+
},
|
36630
37708
|
"meat": {
|
36631
37709
|
},
|
36632
37710
|
"medicine": {
|
@@ -37464,6 +38542,8 @@
|
|
37464
38542
|
"gdefaults": "gdefaults2",
|
37465
38543
|
"help": "help2",
|
37466
38544
|
"hierarchy": "hierarchy2",
|
38545
|
+
"math": "math2",
|
38546
|
+
"mathTemplate": "mathTemplate2",
|
37467
38547
|
"meta": "meta2",
|
37468
38548
|
"numbers": "numbers2",
|
37469
38549
|
"pipboy": "pipboy1",
|
@@ -37497,6 +38577,10 @@
|
|
37497
38577
|
},
|
37498
38578
|
"hierarchy2": {
|
37499
38579
|
},
|
38580
|
+
"math2": {
|
38581
|
+
},
|
38582
|
+
"mathTemplate2": {
|
38583
|
+
},
|
37500
38584
|
"meta2": {
|
37501
38585
|
},
|
37502
38586
|
"numbers2": {
|
@@ -37575,6 +38659,12 @@
|
|
37575
38659
|
"range",
|
37576
38660
|
"accuracy"
|
37577
38661
|
],
|
38662
|
+
"mathematical_operator": [
|
38663
|
+
"*",
|
38664
|
+
"+",
|
38665
|
+
"/",
|
38666
|
+
"-"
|
38667
|
+
],
|
37578
38668
|
"notAble": [
|
37579
38669
|
"unknown"
|
37580
38670
|
],
|
@@ -37686,6 +38776,11 @@
|
|
37686
38776
|
"that",
|
37687
38777
|
"orAble",
|
37688
38778
|
"ifAble",
|
38779
|
+
"*",
|
38780
|
+
"mathematical_operator",
|
38781
|
+
"+",
|
38782
|
+
"/",
|
38783
|
+
"-",
|
37689
38784
|
"pistol",
|
37690
38785
|
"weapon",
|
37691
38786
|
"rifle",
|
@@ -37724,6 +38819,18 @@
|
|
37724
38819
|
"accuracy"
|
37725
38820
|
],
|
37726
38821
|
"parents": {
|
38822
|
+
"*": [
|
38823
|
+
"mathematical_operator"
|
38824
|
+
],
|
38825
|
+
"+": [
|
38826
|
+
"mathematical_operator"
|
38827
|
+
],
|
38828
|
+
"-": [
|
38829
|
+
"mathematical_operator"
|
38830
|
+
],
|
38831
|
+
"/": [
|
38832
|
+
"mathematical_operator"
|
38833
|
+
],
|
37727
38834
|
"a": [
|
37728
38835
|
"articlePOS"
|
37729
38836
|
],
|
@@ -37918,6 +39025,14 @@
|
|
37918
39025
|
"initHandlers": [
|
37919
39026
|
],
|
37920
39027
|
"root": {
|
39028
|
+
"*": {
|
39029
|
+
},
|
39030
|
+
"+": {
|
39031
|
+
},
|
39032
|
+
"-": {
|
39033
|
+
},
|
39034
|
+
"/": {
|
39035
|
+
},
|
37921
39036
|
"a": {
|
37922
39037
|
},
|
37923
39038
|
"accuracy": {
|
@@ -37980,6 +39095,8 @@
|
|
37980
39095
|
},
|
37981
39096
|
"luck": {
|
37982
39097
|
},
|
39098
|
+
"mathematical_operator": {
|
39099
|
+
},
|
37983
39100
|
"meat": {
|
37984
39101
|
},
|
37985
39102
|
"medicine": {
|
@@ -38765,6 +39882,8 @@
|
|
38765
39882
|
"gdefaults": "gdefaults2",
|
38766
39883
|
"help": "help2",
|
38767
39884
|
"hierarchy": "hierarchy2",
|
39885
|
+
"math": "math2",
|
39886
|
+
"mathTemplate": "mathTemplate2",
|
38768
39887
|
"meta": "meta2",
|
38769
39888
|
"numbers": "numbers2",
|
38770
39889
|
"pipboy": "pipboy1",
|
@@ -38798,6 +39917,10 @@
|
|
38798
39917
|
},
|
38799
39918
|
"hierarchy2": {
|
38800
39919
|
},
|
39920
|
+
"math2": {
|
39921
|
+
},
|
39922
|
+
"mathTemplate2": {
|
39923
|
+
},
|
38801
39924
|
"meta2": {
|
38802
39925
|
},
|
38803
39926
|
"numbers2": {
|
@@ -38876,6 +39999,12 @@
|
|
38876
39999
|
"range",
|
38877
40000
|
"accuracy"
|
38878
40001
|
],
|
40002
|
+
"mathematical_operator": [
|
40003
|
+
"*",
|
40004
|
+
"+",
|
40005
|
+
"/",
|
40006
|
+
"-"
|
40007
|
+
],
|
38879
40008
|
"notAble": [
|
38880
40009
|
"unknown"
|
38881
40010
|
],
|
@@ -38987,6 +40116,11 @@
|
|
38987
40116
|
"that",
|
38988
40117
|
"orAble",
|
38989
40118
|
"ifAble",
|
40119
|
+
"*",
|
40120
|
+
"mathematical_operator",
|
40121
|
+
"+",
|
40122
|
+
"/",
|
40123
|
+
"-",
|
38990
40124
|
"pistol",
|
38991
40125
|
"weapon",
|
38992
40126
|
"rifle",
|
@@ -39025,6 +40159,18 @@
|
|
39025
40159
|
"accuracy"
|
39026
40160
|
],
|
39027
40161
|
"parents": {
|
40162
|
+
"*": [
|
40163
|
+
"mathematical_operator"
|
40164
|
+
],
|
40165
|
+
"+": [
|
40166
|
+
"mathematical_operator"
|
40167
|
+
],
|
40168
|
+
"-": [
|
40169
|
+
"mathematical_operator"
|
40170
|
+
],
|
40171
|
+
"/": [
|
40172
|
+
"mathematical_operator"
|
40173
|
+
],
|
39028
40174
|
"a": [
|
39029
40175
|
"articlePOS"
|
39030
40176
|
],
|
@@ -39219,6 +40365,14 @@
|
|
39219
40365
|
"initHandlers": [
|
39220
40366
|
],
|
39221
40367
|
"root": {
|
40368
|
+
"*": {
|
40369
|
+
},
|
40370
|
+
"+": {
|
40371
|
+
},
|
40372
|
+
"-": {
|
40373
|
+
},
|
40374
|
+
"/": {
|
40375
|
+
},
|
39222
40376
|
"a": {
|
39223
40377
|
},
|
39224
40378
|
"accuracy": {
|
@@ -39281,6 +40435,8 @@
|
|
39281
40435
|
},
|
39282
40436
|
"luck": {
|
39283
40437
|
},
|
40438
|
+
"mathematical_operator": {
|
40439
|
+
},
|
39284
40440
|
"meat": {
|
39285
40441
|
},
|
39286
40442
|
"medicine": {
|
@@ -40101,6 +41257,8 @@
|
|
40101
41257
|
"gdefaults": "gdefaults2",
|
40102
41258
|
"help": "help2",
|
40103
41259
|
"hierarchy": "hierarchy2",
|
41260
|
+
"math": "math2",
|
41261
|
+
"mathTemplate": "mathTemplate2",
|
40104
41262
|
"meta": "meta2",
|
40105
41263
|
"numbers": "numbers2",
|
40106
41264
|
"pipboy": "pipboy1",
|
@@ -40134,6 +41292,10 @@
|
|
40134
41292
|
},
|
40135
41293
|
"hierarchy2": {
|
40136
41294
|
},
|
41295
|
+
"math2": {
|
41296
|
+
},
|
41297
|
+
"mathTemplate2": {
|
41298
|
+
},
|
40137
41299
|
"meta2": {
|
40138
41300
|
},
|
40139
41301
|
"numbers2": {
|
@@ -40212,6 +41374,12 @@
|
|
40212
41374
|
"range",
|
40213
41375
|
"accuracy"
|
40214
41376
|
],
|
41377
|
+
"mathematical_operator": [
|
41378
|
+
"*",
|
41379
|
+
"+",
|
41380
|
+
"/",
|
41381
|
+
"-"
|
41382
|
+
],
|
40215
41383
|
"notAble": [
|
40216
41384
|
"unknown"
|
40217
41385
|
],
|
@@ -40323,6 +41491,11 @@
|
|
40323
41491
|
"that",
|
40324
41492
|
"orAble",
|
40325
41493
|
"ifAble",
|
41494
|
+
"*",
|
41495
|
+
"mathematical_operator",
|
41496
|
+
"+",
|
41497
|
+
"/",
|
41498
|
+
"-",
|
40326
41499
|
"pistol",
|
40327
41500
|
"weapon",
|
40328
41501
|
"rifle",
|
@@ -40361,6 +41534,18 @@
|
|
40361
41534
|
"accuracy"
|
40362
41535
|
],
|
40363
41536
|
"parents": {
|
41537
|
+
"*": [
|
41538
|
+
"mathematical_operator"
|
41539
|
+
],
|
41540
|
+
"+": [
|
41541
|
+
"mathematical_operator"
|
41542
|
+
],
|
41543
|
+
"-": [
|
41544
|
+
"mathematical_operator"
|
41545
|
+
],
|
41546
|
+
"/": [
|
41547
|
+
"mathematical_operator"
|
41548
|
+
],
|
40364
41549
|
"a": [
|
40365
41550
|
"articlePOS"
|
40366
41551
|
],
|
@@ -40555,6 +41740,14 @@
|
|
40555
41740
|
"initHandlers": [
|
40556
41741
|
],
|
40557
41742
|
"root": {
|
41743
|
+
"*": {
|
41744
|
+
},
|
41745
|
+
"+": {
|
41746
|
+
},
|
41747
|
+
"-": {
|
41748
|
+
},
|
41749
|
+
"/": {
|
41750
|
+
},
|
40558
41751
|
"a": {
|
40559
41752
|
},
|
40560
41753
|
"accuracy": {
|
@@ -40617,6 +41810,8 @@
|
|
40617
41810
|
},
|
40618
41811
|
"luck": {
|
40619
41812
|
},
|
41813
|
+
"mathematical_operator": {
|
41814
|
+
},
|
40620
41815
|
"meat": {
|
40621
41816
|
},
|
40622
41817
|
"medicine": {
|
@@ -41467,6 +42662,8 @@
|
|
41467
42662
|
"gdefaults": "gdefaults2",
|
41468
42663
|
"help": "help2",
|
41469
42664
|
"hierarchy": "hierarchy2",
|
42665
|
+
"math": "math2",
|
42666
|
+
"mathTemplate": "mathTemplate2",
|
41470
42667
|
"meta": "meta2",
|
41471
42668
|
"numbers": "numbers2",
|
41472
42669
|
"pipboy": "pipboy1",
|
@@ -41500,6 +42697,10 @@
|
|
41500
42697
|
},
|
41501
42698
|
"hierarchy2": {
|
41502
42699
|
},
|
42700
|
+
"math2": {
|
42701
|
+
},
|
42702
|
+
"mathTemplate2": {
|
42703
|
+
},
|
41503
42704
|
"meta2": {
|
41504
42705
|
},
|
41505
42706
|
"numbers2": {
|
@@ -41576,6 +42777,12 @@
|
|
41576
42777
|
"range",
|
41577
42778
|
"accuracy"
|
41578
42779
|
],
|
42780
|
+
"mathematical_operator": [
|
42781
|
+
"*",
|
42782
|
+
"+",
|
42783
|
+
"/",
|
42784
|
+
"-"
|
42785
|
+
],
|
41579
42786
|
"notAble": [
|
41580
42787
|
"unknown"
|
41581
42788
|
],
|
@@ -41687,6 +42894,11 @@
|
|
41687
42894
|
"that",
|
41688
42895
|
"orAble",
|
41689
42896
|
"ifAble",
|
42897
|
+
"*",
|
42898
|
+
"mathematical_operator",
|
42899
|
+
"+",
|
42900
|
+
"/",
|
42901
|
+
"-",
|
41690
42902
|
"pistol",
|
41691
42903
|
"weapon",
|
41692
42904
|
"rifle",
|
@@ -41725,6 +42937,18 @@
|
|
41725
42937
|
"accuracy"
|
41726
42938
|
],
|
41727
42939
|
"parents": {
|
42940
|
+
"*": [
|
42941
|
+
"mathematical_operator"
|
42942
|
+
],
|
42943
|
+
"+": [
|
42944
|
+
"mathematical_operator"
|
42945
|
+
],
|
42946
|
+
"-": [
|
42947
|
+
"mathematical_operator"
|
42948
|
+
],
|
42949
|
+
"/": [
|
42950
|
+
"mathematical_operator"
|
42951
|
+
],
|
41728
42952
|
"a": [
|
41729
42953
|
"articlePOS"
|
41730
42954
|
],
|
@@ -41919,6 +43143,14 @@
|
|
41919
43143
|
"initHandlers": [
|
41920
43144
|
],
|
41921
43145
|
"root": {
|
43146
|
+
"*": {
|
43147
|
+
},
|
43148
|
+
"+": {
|
43149
|
+
},
|
43150
|
+
"-": {
|
43151
|
+
},
|
43152
|
+
"/": {
|
43153
|
+
},
|
41922
43154
|
"a": {
|
41923
43155
|
},
|
41924
43156
|
"accuracy": {
|
@@ -41981,6 +43213,8 @@
|
|
41981
43213
|
},
|
41982
43214
|
"luck": {
|
41983
43215
|
},
|
43216
|
+
"mathematical_operator": {
|
43217
|
+
},
|
41984
43218
|
"meat": {
|
41985
43219
|
},
|
41986
43220
|
"medicine": {
|
@@ -42817,6 +44051,8 @@
|
|
42817
44051
|
"gdefaults": "gdefaults2",
|
42818
44052
|
"help": "help2",
|
42819
44053
|
"hierarchy": "hierarchy2",
|
44054
|
+
"math": "math2",
|
44055
|
+
"mathTemplate": "mathTemplate2",
|
42820
44056
|
"meta": "meta2",
|
42821
44057
|
"numbers": "numbers2",
|
42822
44058
|
"pipboy": "pipboy1",
|
@@ -42850,6 +44086,10 @@
|
|
42850
44086
|
},
|
42851
44087
|
"hierarchy2": {
|
42852
44088
|
},
|
44089
|
+
"math2": {
|
44090
|
+
},
|
44091
|
+
"mathTemplate2": {
|
44092
|
+
},
|
42853
44093
|
"meta2": {
|
42854
44094
|
},
|
42855
44095
|
"numbers2": {
|
@@ -42926,6 +44166,12 @@
|
|
42926
44166
|
"range",
|
42927
44167
|
"accuracy"
|
42928
44168
|
],
|
44169
|
+
"mathematical_operator": [
|
44170
|
+
"*",
|
44171
|
+
"+",
|
44172
|
+
"/",
|
44173
|
+
"-"
|
44174
|
+
],
|
42929
44175
|
"notAble": [
|
42930
44176
|
"unknown"
|
42931
44177
|
],
|
@@ -43037,6 +44283,11 @@
|
|
43037
44283
|
"that",
|
43038
44284
|
"orAble",
|
43039
44285
|
"ifAble",
|
44286
|
+
"*",
|
44287
|
+
"mathematical_operator",
|
44288
|
+
"+",
|
44289
|
+
"/",
|
44290
|
+
"-",
|
43040
44291
|
"pistol",
|
43041
44292
|
"weapon",
|
43042
44293
|
"rifle",
|
@@ -43075,6 +44326,18 @@
|
|
43075
44326
|
"accuracy"
|
43076
44327
|
],
|
43077
44328
|
"parents": {
|
44329
|
+
"*": [
|
44330
|
+
"mathematical_operator"
|
44331
|
+
],
|
44332
|
+
"+": [
|
44333
|
+
"mathematical_operator"
|
44334
|
+
],
|
44335
|
+
"-": [
|
44336
|
+
"mathematical_operator"
|
44337
|
+
],
|
44338
|
+
"/": [
|
44339
|
+
"mathematical_operator"
|
44340
|
+
],
|
43078
44341
|
"a": [
|
43079
44342
|
"articlePOS"
|
43080
44343
|
],
|
@@ -43269,6 +44532,14 @@
|
|
43269
44532
|
"initHandlers": [
|
43270
44533
|
],
|
43271
44534
|
"root": {
|
44535
|
+
"*": {
|
44536
|
+
},
|
44537
|
+
"+": {
|
44538
|
+
},
|
44539
|
+
"-": {
|
44540
|
+
},
|
44541
|
+
"/": {
|
44542
|
+
},
|
43272
44543
|
"a": {
|
43273
44544
|
},
|
43274
44545
|
"accuracy": {
|
@@ -43331,6 +44602,8 @@
|
|
43331
44602
|
},
|
43332
44603
|
"luck": {
|
43333
44604
|
},
|
44605
|
+
"mathematical_operator": {
|
44606
|
+
},
|
43334
44607
|
"meat": {
|
43335
44608
|
},
|
43336
44609
|
"medicine": {
|
@@ -44116,6 +45389,8 @@
|
|
44116
45389
|
"gdefaults": "gdefaults2",
|
44117
45390
|
"help": "help2",
|
44118
45391
|
"hierarchy": "hierarchy2",
|
45392
|
+
"math": "math2",
|
45393
|
+
"mathTemplate": "mathTemplate2",
|
44119
45394
|
"meta": "meta2",
|
44120
45395
|
"numbers": "numbers2",
|
44121
45396
|
"pipboy": "pipboy1",
|
@@ -44149,6 +45424,10 @@
|
|
44149
45424
|
},
|
44150
45425
|
"hierarchy2": {
|
44151
45426
|
},
|
45427
|
+
"math2": {
|
45428
|
+
},
|
45429
|
+
"mathTemplate2": {
|
45430
|
+
},
|
44152
45431
|
"meta2": {
|
44153
45432
|
},
|
44154
45433
|
"numbers2": {
|
@@ -44225,6 +45504,12 @@
|
|
44225
45504
|
"range",
|
44226
45505
|
"accuracy"
|
44227
45506
|
],
|
45507
|
+
"mathematical_operator": [
|
45508
|
+
"*",
|
45509
|
+
"+",
|
45510
|
+
"/",
|
45511
|
+
"-"
|
45512
|
+
],
|
44228
45513
|
"notAble": [
|
44229
45514
|
"unknown"
|
44230
45515
|
],
|
@@ -44336,6 +45621,11 @@
|
|
44336
45621
|
"that",
|
44337
45622
|
"orAble",
|
44338
45623
|
"ifAble",
|
45624
|
+
"*",
|
45625
|
+
"mathematical_operator",
|
45626
|
+
"+",
|
45627
|
+
"/",
|
45628
|
+
"-",
|
44339
45629
|
"pistol",
|
44340
45630
|
"weapon",
|
44341
45631
|
"rifle",
|
@@ -44374,6 +45664,18 @@
|
|
44374
45664
|
"accuracy"
|
44375
45665
|
],
|
44376
45666
|
"parents": {
|
45667
|
+
"*": [
|
45668
|
+
"mathematical_operator"
|
45669
|
+
],
|
45670
|
+
"+": [
|
45671
|
+
"mathematical_operator"
|
45672
|
+
],
|
45673
|
+
"-": [
|
45674
|
+
"mathematical_operator"
|
45675
|
+
],
|
45676
|
+
"/": [
|
45677
|
+
"mathematical_operator"
|
45678
|
+
],
|
44377
45679
|
"a": [
|
44378
45680
|
"articlePOS"
|
44379
45681
|
],
|
@@ -44568,6 +45870,14 @@
|
|
44568
45870
|
"initHandlers": [
|
44569
45871
|
],
|
44570
45872
|
"root": {
|
45873
|
+
"*": {
|
45874
|
+
},
|
45875
|
+
"+": {
|
45876
|
+
},
|
45877
|
+
"-": {
|
45878
|
+
},
|
45879
|
+
"/": {
|
45880
|
+
},
|
44571
45881
|
"a": {
|
44572
45882
|
},
|
44573
45883
|
"accuracy": {
|
@@ -44630,6 +45940,8 @@
|
|
44630
45940
|
},
|
44631
45941
|
"luck": {
|
44632
45942
|
},
|
45943
|
+
"mathematical_operator": {
|
45944
|
+
},
|
44633
45945
|
"meat": {
|
44634
45946
|
},
|
44635
45947
|
"medicine": {
|
@@ -45507,6 +46819,8 @@
|
|
45507
46819
|
"gdefaults": "gdefaults2",
|
45508
46820
|
"help": "help2",
|
45509
46821
|
"hierarchy": "hierarchy2",
|
46822
|
+
"math": "math2",
|
46823
|
+
"mathTemplate": "mathTemplate2",
|
45510
46824
|
"meta": "meta2",
|
45511
46825
|
"numbers": "numbers2",
|
45512
46826
|
"pipboy": "pipboy1",
|
@@ -45540,6 +46854,10 @@
|
|
45540
46854
|
},
|
45541
46855
|
"hierarchy2": {
|
45542
46856
|
},
|
46857
|
+
"math2": {
|
46858
|
+
},
|
46859
|
+
"mathTemplate2": {
|
46860
|
+
},
|
45543
46861
|
"meta2": {
|
45544
46862
|
},
|
45545
46863
|
"numbers2": {
|
@@ -45615,6 +46933,12 @@
|
|
45615
46933
|
"range",
|
45616
46934
|
"accuracy"
|
45617
46935
|
],
|
46936
|
+
"mathematical_operator": [
|
46937
|
+
"*",
|
46938
|
+
"+",
|
46939
|
+
"/",
|
46940
|
+
"-"
|
46941
|
+
],
|
45618
46942
|
"notAble": [
|
45619
46943
|
"unknown"
|
45620
46944
|
],
|
@@ -45726,6 +47050,11 @@
|
|
45726
47050
|
"that",
|
45727
47051
|
"orAble",
|
45728
47052
|
"ifAble",
|
47053
|
+
"*",
|
47054
|
+
"mathematical_operator",
|
47055
|
+
"+",
|
47056
|
+
"/",
|
47057
|
+
"-",
|
45729
47058
|
"pistol",
|
45730
47059
|
"weapon",
|
45731
47060
|
"rifle",
|
@@ -45764,6 +47093,18 @@
|
|
45764
47093
|
"accuracy"
|
45765
47094
|
],
|
45766
47095
|
"parents": {
|
47096
|
+
"*": [
|
47097
|
+
"mathematical_operator"
|
47098
|
+
],
|
47099
|
+
"+": [
|
47100
|
+
"mathematical_operator"
|
47101
|
+
],
|
47102
|
+
"-": [
|
47103
|
+
"mathematical_operator"
|
47104
|
+
],
|
47105
|
+
"/": [
|
47106
|
+
"mathematical_operator"
|
47107
|
+
],
|
45767
47108
|
"a": [
|
45768
47109
|
"articlePOS"
|
45769
47110
|
],
|
@@ -45958,6 +47299,14 @@
|
|
45958
47299
|
"initHandlers": [
|
45959
47300
|
],
|
45960
47301
|
"root": {
|
47302
|
+
"*": {
|
47303
|
+
},
|
47304
|
+
"+": {
|
47305
|
+
},
|
47306
|
+
"-": {
|
47307
|
+
},
|
47308
|
+
"/": {
|
47309
|
+
},
|
45961
47310
|
"a": {
|
45962
47311
|
},
|
45963
47312
|
"accuracy": {
|
@@ -46020,6 +47369,8 @@
|
|
46020
47369
|
},
|
46021
47370
|
"luck": {
|
46022
47371
|
},
|
47372
|
+
"mathematical_operator": {
|
47373
|
+
},
|
46023
47374
|
"meat": {
|
46024
47375
|
},
|
46025
47376
|
"medicine": {
|
@@ -47069,6 +48420,8 @@
|
|
47069
48420
|
"gdefaults": "gdefaults2",
|
47070
48421
|
"help": "help2",
|
47071
48422
|
"hierarchy": "hierarchy2",
|
48423
|
+
"math": "math2",
|
48424
|
+
"mathTemplate": "mathTemplate2",
|
47072
48425
|
"meta": "meta2",
|
47073
48426
|
"numbers": "numbers2",
|
47074
48427
|
"pipboy": "pipboy1",
|
@@ -47102,6 +48455,10 @@
|
|
47102
48455
|
},
|
47103
48456
|
"hierarchy2": {
|
47104
48457
|
},
|
48458
|
+
"math2": {
|
48459
|
+
},
|
48460
|
+
"mathTemplate2": {
|
48461
|
+
},
|
47105
48462
|
"meta2": {
|
47106
48463
|
},
|
47107
48464
|
"numbers2": {
|
@@ -47184,6 +48541,12 @@
|
|
47184
48541
|
"range",
|
47185
48542
|
"accuracy"
|
47186
48543
|
],
|
48544
|
+
"mathematical_operator": [
|
48545
|
+
"*",
|
48546
|
+
"+",
|
48547
|
+
"/",
|
48548
|
+
"-"
|
48549
|
+
],
|
47187
48550
|
"notAble": [
|
47188
48551
|
"unknown"
|
47189
48552
|
],
|
@@ -47295,6 +48658,11 @@
|
|
47295
48658
|
"that",
|
47296
48659
|
"orAble",
|
47297
48660
|
"ifAble",
|
48661
|
+
"*",
|
48662
|
+
"mathematical_operator",
|
48663
|
+
"+",
|
48664
|
+
"/",
|
48665
|
+
"-",
|
47298
48666
|
"pistol",
|
47299
48667
|
"weapon",
|
47300
48668
|
"rifle",
|
@@ -47333,6 +48701,18 @@
|
|
47333
48701
|
"accuracy"
|
47334
48702
|
],
|
47335
48703
|
"parents": {
|
48704
|
+
"*": [
|
48705
|
+
"mathematical_operator"
|
48706
|
+
],
|
48707
|
+
"+": [
|
48708
|
+
"mathematical_operator"
|
48709
|
+
],
|
48710
|
+
"-": [
|
48711
|
+
"mathematical_operator"
|
48712
|
+
],
|
48713
|
+
"/": [
|
48714
|
+
"mathematical_operator"
|
48715
|
+
],
|
47336
48716
|
"a": [
|
47337
48717
|
"articlePOS"
|
47338
48718
|
],
|
@@ -47527,6 +48907,14 @@
|
|
47527
48907
|
"initHandlers": [
|
47528
48908
|
],
|
47529
48909
|
"root": {
|
48910
|
+
"*": {
|
48911
|
+
},
|
48912
|
+
"+": {
|
48913
|
+
},
|
48914
|
+
"-": {
|
48915
|
+
},
|
48916
|
+
"/": {
|
48917
|
+
},
|
47530
48918
|
"a": {
|
47531
48919
|
},
|
47532
48920
|
"accuracy": {
|
@@ -47589,6 +48977,8 @@
|
|
47589
48977
|
},
|
47590
48978
|
"luck": {
|
47591
48979
|
},
|
48980
|
+
"mathematical_operator": {
|
48981
|
+
},
|
47592
48982
|
"meat": {
|
47593
48983
|
},
|
47594
48984
|
"medicine": {
|
@@ -48487,6 +49877,8 @@
|
|
48487
49877
|
"gdefaults": "gdefaults2",
|
48488
49878
|
"help": "help2",
|
48489
49879
|
"hierarchy": "hierarchy2",
|
49880
|
+
"math": "math2",
|
49881
|
+
"mathTemplate": "mathTemplate2",
|
48490
49882
|
"meta": "meta2",
|
48491
49883
|
"numbers": "numbers2",
|
48492
49884
|
"pipboy": "pipboy1",
|
@@ -48520,6 +49912,10 @@
|
|
48520
49912
|
},
|
48521
49913
|
"hierarchy2": {
|
48522
49914
|
},
|
49915
|
+
"math2": {
|
49916
|
+
},
|
49917
|
+
"mathTemplate2": {
|
49918
|
+
},
|
48523
49919
|
"meta2": {
|
48524
49920
|
},
|
48525
49921
|
"numbers2": {
|
@@ -48598,6 +49994,12 @@
|
|
48598
49994
|
"range",
|
48599
49995
|
"accuracy"
|
48600
49996
|
],
|
49997
|
+
"mathematical_operator": [
|
49998
|
+
"*",
|
49999
|
+
"+",
|
50000
|
+
"/",
|
50001
|
+
"-"
|
50002
|
+
],
|
48601
50003
|
"notAble": [
|
48602
50004
|
"unknown"
|
48603
50005
|
],
|
@@ -48709,6 +50111,11 @@
|
|
48709
50111
|
"that",
|
48710
50112
|
"orAble",
|
48711
50113
|
"ifAble",
|
50114
|
+
"*",
|
50115
|
+
"mathematical_operator",
|
50116
|
+
"+",
|
50117
|
+
"/",
|
50118
|
+
"-",
|
48712
50119
|
"pistol",
|
48713
50120
|
"weapon",
|
48714
50121
|
"rifle",
|
@@ -48747,6 +50154,18 @@
|
|
48747
50154
|
"accuracy"
|
48748
50155
|
],
|
48749
50156
|
"parents": {
|
50157
|
+
"*": [
|
50158
|
+
"mathematical_operator"
|
50159
|
+
],
|
50160
|
+
"+": [
|
50161
|
+
"mathematical_operator"
|
50162
|
+
],
|
50163
|
+
"-": [
|
50164
|
+
"mathematical_operator"
|
50165
|
+
],
|
50166
|
+
"/": [
|
50167
|
+
"mathematical_operator"
|
50168
|
+
],
|
48750
50169
|
"a": [
|
48751
50170
|
"articlePOS"
|
48752
50171
|
],
|
@@ -48941,6 +50360,14 @@
|
|
48941
50360
|
"initHandlers": [
|
48942
50361
|
],
|
48943
50362
|
"root": {
|
50363
|
+
"*": {
|
50364
|
+
},
|
50365
|
+
"+": {
|
50366
|
+
},
|
50367
|
+
"-": {
|
50368
|
+
},
|
50369
|
+
"/": {
|
50370
|
+
},
|
48944
50371
|
"a": {
|
48945
50372
|
},
|
48946
50373
|
"accuracy": {
|
@@ -49003,6 +50430,8 @@
|
|
49003
50430
|
},
|
49004
50431
|
"luck": {
|
49005
50432
|
},
|
50433
|
+
"mathematical_operator": {
|
50434
|
+
},
|
49006
50435
|
"meat": {
|
49007
50436
|
},
|
49008
50437
|
"medicine": {
|
@@ -49893,6 +51322,8 @@
|
|
49893
51322
|
"gdefaults": "gdefaults2",
|
49894
51323
|
"help": "help2",
|
49895
51324
|
"hierarchy": "hierarchy2",
|
51325
|
+
"math": "math2",
|
51326
|
+
"mathTemplate": "mathTemplate2",
|
49896
51327
|
"meta": "meta2",
|
49897
51328
|
"numbers": "numbers2",
|
49898
51329
|
"pipboy": "pipboy1",
|
@@ -49926,6 +51357,10 @@
|
|
49926
51357
|
},
|
49927
51358
|
"hierarchy2": {
|
49928
51359
|
},
|
51360
|
+
"math2": {
|
51361
|
+
},
|
51362
|
+
"mathTemplate2": {
|
51363
|
+
},
|
49929
51364
|
"meta2": {
|
49930
51365
|
},
|
49931
51366
|
"numbers2": {
|
@@ -50002,6 +51437,12 @@
|
|
50002
51437
|
"range",
|
50003
51438
|
"accuracy"
|
50004
51439
|
],
|
51440
|
+
"mathematical_operator": [
|
51441
|
+
"*",
|
51442
|
+
"+",
|
51443
|
+
"/",
|
51444
|
+
"-"
|
51445
|
+
],
|
50005
51446
|
"notAble": [
|
50006
51447
|
"unknown"
|
50007
51448
|
],
|
@@ -50113,6 +51554,11 @@
|
|
50113
51554
|
"that",
|
50114
51555
|
"orAble",
|
50115
51556
|
"ifAble",
|
51557
|
+
"*",
|
51558
|
+
"mathematical_operator",
|
51559
|
+
"+",
|
51560
|
+
"/",
|
51561
|
+
"-",
|
50116
51562
|
"pistol",
|
50117
51563
|
"weapon",
|
50118
51564
|
"rifle",
|
@@ -50151,6 +51597,18 @@
|
|
50151
51597
|
"accuracy"
|
50152
51598
|
],
|
50153
51599
|
"parents": {
|
51600
|
+
"*": [
|
51601
|
+
"mathematical_operator"
|
51602
|
+
],
|
51603
|
+
"+": [
|
51604
|
+
"mathematical_operator"
|
51605
|
+
],
|
51606
|
+
"-": [
|
51607
|
+
"mathematical_operator"
|
51608
|
+
],
|
51609
|
+
"/": [
|
51610
|
+
"mathematical_operator"
|
51611
|
+
],
|
50154
51612
|
"a": [
|
50155
51613
|
"articlePOS"
|
50156
51614
|
],
|
@@ -50345,6 +51803,14 @@
|
|
50345
51803
|
"initHandlers": [
|
50346
51804
|
],
|
50347
51805
|
"root": {
|
51806
|
+
"*": {
|
51807
|
+
},
|
51808
|
+
"+": {
|
51809
|
+
},
|
51810
|
+
"-": {
|
51811
|
+
},
|
51812
|
+
"/": {
|
51813
|
+
},
|
50348
51814
|
"a": {
|
50349
51815
|
},
|
50350
51816
|
"accuracy": {
|
@@ -50407,6 +51873,8 @@
|
|
50407
51873
|
},
|
50408
51874
|
"luck": {
|
50409
51875
|
},
|
51876
|
+
"mathematical_operator": {
|
51877
|
+
},
|
50410
51878
|
"meat": {
|
50411
51879
|
},
|
50412
51880
|
"medicine": {
|
@@ -51124,13 +52592,11 @@
|
|
51124
52592
|
0
|
51125
52593
|
],
|
51126
52594
|
[
|
51127
|
-
"
|
52595
|
+
"item",
|
51128
52596
|
0
|
51129
|
-
]
|
51130
|
-
],
|
51131
|
-
[
|
52597
|
+
],
|
51132
52598
|
[
|
51133
|
-
"
|
52599
|
+
"property",
|
51134
52600
|
0
|
51135
52601
|
],
|
51136
52602
|
[
|
@@ -51140,6 +52606,10 @@
|
|
51140
52606
|
[
|
51141
52607
|
"the",
|
51142
52608
|
0
|
52609
|
+
],
|
52610
|
+
[
|
52611
|
+
"what",
|
52612
|
+
0
|
51143
52613
|
]
|
51144
52614
|
],
|
51145
52615
|
[
|
@@ -51150,17 +52620,19 @@
|
|
51150
52620
|
[
|
51151
52621
|
"propertyOf",
|
51152
52622
|
0
|
51153
|
-
]
|
52623
|
+
]
|
52624
|
+
],
|
52625
|
+
[
|
51154
52626
|
[
|
51155
|
-
"
|
52627
|
+
"is",
|
51156
52628
|
0
|
51157
52629
|
],
|
51158
52630
|
[
|
51159
|
-
"
|
52631
|
+
"propertyOf",
|
51160
52632
|
0
|
51161
52633
|
],
|
51162
52634
|
[
|
51163
|
-
"
|
52635
|
+
"the",
|
51164
52636
|
0
|
51165
52637
|
]
|
51166
52638
|
],
|
@@ -51234,7 +52706,9 @@
|
|
51234
52706
|
"object": {
|
51235
52707
|
"atomic": true,
|
51236
52708
|
"dead": true,
|
51237
|
-
"
|
52709
|
+
"level": 1,
|
52710
|
+
"marker": "item_property",
|
52711
|
+
"modifier_item": {
|
51238
52712
|
"level": 0,
|
51239
52713
|
"marker": "item",
|
51240
52714
|
"range": {
|
@@ -51248,10 +52722,8 @@
|
|
51248
52722
|
"value": "item",
|
51249
52723
|
"word": "item"
|
51250
52724
|
},
|
51251
|
-
"level": 1,
|
51252
|
-
"marker": "item_property",
|
51253
52725
|
"modifiers": [
|
51254
|
-
"
|
52726
|
+
"modifier_item"
|
51255
52727
|
],
|
51256
52728
|
"number": "many",
|
51257
52729
|
"range": {
|
@@ -51293,7 +52765,9 @@
|
|
51293
52765
|
{
|
51294
52766
|
"atomic": true,
|
51295
52767
|
"dead": true,
|
51296
|
-
"
|
52768
|
+
"level": 1,
|
52769
|
+
"marker": "item_property",
|
52770
|
+
"modifier_item": {
|
51297
52771
|
"level": 0,
|
51298
52772
|
"marker": "item",
|
51299
52773
|
"range": {
|
@@ -51307,10 +52781,8 @@
|
|
51307
52781
|
"value": "item",
|
51308
52782
|
"word": "item"
|
51309
52783
|
},
|
51310
|
-
"level": 1,
|
51311
|
-
"marker": "item_property",
|
51312
52784
|
"modifiers": [
|
51313
|
-
"
|
52785
|
+
"modifier_item"
|
51314
52786
|
],
|
51315
52787
|
"number": "many",
|
51316
52788
|
"range": {
|
@@ -51423,7 +52895,9 @@
|
|
51423
52895
|
"object": {
|
51424
52896
|
"atomic": true,
|
51425
52897
|
"dead": true,
|
51426
|
-
"
|
52898
|
+
"level": 1,
|
52899
|
+
"marker": "item_property",
|
52900
|
+
"modifier_item": {
|
51427
52901
|
"level": 0,
|
51428
52902
|
"marker": "item",
|
51429
52903
|
"range": {
|
@@ -51437,10 +52911,8 @@
|
|
51437
52911
|
"value": "item",
|
51438
52912
|
"word": "item"
|
51439
52913
|
},
|
51440
|
-
"level": 1,
|
51441
|
-
"marker": "item_property",
|
51442
52914
|
"modifiers": [
|
51443
|
-
"
|
52915
|
+
"modifier_item"
|
51444
52916
|
],
|
51445
52917
|
"number": "many",
|
51446
52918
|
"range": {
|
@@ -51482,7 +52954,9 @@
|
|
51482
52954
|
{
|
51483
52955
|
"atomic": true,
|
51484
52956
|
"dead": true,
|
51485
|
-
"
|
52957
|
+
"level": 1,
|
52958
|
+
"marker": "item_property",
|
52959
|
+
"modifier_item": {
|
51486
52960
|
"level": 0,
|
51487
52961
|
"marker": "item",
|
51488
52962
|
"range": {
|
@@ -51496,10 +52970,8 @@
|
|
51496
52970
|
"value": "item",
|
51497
52971
|
"word": "item"
|
51498
52972
|
},
|
51499
|
-
"level": 1,
|
51500
|
-
"marker": "item_property",
|
51501
52973
|
"modifiers": [
|
51502
|
-
"
|
52974
|
+
"modifier_item"
|
51503
52975
|
],
|
51504
52976
|
"number": "many",
|
51505
52977
|
"range": {
|
@@ -51584,7 +53056,9 @@
|
|
51584
53056
|
"object": {
|
51585
53057
|
"atomic": true,
|
51586
53058
|
"dead": true,
|
51587
|
-
"
|
53059
|
+
"level": 1,
|
53060
|
+
"marker": "item_property",
|
53061
|
+
"modifier_item": {
|
51588
53062
|
"level": 0,
|
51589
53063
|
"marker": "item",
|
51590
53064
|
"range": {
|
@@ -51598,10 +53072,8 @@
|
|
51598
53072
|
"value": "item",
|
51599
53073
|
"word": "item"
|
51600
53074
|
},
|
51601
|
-
"level": 1,
|
51602
|
-
"marker": "item_property",
|
51603
53075
|
"modifiers": [
|
51604
|
-
"
|
53076
|
+
"modifier_item"
|
51605
53077
|
],
|
51606
53078
|
"number": "many",
|
51607
53079
|
"range": {
|
@@ -51643,7 +53115,9 @@
|
|
51643
53115
|
{
|
51644
53116
|
"atomic": true,
|
51645
53117
|
"dead": true,
|
51646
|
-
"
|
53118
|
+
"level": 1,
|
53119
|
+
"marker": "item_property",
|
53120
|
+
"modifier_item": {
|
51647
53121
|
"level": 0,
|
51648
53122
|
"marker": "item",
|
51649
53123
|
"range": {
|
@@ -51657,10 +53131,8 @@
|
|
51657
53131
|
"value": "item",
|
51658
53132
|
"word": "item"
|
51659
53133
|
},
|
51660
|
-
"level": 1,
|
51661
|
-
"marker": "item_property",
|
51662
53134
|
"modifiers": [
|
51663
|
-
"
|
53135
|
+
"modifier_item"
|
51664
53136
|
],
|
51665
53137
|
"number": "many",
|
51666
53138
|
"range": {
|
@@ -51692,14 +53164,14 @@
|
|
51692
53164
|
}
|
51693
53165
|
],
|
51694
53166
|
"generatedParenthesized": [
|
51695
|
-
"((((the (types)) of ((item) (properties))) are (((
|
53167
|
+
"((((the (types)) of ((item) (properties))) are (((damage), (luck), (hp), (rad), (value), (ap), (charisma), (range) and (accuracy)))))"
|
51696
53168
|
],
|
51697
53169
|
"metadata": {
|
51698
53170
|
"opChoices": [
|
51699
53171
|
{
|
51700
53172
|
"counter": 1,
|
51701
53173
|
"op": [
|
51702
|
-
"
|
53174
|
+
"type",
|
51703
53175
|
0
|
51704
53176
|
],
|
51705
53177
|
"ops": [
|
@@ -51740,7 +53212,7 @@
|
|
51740
53212
|
{
|
51741
53213
|
"counter": 2,
|
51742
53214
|
"op": [
|
51743
|
-
"
|
53215
|
+
"item_property",
|
51744
53216
|
0
|
51745
53217
|
],
|
51746
53218
|
"ops": [
|
@@ -51749,15 +53221,23 @@
|
|
51749
53221
|
0
|
51750
53222
|
],
|
51751
53223
|
[
|
51752
|
-
"
|
53224
|
+
"item",
|
51753
53225
|
0
|
51754
53226
|
],
|
51755
53227
|
[
|
51756
|
-
"
|
53228
|
+
"item_property",
|
51757
53229
|
0
|
51758
53230
|
],
|
51759
53231
|
[
|
51760
|
-
"
|
53232
|
+
"property",
|
53233
|
+
0
|
53234
|
+
],
|
53235
|
+
[
|
53236
|
+
"propertyOf",
|
53237
|
+
0
|
53238
|
+
],
|
53239
|
+
[
|
53240
|
+
"the",
|
51761
53241
|
0
|
51762
53242
|
],
|
51763
53243
|
[
|
@@ -51883,6 +53363,8 @@
|
|
51883
53363
|
"gdefaults": "gdefaults2",
|
51884
53364
|
"help": "help2",
|
51885
53365
|
"hierarchy": "hierarchy2",
|
53366
|
+
"math": "math2",
|
53367
|
+
"mathTemplate": "mathTemplate2",
|
51886
53368
|
"meta": "meta2",
|
51887
53369
|
"numbers": "numbers2",
|
51888
53370
|
"pipboy": "pipboy1",
|
@@ -51916,6 +53398,10 @@
|
|
51916
53398
|
},
|
51917
53399
|
"hierarchy2": {
|
51918
53400
|
},
|
53401
|
+
"math2": {
|
53402
|
+
},
|
53403
|
+
"mathTemplate2": {
|
53404
|
+
},
|
51919
53405
|
"meta2": {
|
51920
53406
|
},
|
51921
53407
|
"numbers2": {
|
@@ -51991,6 +53477,12 @@
|
|
51991
53477
|
"range",
|
51992
53478
|
"accuracy"
|
51993
53479
|
],
|
53480
|
+
"mathematical_operator": [
|
53481
|
+
"*",
|
53482
|
+
"+",
|
53483
|
+
"/",
|
53484
|
+
"-"
|
53485
|
+
],
|
51994
53486
|
"notAble": [
|
51995
53487
|
"unknown"
|
51996
53488
|
],
|
@@ -52102,6 +53594,11 @@
|
|
52102
53594
|
"that",
|
52103
53595
|
"orAble",
|
52104
53596
|
"ifAble",
|
53597
|
+
"*",
|
53598
|
+
"mathematical_operator",
|
53599
|
+
"+",
|
53600
|
+
"/",
|
53601
|
+
"-",
|
52105
53602
|
"pistol",
|
52106
53603
|
"weapon",
|
52107
53604
|
"rifle",
|
@@ -52140,6 +53637,18 @@
|
|
52140
53637
|
"accuracy"
|
52141
53638
|
],
|
52142
53639
|
"parents": {
|
53640
|
+
"*": [
|
53641
|
+
"mathematical_operator"
|
53642
|
+
],
|
53643
|
+
"+": [
|
53644
|
+
"mathematical_operator"
|
53645
|
+
],
|
53646
|
+
"-": [
|
53647
|
+
"mathematical_operator"
|
53648
|
+
],
|
53649
|
+
"/": [
|
53650
|
+
"mathematical_operator"
|
53651
|
+
],
|
52143
53652
|
"a": [
|
52144
53653
|
"articlePOS"
|
52145
53654
|
],
|
@@ -52334,6 +53843,14 @@
|
|
52334
53843
|
"initHandlers": [
|
52335
53844
|
],
|
52336
53845
|
"root": {
|
53846
|
+
"*": {
|
53847
|
+
},
|
53848
|
+
"+": {
|
53849
|
+
},
|
53850
|
+
"-": {
|
53851
|
+
},
|
53852
|
+
"/": {
|
53853
|
+
},
|
52337
53854
|
"a": {
|
52338
53855
|
},
|
52339
53856
|
"accuracy": {
|
@@ -52396,6 +53913,8 @@
|
|
52396
53913
|
},
|
52397
53914
|
"luck": {
|
52398
53915
|
},
|
53916
|
+
"mathematical_operator": {
|
53917
|
+
},
|
52399
53918
|
"meat": {
|
52400
53919
|
},
|
52401
53920
|
"medicine": {
|
@@ -52524,7 +54043,9 @@
|
|
52524
54043
|
"object": {
|
52525
54044
|
"atomic": true,
|
52526
54045
|
"dead": true,
|
52527
|
-
"
|
54046
|
+
"level": 1,
|
54047
|
+
"marker": "item_property",
|
54048
|
+
"modifier_item": {
|
52528
54049
|
"level": 0,
|
52529
54050
|
"marker": "item",
|
52530
54051
|
"range": {
|
@@ -52538,10 +54059,8 @@
|
|
52538
54059
|
"value": "item",
|
52539
54060
|
"word": "item"
|
52540
54061
|
},
|
52541
|
-
"level": 1,
|
52542
|
-
"marker": "item_property",
|
52543
54062
|
"modifiers": [
|
52544
|
-
"
|
54063
|
+
"modifier_item"
|
52545
54064
|
],
|
52546
54065
|
"number": "many",
|
52547
54066
|
"range": {
|
@@ -52583,7 +54102,9 @@
|
|
52583
54102
|
{
|
52584
54103
|
"atomic": true,
|
52585
54104
|
"dead": true,
|
52586
|
-
"
|
54105
|
+
"level": 1,
|
54106
|
+
"marker": "item_property",
|
54107
|
+
"modifier_item": {
|
52587
54108
|
"level": 0,
|
52588
54109
|
"marker": "item",
|
52589
54110
|
"range": {
|
@@ -52597,10 +54118,8 @@
|
|
52597
54118
|
"value": "item",
|
52598
54119
|
"word": "item"
|
52599
54120
|
},
|
52600
|
-
"level": 1,
|
52601
|
-
"marker": "item_property",
|
52602
54121
|
"modifiers": [
|
52603
|
-
"
|
54122
|
+
"modifier_item"
|
52604
54123
|
],
|
52605
54124
|
"number": "many",
|
52606
54125
|
"range": {
|
@@ -52713,7 +54232,9 @@
|
|
52713
54232
|
"object": {
|
52714
54233
|
"atomic": true,
|
52715
54234
|
"dead": true,
|
52716
|
-
"
|
54235
|
+
"level": 1,
|
54236
|
+
"marker": "item_property",
|
54237
|
+
"modifier_item": {
|
52717
54238
|
"level": 0,
|
52718
54239
|
"marker": "item",
|
52719
54240
|
"range": {
|
@@ -52727,10 +54248,8 @@
|
|
52727
54248
|
"value": "item",
|
52728
54249
|
"word": "item"
|
52729
54250
|
},
|
52730
|
-
"level": 1,
|
52731
|
-
"marker": "item_property",
|
52732
54251
|
"modifiers": [
|
52733
|
-
"
|
54252
|
+
"modifier_item"
|
52734
54253
|
],
|
52735
54254
|
"number": "many",
|
52736
54255
|
"range": {
|
@@ -52772,7 +54291,9 @@
|
|
52772
54291
|
{
|
52773
54292
|
"atomic": true,
|
52774
54293
|
"dead": true,
|
52775
|
-
"
|
54294
|
+
"level": 1,
|
54295
|
+
"marker": "item_property",
|
54296
|
+
"modifier_item": {
|
52776
54297
|
"level": 0,
|
52777
54298
|
"marker": "item",
|
52778
54299
|
"range": {
|
@@ -52786,10 +54307,8 @@
|
|
52786
54307
|
"value": "item",
|
52787
54308
|
"word": "item"
|
52788
54309
|
},
|
52789
|
-
"level": 1,
|
52790
|
-
"marker": "item_property",
|
52791
54310
|
"modifiers": [
|
52792
|
-
"
|
54311
|
+
"modifier_item"
|
52793
54312
|
],
|
52794
54313
|
"number": "many",
|
52795
54314
|
"range": {
|
@@ -52874,7 +54393,9 @@
|
|
52874
54393
|
"object": {
|
52875
54394
|
"atomic": true,
|
52876
54395
|
"dead": true,
|
52877
|
-
"
|
54396
|
+
"level": 1,
|
54397
|
+
"marker": "item_property",
|
54398
|
+
"modifier_item": {
|
52878
54399
|
"level": 0,
|
52879
54400
|
"marker": "item",
|
52880
54401
|
"range": {
|
@@ -52888,10 +54409,8 @@
|
|
52888
54409
|
"value": "item",
|
52889
54410
|
"word": "item"
|
52890
54411
|
},
|
52891
|
-
"level": 1,
|
52892
|
-
"marker": "item_property",
|
52893
54412
|
"modifiers": [
|
52894
|
-
"
|
54413
|
+
"modifier_item"
|
52895
54414
|
],
|
52896
54415
|
"number": "many",
|
52897
54416
|
"range": {
|
@@ -52933,7 +54452,9 @@
|
|
52933
54452
|
{
|
52934
54453
|
"atomic": true,
|
52935
54454
|
"dead": true,
|
52936
|
-
"
|
54455
|
+
"level": 1,
|
54456
|
+
"marker": "item_property",
|
54457
|
+
"modifier_item": {
|
52937
54458
|
"level": 0,
|
52938
54459
|
"marker": "item",
|
52939
54460
|
"range": {
|
@@ -52947,10 +54468,8 @@
|
|
52947
54468
|
"value": "item",
|
52948
54469
|
"word": "item"
|
52949
54470
|
},
|
52950
|
-
"level": 1,
|
52951
|
-
"marker": "item_property",
|
52952
54471
|
"modifiers": [
|
52953
|
-
"
|
54472
|
+
"modifier_item"
|
52954
54473
|
],
|
52955
54474
|
"number": "many",
|
52956
54475
|
"range": {
|
@@ -52980,11 +54499,11 @@
|
|
52980
54499
|
},
|
52981
54500
|
"word": "are"
|
52982
54501
|
},
|
52983
|
-
"generatedParenthesized": "((((the (types)) of ((item) (properties))) are (((
|
54502
|
+
"generatedParenthesized": "((((the (types)) of ((item) (properties))) are (((damage), (luck), (hp), (rad), (value), (ap), (charisma), (range) and (accuracy)))))",
|
52984
54503
|
"paraphrases": "what are the types of item properties?",
|
52985
54504
|
"paraphrasesParenthesized": "(((what) are ((the (types)) of ((item) (properties))))?)",
|
52986
54505
|
"responses": [
|
52987
|
-
"the types of item properties are
|
54506
|
+
"the types of item properties are damage, luck, hp, rad, value, ap, charisma, range and accuracy"
|
52988
54507
|
]
|
52989
54508
|
},
|
52990
54509
|
{
|
@@ -53512,7 +55031,7 @@
|
|
53512
55031
|
],
|
53513
55032
|
"query": "what are the types of item properties",
|
53514
55033
|
"responses": [
|
53515
|
-
"the types of item properties are
|
55034
|
+
"the types of item properties are damage, luck, hp, rad, value, ap, charisma, range and accuracy"
|
53516
55035
|
]
|
53517
55036
|
},
|
53518
55037
|
{
|
@@ -53653,6 +55172,8 @@
|
|
53653
55172
|
"gdefaults": "gdefaults2",
|
53654
55173
|
"help": "help2",
|
53655
55174
|
"hierarchy": "hierarchy2",
|
55175
|
+
"math": "math2",
|
55176
|
+
"mathTemplate": "mathTemplate2",
|
53656
55177
|
"meta": "meta2",
|
53657
55178
|
"numbers": "numbers2",
|
53658
55179
|
"pipboy": "pipboy1",
|
@@ -53686,6 +55207,10 @@
|
|
53686
55207
|
},
|
53687
55208
|
"hierarchy2": {
|
53688
55209
|
},
|
55210
|
+
"math2": {
|
55211
|
+
},
|
55212
|
+
"mathTemplate2": {
|
55213
|
+
},
|
53689
55214
|
"meta2": {
|
53690
55215
|
},
|
53691
55216
|
"numbers2": {
|
@@ -53762,6 +55287,12 @@
|
|
53762
55287
|
"range",
|
53763
55288
|
"accuracy"
|
53764
55289
|
],
|
55290
|
+
"mathematical_operator": [
|
55291
|
+
"*",
|
55292
|
+
"+",
|
55293
|
+
"/",
|
55294
|
+
"-"
|
55295
|
+
],
|
53765
55296
|
"notAble": [
|
53766
55297
|
"unknown"
|
53767
55298
|
],
|
@@ -53873,6 +55404,11 @@
|
|
53873
55404
|
"that",
|
53874
55405
|
"orAble",
|
53875
55406
|
"ifAble",
|
55407
|
+
"*",
|
55408
|
+
"mathematical_operator",
|
55409
|
+
"+",
|
55410
|
+
"/",
|
55411
|
+
"-",
|
53876
55412
|
"pistol",
|
53877
55413
|
"weapon",
|
53878
55414
|
"rifle",
|
@@ -53911,6 +55447,18 @@
|
|
53911
55447
|
"accuracy"
|
53912
55448
|
],
|
53913
55449
|
"parents": {
|
55450
|
+
"*": [
|
55451
|
+
"mathematical_operator"
|
55452
|
+
],
|
55453
|
+
"+": [
|
55454
|
+
"mathematical_operator"
|
55455
|
+
],
|
55456
|
+
"-": [
|
55457
|
+
"mathematical_operator"
|
55458
|
+
],
|
55459
|
+
"/": [
|
55460
|
+
"mathematical_operator"
|
55461
|
+
],
|
53914
55462
|
"a": [
|
53915
55463
|
"articlePOS"
|
53916
55464
|
],
|
@@ -54105,6 +55653,14 @@
|
|
54105
55653
|
"initHandlers": [
|
54106
55654
|
],
|
54107
55655
|
"root": {
|
55656
|
+
"*": {
|
55657
|
+
},
|
55658
|
+
"+": {
|
55659
|
+
},
|
55660
|
+
"-": {
|
55661
|
+
},
|
55662
|
+
"/": {
|
55663
|
+
},
|
54108
55664
|
"a": {
|
54109
55665
|
},
|
54110
55666
|
"accuracy": {
|
@@ -54167,6 +55723,8 @@
|
|
54167
55723
|
},
|
54168
55724
|
"luck": {
|
54169
55725
|
},
|
55726
|
+
"mathematical_operator": {
|
55727
|
+
},
|
54170
55728
|
"meat": {
|
54171
55729
|
},
|
54172
55730
|
"medicine": {
|
@@ -54984,6 +56542,8 @@
|
|
54984
56542
|
"gdefaults": "gdefaults2",
|
54985
56543
|
"help": "help2",
|
54986
56544
|
"hierarchy": "hierarchy2",
|
56545
|
+
"math": "math2",
|
56546
|
+
"mathTemplate": "mathTemplate2",
|
54987
56547
|
"meta": "meta2",
|
54988
56548
|
"numbers": "numbers2",
|
54989
56549
|
"pipboy": "pipboy1",
|
@@ -55017,6 +56577,10 @@
|
|
55017
56577
|
},
|
55018
56578
|
"hierarchy2": {
|
55019
56579
|
},
|
56580
|
+
"math2": {
|
56581
|
+
},
|
56582
|
+
"mathTemplate2": {
|
56583
|
+
},
|
55020
56584
|
"meta2": {
|
55021
56585
|
},
|
55022
56586
|
"numbers2": {
|
@@ -55093,6 +56657,12 @@
|
|
55093
56657
|
"range",
|
55094
56658
|
"accuracy"
|
55095
56659
|
],
|
56660
|
+
"mathematical_operator": [
|
56661
|
+
"*",
|
56662
|
+
"+",
|
56663
|
+
"/",
|
56664
|
+
"-"
|
56665
|
+
],
|
55096
56666
|
"notAble": [
|
55097
56667
|
"unknown"
|
55098
56668
|
],
|
@@ -55204,6 +56774,11 @@
|
|
55204
56774
|
"that",
|
55205
56775
|
"orAble",
|
55206
56776
|
"ifAble",
|
56777
|
+
"*",
|
56778
|
+
"mathematical_operator",
|
56779
|
+
"+",
|
56780
|
+
"/",
|
56781
|
+
"-",
|
55207
56782
|
"pistol",
|
55208
56783
|
"weapon",
|
55209
56784
|
"rifle",
|
@@ -55242,6 +56817,18 @@
|
|
55242
56817
|
"accuracy"
|
55243
56818
|
],
|
55244
56819
|
"parents": {
|
56820
|
+
"*": [
|
56821
|
+
"mathematical_operator"
|
56822
|
+
],
|
56823
|
+
"+": [
|
56824
|
+
"mathematical_operator"
|
56825
|
+
],
|
56826
|
+
"-": [
|
56827
|
+
"mathematical_operator"
|
56828
|
+
],
|
56829
|
+
"/": [
|
56830
|
+
"mathematical_operator"
|
56831
|
+
],
|
55245
56832
|
"a": [
|
55246
56833
|
"articlePOS"
|
55247
56834
|
],
|
@@ -55436,6 +57023,14 @@
|
|
55436
57023
|
"initHandlers": [
|
55437
57024
|
],
|
55438
57025
|
"root": {
|
57026
|
+
"*": {
|
57027
|
+
},
|
57028
|
+
"+": {
|
57029
|
+
},
|
57030
|
+
"-": {
|
57031
|
+
},
|
57032
|
+
"/": {
|
57033
|
+
},
|
55439
57034
|
"a": {
|
55440
57035
|
},
|
55441
57036
|
"accuracy": {
|
@@ -55498,6 +57093,8 @@
|
|
55498
57093
|
},
|
55499
57094
|
"luck": {
|
55500
57095
|
},
|
57096
|
+
"mathematical_operator": {
|
57097
|
+
},
|
55501
57098
|
"meat": {
|
55502
57099
|
},
|
55503
57100
|
"medicine": {
|
@@ -56273,6 +57870,8 @@
|
|
56273
57870
|
"gdefaults": "gdefaults2",
|
56274
57871
|
"help": "help2",
|
56275
57872
|
"hierarchy": "hierarchy2",
|
57873
|
+
"math": "math2",
|
57874
|
+
"mathTemplate": "mathTemplate2",
|
56276
57875
|
"meta": "meta2",
|
56277
57876
|
"numbers": "numbers2",
|
56278
57877
|
"pipboy": "pipboy1",
|
@@ -56306,6 +57905,10 @@
|
|
56306
57905
|
},
|
56307
57906
|
"hierarchy2": {
|
56308
57907
|
},
|
57908
|
+
"math2": {
|
57909
|
+
},
|
57910
|
+
"mathTemplate2": {
|
57911
|
+
},
|
56309
57912
|
"meta2": {
|
56310
57913
|
},
|
56311
57914
|
"numbers2": {
|
@@ -56384,6 +57987,12 @@
|
|
56384
57987
|
"range",
|
56385
57988
|
"accuracy"
|
56386
57989
|
],
|
57990
|
+
"mathematical_operator": [
|
57991
|
+
"*",
|
57992
|
+
"+",
|
57993
|
+
"/",
|
57994
|
+
"-"
|
57995
|
+
],
|
56387
57996
|
"notAble": [
|
56388
57997
|
"unknown"
|
56389
57998
|
],
|
@@ -56495,6 +58104,11 @@
|
|
56495
58104
|
"that",
|
56496
58105
|
"orAble",
|
56497
58106
|
"ifAble",
|
58107
|
+
"*",
|
58108
|
+
"mathematical_operator",
|
58109
|
+
"+",
|
58110
|
+
"/",
|
58111
|
+
"-",
|
56498
58112
|
"pistol",
|
56499
58113
|
"weapon",
|
56500
58114
|
"rifle",
|
@@ -56533,6 +58147,18 @@
|
|
56533
58147
|
"accuracy"
|
56534
58148
|
],
|
56535
58149
|
"parents": {
|
58150
|
+
"*": [
|
58151
|
+
"mathematical_operator"
|
58152
|
+
],
|
58153
|
+
"+": [
|
58154
|
+
"mathematical_operator"
|
58155
|
+
],
|
58156
|
+
"-": [
|
58157
|
+
"mathematical_operator"
|
58158
|
+
],
|
58159
|
+
"/": [
|
58160
|
+
"mathematical_operator"
|
58161
|
+
],
|
56536
58162
|
"a": [
|
56537
58163
|
"articlePOS"
|
56538
58164
|
],
|
@@ -56727,6 +58353,14 @@
|
|
56727
58353
|
"initHandlers": [
|
56728
58354
|
],
|
56729
58355
|
"root": {
|
58356
|
+
"*": {
|
58357
|
+
},
|
58358
|
+
"+": {
|
58359
|
+
},
|
58360
|
+
"-": {
|
58361
|
+
},
|
58362
|
+
"/": {
|
58363
|
+
},
|
56730
58364
|
"a": {
|
56731
58365
|
},
|
56732
58366
|
"accuracy": {
|
@@ -56789,6 +58423,8 @@
|
|
56789
58423
|
},
|
56790
58424
|
"luck": {
|
56791
58425
|
},
|
58426
|
+
"mathematical_operator": {
|
58427
|
+
},
|
56792
58428
|
"meat": {
|
56793
58429
|
},
|
56794
58430
|
"medicine": {
|
@@ -57557,6 +59193,8 @@
|
|
57557
59193
|
"gdefaults": "gdefaults2",
|
57558
59194
|
"help": "help2",
|
57559
59195
|
"hierarchy": "hierarchy2",
|
59196
|
+
"math": "math2",
|
59197
|
+
"mathTemplate": "mathTemplate2",
|
57560
59198
|
"meta": "meta2",
|
57561
59199
|
"numbers": "numbers2",
|
57562
59200
|
"pipboy": "pipboy1",
|
@@ -57590,6 +59228,10 @@
|
|
57590
59228
|
},
|
57591
59229
|
"hierarchy2": {
|
57592
59230
|
},
|
59231
|
+
"math2": {
|
59232
|
+
},
|
59233
|
+
"mathTemplate2": {
|
59234
|
+
},
|
57593
59235
|
"meta2": {
|
57594
59236
|
},
|
57595
59237
|
"numbers2": {
|
@@ -57666,6 +59308,12 @@
|
|
57666
59308
|
"range",
|
57667
59309
|
"accuracy"
|
57668
59310
|
],
|
59311
|
+
"mathematical_operator": [
|
59312
|
+
"*",
|
59313
|
+
"+",
|
59314
|
+
"/",
|
59315
|
+
"-"
|
59316
|
+
],
|
57669
59317
|
"notAble": [
|
57670
59318
|
"unknown"
|
57671
59319
|
],
|
@@ -57777,6 +59425,11 @@
|
|
57777
59425
|
"that",
|
57778
59426
|
"orAble",
|
57779
59427
|
"ifAble",
|
59428
|
+
"*",
|
59429
|
+
"mathematical_operator",
|
59430
|
+
"+",
|
59431
|
+
"/",
|
59432
|
+
"-",
|
57780
59433
|
"pistol",
|
57781
59434
|
"weapon",
|
57782
59435
|
"rifle",
|
@@ -57815,6 +59468,18 @@
|
|
57815
59468
|
"accuracy"
|
57816
59469
|
],
|
57817
59470
|
"parents": {
|
59471
|
+
"*": [
|
59472
|
+
"mathematical_operator"
|
59473
|
+
],
|
59474
|
+
"+": [
|
59475
|
+
"mathematical_operator"
|
59476
|
+
],
|
59477
|
+
"-": [
|
59478
|
+
"mathematical_operator"
|
59479
|
+
],
|
59480
|
+
"/": [
|
59481
|
+
"mathematical_operator"
|
59482
|
+
],
|
57818
59483
|
"a": [
|
57819
59484
|
"articlePOS"
|
57820
59485
|
],
|
@@ -58009,6 +59674,14 @@
|
|
58009
59674
|
"initHandlers": [
|
58010
59675
|
],
|
58011
59676
|
"root": {
|
59677
|
+
"*": {
|
59678
|
+
},
|
59679
|
+
"+": {
|
59680
|
+
},
|
59681
|
+
"-": {
|
59682
|
+
},
|
59683
|
+
"/": {
|
59684
|
+
},
|
58012
59685
|
"a": {
|
58013
59686
|
},
|
58014
59687
|
"accuracy": {
|
@@ -58071,6 +59744,8 @@
|
|
58071
59744
|
},
|
58072
59745
|
"luck": {
|
58073
59746
|
},
|
59747
|
+
"mathematical_operator": {
|
59748
|
+
},
|
58074
59749
|
"meat": {
|
58075
59750
|
},
|
58076
59751
|
"medicine": {
|
@@ -58839,6 +60514,8 @@
|
|
58839
60514
|
"gdefaults": "gdefaults2",
|
58840
60515
|
"help": "help2",
|
58841
60516
|
"hierarchy": "hierarchy2",
|
60517
|
+
"math": "math2",
|
60518
|
+
"mathTemplate": "mathTemplate2",
|
58842
60519
|
"meta": "meta2",
|
58843
60520
|
"numbers": "numbers2",
|
58844
60521
|
"pipboy": "pipboy1",
|
@@ -58872,6 +60549,10 @@
|
|
58872
60549
|
},
|
58873
60550
|
"hierarchy2": {
|
58874
60551
|
},
|
60552
|
+
"math2": {
|
60553
|
+
},
|
60554
|
+
"mathTemplate2": {
|
60555
|
+
},
|
58875
60556
|
"meta2": {
|
58876
60557
|
},
|
58877
60558
|
"numbers2": {
|
@@ -58948,6 +60629,12 @@
|
|
58948
60629
|
"range",
|
58949
60630
|
"accuracy"
|
58950
60631
|
],
|
60632
|
+
"mathematical_operator": [
|
60633
|
+
"*",
|
60634
|
+
"+",
|
60635
|
+
"/",
|
60636
|
+
"-"
|
60637
|
+
],
|
58951
60638
|
"notAble": [
|
58952
60639
|
"unknown"
|
58953
60640
|
],
|
@@ -59059,6 +60746,11 @@
|
|
59059
60746
|
"that",
|
59060
60747
|
"orAble",
|
59061
60748
|
"ifAble",
|
60749
|
+
"*",
|
60750
|
+
"mathematical_operator",
|
60751
|
+
"+",
|
60752
|
+
"/",
|
60753
|
+
"-",
|
59062
60754
|
"pistol",
|
59063
60755
|
"weapon",
|
59064
60756
|
"rifle",
|
@@ -59097,6 +60789,18 @@
|
|
59097
60789
|
"accuracy"
|
59098
60790
|
],
|
59099
60791
|
"parents": {
|
60792
|
+
"*": [
|
60793
|
+
"mathematical_operator"
|
60794
|
+
],
|
60795
|
+
"+": [
|
60796
|
+
"mathematical_operator"
|
60797
|
+
],
|
60798
|
+
"-": [
|
60799
|
+
"mathematical_operator"
|
60800
|
+
],
|
60801
|
+
"/": [
|
60802
|
+
"mathematical_operator"
|
60803
|
+
],
|
59100
60804
|
"a": [
|
59101
60805
|
"articlePOS"
|
59102
60806
|
],
|
@@ -59291,6 +60995,14 @@
|
|
59291
60995
|
"initHandlers": [
|
59292
60996
|
],
|
59293
60997
|
"root": {
|
60998
|
+
"*": {
|
60999
|
+
},
|
61000
|
+
"+": {
|
61001
|
+
},
|
61002
|
+
"-": {
|
61003
|
+
},
|
61004
|
+
"/": {
|
61005
|
+
},
|
59294
61006
|
"a": {
|
59295
61007
|
},
|
59296
61008
|
"accuracy": {
|
@@ -59353,6 +61065,8 @@
|
|
59353
61065
|
},
|
59354
61066
|
"luck": {
|
59355
61067
|
},
|
61068
|
+
"mathematical_operator": {
|
61069
|
+
},
|
59356
61070
|
"meat": {
|
59357
61071
|
},
|
59358
61072
|
"medicine": {
|