tpmkms_4wp 7.11.1 → 7.12.0-beta.0
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/animals.instance.json +18 -32
- package/common/crew.instance.json +0 -68
- package/common/dialogues.js +8 -1
- package/common/dimensionTemplate.instance.json +18 -32
- package/common/edible.instance.json +20 -34
- package/common/fastfood.instance.json +1065 -688
- package/common/fastfood.js +18 -2
- package/common/fastfood.test.json +22379 -112
- package/common/helpers.js +10 -0
- package/common/ordering.instance.json +70 -6
- package/common/pipboy.js +2 -1
- package/common/reports.instance.json +1 -1
- package/common/temperature.instance.json +112 -0
- package/common/weight.instance.json +1 -1
- package/package.json +2 -2
@@ -881,6 +881,31 @@
|
|
881
881
|
"choose": [
|
882
882
|
0
|
883
883
|
]
|
884
|
+
},
|
885
|
+
{
|
886
|
+
"context": [
|
887
|
+
[
|
888
|
+
"list",
|
889
|
+
0
|
890
|
+
],
|
891
|
+
[
|
892
|
+
"articlePOS",
|
893
|
+
0
|
894
|
+
],
|
895
|
+
[
|
896
|
+
"smoothie_ingredient",
|
897
|
+
0
|
898
|
+
],
|
899
|
+
[
|
900
|
+
"smoothie",
|
901
|
+
0
|
902
|
+
]
|
903
|
+
],
|
904
|
+
"ordered": true,
|
905
|
+
"choose": [
|
906
|
+
1,
|
907
|
+
2
|
908
|
+
]
|
884
909
|
}
|
885
910
|
]
|
886
911
|
},
|
@@ -894,14 +919,153 @@
|
|
894
919
|
"apply": "({context, s}) => {\n s({...context, flatten: true})\n }"
|
895
920
|
},
|
896
921
|
{
|
897
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/fastfood.js:
|
922
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/fastfood.js:294",
|
898
923
|
"match": "({context, api}) => context.marker == 'controlEnd' && api.hasAskedForButNotAvailable()",
|
899
924
|
"apply": "({context, api, gp, toContext, verbatim}) => {\n const naArray = api.getAskedForButNotAvailable()\n naArray.forEach((f) => f.paraphrase = true)\n const naContext = toContext(naArray)\n /*\n naContext.isResponse = true\n naContext.marker = 'verbatim'\n naContext.verbatim = `The following are not menu items: ${gp(naContext)}`\n insert(naContext)\n */\n verbatim(`The following are not menu items: ${gp(naContext)}`)\n // allow other motivation to run\n context.cascade = true\n }"
|
900
925
|
}
|
901
926
|
]
|
902
927
|
},
|
903
928
|
{
|
904
|
-
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n const hasDrink = (isA, item) => {\n let hasDrink = false\n for (let modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n const needsDrink = (item) => {\n return item.needsDrink\n }\n\n const askAbout = ({api, isA}) => {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n matchq: (args) => askAbout(args).length > 0,\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => args.isA(args.context.marker, 'drink') && askAbout(args).length > 0,\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n for (let item of needsDrink) {\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
|
929
|
+
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n const hasDrink = (isA, item) => {\n let hasDrink = false\n for (let modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n const needsDrink = (item) => {\n return item.needsDrink\n }\n\n const askAbout = ({api, isA}) => {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n matchq: (args) => askAbout(args).length > 0,\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => args.isA(args.context.marker, 'drink') && askAbout(args).length > 0,\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n let count = getCount(context) || Number.MAX_SAFE_INTEGER\n for (let item of needsDrink) {\n if (count < 1) {\n break\n }\n count -= 1\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
|
930
|
+
},
|
931
|
+
{
|
932
|
+
"priorities": [
|
933
|
+
{
|
934
|
+
"context": [
|
935
|
+
[
|
936
|
+
"combo",
|
937
|
+
0
|
938
|
+
],
|
939
|
+
[
|
940
|
+
"number",
|
941
|
+
1
|
942
|
+
],
|
943
|
+
[
|
944
|
+
"list",
|
945
|
+
0
|
946
|
+
],
|
947
|
+
[
|
948
|
+
"combo",
|
949
|
+
0
|
950
|
+
]
|
951
|
+
],
|
952
|
+
"ordered": true,
|
953
|
+
"choose": [
|
954
|
+
0,
|
955
|
+
1
|
956
|
+
]
|
957
|
+
},
|
958
|
+
{
|
959
|
+
"context": [
|
960
|
+
[
|
961
|
+
"list",
|
962
|
+
0
|
963
|
+
],
|
964
|
+
[
|
965
|
+
"combo",
|
966
|
+
0
|
967
|
+
],
|
968
|
+
[
|
969
|
+
"number",
|
970
|
+
1
|
971
|
+
]
|
972
|
+
],
|
973
|
+
"ordered": true,
|
974
|
+
"choose": [
|
975
|
+
1,
|
976
|
+
2
|
977
|
+
]
|
978
|
+
},
|
979
|
+
{
|
980
|
+
"context": [
|
981
|
+
[
|
982
|
+
"list",
|
983
|
+
0
|
984
|
+
],
|
985
|
+
[
|
986
|
+
"combo",
|
987
|
+
0
|
988
|
+
],
|
989
|
+
[
|
990
|
+
"list",
|
991
|
+
1
|
992
|
+
]
|
993
|
+
],
|
994
|
+
"ordered": true,
|
995
|
+
"choose": [
|
996
|
+
1,
|
997
|
+
2
|
998
|
+
]
|
999
|
+
},
|
1000
|
+
{
|
1001
|
+
"context": [
|
1002
|
+
[
|
1003
|
+
"mango",
|
1004
|
+
0
|
1005
|
+
],
|
1006
|
+
[
|
1007
|
+
"passion",
|
1008
|
+
0
|
1009
|
+
],
|
1010
|
+
[
|
1011
|
+
"list",
|
1012
|
+
0
|
1013
|
+
]
|
1014
|
+
],
|
1015
|
+
"ordered": true,
|
1016
|
+
"choose": [
|
1017
|
+
0,
|
1018
|
+
1
|
1019
|
+
]
|
1020
|
+
},
|
1021
|
+
{
|
1022
|
+
"context": [
|
1023
|
+
[
|
1024
|
+
"number",
|
1025
|
+
1
|
1026
|
+
],
|
1027
|
+
[
|
1028
|
+
"mango_passion",
|
1029
|
+
1
|
1030
|
+
],
|
1031
|
+
[
|
1032
|
+
"list",
|
1033
|
+
0
|
1034
|
+
]
|
1035
|
+
],
|
1036
|
+
"ordered": true,
|
1037
|
+
"choose": [
|
1038
|
+
0,
|
1039
|
+
1
|
1040
|
+
]
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
"context": [
|
1044
|
+
[
|
1045
|
+
"mango",
|
1046
|
+
0
|
1047
|
+
],
|
1048
|
+
[
|
1049
|
+
"mango_passion",
|
1050
|
+
0
|
1051
|
+
],
|
1052
|
+
[
|
1053
|
+
"passion",
|
1054
|
+
0
|
1055
|
+
],
|
1056
|
+
[
|
1057
|
+
"list",
|
1058
|
+
0
|
1059
|
+
]
|
1060
|
+
],
|
1061
|
+
"ordered": true,
|
1062
|
+
"choose": [
|
1063
|
+
0,
|
1064
|
+
1,
|
1065
|
+
2
|
1066
|
+
]
|
1067
|
+
}
|
1068
|
+
]
|
905
1069
|
}
|
906
1070
|
],
|
907
1071
|
"resultss": [
|
@@ -79189,7 +79353,7 @@
|
|
79189
79353
|
0
|
79190
79354
|
],
|
79191
79355
|
[
|
79192
|
-
"
|
79356
|
+
"strawberry_banana",
|
79193
79357
|
0
|
79194
79358
|
],
|
79195
79359
|
[
|
@@ -79197,7 +79361,7 @@
|
|
79197
79361
|
0
|
79198
79362
|
],
|
79199
79363
|
[
|
79200
|
-
"
|
79364
|
+
"smoothie_ingredient",
|
79201
79365
|
0
|
79202
79366
|
],
|
79203
79367
|
[
|
@@ -79270,7 +79434,7 @@
|
|
79270
79434
|
0
|
79271
79435
|
],
|
79272
79436
|
[
|
79273
|
-
"
|
79437
|
+
"strawberry_banana",
|
79274
79438
|
0
|
79275
79439
|
],
|
79276
79440
|
[
|
@@ -79278,7 +79442,7 @@
|
|
79278
79442
|
0
|
79279
79443
|
],
|
79280
79444
|
[
|
79281
|
-
"
|
79445
|
+
"smoothie_ingredient",
|
79282
79446
|
0
|
79283
79447
|
],
|
79284
79448
|
[
|
@@ -79347,7 +79511,7 @@
|
|
79347
79511
|
0
|
79348
79512
|
],
|
79349
79513
|
[
|
79350
|
-
"
|
79514
|
+
"strawberry_banana",
|
79351
79515
|
0
|
79352
79516
|
],
|
79353
79517
|
[
|
@@ -79355,7 +79519,7 @@
|
|
79355
79519
|
0
|
79356
79520
|
],
|
79357
79521
|
[
|
79358
|
-
"
|
79522
|
+
"smoothie_ingredient",
|
79359
79523
|
0
|
79360
79524
|
],
|
79361
79525
|
[
|
@@ -79477,11 +79641,11 @@
|
|
79477
79641
|
0
|
79478
79642
|
],
|
79479
79643
|
[
|
79480
|
-
"
|
79644
|
+
"strawberry_banana",
|
79481
79645
|
0
|
79482
79646
|
],
|
79483
79647
|
[
|
79484
|
-
"
|
79648
|
+
"smoothie_ingredient",
|
79485
79649
|
0
|
79486
79650
|
],
|
79487
79651
|
[
|
@@ -79579,11 +79743,11 @@
|
|
79579
79743
|
0
|
79580
79744
|
],
|
79581
79745
|
[
|
79582
|
-
"
|
79746
|
+
"strawberry_banana",
|
79583
79747
|
0
|
79584
79748
|
],
|
79585
79749
|
[
|
79586
|
-
"
|
79750
|
+
"smoothie_ingredient",
|
79587
79751
|
0
|
79588
79752
|
]
|
79589
79753
|
],
|
@@ -80386,24 +80550,6 @@
|
|
80386
80550
|
0
|
80387
80551
|
]
|
80388
80552
|
],
|
80389
|
-
[
|
80390
|
-
[
|
80391
|
-
"ingredient",
|
80392
|
-
0
|
80393
|
-
],
|
80394
|
-
[
|
80395
|
-
"is",
|
80396
|
-
0
|
80397
|
-
],
|
80398
|
-
[
|
80399
|
-
"list",
|
80400
|
-
1
|
80401
|
-
],
|
80402
|
-
[
|
80403
|
-
"smoothie",
|
80404
|
-
0
|
80405
|
-
]
|
80406
|
-
],
|
80407
80553
|
[
|
80408
80554
|
[
|
80409
80555
|
"is",
|
@@ -88479,8 +88625,8 @@
|
|
88479
88625
|
"end": 38
|
88480
88626
|
},
|
88481
88627
|
"types": [
|
88482
|
-
"
|
88483
|
-
"
|
88628
|
+
"list",
|
88629
|
+
"waffle_fry"
|
88484
88630
|
],
|
88485
88631
|
"listable": true,
|
88486
88632
|
"isList": true,
|
@@ -88489,15 +88635,15 @@
|
|
88489
88635
|
"value": "french_fry",
|
88490
88636
|
"number": "many",
|
88491
88637
|
"text": "french fries",
|
88492
|
-
"marker": "
|
88638
|
+
"marker": "waffle_fry",
|
88493
88639
|
"word": "fries",
|
88494
88640
|
"range": {
|
88495
88641
|
"start": 0,
|
88496
88642
|
"end": 11
|
88497
88643
|
},
|
88498
88644
|
"types": [
|
88499
|
-
"
|
88500
|
-
"
|
88645
|
+
"fry",
|
88646
|
+
"waffle_fry"
|
88501
88647
|
],
|
88502
88648
|
"modifier_french": {
|
88503
88649
|
"value": "french",
|
@@ -97493,19 +97639,19 @@
|
|
97493
97639
|
0
|
97494
97640
|
],
|
97495
97641
|
[
|
97496
|
-
"
|
97642
|
+
"premium_cod",
|
97497
97643
|
0
|
97498
97644
|
],
|
97499
97645
|
[
|
97500
|
-
"
|
97646
|
+
"chicken_sandwich",
|
97501
97647
|
0
|
97502
97648
|
],
|
97503
97649
|
[
|
97504
|
-
"
|
97650
|
+
"ultimate_chicken_grill",
|
97505
97651
|
0
|
97506
97652
|
],
|
97507
97653
|
[
|
97508
|
-
"
|
97654
|
+
"chicken_club",
|
97509
97655
|
0
|
97510
97656
|
]
|
97511
97657
|
],
|
@@ -97578,19 +97724,19 @@
|
|
97578
97724
|
0
|
97579
97725
|
],
|
97580
97726
|
[
|
97581
|
-
"
|
97727
|
+
"premium_cod",
|
97582
97728
|
0
|
97583
97729
|
],
|
97584
97730
|
[
|
97585
|
-
"
|
97731
|
+
"chicken_sandwich",
|
97586
97732
|
0
|
97587
97733
|
],
|
97588
97734
|
[
|
97589
|
-
"
|
97735
|
+
"ultimate_chicken_grill",
|
97590
97736
|
0
|
97591
97737
|
],
|
97592
97738
|
[
|
97593
|
-
"
|
97739
|
+
"chicken_club",
|
97594
97740
|
0
|
97595
97741
|
]
|
97596
97742
|
],
|
@@ -97659,19 +97805,19 @@
|
|
97659
97805
|
0
|
97660
97806
|
],
|
97661
97807
|
[
|
97662
|
-
"
|
97808
|
+
"premium_cod",
|
97663
97809
|
0
|
97664
97810
|
],
|
97665
97811
|
[
|
97666
|
-
"
|
97812
|
+
"chicken_sandwich",
|
97667
97813
|
0
|
97668
97814
|
],
|
97669
97815
|
[
|
97670
|
-
"
|
97816
|
+
"ultimate_chicken_grill",
|
97671
97817
|
0
|
97672
97818
|
],
|
97673
97819
|
[
|
97674
|
-
"
|
97820
|
+
"chicken_club",
|
97675
97821
|
0
|
97676
97822
|
]
|
97677
97823
|
],
|
@@ -97736,19 +97882,19 @@
|
|
97736
97882
|
0
|
97737
97883
|
],
|
97738
97884
|
[
|
97739
|
-
"
|
97885
|
+
"premium_cod",
|
97740
97886
|
0
|
97741
97887
|
],
|
97742
97888
|
[
|
97743
|
-
"
|
97889
|
+
"chicken_sandwich",
|
97744
97890
|
0
|
97745
97891
|
],
|
97746
97892
|
[
|
97747
|
-
"
|
97893
|
+
"ultimate_chicken_grill",
|
97748
97894
|
0
|
97749
97895
|
],
|
97750
97896
|
[
|
97751
|
-
"
|
97897
|
+
"chicken_club",
|
97752
97898
|
0
|
97753
97899
|
]
|
97754
97900
|
],
|
@@ -97809,19 +97955,19 @@
|
|
97809
97955
|
0
|
97810
97956
|
],
|
97811
97957
|
[
|
97812
|
-
"
|
97958
|
+
"premium_cod",
|
97813
97959
|
0
|
97814
97960
|
],
|
97815
97961
|
[
|
97816
|
-
"
|
97962
|
+
"chicken_sandwich",
|
97817
97963
|
0
|
97818
97964
|
],
|
97819
97965
|
[
|
97820
|
-
"
|
97966
|
+
"ultimate_chicken_grill",
|
97821
97967
|
0
|
97822
97968
|
],
|
97823
97969
|
[
|
97824
|
-
"
|
97970
|
+
"chicken_club",
|
97825
97971
|
0
|
97826
97972
|
]
|
97827
97973
|
],
|
@@ -97878,19 +98024,19 @@
|
|
97878
98024
|
0
|
97879
98025
|
],
|
97880
98026
|
[
|
97881
|
-
"
|
98027
|
+
"premium_cod",
|
97882
98028
|
0
|
97883
98029
|
],
|
97884
98030
|
[
|
97885
|
-
"
|
98031
|
+
"chicken_sandwich",
|
97886
98032
|
0
|
97887
98033
|
],
|
97888
98034
|
[
|
97889
|
-
"
|
98035
|
+
"ultimate_chicken_grill",
|
97890
98036
|
0
|
97891
98037
|
],
|
97892
98038
|
[
|
97893
|
-
"
|
98039
|
+
"chicken_club",
|
97894
98040
|
0
|
97895
98041
|
]
|
97896
98042
|
],
|
@@ -97898,7 +98044,7 @@
|
|
97898
98044
|
},
|
97899
98045
|
{
|
97900
98046
|
"op": [
|
97901
|
-
"
|
98047
|
+
"chicken_sandwich",
|
97902
98048
|
0
|
97903
98049
|
],
|
97904
98050
|
"ops": [
|
@@ -97911,11 +98057,11 @@
|
|
97911
98057
|
0
|
97912
98058
|
],
|
97913
98059
|
[
|
97914
|
-
"
|
98060
|
+
"chicken_sandwich",
|
97915
98061
|
0
|
97916
98062
|
],
|
97917
98063
|
[
|
97918
|
-
"
|
98064
|
+
"chicken_club",
|
97919
98065
|
0
|
97920
98066
|
],
|
97921
98067
|
[
|
@@ -97959,14 +98105,10 @@
|
|
97959
98105
|
},
|
97960
98106
|
{
|
97961
98107
|
"op": [
|
97962
|
-
"
|
98108
|
+
"comma",
|
97963
98109
|
0
|
97964
98110
|
],
|
97965
98111
|
"ops": [
|
97966
|
-
[
|
97967
|
-
"asiago_ranch_chicken_club",
|
97968
|
-
0
|
97969
|
-
],
|
97970
98112
|
[
|
97971
98113
|
"comma",
|
97972
98114
|
0
|
@@ -97984,27 +98126,27 @@
|
|
97984
98126
|
0
|
97985
98127
|
],
|
97986
98128
|
[
|
97987
|
-
"
|
98129
|
+
"premium",
|
97988
98130
|
0
|
97989
98131
|
],
|
97990
98132
|
[
|
97991
|
-
"
|
98133
|
+
"cod",
|
97992
98134
|
0
|
97993
98135
|
],
|
97994
98136
|
[
|
97995
|
-
"
|
98137
|
+
"is",
|
97996
98138
|
0
|
97997
98139
|
],
|
97998
98140
|
[
|
97999
|
-
"
|
98141
|
+
"sandwich",
|
98000
98142
|
0
|
98001
98143
|
],
|
98002
98144
|
[
|
98003
|
-
"
|
98145
|
+
"premium_cod",
|
98004
98146
|
0
|
98005
98147
|
],
|
98006
98148
|
[
|
98007
|
-
"
|
98149
|
+
"ultimate_chicken_grill",
|
98008
98150
|
0
|
98009
98151
|
]
|
98010
98152
|
],
|
@@ -98012,14 +98154,10 @@
|
|
98012
98154
|
},
|
98013
98155
|
{
|
98014
98156
|
"op": [
|
98015
|
-
"
|
98157
|
+
"ultimate_chicken_grill",
|
98016
98158
|
0
|
98017
98159
|
],
|
98018
98160
|
"ops": [
|
98019
|
-
[
|
98020
|
-
"comma",
|
98021
|
-
0
|
98022
|
-
],
|
98023
98161
|
[
|
98024
98162
|
"ultimate",
|
98025
98163
|
0
|
@@ -98033,27 +98171,27 @@
|
|
98033
98171
|
0
|
98034
98172
|
],
|
98035
98173
|
[
|
98036
|
-
"
|
98174
|
+
"ultimate_chicken_grill",
|
98037
98175
|
0
|
98038
98176
|
],
|
98039
98177
|
[
|
98040
|
-
"
|
98178
|
+
"premium",
|
98041
98179
|
0
|
98042
98180
|
],
|
98043
98181
|
[
|
98044
|
-
"
|
98182
|
+
"cod",
|
98045
98183
|
0
|
98046
98184
|
],
|
98047
98185
|
[
|
98048
|
-
"
|
98186
|
+
"premium_cod",
|
98049
98187
|
0
|
98050
98188
|
],
|
98051
98189
|
[
|
98052
|
-
"
|
98190
|
+
"is",
|
98053
98191
|
0
|
98054
98192
|
],
|
98055
98193
|
[
|
98056
|
-
"
|
98194
|
+
"sandwich",
|
98057
98195
|
0
|
98058
98196
|
]
|
98059
98197
|
],
|
@@ -98061,26 +98199,10 @@
|
|
98061
98199
|
},
|
98062
98200
|
{
|
98063
98201
|
"op": [
|
98064
|
-
"
|
98202
|
+
"premium_cod",
|
98065
98203
|
0
|
98066
98204
|
],
|
98067
98205
|
"ops": [
|
98068
|
-
[
|
98069
|
-
"ultimate",
|
98070
|
-
0
|
98071
|
-
],
|
98072
|
-
[
|
98073
|
-
"chicken",
|
98074
|
-
0
|
98075
|
-
],
|
98076
|
-
[
|
98077
|
-
"grill",
|
98078
|
-
0
|
98079
|
-
],
|
98080
|
-
[
|
98081
|
-
"ultimate_chicken_grill",
|
98082
|
-
0
|
98083
|
-
],
|
98084
98206
|
[
|
98085
98207
|
"premium",
|
98086
98208
|
0
|
@@ -98106,22 +98228,31 @@
|
|
98106
98228
|
},
|
98107
98229
|
{
|
98108
98230
|
"op": [
|
98109
|
-
"
|
98231
|
+
"list",
|
98110
98232
|
0
|
98111
98233
|
],
|
98112
98234
|
"ops": [
|
98113
98235
|
[
|
98114
|
-
"
|
98236
|
+
"is",
|
98115
98237
|
0
|
98116
98238
|
],
|
98117
98239
|
[
|
98118
|
-
"
|
98240
|
+
"sandwich",
|
98119
98241
|
0
|
98120
98242
|
],
|
98121
98243
|
[
|
98122
|
-
"
|
98244
|
+
"list",
|
98123
98245
|
0
|
98124
|
-
]
|
98246
|
+
]
|
98247
|
+
],
|
98248
|
+
"counter": 11
|
98249
|
+
},
|
98250
|
+
{
|
98251
|
+
"op": [
|
98252
|
+
"list",
|
98253
|
+
1
|
98254
|
+
],
|
98255
|
+
"ops": [
|
98125
98256
|
[
|
98126
98257
|
"is",
|
98127
98258
|
0
|
@@ -98129,14 +98260,18 @@
|
|
98129
98260
|
[
|
98130
98261
|
"sandwich",
|
98131
98262
|
0
|
98263
|
+
],
|
98264
|
+
[
|
98265
|
+
"list",
|
98266
|
+
1
|
98132
98267
|
]
|
98133
98268
|
],
|
98134
|
-
"counter":
|
98269
|
+
"counter": 12
|
98135
98270
|
},
|
98136
98271
|
{
|
98137
98272
|
"op": [
|
98138
98273
|
"list",
|
98139
|
-
|
98274
|
+
1
|
98140
98275
|
],
|
98141
98276
|
"ops": [
|
98142
98277
|
[
|
@@ -98149,10 +98284,10 @@
|
|
98149
98284
|
],
|
98150
98285
|
[
|
98151
98286
|
"list",
|
98152
|
-
|
98287
|
+
1
|
98153
98288
|
]
|
98154
98289
|
],
|
98155
|
-
"counter":
|
98290
|
+
"counter": 13
|
98156
98291
|
},
|
98157
98292
|
{
|
98158
98293
|
"op": [
|
@@ -98173,7 +98308,7 @@
|
|
98173
98308
|
1
|
98174
98309
|
]
|
98175
98310
|
],
|
98176
|
-
"counter":
|
98311
|
+
"counter": 14
|
98177
98312
|
},
|
98178
98313
|
{
|
98179
98314
|
"op": [
|
@@ -98194,7 +98329,7 @@
|
|
98194
98329
|
1
|
98195
98330
|
]
|
98196
98331
|
],
|
98197
|
-
"counter":
|
98332
|
+
"counter": 15
|
98198
98333
|
},
|
98199
98334
|
{
|
98200
98335
|
"op": [
|
@@ -98215,7 +98350,7 @@
|
|
98215
98350
|
1
|
98216
98351
|
]
|
98217
98352
|
],
|
98218
|
-
"counter":
|
98353
|
+
"counter": 16
|
98219
98354
|
},
|
98220
98355
|
{
|
98221
98356
|
"op": [
|
@@ -98232,7 +98367,7 @@
|
|
98232
98367
|
0
|
98233
98368
|
]
|
98234
98369
|
],
|
98235
|
-
"counter":
|
98370
|
+
"counter": 17
|
98236
98371
|
},
|
98237
98372
|
{
|
98238
98373
|
"op": [
|
@@ -98245,7 +98380,7 @@
|
|
98245
98380
|
0
|
98246
98381
|
]
|
98247
98382
|
],
|
98248
|
-
"counter":
|
98383
|
+
"counter": 18
|
98249
98384
|
},
|
98250
98385
|
{
|
98251
98386
|
"op": [
|
@@ -98258,7 +98393,7 @@
|
|
98258
98393
|
1
|
98259
98394
|
]
|
98260
98395
|
],
|
98261
|
-
"counter":
|
98396
|
+
"counter": 19
|
98262
98397
|
}
|
98263
98398
|
]
|
98264
98399
|
},
|
@@ -98347,18 +98482,41 @@
|
|
98347
98482
|
"level": 1
|
98348
98483
|
},
|
98349
98484
|
{
|
98350
|
-
"value": "
|
98485
|
+
"value": "asiago",
|
98486
|
+
"text": "asiago",
|
98487
|
+
"marker": "asiago",
|
98488
|
+
"word": "asiago",
|
98489
|
+
"range": {
|
98490
|
+
"start": 18,
|
98491
|
+
"end": 23
|
98492
|
+
},
|
98493
|
+
"dead": true,
|
98494
|
+
"level": 1
|
98495
|
+
},
|
98496
|
+
{
|
98497
|
+
"value": "ranch",
|
98498
|
+
"text": "ranch",
|
98499
|
+
"marker": "ranch",
|
98500
|
+
"word": "ranch",
|
98501
|
+
"range": {
|
98502
|
+
"start": 25,
|
98503
|
+
"end": 29
|
98504
|
+
},
|
98505
|
+
"dead": true,
|
98506
|
+
"level": 1
|
98507
|
+
},
|
98508
|
+
{
|
98509
|
+
"value": "chicken_sandwich",
|
98351
98510
|
"number": "one",
|
98352
|
-
"text": "
|
98353
|
-
"marker": "
|
98511
|
+
"text": "chicken club ,",
|
98512
|
+
"marker": "chicken_sandwich",
|
98354
98513
|
"word": "club",
|
98355
98514
|
"range": {
|
98356
|
-
"start":
|
98515
|
+
"start": 31,
|
98357
98516
|
"end": 43
|
98358
98517
|
},
|
98359
98518
|
"types": [
|
98360
|
-
"
|
98361
|
-
"chicken_club",
|
98519
|
+
"chicken_sandwich",
|
98362
98520
|
"club"
|
98363
98521
|
],
|
98364
98522
|
"modifier_chicken": {
|
@@ -98379,40 +98537,8 @@
|
|
98379
98537
|
"atomic": true,
|
98380
98538
|
"dead": true,
|
98381
98539
|
"modifiers": [
|
98382
|
-
"modifier_asiago",
|
98383
|
-
"modifier_ranch",
|
98384
98540
|
"modifier_chicken"
|
98385
98541
|
],
|
98386
|
-
"modifier_asiago": {
|
98387
|
-
"value": "asiago",
|
98388
|
-
"text": "asiago",
|
98389
|
-
"marker": "asiago",
|
98390
|
-
"word": "asiago",
|
98391
|
-
"range": {
|
98392
|
-
"start": 18,
|
98393
|
-
"end": 23
|
98394
|
-
},
|
98395
|
-
"dead": true,
|
98396
|
-
"types": [
|
98397
|
-
"asiago"
|
98398
|
-
],
|
98399
|
-
"level": 1
|
98400
|
-
},
|
98401
|
-
"modifier_ranch": {
|
98402
|
-
"value": "ranch",
|
98403
|
-
"text": "ranch",
|
98404
|
-
"marker": "ranch",
|
98405
|
-
"word": "ranch",
|
98406
|
-
"range": {
|
98407
|
-
"start": 25,
|
98408
|
-
"end": 29
|
98409
|
-
},
|
98410
|
-
"dead": true,
|
98411
|
-
"types": [
|
98412
|
-
"ranch"
|
98413
|
-
],
|
98414
|
-
"level": 1
|
98415
|
-
},
|
98416
98542
|
"decorators": {
|
98417
98543
|
"after": {
|
98418
98544
|
"word": ",",
|
@@ -98548,7 +98674,7 @@
|
|
98548
98674
|
""
|
98549
98675
|
],
|
98550
98676
|
"paraphrases": [
|
98551
|
-
"spicy, homestyle, asiago ranch chicken club, ultimate chicken grill and premium cod are sandwiches"
|
98677
|
+
"spicy, homestyle, asiago, ranch, chicken club, ultimate chicken grill and premium cod are sandwiches"
|
98552
98678
|
],
|
98553
98679
|
"paraphrasesParenthesized": [],
|
98554
98680
|
"generatedParenthesized": [],
|
@@ -99004,6 +99130,24 @@
|
|
99004
99130
|
0
|
99005
99131
|
]
|
99006
99132
|
],
|
99133
|
+
[
|
99134
|
+
[
|
99135
|
+
"is",
|
99136
|
+
0
|
99137
|
+
],
|
99138
|
+
[
|
99139
|
+
"list",
|
99140
|
+
1
|
99141
|
+
],
|
99142
|
+
[
|
99143
|
+
"sandwich",
|
99144
|
+
0
|
99145
|
+
],
|
99146
|
+
[
|
99147
|
+
"unknown",
|
99148
|
+
1
|
99149
|
+
]
|
99150
|
+
],
|
99007
99151
|
[
|
99008
99152
|
[
|
99009
99153
|
"is",
|
@@ -99183,6 +99327,10 @@
|
|
99183
99327
|
"asiago",
|
99184
99328
|
"queryable"
|
99185
99329
|
],
|
99330
|
+
[
|
99331
|
+
"asiago",
|
99332
|
+
"sandwich"
|
99333
|
+
],
|
99186
99334
|
[
|
99187
99335
|
"asiago",
|
99188
99336
|
"theAble"
|
@@ -99223,10 +99371,6 @@
|
|
99223
99371
|
"asiago_ranch_chicken_club",
|
99224
99372
|
"queryable"
|
99225
99373
|
],
|
99226
|
-
[
|
99227
|
-
"asiago_ranch_chicken_club",
|
99228
|
-
"sandwich"
|
99229
|
-
],
|
99230
99374
|
[
|
99231
99375
|
"asiago_ranch_chicken_club",
|
99232
99376
|
"theAble"
|
@@ -102023,6 +102167,10 @@
|
|
102023
102167
|
"ranch",
|
102024
102168
|
"queryable"
|
102025
102169
|
],
|
102170
|
+
[
|
102171
|
+
"ranch",
|
102172
|
+
"sandwich"
|
102173
|
+
],
|
102026
102174
|
[
|
102027
102175
|
"ranch",
|
102028
102176
|
"theAble"
|
@@ -103402,6 +103550,10 @@
|
|
103402
103550
|
"asiago",
|
103403
103551
|
"queryable"
|
103404
103552
|
],
|
103553
|
+
[
|
103554
|
+
"asiago",
|
103555
|
+
"sandwich"
|
103556
|
+
],
|
103405
103557
|
[
|
103406
103558
|
"asiago",
|
103407
103559
|
"theAble"
|
@@ -103442,10 +103594,6 @@
|
|
103442
103594
|
"asiago_ranch_chicken_club",
|
103443
103595
|
"queryable"
|
103444
103596
|
],
|
103445
|
-
[
|
103446
|
-
"asiago_ranch_chicken_club",
|
103447
|
-
"sandwich"
|
103448
|
-
],
|
103449
103597
|
[
|
103450
103598
|
"asiago_ranch_chicken_club",
|
103451
103599
|
"theAble"
|
@@ -106274,6 +106422,10 @@
|
|
106274
106422
|
"ranch",
|
106275
106423
|
"queryable"
|
106276
106424
|
],
|
106425
|
+
[
|
106426
|
+
"ranch",
|
106427
|
+
"sandwich"
|
106428
|
+
],
|
106277
106429
|
[
|
106278
106430
|
"ranch",
|
106279
106431
|
"theAble"
|
@@ -107752,6 +107904,10 @@
|
|
107752
107904
|
"asiago",
|
107753
107905
|
"queryable"
|
107754
107906
|
],
|
107907
|
+
[
|
107908
|
+
"asiago",
|
107909
|
+
"sandwich"
|
107910
|
+
],
|
107755
107911
|
[
|
107756
107912
|
"asiago",
|
107757
107913
|
"theAble"
|
@@ -107792,10 +107948,6 @@
|
|
107792
107948
|
"asiago_ranch_chicken_club",
|
107793
107949
|
"queryable"
|
107794
107950
|
],
|
107795
|
-
[
|
107796
|
-
"asiago_ranch_chicken_club",
|
107797
|
-
"sandwich"
|
107798
|
-
],
|
107799
107951
|
[
|
107800
107952
|
"asiago_ranch_chicken_club",
|
107801
107953
|
"theAble"
|
@@ -110656,6 +110808,10 @@
|
|
110656
110808
|
"ranch",
|
110657
110809
|
"queryable"
|
110658
110810
|
],
|
110811
|
+
[
|
110812
|
+
"ranch",
|
110813
|
+
"sandwich"
|
110814
|
+
],
|
110659
110815
|
[
|
110660
110816
|
"ranch",
|
110661
110817
|
"theAble"
|
@@ -112069,6 +112225,10 @@
|
|
112069
112225
|
"asiago",
|
112070
112226
|
"queryable"
|
112071
112227
|
],
|
112228
|
+
[
|
112229
|
+
"asiago",
|
112230
|
+
"sandwich"
|
112231
|
+
],
|
112072
112232
|
[
|
112073
112233
|
"asiago",
|
112074
112234
|
"theAble"
|
@@ -112109,10 +112269,6 @@
|
|
112109
112269
|
"asiago_ranch_chicken_club",
|
112110
112270
|
"queryable"
|
112111
112271
|
],
|
112112
|
-
[
|
112113
|
-
"asiago_ranch_chicken_club",
|
112114
|
-
"sandwich"
|
112115
|
-
],
|
112116
112272
|
[
|
112117
112273
|
"asiago_ranch_chicken_club",
|
112118
112274
|
"theAble"
|
@@ -114977,6 +115133,10 @@
|
|
114977
115133
|
"ranch",
|
114978
115134
|
"queryable"
|
114979
115135
|
],
|
115136
|
+
[
|
115137
|
+
"ranch",
|
115138
|
+
"sandwich"
|
115139
|
+
],
|
114980
115140
|
[
|
114981
115141
|
"ranch",
|
114982
115142
|
"theAble"
|
@@ -116436,6 +116596,10 @@
|
|
116436
116596
|
"asiago",
|
116437
116597
|
"queryable"
|
116438
116598
|
],
|
116599
|
+
[
|
116600
|
+
"asiago",
|
116601
|
+
"sandwich"
|
116602
|
+
],
|
116439
116603
|
[
|
116440
116604
|
"asiago",
|
116441
116605
|
"theAble"
|
@@ -116476,10 +116640,6 @@
|
|
116476
116640
|
"asiago_ranch_chicken_club",
|
116477
116641
|
"queryable"
|
116478
116642
|
],
|
116479
|
-
[
|
116480
|
-
"asiago_ranch_chicken_club",
|
116481
|
-
"sandwich"
|
116482
|
-
],
|
116483
116643
|
[
|
116484
116644
|
"asiago_ranch_chicken_club",
|
116485
116645
|
"theAble"
|
@@ -119344,6 +119504,10 @@
|
|
119344
119504
|
"ranch",
|
119345
119505
|
"queryable"
|
119346
119506
|
],
|
119507
|
+
[
|
119508
|
+
"ranch",
|
119509
|
+
"sandwich"
|
119510
|
+
],
|
119347
119511
|
[
|
119348
119512
|
"ranch",
|
119349
119513
|
"theAble"
|
@@ -120695,6 +120859,10 @@
|
|
120695
120859
|
"asiago",
|
120696
120860
|
"queryable"
|
120697
120861
|
],
|
120862
|
+
[
|
120863
|
+
"asiago",
|
120864
|
+
"sandwich"
|
120865
|
+
],
|
120698
120866
|
[
|
120699
120867
|
"asiago",
|
120700
120868
|
"theAble"
|
@@ -120735,10 +120903,6 @@
|
|
120735
120903
|
"asiago_ranch_chicken_club",
|
120736
120904
|
"queryable"
|
120737
120905
|
],
|
120738
|
-
[
|
120739
|
-
"asiago_ranch_chicken_club",
|
120740
|
-
"sandwich"
|
120741
|
-
],
|
120742
120906
|
[
|
120743
120907
|
"asiago_ranch_chicken_club",
|
120744
120908
|
"theAble"
|
@@ -123603,6 +123767,10 @@
|
|
123603
123767
|
"ranch",
|
123604
123768
|
"queryable"
|
123605
123769
|
],
|
123770
|
+
[
|
123771
|
+
"ranch",
|
123772
|
+
"sandwich"
|
123773
|
+
],
|
123606
123774
|
[
|
123607
123775
|
"ranch",
|
123608
123776
|
"theAble"
|
@@ -125046,6 +125214,10 @@
|
|
125046
125214
|
"asiago",
|
125047
125215
|
"queryable"
|
125048
125216
|
],
|
125217
|
+
[
|
125218
|
+
"asiago",
|
125219
|
+
"sandwich"
|
125220
|
+
],
|
125049
125221
|
[
|
125050
125222
|
"asiago",
|
125051
125223
|
"theAble"
|
@@ -125086,10 +125258,6 @@
|
|
125086
125258
|
"asiago_ranch_chicken_club",
|
125087
125259
|
"queryable"
|
125088
125260
|
],
|
125089
|
-
[
|
125090
|
-
"asiago_ranch_chicken_club",
|
125091
|
-
"sandwich"
|
125092
|
-
],
|
125093
125261
|
[
|
125094
125262
|
"asiago_ranch_chicken_club",
|
125095
125263
|
"theAble"
|
@@ -127994,6 +128162,10 @@
|
|
127994
128162
|
"ranch",
|
127995
128163
|
"queryable"
|
127996
128164
|
],
|
128165
|
+
[
|
128166
|
+
"ranch",
|
128167
|
+
"sandwich"
|
128168
|
+
],
|
127997
128169
|
[
|
127998
128170
|
"ranch",
|
127999
128171
|
"theAble"
|
@@ -129402,6 +129574,10 @@
|
|
129402
129574
|
"asiago",
|
129403
129575
|
"queryable"
|
129404
129576
|
],
|
129577
|
+
[
|
129578
|
+
"asiago",
|
129579
|
+
"sandwich"
|
129580
|
+
],
|
129405
129581
|
[
|
129406
129582
|
"asiago",
|
129407
129583
|
"theAble"
|
@@ -129442,10 +129618,6 @@
|
|
129442
129618
|
"asiago_ranch_chicken_club",
|
129443
129619
|
"queryable"
|
129444
129620
|
],
|
129445
|
-
[
|
129446
|
-
"asiago_ranch_chicken_club",
|
129447
|
-
"sandwich"
|
129448
|
-
],
|
129449
129621
|
[
|
129450
129622
|
"asiago_ranch_chicken_club",
|
129451
129623
|
"theAble"
|
@@ -132350,6 +132522,10 @@
|
|
132350
132522
|
"ranch",
|
132351
132523
|
"queryable"
|
132352
132524
|
],
|
132525
|
+
[
|
132526
|
+
"ranch",
|
132527
|
+
"sandwich"
|
132528
|
+
],
|
132353
132529
|
[
|
132354
132530
|
"ranch",
|
132355
132531
|
"theAble"
|
@@ -133798,6 +133974,10 @@
|
|
133798
133974
|
"asiago",
|
133799
133975
|
"queryable"
|
133800
133976
|
],
|
133977
|
+
[
|
133978
|
+
"asiago",
|
133979
|
+
"sandwich"
|
133980
|
+
],
|
133801
133981
|
[
|
133802
133982
|
"asiago",
|
133803
133983
|
"theAble"
|
@@ -133838,10 +134018,6 @@
|
|
133838
134018
|
"asiago_ranch_chicken_club",
|
133839
134019
|
"queryable"
|
133840
134020
|
],
|
133841
|
-
[
|
133842
|
-
"asiago_ranch_chicken_club",
|
133843
|
-
"sandwich"
|
133844
|
-
],
|
133845
134021
|
[
|
133846
134022
|
"asiago_ranch_chicken_club",
|
133847
134023
|
"theAble"
|
@@ -136786,6 +136962,10 @@
|
|
136786
136962
|
"ranch",
|
136787
136963
|
"queryable"
|
136788
136964
|
],
|
136965
|
+
[
|
136966
|
+
"ranch",
|
136967
|
+
"sandwich"
|
136968
|
+
],
|
136789
136969
|
[
|
136790
136970
|
"ranch",
|
136791
136971
|
"theAble"
|
@@ -138234,6 +138414,10 @@
|
|
138234
138414
|
"asiago",
|
138235
138415
|
"queryable"
|
138236
138416
|
],
|
138417
|
+
[
|
138418
|
+
"asiago",
|
138419
|
+
"sandwich"
|
138420
|
+
],
|
138237
138421
|
[
|
138238
138422
|
"asiago",
|
138239
138423
|
"theAble"
|
@@ -138274,10 +138458,6 @@
|
|
138274
138458
|
"asiago_ranch_chicken_club",
|
138275
138459
|
"queryable"
|
138276
138460
|
],
|
138277
|
-
[
|
138278
|
-
"asiago_ranch_chicken_club",
|
138279
|
-
"sandwich"
|
138280
|
-
],
|
138281
138461
|
[
|
138282
138462
|
"asiago_ranch_chicken_club",
|
138283
138463
|
"theAble"
|
@@ -141262,6 +141442,10 @@
|
|
141262
141442
|
"ranch",
|
141263
141443
|
"queryable"
|
141264
141444
|
],
|
141445
|
+
[
|
141446
|
+
"ranch",
|
141447
|
+
"sandwich"
|
141448
|
+
],
|
141265
141449
|
[
|
141266
141450
|
"ranch",
|
141267
141451
|
"theAble"
|
@@ -142711,6 +142895,10 @@
|
|
142711
142895
|
"asiago",
|
142712
142896
|
"queryable"
|
142713
142897
|
],
|
142898
|
+
[
|
142899
|
+
"asiago",
|
142900
|
+
"sandwich"
|
142901
|
+
],
|
142714
142902
|
[
|
142715
142903
|
"asiago",
|
142716
142904
|
"theAble"
|
@@ -142751,10 +142939,6 @@
|
|
142751
142939
|
"asiago_ranch_chicken_club",
|
142752
142940
|
"queryable"
|
142753
142941
|
],
|
142754
|
-
[
|
142755
|
-
"asiago_ranch_chicken_club",
|
142756
|
-
"sandwich"
|
142757
|
-
],
|
142758
142942
|
[
|
142759
142943
|
"asiago_ranch_chicken_club",
|
142760
142944
|
"theAble"
|
@@ -145779,6 +145963,10 @@
|
|
145779
145963
|
"ranch",
|
145780
145964
|
"queryable"
|
145781
145965
|
],
|
145966
|
+
[
|
145967
|
+
"ranch",
|
145968
|
+
"sandwich"
|
145969
|
+
],
|
145782
145970
|
[
|
145783
145971
|
"ranch",
|
145784
145972
|
"theAble"
|
@@ -147262,6 +147450,10 @@
|
|
147262
147450
|
"asiago",
|
147263
147451
|
"queryable"
|
147264
147452
|
],
|
147453
|
+
[
|
147454
|
+
"asiago",
|
147455
|
+
"sandwich"
|
147456
|
+
],
|
147265
147457
|
[
|
147266
147458
|
"asiago",
|
147267
147459
|
"theAble"
|
@@ -147302,10 +147494,6 @@
|
|
147302
147494
|
"asiago_ranch_chicken_club",
|
147303
147495
|
"queryable"
|
147304
147496
|
],
|
147305
|
-
[
|
147306
|
-
"asiago_ranch_chicken_club",
|
147307
|
-
"sandwich"
|
147308
|
-
],
|
147309
147497
|
[
|
147310
147498
|
"asiago_ranch_chicken_club",
|
147311
147499
|
"theAble"
|
@@ -150330,6 +150518,10 @@
|
|
150330
150518
|
"ranch",
|
150331
150519
|
"queryable"
|
150332
150520
|
],
|
150521
|
+
[
|
150522
|
+
"ranch",
|
150523
|
+
"sandwich"
|
150524
|
+
],
|
150333
150525
|
[
|
150334
150526
|
"ranch",
|
150335
150527
|
"theAble"
|
@@ -151914,6 +152106,10 @@
|
|
151914
152106
|
"asiago",
|
151915
152107
|
"queryable"
|
151916
152108
|
],
|
152109
|
+
[
|
152110
|
+
"asiago",
|
152111
|
+
"sandwich"
|
152112
|
+
],
|
151917
152113
|
[
|
151918
152114
|
"asiago",
|
151919
152115
|
"theAble"
|
@@ -151954,10 +152150,6 @@
|
|
151954
152150
|
"asiago_ranch_chicken_club",
|
151955
152151
|
"queryable"
|
151956
152152
|
],
|
151957
|
-
[
|
151958
|
-
"asiago_ranch_chicken_club",
|
151959
|
-
"sandwich"
|
151960
|
-
],
|
151961
152153
|
[
|
151962
152154
|
"asiago_ranch_chicken_club",
|
151963
152155
|
"theAble"
|
@@ -155014,6 +155206,10 @@
|
|
155014
155206
|
"ranch",
|
155015
155207
|
"queryable"
|
155016
155208
|
],
|
155209
|
+
[
|
155210
|
+
"ranch",
|
155211
|
+
"sandwich"
|
155212
|
+
],
|
155017
155213
|
[
|
155018
155214
|
"ranch",
|
155019
155215
|
"theAble"
|
@@ -156502,6 +156698,10 @@
|
|
156502
156698
|
"asiago",
|
156503
156699
|
"queryable"
|
156504
156700
|
],
|
156701
|
+
[
|
156702
|
+
"asiago",
|
156703
|
+
"sandwich"
|
156704
|
+
],
|
156505
156705
|
[
|
156506
156706
|
"asiago",
|
156507
156707
|
"theAble"
|
@@ -156542,10 +156742,6 @@
|
|
156542
156742
|
"asiago_ranch_chicken_club",
|
156543
156743
|
"queryable"
|
156544
156744
|
],
|
156545
|
-
[
|
156546
|
-
"asiago_ranch_chicken_club",
|
156547
|
-
"sandwich"
|
156548
|
-
],
|
156549
156745
|
[
|
156550
156746
|
"asiago_ranch_chicken_club",
|
156551
156747
|
"theAble"
|
@@ -159606,6 +159802,10 @@
|
|
159606
159802
|
"ranch",
|
159607
159803
|
"queryable"
|
159608
159804
|
],
|
159805
|
+
[
|
159806
|
+
"ranch",
|
159807
|
+
"sandwich"
|
159808
|
+
],
|
159609
159809
|
[
|
159610
159810
|
"ranch",
|
159611
159811
|
"theAble"
|
@@ -161134,6 +161334,10 @@
|
|
161134
161334
|
"asiago",
|
161135
161335
|
"queryable"
|
161136
161336
|
],
|
161337
|
+
[
|
161338
|
+
"asiago",
|
161339
|
+
"sandwich"
|
161340
|
+
],
|
161137
161341
|
[
|
161138
161342
|
"asiago",
|
161139
161343
|
"theAble"
|
@@ -161174,10 +161378,6 @@
|
|
161174
161378
|
"asiago_ranch_chicken_club",
|
161175
161379
|
"queryable"
|
161176
161380
|
],
|
161177
|
-
[
|
161178
|
-
"asiago_ranch_chicken_club",
|
161179
|
-
"sandwich"
|
161180
|
-
],
|
161181
161381
|
[
|
161182
161382
|
"asiago_ranch_chicken_club",
|
161183
161383
|
"theAble"
|
@@ -164278,6 +164478,10 @@
|
|
164278
164478
|
"ranch",
|
164279
164479
|
"queryable"
|
164280
164480
|
],
|
164481
|
+
[
|
164482
|
+
"ranch",
|
164483
|
+
"sandwich"
|
164484
|
+
],
|
164281
164485
|
[
|
164282
164486
|
"ranch",
|
164283
164487
|
"theAble"
|
@@ -165821,6 +166025,10 @@
|
|
165821
166025
|
"asiago",
|
165822
166026
|
"queryable"
|
165823
166027
|
],
|
166028
|
+
[
|
166029
|
+
"asiago",
|
166030
|
+
"sandwich"
|
166031
|
+
],
|
165824
166032
|
[
|
165825
166033
|
"asiago",
|
165826
166034
|
"theAble"
|
@@ -165861,10 +166069,6 @@
|
|
165861
166069
|
"asiago_ranch_chicken_club",
|
165862
166070
|
"queryable"
|
165863
166071
|
],
|
165864
|
-
[
|
165865
|
-
"asiago_ranch_chicken_club",
|
165866
|
-
"sandwich"
|
165867
|
-
],
|
165868
166072
|
[
|
165869
166073
|
"asiago_ranch_chicken_club",
|
165870
166074
|
"theAble"
|
@@ -169037,6 +169241,10 @@
|
|
169037
169241
|
"ranch",
|
169038
169242
|
"queryable"
|
169039
169243
|
],
|
169244
|
+
[
|
169245
|
+
"ranch",
|
169246
|
+
"sandwich"
|
169247
|
+
],
|
169040
169248
|
[
|
169041
169249
|
"ranch",
|
169042
169250
|
"theAble"
|
@@ -170600,6 +170808,10 @@
|
|
170600
170808
|
"asiago",
|
170601
170809
|
"queryable"
|
170602
170810
|
],
|
170811
|
+
[
|
170812
|
+
"asiago",
|
170813
|
+
"sandwich"
|
170814
|
+
],
|
170603
170815
|
[
|
170604
170816
|
"asiago",
|
170605
170817
|
"theAble"
|
@@ -170640,10 +170852,6 @@
|
|
170640
170852
|
"asiago_ranch_chicken_club",
|
170641
170853
|
"queryable"
|
170642
170854
|
],
|
170643
|
-
[
|
170644
|
-
"asiago_ranch_chicken_club",
|
170645
|
-
"sandwich"
|
170646
|
-
],
|
170647
170855
|
[
|
170648
170856
|
"asiago_ranch_chicken_club",
|
170649
170857
|
"theAble"
|
@@ -173856,6 +174064,10 @@
|
|
173856
174064
|
"ranch",
|
173857
174065
|
"queryable"
|
173858
174066
|
],
|
174067
|
+
[
|
174068
|
+
"ranch",
|
174069
|
+
"sandwich"
|
174070
|
+
],
|
173859
174071
|
[
|
173860
174072
|
"ranch",
|
173861
174073
|
"theAble"
|
@@ -175399,6 +175611,10 @@
|
|
175399
175611
|
"asiago",
|
175400
175612
|
"queryable"
|
175401
175613
|
],
|
175614
|
+
[
|
175615
|
+
"asiago",
|
175616
|
+
"sandwich"
|
175617
|
+
],
|
175402
175618
|
[
|
175403
175619
|
"asiago",
|
175404
175620
|
"theAble"
|
@@ -175439,10 +175655,6 @@
|
|
175439
175655
|
"asiago_ranch_chicken_club",
|
175440
175656
|
"queryable"
|
175441
175657
|
],
|
175442
|
-
[
|
175443
|
-
"asiago_ranch_chicken_club",
|
175444
|
-
"sandwich"
|
175445
|
-
],
|
175446
175658
|
[
|
175447
175659
|
"asiago_ranch_chicken_club",
|
175448
175660
|
"theAble"
|
@@ -178727,6 +178939,10 @@
|
|
178727
178939
|
"ranch",
|
178728
178940
|
"queryable"
|
178729
178941
|
],
|
178942
|
+
[
|
178943
|
+
"ranch",
|
178944
|
+
"sandwich"
|
178945
|
+
],
|
178730
178946
|
[
|
178731
178947
|
"ranch",
|
178732
178948
|
"theAble"
|
@@ -180388,6 +180604,10 @@
|
|
180388
180604
|
"asiago",
|
180389
180605
|
"queryable"
|
180390
180606
|
],
|
180607
|
+
[
|
180608
|
+
"asiago",
|
180609
|
+
"sandwich"
|
180610
|
+
],
|
180391
180611
|
[
|
180392
180612
|
"asiago",
|
180393
180613
|
"theAble"
|
@@ -180428,10 +180648,6 @@
|
|
180428
180648
|
"asiago_ranch_chicken_club",
|
180429
180649
|
"queryable"
|
180430
180650
|
],
|
180431
|
-
[
|
180432
|
-
"asiago_ranch_chicken_club",
|
180433
|
-
"sandwich"
|
180434
|
-
],
|
180435
180651
|
[
|
180436
180652
|
"asiago_ranch_chicken_club",
|
180437
180653
|
"theAble"
|
@@ -183784,6 +184000,10 @@
|
|
183784
184000
|
"ranch",
|
183785
184001
|
"queryable"
|
183786
184002
|
],
|
184003
|
+
[
|
184004
|
+
"ranch",
|
184005
|
+
"sandwich"
|
184006
|
+
],
|
183787
184007
|
[
|
183788
184008
|
"ranch",
|
183789
184009
|
"theAble"
|
@@ -185327,6 +185547,10 @@
|
|
185327
185547
|
"asiago",
|
185328
185548
|
"queryable"
|
185329
185549
|
],
|
185550
|
+
[
|
185551
|
+
"asiago",
|
185552
|
+
"sandwich"
|
185553
|
+
],
|
185330
185554
|
[
|
185331
185555
|
"asiago",
|
185332
185556
|
"theAble"
|
@@ -185367,10 +185591,6 @@
|
|
185367
185591
|
"asiago_ranch_chicken_club",
|
185368
185592
|
"queryable"
|
185369
185593
|
],
|
185370
|
-
[
|
185371
|
-
"asiago_ranch_chicken_club",
|
185372
|
-
"sandwich"
|
185373
|
-
],
|
185374
185594
|
[
|
185375
185595
|
"asiago_ranch_chicken_club",
|
185376
185596
|
"theAble"
|
@@ -188795,6 +189015,10 @@
|
|
188795
189015
|
"ranch",
|
188796
189016
|
"queryable"
|
188797
189017
|
],
|
189018
|
+
[
|
189019
|
+
"ranch",
|
189020
|
+
"sandwich"
|
189021
|
+
],
|
188798
189022
|
[
|
188799
189023
|
"ranch",
|
188800
189024
|
"theAble"
|
@@ -190380,6 +190604,10 @@
|
|
190380
190604
|
"asiago",
|
190381
190605
|
"queryable"
|
190382
190606
|
],
|
190607
|
+
[
|
190608
|
+
"asiago",
|
190609
|
+
"sandwich"
|
190610
|
+
],
|
190383
190611
|
[
|
190384
190612
|
"asiago",
|
190385
190613
|
"theAble"
|
@@ -190420,10 +190648,6 @@
|
|
190420
190648
|
"asiago_ranch_chicken_club",
|
190421
190649
|
"queryable"
|
190422
190650
|
],
|
190423
|
-
[
|
190424
|
-
"asiago_ranch_chicken_club",
|
190425
|
-
"sandwich"
|
190426
|
-
],
|
190427
190651
|
[
|
190428
190652
|
"asiago_ranch_chicken_club",
|
190429
190653
|
"theAble"
|
@@ -193888,6 +194112,10 @@
|
|
193888
194112
|
"ranch",
|
193889
194113
|
"queryable"
|
193890
194114
|
],
|
194115
|
+
[
|
194116
|
+
"ranch",
|
194117
|
+
"sandwich"
|
194118
|
+
],
|
193891
194119
|
[
|
193892
194120
|
"ranch",
|
193893
194121
|
"theAble"
|
@@ -195530,6 +195758,10 @@
|
|
195530
195758
|
"asiago",
|
195531
195759
|
"queryable"
|
195532
195760
|
],
|
195761
|
+
[
|
195762
|
+
"asiago",
|
195763
|
+
"sandwich"
|
195764
|
+
],
|
195533
195765
|
[
|
195534
195766
|
"asiago",
|
195535
195767
|
"theAble"
|
@@ -195570,10 +195802,6 @@
|
|
195570
195802
|
"asiago_ranch_chicken_club",
|
195571
195803
|
"queryable"
|
195572
195804
|
],
|
195573
|
-
[
|
195574
|
-
"asiago_ranch_chicken_club",
|
195575
|
-
"sandwich"
|
195576
|
-
],
|
195577
195805
|
[
|
195578
195806
|
"asiago_ranch_chicken_club",
|
195579
195807
|
"theAble"
|
@@ -199066,6 +199294,10 @@
|
|
199066
199294
|
"ranch",
|
199067
199295
|
"queryable"
|
199068
199296
|
],
|
199297
|
+
[
|
199298
|
+
"ranch",
|
199299
|
+
"sandwich"
|
199300
|
+
],
|
199069
199301
|
[
|
199070
199302
|
"ranch",
|
199071
199303
|
"theAble"
|
@@ -200681,6 +200913,10 @@
|
|
200681
200913
|
"asiago",
|
200682
200914
|
"queryable"
|
200683
200915
|
],
|
200916
|
+
[
|
200917
|
+
"asiago",
|
200918
|
+
"sandwich"
|
200919
|
+
],
|
200684
200920
|
[
|
200685
200921
|
"asiago",
|
200686
200922
|
"theAble"
|
@@ -200721,10 +200957,6 @@
|
|
200721
200957
|
"asiago_ranch_chicken_club",
|
200722
200958
|
"queryable"
|
200723
200959
|
],
|
200724
|
-
[
|
200725
|
-
"asiago_ranch_chicken_club",
|
200726
|
-
"sandwich"
|
200727
|
-
],
|
200728
200960
|
[
|
200729
200961
|
"asiago_ranch_chicken_club",
|
200730
200962
|
"theAble"
|
@@ -204217,6 +204449,10 @@
|
|
204217
204449
|
"ranch",
|
204218
204450
|
"queryable"
|
204219
204451
|
],
|
204452
|
+
[
|
204453
|
+
"ranch",
|
204454
|
+
"sandwich"
|
204455
|
+
],
|
204220
204456
|
[
|
204221
204457
|
"ranch",
|
204222
204458
|
"theAble"
|
@@ -205840,6 +206076,10 @@
|
|
205840
206076
|
"asiago",
|
205841
206077
|
"queryable"
|
205842
206078
|
],
|
206079
|
+
[
|
206080
|
+
"asiago",
|
206081
|
+
"sandwich"
|
206082
|
+
],
|
205843
206083
|
[
|
205844
206084
|
"asiago",
|
205845
206085
|
"theAble"
|
@@ -205880,10 +206120,6 @@
|
|
205880
206120
|
"asiago_ranch_chicken_club",
|
205881
206121
|
"queryable"
|
205882
206122
|
],
|
205883
|
-
[
|
205884
|
-
"asiago_ranch_chicken_club",
|
205885
|
-
"sandwich"
|
205886
|
-
],
|
205887
206123
|
[
|
205888
206124
|
"asiago_ranch_chicken_club",
|
205889
206125
|
"theAble"
|
@@ -209376,6 +209612,10 @@
|
|
209376
209612
|
"ranch",
|
209377
209613
|
"queryable"
|
209378
209614
|
],
|
209615
|
+
[
|
209616
|
+
"ranch",
|
209617
|
+
"sandwich"
|
209618
|
+
],
|
209379
209619
|
[
|
209380
209620
|
"ranch",
|
209381
209621
|
"theAble"
|
@@ -211123,6 +211363,10 @@
|
|
211123
211363
|
"asiago",
|
211124
211364
|
"queryable"
|
211125
211365
|
],
|
211366
|
+
[
|
211367
|
+
"asiago",
|
211368
|
+
"sandwich"
|
211369
|
+
],
|
211126
211370
|
[
|
211127
211371
|
"asiago",
|
211128
211372
|
"theAble"
|
@@ -211163,10 +211407,6 @@
|
|
211163
211407
|
"asiago_ranch_chicken_club",
|
211164
211408
|
"queryable"
|
211165
211409
|
],
|
211166
|
-
[
|
211167
|
-
"asiago_ranch_chicken_club",
|
211168
|
-
"sandwich"
|
211169
|
-
],
|
211170
211410
|
[
|
211171
211411
|
"asiago_ranch_chicken_club",
|
211172
211412
|
"theAble"
|
@@ -214687,6 +214927,10 @@
|
|
214687
214927
|
"ranch",
|
214688
214928
|
"queryable"
|
214689
214929
|
],
|
214930
|
+
[
|
214931
|
+
"ranch",
|
214932
|
+
"sandwich"
|
214933
|
+
],
|
214690
214934
|
[
|
214691
214935
|
"ranch",
|
214692
214936
|
"theAble"
|
@@ -216441,6 +216685,10 @@
|
|
216441
216685
|
"asiago",
|
216442
216686
|
"queryable"
|
216443
216687
|
],
|
216688
|
+
[
|
216689
|
+
"asiago",
|
216690
|
+
"sandwich"
|
216691
|
+
],
|
216444
216692
|
[
|
216445
216693
|
"asiago",
|
216446
216694
|
"theAble"
|
@@ -216481,10 +216729,6 @@
|
|
216481
216729
|
"asiago_ranch_chicken_club",
|
216482
216730
|
"queryable"
|
216483
216731
|
],
|
216484
|
-
[
|
216485
|
-
"asiago_ranch_chicken_club",
|
216486
|
-
"sandwich"
|
216487
|
-
],
|
216488
216732
|
[
|
216489
216733
|
"asiago_ranch_chicken_club",
|
216490
216734
|
"theAble"
|
@@ -220049,6 +220293,10 @@
|
|
220049
220293
|
"ranch",
|
220050
220294
|
"queryable"
|
220051
220295
|
],
|
220296
|
+
[
|
220297
|
+
"ranch",
|
220298
|
+
"sandwich"
|
220299
|
+
],
|
220052
220300
|
[
|
220053
220301
|
"ranch",
|
220054
220302
|
"theAble"
|
@@ -221793,6 +222041,10 @@
|
|
221793
222041
|
"asiago",
|
221794
222042
|
"queryable"
|
221795
222043
|
],
|
222044
|
+
[
|
222045
|
+
"asiago",
|
222046
|
+
"sandwich"
|
222047
|
+
],
|
221796
222048
|
[
|
221797
222049
|
"asiago",
|
221798
222050
|
"theAble"
|
@@ -221833,10 +222085,6 @@
|
|
221833
222085
|
"asiago_ranch_chicken_club",
|
221834
222086
|
"queryable"
|
221835
222087
|
],
|
221836
|
-
[
|
221837
|
-
"asiago_ranch_chicken_club",
|
221838
|
-
"sandwich"
|
221839
|
-
],
|
221840
222088
|
[
|
221841
222089
|
"asiago_ranch_chicken_club",
|
221842
222090
|
"theAble"
|
@@ -225445,6 +225693,10 @@
|
|
225445
225693
|
"ranch",
|
225446
225694
|
"queryable"
|
225447
225695
|
],
|
225696
|
+
[
|
225697
|
+
"ranch",
|
225698
|
+
"sandwich"
|
225699
|
+
],
|
225448
225700
|
[
|
225449
225701
|
"ranch",
|
225450
225702
|
"theAble"
|
@@ -227250,6 +227502,10 @@
|
|
227250
227502
|
"asiago",
|
227251
227503
|
"queryable"
|
227252
227504
|
],
|
227505
|
+
[
|
227506
|
+
"asiago",
|
227507
|
+
"sandwich"
|
227508
|
+
],
|
227253
227509
|
[
|
227254
227510
|
"asiago",
|
227255
227511
|
"theAble"
|
@@ -227290,10 +227546,6 @@
|
|
227290
227546
|
"asiago_ranch_chicken_club",
|
227291
227547
|
"queryable"
|
227292
227548
|
],
|
227293
|
-
[
|
227294
|
-
"asiago_ranch_chicken_club",
|
227295
|
-
"sandwich"
|
227296
|
-
],
|
227297
227549
|
[
|
227298
227550
|
"asiago_ranch_chicken_club",
|
227299
227551
|
"theAble"
|
@@ -230970,6 +231222,10 @@
|
|
230970
231222
|
"ranch",
|
230971
231223
|
"queryable"
|
230972
231224
|
],
|
231225
|
+
[
|
231226
|
+
"ranch",
|
231227
|
+
"sandwich"
|
231228
|
+
],
|
230973
231229
|
[
|
230974
231230
|
"ranch",
|
230975
231231
|
"theAble"
|
@@ -232725,6 +232981,10 @@
|
|
232725
232981
|
"asiago",
|
232726
232982
|
"queryable"
|
232727
232983
|
],
|
232984
|
+
[
|
232985
|
+
"asiago",
|
232986
|
+
"sandwich"
|
232987
|
+
],
|
232728
232988
|
[
|
232729
232989
|
"asiago",
|
232730
232990
|
"theAble"
|
@@ -232765,10 +233025,6 @@
|
|
232765
233025
|
"asiago_ranch_chicken_club",
|
232766
233026
|
"queryable"
|
232767
233027
|
],
|
232768
|
-
[
|
232769
|
-
"asiago_ranch_chicken_club",
|
232770
|
-
"sandwich"
|
232771
|
-
],
|
232772
233028
|
[
|
232773
233029
|
"asiago_ranch_chicken_club",
|
232774
233030
|
"theAble"
|
@@ -236513,6 +236769,10 @@
|
|
236513
236769
|
"ranch",
|
236514
236770
|
"queryable"
|
236515
236771
|
],
|
236772
|
+
[
|
236773
|
+
"ranch",
|
236774
|
+
"sandwich"
|
236775
|
+
],
|
236516
236776
|
[
|
236517
236777
|
"ranch",
|
236518
236778
|
"theAble"
|
@@ -238437,6 +238697,10 @@
|
|
238437
238697
|
"asiago",
|
238438
238698
|
"queryable"
|
238439
238699
|
],
|
238700
|
+
[
|
238701
|
+
"asiago",
|
238702
|
+
"sandwich"
|
238703
|
+
],
|
238440
238704
|
[
|
238441
238705
|
"asiago",
|
238442
238706
|
"theAble"
|
@@ -238477,10 +238741,6 @@
|
|
238477
238741
|
"asiago_ranch_chicken_club",
|
238478
238742
|
"queryable"
|
238479
238743
|
],
|
238480
|
-
[
|
238481
|
-
"asiago_ranch_chicken_club",
|
238482
|
-
"sandwich"
|
238483
|
-
],
|
238484
238744
|
[
|
238485
238745
|
"asiago_ranch_chicken_club",
|
238486
238746
|
"theAble"
|
@@ -242229,6 +242489,10 @@
|
|
242229
242489
|
"ranch",
|
242230
242490
|
"queryable"
|
242231
242491
|
],
|
242492
|
+
[
|
242493
|
+
"ranch",
|
242494
|
+
"sandwich"
|
242495
|
+
],
|
242232
242496
|
[
|
242233
242497
|
"ranch",
|
242234
242498
|
"theAble"
|
@@ -244052,6 +244316,10 @@
|
|
244052
244316
|
"asiago",
|
244053
244317
|
"queryable"
|
244054
244318
|
],
|
244319
|
+
[
|
244320
|
+
"asiago",
|
244321
|
+
"sandwich"
|
244322
|
+
],
|
244055
244323
|
[
|
244056
244324
|
"asiago",
|
244057
244325
|
"theAble"
|
@@ -244092,10 +244360,6 @@
|
|
244092
244360
|
"asiago_ranch_chicken_club",
|
244093
244361
|
"queryable"
|
244094
244362
|
],
|
244095
|
-
[
|
244096
|
-
"asiago_ranch_chicken_club",
|
244097
|
-
"sandwich"
|
244098
|
-
],
|
244099
244363
|
[
|
244100
244364
|
"asiago_ranch_chicken_club",
|
244101
244365
|
"theAble"
|
@@ -247884,6 +248148,10 @@
|
|
247884
248148
|
"ranch",
|
247885
248149
|
"queryable"
|
247886
248150
|
],
|
248151
|
+
[
|
248152
|
+
"ranch",
|
248153
|
+
"sandwich"
|
248154
|
+
],
|
247887
248155
|
[
|
247888
248156
|
"ranch",
|
247889
248157
|
"theAble"
|
@@ -249555,7 +249823,7 @@
|
|
249555
249823
|
0
|
249556
249824
|
],
|
249557
249825
|
[
|
249558
|
-
"
|
249826
|
+
"french_toast",
|
249559
249827
|
0
|
249560
249828
|
],
|
249561
249829
|
[
|
@@ -249563,7 +249831,7 @@
|
|
249563
249831
|
0
|
249564
249832
|
],
|
249565
249833
|
[
|
249566
|
-
"
|
249834
|
+
"double_sausage_muffin",
|
249567
249835
|
0
|
249568
249836
|
],
|
249569
249837
|
[
|
@@ -249882,7 +250150,7 @@
|
|
249882
250150
|
0
|
249883
250151
|
],
|
249884
250152
|
[
|
249885
|
-
"
|
250153
|
+
"french_toast",
|
249886
250154
|
0
|
249887
250155
|
],
|
249888
250156
|
[
|
@@ -249890,7 +250158,7 @@
|
|
249890
250158
|
0
|
249891
250159
|
],
|
249892
250160
|
[
|
249893
|
-
"
|
250161
|
+
"double_sausage_muffin",
|
249894
250162
|
0
|
249895
250163
|
],
|
249896
250164
|
[
|
@@ -250084,19 +250352,19 @@
|
|
250084
250352
|
0
|
250085
250353
|
],
|
250086
250354
|
[
|
250087
|
-
"
|
250355
|
+
"breakfast_meal",
|
250088
250356
|
0
|
250089
250357
|
],
|
250090
250358
|
[
|
250091
|
-
"
|
250359
|
+
"french_toast",
|
250092
250360
|
0
|
250093
250361
|
],
|
250094
250362
|
[
|
250095
|
-
"
|
250363
|
+
"double_sausage_muffin",
|
250096
250364
|
0
|
250097
250365
|
],
|
250098
250366
|
[
|
250099
|
-
"
|
250367
|
+
"pancake_platter",
|
250100
250368
|
0
|
250101
250369
|
],
|
250102
250370
|
[
|
@@ -250193,19 +250461,19 @@
|
|
250193
250461
|
0
|
250194
250462
|
],
|
250195
250463
|
[
|
250196
|
-
"
|
250464
|
+
"breakfast_meal",
|
250197
250465
|
0
|
250198
250466
|
],
|
250199
250467
|
[
|
250200
|
-
"
|
250468
|
+
"french_toast",
|
250201
250469
|
0
|
250202
250470
|
],
|
250203
250471
|
[
|
250204
|
-
"
|
250472
|
+
"double_sausage_muffin",
|
250205
250473
|
0
|
250206
250474
|
],
|
250207
250475
|
[
|
250208
|
-
"
|
250476
|
+
"pancake_platter",
|
250209
250477
|
0
|
250210
250478
|
],
|
250211
250479
|
[
|
@@ -250298,19 +250566,19 @@
|
|
250298
250566
|
0
|
250299
250567
|
],
|
250300
250568
|
[
|
250301
|
-
"
|
250569
|
+
"breakfast_meal",
|
250302
250570
|
0
|
250303
250571
|
],
|
250304
250572
|
[
|
250305
|
-
"
|
250573
|
+
"french_toast",
|
250306
250574
|
0
|
250307
250575
|
],
|
250308
250576
|
[
|
250309
|
-
"
|
250577
|
+
"double_sausage_muffin",
|
250310
250578
|
0
|
250311
250579
|
],
|
250312
250580
|
[
|
250313
|
-
"
|
250581
|
+
"pancake_platter",
|
250314
250582
|
0
|
250315
250583
|
],
|
250316
250584
|
[
|
@@ -250549,19 +250817,19 @@
|
|
250549
250817
|
0
|
250550
250818
|
],
|
250551
250819
|
[
|
250552
|
-
"
|
250820
|
+
"breakfast_meal",
|
250553
250821
|
0
|
250554
250822
|
],
|
250555
250823
|
[
|
250556
|
-
"
|
250824
|
+
"french_toast",
|
250557
250825
|
0
|
250558
250826
|
],
|
250559
250827
|
[
|
250560
|
-
"
|
250828
|
+
"double_sausage_muffin",
|
250561
250829
|
0
|
250562
250830
|
],
|
250563
250831
|
[
|
250564
|
-
"
|
250832
|
+
"pancake_platter",
|
250565
250833
|
0
|
250566
250834
|
],
|
250567
250835
|
[
|
@@ -250707,15 +250975,15 @@
|
|
250707
250975
|
0
|
250708
250976
|
],
|
250709
250977
|
[
|
250710
|
-
"
|
250978
|
+
"breakfast_meal",
|
250711
250979
|
0
|
250712
250980
|
],
|
250713
250981
|
[
|
250714
|
-
"
|
250982
|
+
"double_sausage_muffin",
|
250715
250983
|
0
|
250716
250984
|
],
|
250717
250985
|
[
|
250718
|
-
"
|
250986
|
+
"french_toast",
|
250719
250987
|
0
|
250720
250988
|
],
|
250721
250989
|
[
|
@@ -250837,11 +251105,11 @@
|
|
250837
251105
|
0
|
250838
251106
|
],
|
250839
251107
|
[
|
250840
|
-
"
|
251108
|
+
"breakfast_meal",
|
250841
251109
|
0
|
250842
251110
|
],
|
250843
251111
|
[
|
250844
|
-
"
|
251112
|
+
"french_toast",
|
250845
251113
|
0
|
250846
251114
|
],
|
250847
251115
|
[
|
@@ -250890,11 +251158,11 @@
|
|
250890
251158
|
0
|
250891
251159
|
],
|
250892
251160
|
[
|
250893
|
-
"
|
251161
|
+
"breakfast_meal",
|
250894
251162
|
0
|
250895
251163
|
],
|
250896
251164
|
[
|
250897
|
-
"
|
251165
|
+
"french_toast",
|
250898
251166
|
0
|
250899
251167
|
],
|
250900
251168
|
[
|
@@ -250939,11 +251207,11 @@
|
|
250939
251207
|
0
|
250940
251208
|
],
|
250941
251209
|
[
|
250942
|
-
"
|
251210
|
+
"breakfast_meal",
|
250943
251211
|
0
|
250944
251212
|
],
|
250945
251213
|
[
|
250946
|
-
"
|
251214
|
+
"french_toast",
|
250947
251215
|
0
|
250948
251216
|
],
|
250949
251217
|
[
|
@@ -252372,10 +252640,6 @@
|
|
252372
252640
|
"pancake",
|
252373
252641
|
0
|
252374
252642
|
],
|
252375
|
-
[
|
252376
|
-
"platter",
|
252377
|
-
0
|
252378
|
-
],
|
252379
252643
|
[
|
252380
252644
|
"sausage",
|
252381
252645
|
0
|
@@ -252394,10 +252658,6 @@
|
|
252394
252658
|
"comma",
|
252395
252659
|
0
|
252396
252660
|
],
|
252397
|
-
[
|
252398
|
-
"double",
|
252399
|
-
0
|
252400
|
-
],
|
252401
252661
|
[
|
252402
252662
|
"french",
|
252403
252663
|
0
|
@@ -252414,64 +252674,6 @@
|
|
252414
252674
|
"meal",
|
252415
252675
|
0
|
252416
252676
|
],
|
252417
|
-
[
|
252418
|
-
"muffin",
|
252419
|
-
0
|
252420
|
-
],
|
252421
|
-
[
|
252422
|
-
"oatmeal",
|
252423
|
-
0
|
252424
|
-
],
|
252425
|
-
[
|
252426
|
-
"pancake",
|
252427
|
-
0
|
252428
|
-
],
|
252429
|
-
[
|
252430
|
-
"platter",
|
252431
|
-
0
|
252432
|
-
],
|
252433
|
-
[
|
252434
|
-
"sausage",
|
252435
|
-
0
|
252436
|
-
],
|
252437
|
-
[
|
252438
|
-
"toast",
|
252439
|
-
0
|
252440
|
-
]
|
252441
|
-
],
|
252442
|
-
[
|
252443
|
-
[
|
252444
|
-
"breakfast",
|
252445
|
-
0
|
252446
|
-
],
|
252447
|
-
[
|
252448
|
-
"comma",
|
252449
|
-
0
|
252450
|
-
],
|
252451
|
-
[
|
252452
|
-
"double",
|
252453
|
-
0
|
252454
|
-
],
|
252455
|
-
[
|
252456
|
-
"french",
|
252457
|
-
0
|
252458
|
-
],
|
252459
|
-
[
|
252460
|
-
"is",
|
252461
|
-
0
|
252462
|
-
],
|
252463
|
-
[
|
252464
|
-
"list",
|
252465
|
-
0
|
252466
|
-
],
|
252467
|
-
[
|
252468
|
-
"meal",
|
252469
|
-
0
|
252470
|
-
],
|
252471
|
-
[
|
252472
|
-
"muffin",
|
252473
|
-
0
|
252474
|
-
],
|
252475
252677
|
[
|
252476
252678
|
"oatmeal",
|
252477
252679
|
0
|
@@ -252480,10 +252682,6 @@
|
|
252480
252682
|
"pancake",
|
252481
252683
|
0
|
252482
252684
|
],
|
252483
|
-
[
|
252484
|
-
"sausage",
|
252485
|
-
0
|
252486
|
-
],
|
252487
252685
|
[
|
252488
252686
|
"toast",
|
252489
252687
|
0
|
@@ -252518,10 +252716,6 @@
|
|
252518
252716
|
"oatmeal",
|
252519
252717
|
0
|
252520
252718
|
],
|
252521
|
-
[
|
252522
|
-
"pancake",
|
252523
|
-
0
|
252524
|
-
],
|
252525
252719
|
[
|
252526
252720
|
"toast",
|
252527
252721
|
0
|
@@ -252532,10 +252726,6 @@
|
|
252532
252726
|
"breakfast",
|
252533
252727
|
0
|
252534
252728
|
],
|
252535
|
-
[
|
252536
|
-
"comma",
|
252537
|
-
0
|
252538
|
-
],
|
252539
252729
|
[
|
252540
252730
|
"french",
|
252541
252731
|
0
|
@@ -252566,10 +252756,6 @@
|
|
252566
252756
|
"breakfast",
|
252567
252757
|
0
|
252568
252758
|
],
|
252569
|
-
[
|
252570
|
-
"french",
|
252571
|
-
0
|
252572
|
-
],
|
252573
252759
|
[
|
252574
252760
|
"is",
|
252575
252761
|
0
|
@@ -252585,10 +252771,6 @@
|
|
252585
252771
|
[
|
252586
252772
|
"oatmeal",
|
252587
252773
|
0
|
252588
|
-
],
|
252589
|
-
[
|
252590
|
-
"toast",
|
252591
|
-
0
|
252592
252774
|
]
|
252593
252775
|
],
|
252594
252776
|
[
|
@@ -252602,15 +252784,11 @@
|
|
252602
252784
|
],
|
252603
252785
|
[
|
252604
252786
|
"list",
|
252605
|
-
|
252787
|
+
1
|
252606
252788
|
],
|
252607
252789
|
[
|
252608
252790
|
"meal",
|
252609
252791
|
0
|
252610
|
-
],
|
252611
|
-
[
|
252612
|
-
"oatmeal",
|
252613
|
-
0
|
252614
252792
|
]
|
252615
252793
|
],
|
252616
252794
|
[
|
@@ -252842,6 +253020,10 @@
|
|
252842
253020
|
"asiago",
|
252843
253021
|
"queryable"
|
252844
253022
|
],
|
253023
|
+
[
|
253024
|
+
"asiago",
|
253025
|
+
"sandwich"
|
253026
|
+
],
|
252845
253027
|
[
|
252846
253028
|
"asiago",
|
252847
253029
|
"theAble"
|
@@ -252882,10 +253064,6 @@
|
|
252882
253064
|
"asiago_ranch_chicken_club",
|
252883
253065
|
"queryable"
|
252884
253066
|
],
|
252885
|
-
[
|
252886
|
-
"asiago_ranch_chicken_club",
|
252887
|
-
"sandwich"
|
252888
|
-
],
|
252889
253067
|
[
|
252890
253068
|
"asiago_ranch_chicken_club",
|
252891
253069
|
"theAble"
|
@@ -256710,6 +256888,10 @@
|
|
256710
256888
|
"ranch",
|
256711
256889
|
"queryable"
|
256712
256890
|
],
|
256891
|
+
[
|
256892
|
+
"ranch",
|
256893
|
+
"sandwich"
|
256894
|
+
],
|
256713
256895
|
[
|
256714
256896
|
"ranch",
|
256715
256897
|
"theAble"
|
@@ -258224,11 +258406,11 @@
|
|
258224
258406
|
0
|
258225
258407
|
],
|
258226
258408
|
[
|
258227
|
-
"
|
258409
|
+
"premium_cod",
|
258228
258410
|
0
|
258229
258411
|
],
|
258230
258412
|
[
|
258231
|
-
"
|
258413
|
+
"bacon_deluxe",
|
258232
258414
|
0
|
258233
258415
|
]
|
258234
258416
|
],
|
@@ -258305,11 +258487,11 @@
|
|
258305
258487
|
0
|
258306
258488
|
],
|
258307
258489
|
[
|
258308
|
-
"
|
258490
|
+
"premium_cod",
|
258309
258491
|
0
|
258310
258492
|
],
|
258311
258493
|
[
|
258312
|
-
"
|
258494
|
+
"bacon_deluxe",
|
258313
258495
|
0
|
258314
258496
|
]
|
258315
258497
|
],
|
@@ -258382,11 +258564,11 @@
|
|
258382
258564
|
0
|
258383
258565
|
],
|
258384
258566
|
[
|
258385
|
-
"
|
258567
|
+
"premium_cod",
|
258386
258568
|
0
|
258387
258569
|
],
|
258388
258570
|
[
|
258389
|
-
"
|
258571
|
+
"bacon_deluxe",
|
258390
258572
|
0
|
258391
258573
|
]
|
258392
258574
|
],
|
@@ -258455,11 +258637,11 @@
|
|
258455
258637
|
0
|
258456
258638
|
],
|
258457
258639
|
[
|
258458
|
-
"
|
258640
|
+
"premium_cod",
|
258459
258641
|
0
|
258460
258642
|
],
|
258461
258643
|
[
|
258462
|
-
"
|
258644
|
+
"bacon_deluxe",
|
258463
258645
|
0
|
258464
258646
|
]
|
258465
258647
|
],
|
@@ -258524,11 +258706,11 @@
|
|
258524
258706
|
0
|
258525
258707
|
],
|
258526
258708
|
[
|
258527
|
-
"
|
258709
|
+
"premium_cod",
|
258528
258710
|
0
|
258529
258711
|
],
|
258530
258712
|
[
|
258531
|
-
"
|
258713
|
+
"bacon_deluxe",
|
258532
258714
|
0
|
258533
258715
|
]
|
258534
258716
|
],
|
@@ -258589,11 +258771,11 @@
|
|
258589
258771
|
0
|
258590
258772
|
],
|
258591
258773
|
[
|
258592
|
-
"
|
258774
|
+
"premium_cod",
|
258593
258775
|
0
|
258594
258776
|
],
|
258595
258777
|
[
|
258596
|
-
"
|
258778
|
+
"bacon_deluxe",
|
258597
258779
|
0
|
258598
258780
|
]
|
258599
258781
|
],
|
@@ -258650,11 +258832,11 @@
|
|
258650
258832
|
0
|
258651
258833
|
],
|
258652
258834
|
[
|
258653
|
-
"
|
258835
|
+
"premium_cod",
|
258654
258836
|
0
|
258655
258837
|
],
|
258656
258838
|
[
|
258657
|
-
"
|
258839
|
+
"bacon_deluxe",
|
258658
258840
|
0
|
258659
258841
|
]
|
258660
258842
|
],
|
@@ -258707,11 +258889,11 @@
|
|
258707
258889
|
0
|
258708
258890
|
],
|
258709
258891
|
[
|
258710
|
-
"
|
258892
|
+
"premium_cod",
|
258711
258893
|
0
|
258712
258894
|
],
|
258713
258895
|
[
|
258714
|
-
"
|
258896
|
+
"bacon_deluxe",
|
258715
258897
|
0
|
258716
258898
|
]
|
258717
258899
|
],
|
@@ -260034,6 +260216,10 @@
|
|
260034
260216
|
"asiago",
|
260035
260217
|
"queryable"
|
260036
260218
|
],
|
260219
|
+
[
|
260220
|
+
"asiago",
|
260221
|
+
"sandwich"
|
260222
|
+
],
|
260037
260223
|
[
|
260038
260224
|
"asiago",
|
260039
260225
|
"theAble"
|
@@ -260074,10 +260260,6 @@
|
|
260074
260260
|
"asiago_ranch_chicken_club",
|
260075
260261
|
"queryable"
|
260076
260262
|
],
|
260077
|
-
[
|
260078
|
-
"asiago_ranch_chicken_club",
|
260079
|
-
"sandwich"
|
260080
|
-
],
|
260081
260263
|
[
|
260082
260264
|
"asiago_ranch_chicken_club",
|
260083
260265
|
"theAble"
|
@@ -263922,6 +264104,10 @@
|
|
263922
264104
|
"ranch",
|
263923
264105
|
"queryable"
|
263924
264106
|
],
|
264107
|
+
[
|
264108
|
+
"ranch",
|
264109
|
+
"sandwich"
|
264110
|
+
],
|
263925
264111
|
[
|
263926
264112
|
"ranch",
|
263927
264113
|
"theAble"
|
@@ -265721,6 +265907,10 @@
|
|
265721
265907
|
"asiago",
|
265722
265908
|
"queryable"
|
265723
265909
|
],
|
265910
|
+
[
|
265911
|
+
"asiago",
|
265912
|
+
"sandwich"
|
265913
|
+
],
|
265724
265914
|
[
|
265725
265915
|
"asiago",
|
265726
265916
|
"theAble"
|
@@ -265761,10 +265951,6 @@
|
|
265761
265951
|
"asiago_ranch_chicken_club",
|
265762
265952
|
"queryable"
|
265763
265953
|
],
|
265764
|
-
[
|
265765
|
-
"asiago_ranch_chicken_club",
|
265766
|
-
"sandwich"
|
265767
|
-
],
|
265768
265954
|
[
|
265769
265955
|
"asiago_ranch_chicken_club",
|
265770
265956
|
"theAble"
|
@@ -269709,6 +269895,10 @@
|
|
269709
269895
|
"ranch",
|
269710
269896
|
"queryable"
|
269711
269897
|
],
|
269898
|
+
[
|
269899
|
+
"ranch",
|
269900
|
+
"sandwich"
|
269901
|
+
],
|
269712
269902
|
[
|
269713
269903
|
"ranch",
|
269714
269904
|
"theAble"
|
@@ -271508,6 +271698,10 @@
|
|
271508
271698
|
"asiago",
|
271509
271699
|
"queryable"
|
271510
271700
|
],
|
271701
|
+
[
|
271702
|
+
"asiago",
|
271703
|
+
"sandwich"
|
271704
|
+
],
|
271511
271705
|
[
|
271512
271706
|
"asiago",
|
271513
271707
|
"theAble"
|
@@ -271548,10 +271742,6 @@
|
|
271548
271742
|
"asiago_ranch_chicken_club",
|
271549
271743
|
"queryable"
|
271550
271744
|
],
|
271551
|
-
[
|
271552
|
-
"asiago_ranch_chicken_club",
|
271553
|
-
"sandwich"
|
271554
|
-
],
|
271555
271745
|
[
|
271556
271746
|
"asiago_ranch_chicken_club",
|
271557
271747
|
"theAble"
|
@@ -275596,6 +275786,10 @@
|
|
275596
275786
|
"ranch",
|
275597
275787
|
"queryable"
|
275598
275788
|
],
|
275789
|
+
[
|
275790
|
+
"ranch",
|
275791
|
+
"sandwich"
|
275792
|
+
],
|
275599
275793
|
[
|
275600
275794
|
"ranch",
|
275601
275795
|
"theAble"
|
@@ -277399,6 +277593,10 @@
|
|
277399
277593
|
"asiago",
|
277400
277594
|
"queryable"
|
277401
277595
|
],
|
277596
|
+
[
|
277597
|
+
"asiago",
|
277598
|
+
"sandwich"
|
277599
|
+
],
|
277402
277600
|
[
|
277403
277601
|
"asiago",
|
277404
277602
|
"theAble"
|
@@ -277439,10 +277637,6 @@
|
|
277439
277637
|
"asiago_ranch_chicken_club",
|
277440
277638
|
"queryable"
|
277441
277639
|
],
|
277442
|
-
[
|
277443
|
-
"asiago_ranch_chicken_club",
|
277444
|
-
"sandwich"
|
277445
|
-
],
|
277446
277640
|
[
|
277447
277641
|
"asiago_ranch_chicken_club",
|
277448
277642
|
"theAble"
|
@@ -281555,6 +281749,10 @@
|
|
281555
281749
|
"ranch",
|
281556
281750
|
"queryable"
|
281557
281751
|
],
|
281752
|
+
[
|
281753
|
+
"ranch",
|
281754
|
+
"sandwich"
|
281755
|
+
],
|
281558
281756
|
[
|
281559
281757
|
"ranch",
|
281560
281758
|
"theAble"
|
@@ -283085,11 +283283,11 @@
|
|
283085
283283
|
0
|
283086
283284
|
],
|
283087
283285
|
[
|
283088
|
-
"
|
283286
|
+
"coca_cola",
|
283089
283287
|
0
|
283090
283288
|
],
|
283091
283289
|
[
|
283092
|
-
"
|
283290
|
+
"iced_tea",
|
283093
283291
|
0
|
283094
283292
|
],
|
283095
283293
|
[
|
@@ -283170,11 +283368,11 @@
|
|
283170
283368
|
0
|
283171
283369
|
],
|
283172
283370
|
[
|
283173
|
-
"
|
283371
|
+
"coca_cola",
|
283174
283372
|
0
|
283175
283373
|
],
|
283176
283374
|
[
|
283177
|
-
"
|
283375
|
+
"iced_tea",
|
283178
283376
|
0
|
283179
283377
|
],
|
283180
283378
|
[
|
@@ -283251,11 +283449,11 @@
|
|
283251
283449
|
0
|
283252
283450
|
],
|
283253
283451
|
[
|
283254
|
-
"
|
283452
|
+
"coca_cola",
|
283255
283453
|
0
|
283256
283454
|
],
|
283257
283455
|
[
|
283258
|
-
"
|
283456
|
+
"iced_tea",
|
283259
283457
|
0
|
283260
283458
|
],
|
283261
283459
|
[
|
@@ -283328,11 +283526,11 @@
|
|
283328
283526
|
0
|
283329
283527
|
],
|
283330
283528
|
[
|
283331
|
-
"
|
283529
|
+
"coca_cola",
|
283332
283530
|
0
|
283333
283531
|
],
|
283334
283532
|
[
|
283335
|
-
"
|
283533
|
+
"iced_tea",
|
283336
283534
|
0
|
283337
283535
|
],
|
283338
283536
|
[
|
@@ -284726,6 +284924,10 @@
|
|
284726
284924
|
"asiago",
|
284727
284925
|
"queryable"
|
284728
284926
|
],
|
284927
|
+
[
|
284928
|
+
"asiago",
|
284929
|
+
"sandwich"
|
284930
|
+
],
|
284729
284931
|
[
|
284730
284932
|
"asiago",
|
284731
284933
|
"theAble"
|
@@ -284766,10 +284968,6 @@
|
|
284766
284968
|
"asiago_ranch_chicken_club",
|
284767
284969
|
"queryable"
|
284768
284970
|
],
|
284769
|
-
[
|
284770
|
-
"asiago_ranch_chicken_club",
|
284771
|
-
"sandwich"
|
284772
|
-
],
|
284773
284971
|
[
|
284774
284972
|
"asiago_ranch_chicken_club",
|
284775
284973
|
"theAble"
|
@@ -288962,6 +289160,10 @@
|
|
288962
289160
|
"ranch",
|
288963
289161
|
"queryable"
|
288964
289162
|
],
|
289163
|
+
[
|
289164
|
+
"ranch",
|
289165
|
+
"sandwich"
|
289166
|
+
],
|
288965
289167
|
[
|
288966
289168
|
"ranch",
|
288967
289169
|
"theAble"
|
@@ -290857,6 +291059,10 @@
|
|
290857
291059
|
"asiago",
|
290858
291060
|
"queryable"
|
290859
291061
|
],
|
291062
|
+
[
|
291063
|
+
"asiago",
|
291064
|
+
"sandwich"
|
291065
|
+
],
|
290860
291066
|
[
|
290861
291067
|
"asiago",
|
290862
291068
|
"theAble"
|
@@ -290897,10 +291103,6 @@
|
|
290897
291103
|
"asiago_ranch_chicken_club",
|
290898
291104
|
"queryable"
|
290899
291105
|
],
|
290900
|
-
[
|
290901
|
-
"asiago_ranch_chicken_club",
|
290902
|
-
"sandwich"
|
290903
|
-
],
|
290904
291106
|
[
|
290905
291107
|
"asiago_ranch_chicken_club",
|
290906
291108
|
"theAble"
|
@@ -295125,6 +295327,10 @@
|
|
295125
295327
|
"ranch",
|
295126
295328
|
"queryable"
|
295127
295329
|
],
|
295330
|
+
[
|
295331
|
+
"ranch",
|
295332
|
+
"sandwich"
|
295333
|
+
],
|
295128
295334
|
[
|
295129
295335
|
"ranch",
|
295130
295336
|
"theAble"
|
@@ -297072,6 +297278,10 @@
|
|
297072
297278
|
"asiago",
|
297073
297279
|
"queryable"
|
297074
297280
|
],
|
297281
|
+
[
|
297282
|
+
"asiago",
|
297283
|
+
"sandwich"
|
297284
|
+
],
|
297075
297285
|
[
|
297076
297286
|
"asiago",
|
297077
297287
|
"theAble"
|
@@ -297112,10 +297322,6 @@
|
|
297112
297322
|
"asiago_ranch_chicken_club",
|
297113
297323
|
"queryable"
|
297114
297324
|
],
|
297115
|
-
[
|
297116
|
-
"asiago_ranch_chicken_club",
|
297117
|
-
"sandwich"
|
297118
|
-
],
|
297119
297325
|
[
|
297120
297326
|
"asiago_ranch_chicken_club",
|
297121
297327
|
"theAble"
|
@@ -301380,6 +301586,10 @@
|
|
301380
301586
|
"ranch",
|
301381
301587
|
"queryable"
|
301382
301588
|
],
|
301589
|
+
[
|
301590
|
+
"ranch",
|
301591
|
+
"sandwich"
|
301592
|
+
],
|
301383
301593
|
[
|
301384
301594
|
"ranch",
|
301385
301595
|
"theAble"
|
@@ -303287,6 +303497,10 @@
|
|
303287
303497
|
"asiago",
|
303288
303498
|
"queryable"
|
303289
303499
|
],
|
303500
|
+
[
|
303501
|
+
"asiago",
|
303502
|
+
"sandwich"
|
303503
|
+
],
|
303290
303504
|
[
|
303291
303505
|
"asiago",
|
303292
303506
|
"theAble"
|
@@ -303327,10 +303541,6 @@
|
|
303327
303541
|
"asiago_ranch_chicken_club",
|
303328
303542
|
"queryable"
|
303329
303543
|
],
|
303330
|
-
[
|
303331
|
-
"asiago_ranch_chicken_club",
|
303332
|
-
"sandwich"
|
303333
|
-
],
|
303334
303544
|
[
|
303335
303545
|
"asiago_ranch_chicken_club",
|
303336
303546
|
"theAble"
|
@@ -307663,6 +307873,10 @@
|
|
307663
307873
|
"ranch",
|
307664
307874
|
"queryable"
|
307665
307875
|
],
|
307876
|
+
[
|
307877
|
+
"ranch",
|
307878
|
+
"sandwich"
|
307879
|
+
],
|
307666
307880
|
[
|
307667
307881
|
"ranch",
|
307668
307882
|
"theAble"
|
@@ -309570,6 +309784,10 @@
|
|
309570
309784
|
"asiago",
|
309571
309785
|
"queryable"
|
309572
309786
|
],
|
309787
|
+
[
|
309788
|
+
"asiago",
|
309789
|
+
"sandwich"
|
309790
|
+
],
|
309573
309791
|
[
|
309574
309792
|
"asiago",
|
309575
309793
|
"theAble"
|
@@ -309610,10 +309828,6 @@
|
|
309610
309828
|
"asiago_ranch_chicken_club",
|
309611
309829
|
"queryable"
|
309612
309830
|
],
|
309613
|
-
[
|
309614
|
-
"asiago_ranch_chicken_club",
|
309615
|
-
"sandwich"
|
309616
|
-
],
|
309617
309831
|
[
|
309618
309832
|
"asiago_ranch_chicken_club",
|
309619
309833
|
"theAble"
|
@@ -314014,6 +314228,10 @@
|
|
314014
314228
|
"ranch",
|
314015
314229
|
"queryable"
|
314016
314230
|
],
|
314231
|
+
[
|
314232
|
+
"ranch",
|
314233
|
+
"sandwich"
|
314234
|
+
],
|
314017
314235
|
[
|
314018
314236
|
"ranch",
|
314019
314237
|
"theAble"
|
@@ -315921,6 +316139,10 @@
|
|
315921
316139
|
"asiago",
|
315922
316140
|
"queryable"
|
315923
316141
|
],
|
316142
|
+
[
|
316143
|
+
"asiago",
|
316144
|
+
"sandwich"
|
316145
|
+
],
|
315924
316146
|
[
|
315925
316147
|
"asiago",
|
315926
316148
|
"theAble"
|
@@ -315961,10 +316183,6 @@
|
|
315961
316183
|
"asiago_ranch_chicken_club",
|
315962
316184
|
"queryable"
|
315963
316185
|
],
|
315964
|
-
[
|
315965
|
-
"asiago_ranch_chicken_club",
|
315966
|
-
"sandwich"
|
315967
|
-
],
|
315968
316186
|
[
|
315969
316187
|
"asiago_ranch_chicken_club",
|
315970
316188
|
"theAble"
|
@@ -320433,6 +320651,10 @@
|
|
320433
320651
|
"ranch",
|
320434
320652
|
"queryable"
|
320435
320653
|
],
|
320654
|
+
[
|
320655
|
+
"ranch",
|
320656
|
+
"sandwich"
|
320657
|
+
],
|
320436
320658
|
[
|
320437
320659
|
"ranch",
|
320438
320660
|
"theAble"
|
@@ -322325,6 +322547,10 @@
|
|
322325
322547
|
"asiago",
|
322326
322548
|
"queryable"
|
322327
322549
|
],
|
322550
|
+
[
|
322551
|
+
"asiago",
|
322552
|
+
"sandwich"
|
322553
|
+
],
|
322328
322554
|
[
|
322329
322555
|
"asiago",
|
322330
322556
|
"theAble"
|
@@ -322365,10 +322591,6 @@
|
|
322365
322591
|
"asiago_ranch_chicken_club",
|
322366
322592
|
"queryable"
|
322367
322593
|
],
|
322368
|
-
[
|
322369
|
-
"asiago_ranch_chicken_club",
|
322370
|
-
"sandwich"
|
322371
|
-
],
|
322372
322594
|
[
|
322373
322595
|
"asiago_ranch_chicken_club",
|
322374
322596
|
"theAble"
|
@@ -326841,6 +327063,10 @@
|
|
326841
327063
|
"ranch",
|
326842
327064
|
"queryable"
|
326843
327065
|
],
|
327066
|
+
[
|
327067
|
+
"ranch",
|
327068
|
+
"sandwich"
|
327069
|
+
],
|
326844
327070
|
[
|
326845
327071
|
"ranch",
|
326846
327072
|
"theAble"
|
@@ -328808,6 +329034,10 @@
|
|
328808
329034
|
"asiago",
|
328809
329035
|
"queryable"
|
328810
329036
|
],
|
329037
|
+
[
|
329038
|
+
"asiago",
|
329039
|
+
"sandwich"
|
329040
|
+
],
|
328811
329041
|
[
|
328812
329042
|
"asiago",
|
328813
329043
|
"theAble"
|
@@ -328848,10 +329078,6 @@
|
|
328848
329078
|
"asiago_ranch_chicken_club",
|
328849
329079
|
"queryable"
|
328850
329080
|
],
|
328851
|
-
[
|
328852
|
-
"asiago_ranch_chicken_club",
|
328853
|
-
"sandwich"
|
328854
|
-
],
|
328855
329081
|
[
|
328856
329082
|
"asiago_ranch_chicken_club",
|
328857
329083
|
"theAble"
|
@@ -333324,6 +333550,10 @@
|
|
333324
333550
|
"ranch",
|
333325
333551
|
"queryable"
|
333326
333552
|
],
|
333553
|
+
[
|
333554
|
+
"ranch",
|
333555
|
+
"sandwich"
|
333556
|
+
],
|
333327
333557
|
[
|
333328
333558
|
"ranch",
|
333329
333559
|
"theAble"
|
@@ -335311,6 +335541,10 @@
|
|
335311
335541
|
"asiago",
|
335312
335542
|
"queryable"
|
335313
335543
|
],
|
335544
|
+
[
|
335545
|
+
"asiago",
|
335546
|
+
"sandwich"
|
335547
|
+
],
|
335314
335548
|
[
|
335315
335549
|
"asiago",
|
335316
335550
|
"theAble"
|
@@ -335351,10 +335585,6 @@
|
|
335351
335585
|
"asiago_ranch_chicken_club",
|
335352
335586
|
"queryable"
|
335353
335587
|
],
|
335354
|
-
[
|
335355
|
-
"asiago_ranch_chicken_club",
|
335356
|
-
"sandwich"
|
335357
|
-
],
|
335358
335588
|
[
|
335359
335589
|
"asiago_ranch_chicken_club",
|
335360
335590
|
"theAble"
|
@@ -339895,6 +340125,10 @@
|
|
339895
340125
|
"ranch",
|
339896
340126
|
"queryable"
|
339897
340127
|
],
|
340128
|
+
[
|
340129
|
+
"ranch",
|
340130
|
+
"sandwich"
|
340131
|
+
],
|
339898
340132
|
[
|
339899
340133
|
"ranch",
|
339900
340134
|
"theAble"
|
@@ -342003,6 +342237,10 @@
|
|
342003
342237
|
"asiago",
|
342004
342238
|
"queryable"
|
342005
342239
|
],
|
342240
|
+
[
|
342241
|
+
"asiago",
|
342242
|
+
"sandwich"
|
342243
|
+
],
|
342006
342244
|
[
|
342007
342245
|
"asiago",
|
342008
342246
|
"theAble"
|
@@ -342043,10 +342281,6 @@
|
|
342043
342281
|
"asiago_ranch_chicken_club",
|
342044
342282
|
"queryable"
|
342045
342283
|
],
|
342046
|
-
[
|
342047
|
-
"asiago_ranch_chicken_club",
|
342048
|
-
"sandwich"
|
342049
|
-
],
|
342050
342284
|
[
|
342051
342285
|
"asiago_ranch_chicken_club",
|
342052
342286
|
"theAble"
|
@@ -346623,6 +346857,10 @@
|
|
346623
346857
|
"ranch",
|
346624
346858
|
"queryable"
|
346625
346859
|
],
|
346860
|
+
[
|
346861
|
+
"ranch",
|
346862
|
+
"sandwich"
|
346863
|
+
],
|
346626
346864
|
[
|
346627
346865
|
"ranch",
|
346628
346866
|
"theAble"
|
@@ -348360,6 +348598,10 @@
|
|
348360
348598
|
[
|
348361
348599
|
"mango_passion",
|
348362
348600
|
0
|
348601
|
+
],
|
348602
|
+
[
|
348603
|
+
"list",
|
348604
|
+
0
|
348363
348605
|
]
|
348364
348606
|
],
|
348365
348607
|
"counter": 6
|
@@ -348381,6 +348623,10 @@
|
|
348381
348623
|
[
|
348382
348624
|
"passion",
|
348383
348625
|
0
|
348626
|
+
],
|
348627
|
+
[
|
348628
|
+
"list",
|
348629
|
+
0
|
348384
348630
|
]
|
348385
348631
|
],
|
348386
348632
|
"counter": 7
|
@@ -348394,6 +348640,10 @@
|
|
348394
348640
|
[
|
348395
348641
|
"counting",
|
348396
348642
|
0
|
348643
|
+
],
|
348644
|
+
[
|
348645
|
+
"list",
|
348646
|
+
0
|
348397
348647
|
]
|
348398
348648
|
],
|
348399
348649
|
"counter": 8
|
@@ -349050,6 +349300,10 @@
|
|
349050
349300
|
"asiago",
|
349051
349301
|
"queryable"
|
349052
349302
|
],
|
349303
|
+
[
|
349304
|
+
"asiago",
|
349305
|
+
"sandwich"
|
349306
|
+
],
|
349053
349307
|
[
|
349054
349308
|
"asiago",
|
349055
349309
|
"theAble"
|
@@ -349090,10 +349344,6 @@
|
|
349090
349344
|
"asiago_ranch_chicken_club",
|
349091
349345
|
"queryable"
|
349092
349346
|
],
|
349093
|
-
[
|
349094
|
-
"asiago_ranch_chicken_club",
|
349095
|
-
"sandwich"
|
349096
|
-
],
|
349097
349347
|
[
|
349098
349348
|
"asiago_ranch_chicken_club",
|
349099
349349
|
"theAble"
|
@@ -353670,6 +353920,10 @@
|
|
353670
353920
|
"ranch",
|
353671
353921
|
"queryable"
|
353672
353922
|
],
|
353923
|
+
[
|
353924
|
+
"ranch",
|
353925
|
+
"sandwich"
|
353926
|
+
],
|
353673
353927
|
[
|
353674
353928
|
"ranch",
|
353675
353929
|
"theAble"
|
@@ -355827,6 +356081,10 @@
|
|
355827
356081
|
"asiago",
|
355828
356082
|
"queryable"
|
355829
356083
|
],
|
356084
|
+
[
|
356085
|
+
"asiago",
|
356086
|
+
"sandwich"
|
356087
|
+
],
|
355830
356088
|
[
|
355831
356089
|
"asiago",
|
355832
356090
|
"theAble"
|
@@ -355867,10 +356125,6 @@
|
|
355867
356125
|
"asiago_ranch_chicken_club",
|
355868
356126
|
"queryable"
|
355869
356127
|
],
|
355870
|
-
[
|
355871
|
-
"asiago_ranch_chicken_club",
|
355872
|
-
"sandwich"
|
355873
|
-
],
|
355874
356128
|
[
|
355875
356129
|
"asiago_ranch_chicken_club",
|
355876
356130
|
"theAble"
|
@@ -360515,6 +360769,10 @@
|
|
360515
360769
|
"ranch",
|
360516
360770
|
"queryable"
|
360517
360771
|
],
|
360772
|
+
[
|
360773
|
+
"ranch",
|
360774
|
+
"sandwich"
|
360775
|
+
],
|
360518
360776
|
[
|
360519
360777
|
"ranch",
|
360520
360778
|
"theAble"
|
@@ -362670,6 +362928,10 @@
|
|
362670
362928
|
"asiago",
|
362671
362929
|
"queryable"
|
362672
362930
|
],
|
362931
|
+
[
|
362932
|
+
"asiago",
|
362933
|
+
"sandwich"
|
362934
|
+
],
|
362673
362935
|
[
|
362674
362936
|
"asiago",
|
362675
362937
|
"theAble"
|
@@ -362710,10 +362972,6 @@
|
|
362710
362972
|
"asiago_ranch_chicken_club",
|
362711
362973
|
"queryable"
|
362712
362974
|
],
|
362713
|
-
[
|
362714
|
-
"asiago_ranch_chicken_club",
|
362715
|
-
"sandwich"
|
362716
|
-
],
|
362717
362975
|
[
|
362718
362976
|
"asiago_ranch_chicken_club",
|
362719
362977
|
"theAble"
|
@@ -367398,6 +367656,10 @@
|
|
367398
367656
|
"ranch",
|
367399
367657
|
"queryable"
|
367400
367658
|
],
|
367659
|
+
[
|
367660
|
+
"ranch",
|
367661
|
+
"sandwich"
|
367662
|
+
],
|
367401
367663
|
[
|
367402
367664
|
"ranch",
|
367403
367665
|
"theAble"
|
@@ -369553,6 +369815,10 @@
|
|
369553
369815
|
"asiago",
|
369554
369816
|
"queryable"
|
369555
369817
|
],
|
369818
|
+
[
|
369819
|
+
"asiago",
|
369820
|
+
"sandwich"
|
369821
|
+
],
|
369556
369822
|
[
|
369557
369823
|
"asiago",
|
369558
369824
|
"theAble"
|
@@ -369593,10 +369859,6 @@
|
|
369593
369859
|
"asiago_ranch_chicken_club",
|
369594
369860
|
"queryable"
|
369595
369861
|
],
|
369596
|
-
[
|
369597
|
-
"asiago_ranch_chicken_club",
|
369598
|
-
"sandwich"
|
369599
|
-
],
|
369600
369862
|
[
|
369601
369863
|
"asiago_ranch_chicken_club",
|
369602
369864
|
"theAble"
|
@@ -374321,6 +374583,10 @@
|
|
374321
374583
|
"ranch",
|
374322
374584
|
"queryable"
|
374323
374585
|
],
|
374586
|
+
[
|
374587
|
+
"ranch",
|
374588
|
+
"sandwich"
|
374589
|
+
],
|
374324
374590
|
[
|
374325
374591
|
"ranch",
|
374326
374592
|
"theAble"
|
@@ -376308,6 +376574,10 @@
|
|
376308
376574
|
"asiago",
|
376309
376575
|
"queryable"
|
376310
376576
|
],
|
376577
|
+
[
|
376578
|
+
"asiago",
|
376579
|
+
"sandwich"
|
376580
|
+
],
|
376311
376581
|
[
|
376312
376582
|
"asiago",
|
376313
376583
|
"theAble"
|
@@ -376348,10 +376618,6 @@
|
|
376348
376618
|
"asiago_ranch_chicken_club",
|
376349
376619
|
"queryable"
|
376350
376620
|
],
|
376351
|
-
[
|
376352
|
-
"asiago_ranch_chicken_club",
|
376353
|
-
"sandwich"
|
376354
|
-
],
|
376355
376621
|
[
|
376356
376622
|
"asiago_ranch_chicken_club",
|
376357
376623
|
"theAble"
|
@@ -381144,6 +381410,10 @@
|
|
381144
381410
|
"ranch",
|
381145
381411
|
"queryable"
|
381146
381412
|
],
|
381413
|
+
[
|
381414
|
+
"ranch",
|
381415
|
+
"sandwich"
|
381416
|
+
],
|
381147
381417
|
[
|
381148
381418
|
"ranch",
|
381149
381419
|
"theAble"
|
@@ -383131,6 +383401,10 @@
|
|
383131
383401
|
"asiago",
|
383132
383402
|
"queryable"
|
383133
383403
|
],
|
383404
|
+
[
|
383405
|
+
"asiago",
|
383406
|
+
"sandwich"
|
383407
|
+
],
|
383134
383408
|
[
|
383135
383409
|
"asiago",
|
383136
383410
|
"theAble"
|
@@ -383171,10 +383445,6 @@
|
|
383171
383445
|
"asiago_ranch_chicken_club",
|
383172
383446
|
"queryable"
|
383173
383447
|
],
|
383174
|
-
[
|
383175
|
-
"asiago_ranch_chicken_club",
|
383176
|
-
"sandwich"
|
383177
|
-
],
|
383178
383448
|
[
|
383179
383449
|
"asiago_ranch_chicken_club",
|
383180
383450
|
"theAble"
|
@@ -387967,6 +388237,10 @@
|
|
387967
388237
|
"ranch",
|
387968
388238
|
"queryable"
|
387969
388239
|
],
|
388240
|
+
[
|
388241
|
+
"ranch",
|
388242
|
+
"sandwich"
|
388243
|
+
],
|
387970
388244
|
[
|
387971
388245
|
"ranch",
|
387972
388246
|
"theAble"
|
@@ -390018,6 +390292,10 @@
|
|
390018
390292
|
"asiago",
|
390019
390293
|
"queryable"
|
390020
390294
|
],
|
390295
|
+
[
|
390296
|
+
"asiago",
|
390297
|
+
"sandwich"
|
390298
|
+
],
|
390021
390299
|
[
|
390022
390300
|
"asiago",
|
390023
390301
|
"theAble"
|
@@ -390058,10 +390336,6 @@
|
|
390058
390336
|
"asiago_ranch_chicken_club",
|
390059
390337
|
"queryable"
|
390060
390338
|
],
|
390061
|
-
[
|
390062
|
-
"asiago_ranch_chicken_club",
|
390063
|
-
"sandwich"
|
390064
|
-
],
|
390065
390339
|
[
|
390066
390340
|
"asiago_ranch_chicken_club",
|
390067
390341
|
"theAble"
|
@@ -394922,6 +395196,10 @@
|
|
394922
395196
|
"ranch",
|
394923
395197
|
"queryable"
|
394924
395198
|
],
|
395199
|
+
[
|
395200
|
+
"ranch",
|
395201
|
+
"sandwich"
|
395202
|
+
],
|
394925
395203
|
[
|
394926
395204
|
"ranch",
|
394927
395205
|
"theAble"
|
@@ -397102,6 +397380,10 @@
|
|
397102
397380
|
"asiago",
|
397103
397381
|
"queryable"
|
397104
397382
|
],
|
397383
|
+
[
|
397384
|
+
"asiago",
|
397385
|
+
"sandwich"
|
397386
|
+
],
|
397105
397387
|
[
|
397106
397388
|
"asiago",
|
397107
397389
|
"theAble"
|
@@ -397142,10 +397424,6 @@
|
|
397142
397424
|
"asiago_ranch_chicken_club",
|
397143
397425
|
"queryable"
|
397144
397426
|
],
|
397145
|
-
[
|
397146
|
-
"asiago_ranch_chicken_club",
|
397147
|
-
"sandwich"
|
397148
|
-
],
|
397149
397427
|
[
|
397150
397428
|
"asiago_ranch_chicken_club",
|
397151
397429
|
"theAble"
|
@@ -402010,6 +402288,10 @@
|
|
402010
402288
|
"ranch",
|
402011
402289
|
"queryable"
|
402012
402290
|
],
|
402291
|
+
[
|
402292
|
+
"ranch",
|
402293
|
+
"sandwich"
|
402294
|
+
],
|
402013
402295
|
[
|
402014
402296
|
"ranch",
|
402015
402297
|
"theAble"
|
@@ -404136,6 +404418,10 @@
|
|
404136
404418
|
"asiago",
|
404137
404419
|
"queryable"
|
404138
404420
|
],
|
404421
|
+
[
|
404422
|
+
"asiago",
|
404423
|
+
"sandwich"
|
404424
|
+
],
|
404139
404425
|
[
|
404140
404426
|
"asiago",
|
404141
404427
|
"theAble"
|
@@ -404176,10 +404462,6 @@
|
|
404176
404462
|
"asiago_ranch_chicken_club",
|
404177
404463
|
"queryable"
|
404178
404464
|
],
|
404179
|
-
[
|
404180
|
-
"asiago_ranch_chicken_club",
|
404181
|
-
"sandwich"
|
404182
|
-
],
|
404183
404465
|
[
|
404184
404466
|
"asiago_ranch_chicken_club",
|
404185
404467
|
"theAble"
|
@@ -409044,6 +409326,10 @@
|
|
409044
409326
|
"ranch",
|
409045
409327
|
"queryable"
|
409046
409328
|
],
|
409329
|
+
[
|
409330
|
+
"ranch",
|
409331
|
+
"sandwich"
|
409332
|
+
],
|
409047
409333
|
[
|
409048
409334
|
"ranch",
|
409049
409335
|
"theAble"
|
@@ -411269,6 +411555,10 @@
|
|
411269
411555
|
"asiago",
|
411270
411556
|
"queryable"
|
411271
411557
|
],
|
411558
|
+
[
|
411559
|
+
"asiago",
|
411560
|
+
"sandwich"
|
411561
|
+
],
|
411272
411562
|
[
|
411273
411563
|
"asiago",
|
411274
411564
|
"theAble"
|
@@ -411309,10 +411599,6 @@
|
|
411309
411599
|
"asiago_ranch_chicken_club",
|
411310
411600
|
"queryable"
|
411311
411601
|
],
|
411312
|
-
[
|
411313
|
-
"asiago_ranch_chicken_club",
|
411314
|
-
"sandwich"
|
411315
|
-
],
|
411316
411602
|
[
|
411317
411603
|
"asiago_ranch_chicken_club",
|
411318
411604
|
"theAble"
|
@@ -416273,6 +416559,10 @@
|
|
416273
416559
|
"ranch",
|
416274
416560
|
"queryable"
|
416275
416561
|
],
|
416562
|
+
[
|
416563
|
+
"ranch",
|
416564
|
+
"sandwich"
|
416565
|
+
],
|
416276
416566
|
[
|
416277
416567
|
"ranch",
|
416278
416568
|
"theAble"
|
@@ -418087,11 +418377,11 @@
|
|
418087
418377
|
0
|
418088
418378
|
],
|
418089
418379
|
[
|
418090
|
-
"
|
418380
|
+
"kids_meal",
|
418091
418381
|
0
|
418092
418382
|
],
|
418093
418383
|
[
|
418094
|
-
"
|
418384
|
+
"crispy_chicken",
|
418095
418385
|
0
|
418096
418386
|
],
|
418097
418387
|
[
|
@@ -418144,11 +418434,11 @@
|
|
418144
418434
|
0
|
418145
418435
|
],
|
418146
418436
|
[
|
418147
|
-
"
|
418437
|
+
"kids_meal",
|
418148
418438
|
0
|
418149
418439
|
],
|
418150
418440
|
[
|
418151
|
-
"
|
418441
|
+
"crispy_chicken",
|
418152
418442
|
0
|
418153
418443
|
],
|
418154
418444
|
[
|
@@ -418197,11 +418487,11 @@
|
|
418197
418487
|
0
|
418198
418488
|
],
|
418199
418489
|
[
|
418200
|
-
"
|
418490
|
+
"kids_meal",
|
418201
418491
|
0
|
418202
418492
|
],
|
418203
418493
|
[
|
418204
|
-
"
|
418494
|
+
"crispy_chicken",
|
418205
418495
|
0
|
418206
418496
|
],
|
418207
418497
|
[
|
@@ -418246,11 +418536,11 @@
|
|
418246
418536
|
0
|
418247
418537
|
],
|
418248
418538
|
[
|
418249
|
-
"
|
418539
|
+
"kids_meal",
|
418250
418540
|
0
|
418251
418541
|
],
|
418252
418542
|
[
|
418253
|
-
"
|
418543
|
+
"crispy_chicken",
|
418254
418544
|
0
|
418255
418545
|
],
|
418256
418546
|
[
|
@@ -419532,6 +419822,31 @@
|
|
419532
419822
|
"choose": [
|
419533
419823
|
0
|
419534
419824
|
]
|
419825
|
+
},
|
419826
|
+
{
|
419827
|
+
"context": [
|
419828
|
+
[
|
419829
|
+
"list",
|
419830
|
+
0
|
419831
|
+
],
|
419832
|
+
[
|
419833
|
+
"articlePOS",
|
419834
|
+
0
|
419835
|
+
],
|
419836
|
+
[
|
419837
|
+
"smoothie_ingredient",
|
419838
|
+
0
|
419839
|
+
],
|
419840
|
+
[
|
419841
|
+
"smoothie",
|
419842
|
+
0
|
419843
|
+
]
|
419844
|
+
],
|
419845
|
+
"ordered": true,
|
419846
|
+
"choose": [
|
419847
|
+
1,
|
419848
|
+
2
|
419849
|
+
]
|
419535
419850
|
}
|
419536
419851
|
]
|
419537
419852
|
},
|
@@ -419769,6 +420084,10 @@
|
|
419769
420084
|
"asiago",
|
419770
420085
|
"queryable"
|
419771
420086
|
],
|
420087
|
+
[
|
420088
|
+
"asiago",
|
420089
|
+
"sandwich"
|
420090
|
+
],
|
419772
420091
|
[
|
419773
420092
|
"asiago",
|
419774
420093
|
"theAble"
|
@@ -419809,10 +420128,6 @@
|
|
419809
420128
|
"asiago_ranch_chicken_club",
|
419810
420129
|
"queryable"
|
419811
420130
|
],
|
419812
|
-
[
|
419813
|
-
"asiago_ranch_chicken_club",
|
419814
|
-
"sandwich"
|
419815
|
-
],
|
419816
420131
|
[
|
419817
420132
|
"asiago_ranch_chicken_club",
|
419818
420133
|
"theAble"
|
@@ -424797,6 +425112,10 @@
|
|
424797
425112
|
"ranch",
|
424798
425113
|
"queryable"
|
424799
425114
|
],
|
425115
|
+
[
|
425116
|
+
"ranch",
|
425117
|
+
"sandwich"
|
425118
|
+
],
|
424800
425119
|
[
|
424801
425120
|
"ranch",
|
424802
425121
|
"theAble"
|
@@ -426661,15 +426980,15 @@
|
|
426661
426980
|
0
|
426662
426981
|
],
|
426663
426982
|
[
|
426664
|
-
"
|
426983
|
+
"chicken_sandwich",
|
426665
426984
|
0
|
426666
426985
|
],
|
426667
426986
|
[
|
426668
|
-
"
|
426987
|
+
"crispy_chicken_club",
|
426669
426988
|
0
|
426670
426989
|
],
|
426671
426990
|
[
|
426672
|
-
"
|
426991
|
+
"chicken_club",
|
426673
426992
|
0
|
426674
426993
|
]
|
426675
426994
|
],
|
@@ -427083,6 +427402,10 @@
|
|
427083
427402
|
"asiago",
|
427084
427403
|
"queryable"
|
427085
427404
|
],
|
427405
|
+
[
|
427406
|
+
"asiago",
|
427407
|
+
"sandwich"
|
427408
|
+
],
|
427086
427409
|
[
|
427087
427410
|
"asiago",
|
427088
427411
|
"theAble"
|
@@ -427123,10 +427446,6 @@
|
|
427123
427446
|
"asiago_ranch_chicken_club",
|
427124
427447
|
"queryable"
|
427125
427448
|
],
|
427126
|
-
[
|
427127
|
-
"asiago_ranch_chicken_club",
|
427128
|
-
"sandwich"
|
427129
|
-
],
|
427130
427449
|
[
|
427131
427450
|
"asiago_ranch_chicken_club",
|
427132
427451
|
"theAble"
|
@@ -432151,6 +432470,10 @@
|
|
432151
432470
|
"ranch",
|
432152
432471
|
"queryable"
|
432153
432472
|
],
|
432473
|
+
[
|
432474
|
+
"ranch",
|
432475
|
+
"sandwich"
|
432476
|
+
],
|
432154
432477
|
[
|
432155
432478
|
"ranch",
|
432156
432479
|
"theAble"
|
@@ -433993,19 +434316,19 @@
|
|
433993
434316
|
0
|
433994
434317
|
],
|
433995
434318
|
[
|
433996
|
-
"
|
434319
|
+
"value_meal",
|
433997
434320
|
0
|
433998
434321
|
],
|
433999
434322
|
[
|
434000
|
-
"
|
434323
|
+
"crispy_chicken",
|
434001
434324
|
0
|
434002
434325
|
],
|
434003
434326
|
[
|
434004
|
-
"
|
434327
|
+
"chicken_sandwich",
|
434005
434328
|
0
|
434006
434329
|
],
|
434007
434330
|
[
|
434008
|
-
"
|
434331
|
+
"go_wrap",
|
434009
434332
|
0
|
434010
434333
|
],
|
434011
434334
|
[
|
@@ -434013,7 +434336,7 @@
|
|
434013
434336
|
0
|
434014
434337
|
],
|
434015
434338
|
[
|
434016
|
-
"
|
434339
|
+
"chicken_club",
|
434017
434340
|
0
|
434018
434341
|
]
|
434019
434342
|
],
|
@@ -434086,19 +434409,19 @@
|
|
434086
434409
|
0
|
434087
434410
|
],
|
434088
434411
|
[
|
434089
|
-
"
|
434412
|
+
"value_meal",
|
434090
434413
|
0
|
434091
434414
|
],
|
434092
434415
|
[
|
434093
|
-
"
|
434416
|
+
"crispy_chicken",
|
434094
434417
|
0
|
434095
434418
|
],
|
434096
434419
|
[
|
434097
|
-
"
|
434420
|
+
"chicken_sandwich",
|
434098
434421
|
0
|
434099
434422
|
],
|
434100
434423
|
[
|
434101
|
-
"
|
434424
|
+
"go_wrap",
|
434102
434425
|
0
|
434103
434426
|
],
|
434104
434427
|
[
|
@@ -434106,7 +434429,7 @@
|
|
434106
434429
|
0
|
434107
434430
|
],
|
434108
434431
|
[
|
434109
|
-
"
|
434432
|
+
"chicken_club",
|
434110
434433
|
0
|
434111
434434
|
]
|
434112
434435
|
],
|
@@ -434175,19 +434498,19 @@
|
|
434175
434498
|
0
|
434176
434499
|
],
|
434177
434500
|
[
|
434178
|
-
"
|
434501
|
+
"value_meal",
|
434179
434502
|
0
|
434180
434503
|
],
|
434181
434504
|
[
|
434182
|
-
"
|
434505
|
+
"crispy_chicken",
|
434183
434506
|
0
|
434184
434507
|
],
|
434185
434508
|
[
|
434186
|
-
"
|
434509
|
+
"chicken_sandwich",
|
434187
434510
|
0
|
434188
434511
|
],
|
434189
434512
|
[
|
434190
|
-
"
|
434513
|
+
"go_wrap",
|
434191
434514
|
0
|
434192
434515
|
],
|
434193
434516
|
[
|
@@ -434195,7 +434518,7 @@
|
|
434195
434518
|
0
|
434196
434519
|
],
|
434197
434520
|
[
|
434198
|
-
"
|
434521
|
+
"chicken_club",
|
434199
434522
|
0
|
434200
434523
|
]
|
434201
434524
|
],
|
@@ -434256,11 +434579,11 @@
|
|
434256
434579
|
0
|
434257
434580
|
],
|
434258
434581
|
[
|
434259
|
-
"
|
434582
|
+
"chicken_sandwich",
|
434260
434583
|
0
|
434261
434584
|
],
|
434262
434585
|
[
|
434263
|
-
"
|
434586
|
+
"chicken_club",
|
434264
434587
|
0
|
434265
434588
|
],
|
434266
434589
|
[
|
@@ -434329,11 +434652,11 @@
|
|
434329
434652
|
0
|
434330
434653
|
],
|
434331
434654
|
[
|
434332
|
-
"
|
434655
|
+
"chicken_sandwich",
|
434333
434656
|
0
|
434334
434657
|
],
|
434335
434658
|
[
|
434336
|
-
"
|
434659
|
+
"chicken_club",
|
434337
434660
|
0
|
434338
434661
|
],
|
434339
434662
|
[
|
@@ -434406,23 +434729,23 @@
|
|
434406
434729
|
0
|
434407
434730
|
],
|
434408
434731
|
[
|
434409
|
-
"
|
434732
|
+
"value_meal",
|
434410
434733
|
0
|
434411
434734
|
],
|
434412
434735
|
[
|
434413
|
-
"
|
434736
|
+
"crispy_chicken",
|
434414
434737
|
0
|
434415
434738
|
],
|
434416
434739
|
[
|
434417
|
-
"
|
434740
|
+
"chicken_sandwich",
|
434418
434741
|
0
|
434419
434742
|
],
|
434420
434743
|
[
|
434421
|
-
"
|
434744
|
+
"go_wrap",
|
434422
434745
|
0
|
434423
434746
|
],
|
434424
434747
|
[
|
434425
|
-
"
|
434748
|
+
"chicken_club",
|
434426
434749
|
0
|
434427
434750
|
]
|
434428
434751
|
],
|
@@ -434467,11 +434790,11 @@
|
|
434467
434790
|
0
|
434468
434791
|
],
|
434469
434792
|
[
|
434470
|
-
"
|
434793
|
+
"chicken_sandwich",
|
434471
434794
|
0
|
434472
434795
|
],
|
434473
434796
|
[
|
434474
|
-
"
|
434797
|
+
"chicken_club",
|
434475
434798
|
0
|
434476
434799
|
],
|
434477
434800
|
[
|
@@ -434585,7 +434908,7 @@
|
|
434585
434908
|
0
|
434586
434909
|
],
|
434587
434910
|
[
|
434588
|
-
"
|
434911
|
+
"value_meal",
|
434589
434912
|
0
|
434590
434913
|
],
|
434591
434914
|
[
|
@@ -434593,7 +434916,7 @@
|
|
434593
434916
|
0
|
434594
434917
|
],
|
434595
434918
|
[
|
434596
|
-
"
|
434919
|
+
"chicken_club",
|
434597
434920
|
0
|
434598
434921
|
],
|
434599
434922
|
[
|
@@ -434667,15 +434990,15 @@
|
|
434667
434990
|
0
|
434668
434991
|
],
|
434669
434992
|
[
|
434670
|
-
"
|
434993
|
+
"chicken_sandwich",
|
434671
434994
|
0
|
434672
434995
|
],
|
434673
434996
|
[
|
434674
|
-
"
|
434997
|
+
"crispy_chicken_club",
|
434675
434998
|
0
|
434676
434999
|
],
|
434677
435000
|
[
|
434678
|
-
"
|
435001
|
+
"chicken_club",
|
434679
435002
|
0
|
434680
435003
|
],
|
434681
435004
|
[
|
@@ -435772,6 +436095,10 @@
|
|
435772
436095
|
"asiago",
|
435773
436096
|
"queryable"
|
435774
436097
|
],
|
436098
|
+
[
|
436099
|
+
"asiago",
|
436100
|
+
"sandwich"
|
436101
|
+
],
|
435775
436102
|
[
|
435776
436103
|
"asiago",
|
435777
436104
|
"theAble"
|
@@ -435812,10 +436139,6 @@
|
|
435812
436139
|
"asiago_ranch_chicken_club",
|
435813
436140
|
"queryable"
|
435814
436141
|
],
|
435815
|
-
[
|
435816
|
-
"asiago_ranch_chicken_club",
|
435817
|
-
"sandwich"
|
435818
|
-
],
|
435819
436142
|
[
|
435820
436143
|
"asiago_ranch_chicken_club",
|
435821
436144
|
"theAble"
|
@@ -440856,6 +441179,10 @@
|
|
440856
441179
|
"ranch",
|
440857
441180
|
"queryable"
|
440858
441181
|
],
|
441182
|
+
[
|
441183
|
+
"ranch",
|
441184
|
+
"sandwich"
|
441185
|
+
],
|
440859
441186
|
[
|
440860
441187
|
"ranch",
|
440861
441188
|
"theAble"
|
@@ -443248,12 +443575,152 @@
|
|
443248
443575
|
"semantics": [
|
443249
443576
|
{},
|
443250
443577
|
{
|
443251
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/fastfood.js:
|
443578
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/fastfood.js:294"
|
443252
443579
|
}
|
443253
443580
|
]
|
443254
443581
|
},
|
443255
443582
|
{
|
443256
|
-
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n const hasDrink = (isA, item) => {\n let hasDrink = false\n for (let modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n const needsDrink = (item) => {\n return item.needsDrink\n }\n\n const askAbout = ({api, isA}) => {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n matchq: (args) => askAbout(args).length > 0,\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => args.isA(args.context.marker, 'drink') && askAbout(args).length > 0,\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n for (let item of needsDrink) {\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
|
443583
|
+
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n const hasDrink = (isA, item) => {\n let hasDrink = false\n for (let modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n const needsDrink = (item) => {\n return item.needsDrink\n }\n\n const askAbout = ({api, isA}) => {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n matchq: (args) => askAbout(args).length > 0,\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => args.isA(args.context.marker, 'drink') && askAbout(args).length > 0,\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n let count = getCount(context) || Number.MAX_SAFE_INTEGER\n for (let item of needsDrink) {\n if (count < 1) {\n break\n }\n count -= 1\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
|
443584
|
+
},
|
443585
|
+
{
|
443586
|
+
"extraConfig": true,
|
443587
|
+
"priorities": [
|
443588
|
+
{
|
443589
|
+
"context": [
|
443590
|
+
[
|
443591
|
+
"combo",
|
443592
|
+
0
|
443593
|
+
],
|
443594
|
+
[
|
443595
|
+
"number",
|
443596
|
+
1
|
443597
|
+
],
|
443598
|
+
[
|
443599
|
+
"list",
|
443600
|
+
0
|
443601
|
+
],
|
443602
|
+
[
|
443603
|
+
"combo",
|
443604
|
+
0
|
443605
|
+
]
|
443606
|
+
],
|
443607
|
+
"ordered": true,
|
443608
|
+
"choose": [
|
443609
|
+
0,
|
443610
|
+
1
|
443611
|
+
]
|
443612
|
+
},
|
443613
|
+
{
|
443614
|
+
"context": [
|
443615
|
+
[
|
443616
|
+
"list",
|
443617
|
+
0
|
443618
|
+
],
|
443619
|
+
[
|
443620
|
+
"combo",
|
443621
|
+
0
|
443622
|
+
],
|
443623
|
+
[
|
443624
|
+
"number",
|
443625
|
+
1
|
443626
|
+
]
|
443627
|
+
],
|
443628
|
+
"ordered": true,
|
443629
|
+
"choose": [
|
443630
|
+
1,
|
443631
|
+
2
|
443632
|
+
]
|
443633
|
+
},
|
443634
|
+
{
|
443635
|
+
"context": [
|
443636
|
+
[
|
443637
|
+
"list",
|
443638
|
+
0
|
443639
|
+
],
|
443640
|
+
[
|
443641
|
+
"combo",
|
443642
|
+
0
|
443643
|
+
],
|
443644
|
+
[
|
443645
|
+
"list",
|
443646
|
+
1
|
443647
|
+
]
|
443648
|
+
],
|
443649
|
+
"ordered": true,
|
443650
|
+
"choose": [
|
443651
|
+
1,
|
443652
|
+
2
|
443653
|
+
]
|
443654
|
+
},
|
443655
|
+
{
|
443656
|
+
"context": [
|
443657
|
+
[
|
443658
|
+
"mango",
|
443659
|
+
0
|
443660
|
+
],
|
443661
|
+
[
|
443662
|
+
"passion",
|
443663
|
+
0
|
443664
|
+
],
|
443665
|
+
[
|
443666
|
+
"list",
|
443667
|
+
0
|
443668
|
+
]
|
443669
|
+
],
|
443670
|
+
"ordered": true,
|
443671
|
+
"choose": [
|
443672
|
+
0,
|
443673
|
+
1
|
443674
|
+
]
|
443675
|
+
},
|
443676
|
+
{
|
443677
|
+
"context": [
|
443678
|
+
[
|
443679
|
+
"number",
|
443680
|
+
1
|
443681
|
+
],
|
443682
|
+
[
|
443683
|
+
"mango_passion",
|
443684
|
+
1
|
443685
|
+
],
|
443686
|
+
[
|
443687
|
+
"list",
|
443688
|
+
0
|
443689
|
+
]
|
443690
|
+
],
|
443691
|
+
"ordered": true,
|
443692
|
+
"choose": [
|
443693
|
+
0,
|
443694
|
+
1
|
443695
|
+
]
|
443696
|
+
},
|
443697
|
+
{
|
443698
|
+
"context": [
|
443699
|
+
[
|
443700
|
+
"mango",
|
443701
|
+
0
|
443702
|
+
],
|
443703
|
+
[
|
443704
|
+
"mango_passion",
|
443705
|
+
0
|
443706
|
+
],
|
443707
|
+
[
|
443708
|
+
"passion",
|
443709
|
+
0
|
443710
|
+
],
|
443711
|
+
[
|
443712
|
+
"list",
|
443713
|
+
0
|
443714
|
+
]
|
443715
|
+
],
|
443716
|
+
"ordered": true,
|
443717
|
+
"choose": [
|
443718
|
+
0,
|
443719
|
+
1,
|
443720
|
+
2
|
443721
|
+
]
|
443722
|
+
}
|
443723
|
+
]
|
443257
443724
|
}
|
443258
443725
|
],
|
443259
443726
|
"fragments": [],
|
@@ -445882,64 +446349,6 @@
|
|
445882
446349
|
"pancake",
|
445883
446350
|
0
|
445884
446351
|
],
|
445885
|
-
[
|
445886
|
-
"platter",
|
445887
|
-
0
|
445888
|
-
],
|
445889
|
-
[
|
445890
|
-
"sausage",
|
445891
|
-
0
|
445892
|
-
],
|
445893
|
-
[
|
445894
|
-
"toast",
|
445895
|
-
0
|
445896
|
-
]
|
445897
|
-
],
|
445898
|
-
[
|
445899
|
-
[
|
445900
|
-
"breakfast",
|
445901
|
-
0
|
445902
|
-
],
|
445903
|
-
[
|
445904
|
-
"comma",
|
445905
|
-
0
|
445906
|
-
],
|
445907
|
-
[
|
445908
|
-
"double",
|
445909
|
-
0
|
445910
|
-
],
|
445911
|
-
[
|
445912
|
-
"french",
|
445913
|
-
0
|
445914
|
-
],
|
445915
|
-
[
|
445916
|
-
"is",
|
445917
|
-
0
|
445918
|
-
],
|
445919
|
-
[
|
445920
|
-
"list",
|
445921
|
-
0
|
445922
|
-
],
|
445923
|
-
[
|
445924
|
-
"meal",
|
445925
|
-
0
|
445926
|
-
],
|
445927
|
-
[
|
445928
|
-
"muffin",
|
445929
|
-
0
|
445930
|
-
],
|
445931
|
-
[
|
445932
|
-
"oatmeal",
|
445933
|
-
0
|
445934
|
-
],
|
445935
|
-
[
|
445936
|
-
"pancake",
|
445937
|
-
0
|
445938
|
-
],
|
445939
|
-
[
|
445940
|
-
"platter",
|
445941
|
-
0
|
445942
|
-
],
|
445943
446352
|
[
|
445944
446353
|
"sausage",
|
445945
446354
|
0
|
@@ -445958,10 +446367,6 @@
|
|
445958
446367
|
"comma",
|
445959
446368
|
0
|
445960
446369
|
],
|
445961
|
-
[
|
445962
|
-
"double",
|
445963
|
-
0
|
445964
|
-
],
|
445965
446370
|
[
|
445966
446371
|
"french",
|
445967
446372
|
0
|
@@ -445978,10 +446383,6 @@
|
|
445978
446383
|
"meal",
|
445979
446384
|
0
|
445980
446385
|
],
|
445981
|
-
[
|
445982
|
-
"muffin",
|
445983
|
-
0
|
445984
|
-
],
|
445985
446386
|
[
|
445986
446387
|
"oatmeal",
|
445987
446388
|
0
|
@@ -445990,10 +446391,6 @@
|
|
445990
446391
|
"pancake",
|
445991
446392
|
0
|
445992
446393
|
],
|
445993
|
-
[
|
445994
|
-
"sausage",
|
445995
|
-
0
|
445996
|
-
],
|
445997
446394
|
[
|
445998
446395
|
"toast",
|
445999
446396
|
0
|
@@ -446028,10 +446425,6 @@
|
|
446028
446425
|
"oatmeal",
|
446029
446426
|
0
|
446030
446427
|
],
|
446031
|
-
[
|
446032
|
-
"pancake",
|
446033
|
-
0
|
446034
|
-
],
|
446035
446428
|
[
|
446036
446429
|
"toast",
|
446037
446430
|
0
|
@@ -446042,10 +446435,6 @@
|
|
446042
446435
|
"breakfast",
|
446043
446436
|
0
|
446044
446437
|
],
|
446045
|
-
[
|
446046
|
-
"comma",
|
446047
|
-
0
|
446048
|
-
],
|
446049
446438
|
[
|
446050
446439
|
"french",
|
446051
446440
|
0
|
@@ -446076,10 +446465,6 @@
|
|
446076
446465
|
"breakfast",
|
446077
446466
|
0
|
446078
446467
|
],
|
446079
|
-
[
|
446080
|
-
"french",
|
446081
|
-
0
|
446082
|
-
],
|
446083
446468
|
[
|
446084
446469
|
"is",
|
446085
446470
|
0
|
@@ -446095,10 +446480,6 @@
|
|
446095
446480
|
[
|
446096
446481
|
"oatmeal",
|
446097
446482
|
0
|
446098
|
-
],
|
446099
|
-
[
|
446100
|
-
"toast",
|
446101
|
-
0
|
446102
446483
|
]
|
446103
446484
|
],
|
446104
446485
|
[
|
@@ -446112,15 +446493,11 @@
|
|
446112
446493
|
],
|
446113
446494
|
[
|
446114
446495
|
"list",
|
446115
|
-
|
446496
|
+
1
|
446116
446497
|
],
|
446117
446498
|
[
|
446118
446499
|
"meal",
|
446119
446500
|
0
|
446120
|
-
],
|
446121
|
-
[
|
446122
|
-
"oatmeal",
|
446123
|
-
0
|
446124
446501
|
]
|
446125
446502
|
],
|
446126
446503
|
[
|
@@ -448599,24 +448976,6 @@
|
|
448599
448976
|
0
|
448600
448977
|
]
|
448601
448978
|
],
|
448602
|
-
[
|
448603
|
-
[
|
448604
|
-
"ingredient",
|
448605
|
-
0
|
448606
|
-
],
|
448607
|
-
[
|
448608
|
-
"is",
|
448609
|
-
0
|
448610
|
-
],
|
448611
|
-
[
|
448612
|
-
"list",
|
448613
|
-
1
|
448614
|
-
],
|
448615
|
-
[
|
448616
|
-
"smoothie",
|
448617
|
-
0
|
448618
|
-
]
|
448619
|
-
],
|
448620
448979
|
[
|
448621
448980
|
[
|
448622
448981
|
"is",
|
@@ -448931,6 +449290,24 @@
|
|
448931
449290
|
1
|
448932
449291
|
]
|
448933
449292
|
],
|
449293
|
+
[
|
449294
|
+
[
|
449295
|
+
"is",
|
449296
|
+
0
|
449297
|
+
],
|
449298
|
+
[
|
449299
|
+
"list",
|
449300
|
+
1
|
449301
|
+
],
|
449302
|
+
[
|
449303
|
+
"sandwich",
|
449304
|
+
0
|
449305
|
+
],
|
449306
|
+
[
|
449307
|
+
"unknown",
|
449308
|
+
1
|
449309
|
+
]
|
449310
|
+
],
|
448934
449311
|
[
|
448935
449312
|
[
|
448936
449313
|
"is",
|