-
Notifications
You must be signed in to change notification settings - Fork 1
/
POS.txt
1644 lines (1644 loc) · 64.8 KB
/
POS.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[[['chocolate', 'mousse'], 'chocolate mousse', 1.0],
[['chocolate', 'mousse', 'and', 'coffee'], 'chocolate mousse', 1.0],
[['garlic', 'spinach'], 'garlic spinach', 1.0],
[['chocolate', 'mousse', 'dessert'], 'chocolate mousse', 1.0],
[['bacon', 'cheese', 'and', 'egg', 'crepe'],
'egg, bacon & cheese crepe',
0.8],
[['egg', 'cheese', 'and', 'bacon', 'crepe'],
'egg, bacon & cheese crepe',
0.8],
[['benedict', 'and', 'egg', 'benedict'],
'eggs benedict canadian bacon, hollandaise sauce',
0.6666666666666666],
[['chicken', 'and', 'apple', 'crepe'], 'chicken, brie & apple crepe', 0.6],
[['chicken', 'apple', 'crepe'], 'chicken, brie & apple crepe', 0.6],
[['cream', 'and', 'vanilla', 'ice', 'cream'],
'gala apple tarte tatin vanilla ice cream',
0.5714285714285714],
[['steak'], 'steak frites', 0.5],
[['chocolate', 'tart'], 'chocolate mousse', 0.5],
[['steak', 'sandwich'], 'steak frites', 0.5],
[['egg', 'and', 'bacon'],
'eggs benedict canadian bacon, hollandaise sauce',
0.5],
[['spinach', 'salad'], 'garlic spinach', 0.5],
[['garlic'], 'garlic spinach', 0.5],
[['mushroom'], 'sauteed mushrooms', 0.5],
[['chocolate', 'cake'], 'chocolate mousse', 0.5],
[['toast'], 'gluten-free toast', 0.5],
[['macaroni'], 'macaroni gratin', 0.5],
[['mushroom', 'omelet'], 'sauteed mushrooms', 0.5],
[['hash'], 'hash browns', 0.5],
[['spinach'], 'garlic spinach', 0.5],
[['garlic', 'bread'], 'garlic spinach', 0.5],
[['ham', 'and', 'cheese', 'crepe'], 'ham & cheese crepe add egg', 0.5],
[['blueberry', 'syrup'], 'blueberry warm blueberry syrup', 0.5],
[['garlic', 'and', 'bread'], 'garlic spinach', 0.5],
[['chocolate', 'sauce'], 'chocolate mousse', 0.5],
[['steak', 'and', 'salmon'], 'steak frites', 0.5],
[['mushroom', 'soup'], 'sauteed mushrooms', 0.5],
[['garlic', 'and', 'cream'], 'garlic spinach', 0.5],
[['tea'], 'hot tea', 0.5],
[['trout'], 'sauteed trout', 0.5],
[['spinach', 'and', 'salmon'], 'garlic spinach', 0.5],
[['steak', 'sauce'], 'steak frites', 0.5],
[['steak', 'fries'], 'steak frites', 0.5],
[['salmon', 'and', 'egg', 'salad', 'sandwich'],
'smoked salmon eggs benedict chive hollandaise',
0.5],
[['toast', 'and', 'crepe'], 'gluten-free toast', 0.5],
[['chocolate'], 'chocolate mousse', 0.5],
[['mousse'], 'chocolate mousse', 0.5],
[['chicken', 'mushroom', 'crepe'],
'chicken & mushroom crepe kale, brie',
0.5],
[['chicken', 'and', 'mushroom', 'crepe'],
'chicken & mushroom crepe kale, brie',
0.5],
[['mushroom', 'and', 'chicken'], 'sauteed mushrooms', 0.5],
[['steak', 'and', 'potato', 'chips'], 'steak frites', 0.5],
[['garlic', 'butter'], 'garlic spinach', 0.5],
[['chocolate', 'bread'], 'chocolate mousse', 0.5],
[['macaroni', 'and', 'cheese'], 'macaroni gratin', 0.5],
[['spinach', 'salmon', 'salad'], 'garlic spinach', 0.5],
[['chocolate', 'syrup'], 'chocolate mousse', 0.5],
[['steak', 'and', 'fries'], 'steak frites', 0.5],
[['chocolate', 'croissant'], 'chocolate mousse', 0.5],
[['hash', 'fries'], 'hash browns', 0.5],
[['mousse', 'and', 'pate'], 'chocolate mousse', 0.5],
[['garlic', 'and', 'butter'], 'garlic spinach', 0.5],
[['toast', 'and', 'bacon'], 'gluten-free toast', 0.5],
[['garlic', 'parsley', 'butter'], 'garlic spinach', 0.5],
[['cream', 'ice', 'cream'], 'chocolate waffle whipped cream', 0.5],
[['mushroom', 'quiche'], 'sauteed mushrooms', 0.5],
[['egg', 'benedict', 'and', 'banana', 'waffle'],
'eggs benedict canadian bacon, hollandaise sauce',
0.5],
[['garlic', 'and', 'onions'], 'garlic spinach', 0.5],
[['mushroom', 'crepe'], 'sauteed mushrooms', 0.5],
[['steak', 'and', 'scallops'], 'steak frites', 0.5],
[['spinach', 'and', 'artichoke'], 'garlic spinach', 0.5],
[['mushroom', 'benedict'], 'sauteed mushrooms', 0.5],
[['steak', 'and', 'lobster'], 'steak frites', 0.5],
[['salmon', 'and', 'egg'],
'smoked salmon eggs benedict chive hollandaise',
0.5],
[['steak', 'and', 'beef'], 'steak frites', 0.5],
[['garlic', 'potato', 'chips'], 'garlic spinach', 0.5],
[['toast', 'and', 'ham'], 'gluten-free toast', 0.5],
[['mushroom', 'hash'], 'sauteed mushrooms', 0.5],
[['egg', 'and', 'bacon', 'salad'],
'eggs benedict canadian bacon, hollandaise sauce',
0.5],
[['bacon', 'and', 'egg'],
'eggs benedict canadian bacon, hollandaise sauce',
0.5],
[['steak', 'and', 'salad'], 'steak frites', 0.5],
[['salmon', 'egg', 'benedict'],
'smoked salmon eggs benedict chive hollandaise',
0.5],
[['chocolate', 'and', 'bacon'], 'chocolate mousse', 0.5],
[['hash', 'and', 'toast'], 'hash browns', 0.5],
[['trout', 'and', 'mussels'], 'sauteed trout', 0.5],
[['chocolate', 'hazelnut', 'waffle'], 'chocolate waffle whipped cream', 0.5],
[['chocolate', 'caramel', 'tart'], 'chocolate mousse', 0.5],
[['toast', 'and', 'quiche'], 'gluten-free toast', 0.5],
[['toast', 'dessert'], 'gluten-free toast', 0.5],
[['toast', 'and', 'tea'], 'gluten-free toast', 0.5],
[['toast', 'and', 'jam'], 'gluten-free toast', 0.5],
[['chocolate', 'sauce', 'and', 'ice', 'cream'],
'chocolate waffle whipped cream',
0.5],
[['mushroom', 'pasta'], 'sauteed mushrooms', 0.5],
[['trout', 'dish'], 'sauteed trout', 0.5],
[['mushroom', 'sauce'], 'sauteed mushrooms', 0.5],
[['egg', 'and', 'sauce'],
'eggs benedict canadian bacon, hollandaise sauce',
0.5],
[['chocolate', 'hazelnut'], 'chocolate mousse', 0.5],
[['steak', 'entree'], 'steak frites', 0.5],
[['chocolate', 'caramel'], 'chocolate mousse', 0.5],
[['chocolate', 'chips'], 'chocolate mousse', 0.5],
[['trout', 'and', 'fish'], 'sauteed trout', 0.5],
[['spinach', 'crepe'], 'garlic spinach', 0.5],
[['spinach', 'omelet'], 'garlic spinach', 0.5],
[['steak', 'juice'], 'steak frites', 0.5],
[['chocolate', 'torte'], 'chocolate mousse', 0.5],
[['macaroni', 'and', 'spinach'], 'macaroni gratin', 0.5],
[['steak', 'and', 'trout'], 'steak frites', 0.5],
[['ham', 'and', 'cheese', 'omelet'],
'ham & cheese omelette gruyere cheese',
0.5],
[['trout', 'and', 'salmon'], 'sauteed trout', 0.5],
[['spinach', 'and', 'bacon', 'salad'], 'garlic spinach', 0.5],
[['garlic', 'and', 'lime'], 'garlic spinach', 0.5],
[['steak', 'and', 'sauce'], 'steak frites', 0.5],
[['mushroom', 'and', 'chicken', 'crepe'], 'sauteed mushrooms', 0.5],
[['garlic', 'and', 'butter', 'sauce'], 'garlic spinach', 0.5],
[['macaroni', 'and', 'mousse'], 'macaroni gratin', 0.5],
[['toast', 'and', 'bacon', 'and', 'coffee'], 'gluten-free toast', 0.5],
[['mushroom', 'sandwich'], 'sauteed mushrooms', 0.5],
[['spinach', 'quiche'], 'garlic spinach', 0.5],
[['chocolate', 'and', 'strawberry'], 'chocolate mousse', 0.5],
[['garlic', 'parsley', 'sauce'], 'garlic spinach', 0.5],
[['garlic', 'sauce'], 'garlic spinach', 0.5],
[['spinach', 'and', 'salmon', 'salad'], 'garlic spinach', 0.5],
[['spinach', 'lettuce'], 'garlic spinach', 0.5],
[['chocolate', 'dessert'], 'chocolate mousse', 0.5],
[['chocolate', 'chip', 'orange', 'muffin'], 'chocolate mousse', 0.5],
[['spinach', 'and', 'asparagus', 'quiche'], 'garlic spinach', 0.5],
[['steak', 'dish'], 'steak frites', 0.5],
[['sauce', 'and', 'bacon'],
'eggs benedict canadian bacon, hollandaise sauce',
0.5],
[['steak', 'benedict'], 'steak frites', 0.5],
[['egg', 'benedict', 'and', 'waffle'],
'eggs benedict canadian bacon, hollandaise sauce',
0.5],
[['chocolate', 'chip', 'and', 'bacon', 'waffle'],
'chocolate waffle whipped cream',
0.5],
[['mousse', 'pate'], 'chocolate mousse', 0.5],
[['steak', 'and', 'onions'], 'steak frites', 0.5],
[['chicken', 'liver', 'mousse', 'pate'],
'chicken liver mousse pate burgundy red wine mustard, cornichons',
0.4444444444444444],
[['egg', 'and', 'cheddar', 'sandwich'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.4444444444444444],
[['pate', 'and', 'chicken', 'liver', 'mousse'],
'chicken liver mousse pate burgundy red wine mustard, cornichons',
0.4444444444444444],
[['cinnamon', 'cream', 'cheese'],
'skinny crepe pancakes cinnamon cream cheese icing',
0.42857142857142855],
[['vanilla', 'ice', 'cream'],
'gala apple tarte tatin vanilla ice cream',
0.42857142857142855],
[['cream', 'and', 'blueberry', 'syrup'],
'french toast blueberries, whipped cream, blueberry syrup',
0.42857142857142855],
[['vanilla', 'ice', 'cream', 'cake'],
'gala apple tarte tatin vanilla ice cream',
0.42857142857142855],
[['vanilla', 'ice', 'cream', 'and', 'orange', 'marmalade'],
'gala apple tarte tatin vanilla ice cream',
0.42857142857142855],
[['caramel', 'sauce', 'and', 'vanilla', 'ice', 'cream'],
'bananas foster caramel sauce, fresh whipped cream',
0.42857142857142855],
[['cheese', 'and', 'mushroom', 'and', 'chicken', 'crepe'],
'cheeseburger hand-cut frites, add a fried egg',
0.42857142857142855],
[['shrimp', 'and', 'scallops', 'crepe'],
'seafood crepe scallops, shrimp, peas & cream',
0.42857142857142855],
[['caramel', 'sauce', 'and', 'cream'],
'bananas foster caramel sauce, fresh whipped cream',
0.42857142857142855],
[['chicken', 'crepe'], 'chicken, brie & apple crepe', 0.4],
[['bacon', 'and', 'cheese'], 'egg, bacon & cheese crepe', 0.4],
[['bacon', 'egg'], 'egg, bacon & cheese crepe', 0.4],
[['apple', 'crepe'], 'skinny crepe pancakes caramelized apple', 0.4],
[['chicken', 'and', 'broccoli', 'crepe'], 'chicken, brie & apple crepe', 0.4],
[['banana', 'waffle'], 'banana foster waffle whipped cream', 0.4],
[['apple', 'pancake'], 'skinny crepe pancakes caramelized apple', 0.4],
[['caramel', 'ice', 'cream'], 'caramelized apple fresh whipped cream', 0.4],
[['chives', 'and', 'cheese'], 'mushroom omelette brie cheese, chives', 0.4],
[['cheese', 'and', 'chives'], 'mushroom omelette brie cheese, chives', 0.4],
[['caramel', 'cream'], 'caramelized apple fresh whipped cream', 0.4],
[['cheese', 'and', 'bacon'], 'egg, bacon & cheese crepe', 0.4],
[['chicken', 'apple', 'sausage'], 'chicken, brie & apple crepe', 0.4],
[['chicken', 'broccoli', 'crepe'], 'chicken, brie & apple crepe', 0.4],
[['apple', 'and', 'chicken', 'sandwich'], 'chicken, brie & apple crepe', 0.4],
[['chicken', 'apple'], 'chicken, brie & apple crepe', 0.4],
[['cheese', 'crepe'], 'egg, bacon & cheese crepe', 0.4],
[['bacon', 'and', 'crepe'], 'egg, bacon & cheese crepe', 0.4],
[['salmon', 'and', 'avocado'],
'spicy salmon tartare avocado, olives, hand-cut gaufrette chips',
0.375],
[['onions', 'and', 'mustard', 'mayo'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.375],
[['ham', 'and', 'cheese'],
'croque madame warm ham and cheese, fried egg',
0.375],
[['salmon', 'and', 'avocado', 'salad'],
'spicy salmon tartare avocado, olives, hand-cut gaufrette chips',
0.375],
[['ham', 'and', 'cheese', 'sandwich'],
'croque madame warm ham and cheese, fried egg',
0.375],
[['cheese', 'and', 'ham'],
'croque madame warm ham and cheese, fried egg',
0.375],
[['egg', 'and', 'spinach'],
'artichoke & spinach benedict poached eggs, hollandaise sauce',
0.375],
[['chips', 'and', 'avocado'],
'spicy salmon tartare avocado, olives, hand-cut gaufrette chips',
0.375],
[['kale', 'and', 'bacon', 'salad'],
'frisee, kale & warm bacon salad soft-poached egg',
0.375],
[['liver', 'mousse', 'pate'],
'chicken liver mousse pate burgundy red wine mustard, cornichons',
0.3333333333333333],
[['butter'], 'butter & preserves', 0.3333333333333333],
[['apple', 'slaw'], 'applewood smoked bacon', 0.3333333333333333],
[['chicken', 'liver', 'pate'],
'chicken liver mousse pate burgundy red wine mustard, cornichons',
0.3333333333333333],
[['onion', 'soup'],
'french onion soup the french classic',
0.3333333333333333],
[['corn', 'beef', 'hash'],
'corned beef hash & poached eggs* roast red pepper',
0.3333333333333333],
[['cheese'], 'cheeseburger & frites', 0.3333333333333333],
[['apple'], 'applewood smoked bacon', 0.3333333333333333],
[['bacon'], 'applewood smoked bacon', 0.3333333333333333],
[['cheese', 'and', 'pear'], 'cheeseburger & frites', 0.3333333333333333],
[['onion', 'soup', 'and', 'bread'],
'french onion soup the french classic',
0.3333333333333333],
[['butter', 'and', 'apple'], 'butter & preserves', 0.3333333333333333],
[['apple', 'plate'], 'applewood smoked bacon', 0.3333333333333333],
[['egg', 'benedict'],
'eggs benedict canadian bacon, hollandaise sauce',
0.3333333333333333],
[['butter', 'garlic', 'sauce'], 'butter & preserves', 0.3333333333333333],
[['salmon', 'and', 'quinoa'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['salmon', 'benedict'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['fruit', 'salad'],
'fresh fruit salad brown sugar yogurt',
0.3333333333333333],
[['butter', 'lettuce', 'salad'], 'butter & preserves', 0.3333333333333333],
[['lemon', 'chicken'], 'asparagus lemon gremolata', 0.3333333333333333],
[['lemon'], 'asparagus lemon gremolata', 0.3333333333333333],
[['fruit', 'and', 'croissant'],
'ruby red grapefruit segments candied ginger',
0.3333333333333333],
[['butter', 'and', 'cream'], 'butter & preserves', 0.3333333333333333],
[['corn', 'beef', 'and', 'hash'],
'corned beef hash & poached eggs* roast red pepper',
0.3333333333333333],
[['chicken', 'liver', 'mousse'],
'chicken liver mousse burgundy red wine mustard, gluten-free toast',
0.3333333333333333],
[['sauce', 'and', 'mussels'],
'eggs benedict canadian bacon, hollandaise sauce',
0.3333333333333333],
[['salmon', 'and', 'vegetable'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['butter', 'sauce'], 'butter & preserves', 0.3333333333333333],
[['lemon', 'sauce'],
'shrimp cocktail lemon dijonnaise, cocktail sauce',
0.3333333333333333],
[['chicken', 'and', 'mushroom'],
'chicken grand-mere all-natural half chicken, bacon, mushrooms, pommes puree',
0.3333333333333333],
[['lemon', 'and', 'herbs'], 'asparagus lemon gremolata', 0.3333333333333333],
[['apple', 'salad'], 'applewood smoked bacon', 0.3333333333333333],
[['butter', 'and', 'carrot', 'slaw'],
'butter & preserves',
0.3333333333333333],
[['bacon', 'salad'], 'applewood smoked bacon', 0.3333333333333333],
[['kale', 'and', 'chicken', 'salad'],
'chicken & mushroom crepe kale, brie',
0.3333333333333333],
[['berry'], 'mixed berry coupe', 0.3333333333333333],
[['lemon', 'and', 'crackers'],
'asparagus lemon gremolata',
0.3333333333333333],
[['sausage', 'and', 'toast'],
'spicy andouille sausage benedict hollandaise sauce',
0.3333333333333333],
[['butter', 'and', 'salt'], 'butter & preserves', 0.3333333333333333],
[['avocado', 'salmon', 'salad'],
'spicy salmon tartare avocado, olives, gaufrettes',
0.3333333333333333],
[['cheese', 'sauce'], 'cheeseburger & frites', 0.3333333333333333],
[['butter', 'and', 'syrup'], 'butter & preserves', 0.3333333333333333],
[['bacon', 'and', 'toast'], 'applewood smoked bacon', 0.3333333333333333],
[['egg', 'benedict', 'bread'],
'eggs benedict canadian bacon, hollandaise sauce',
0.3333333333333333],
[['butter', 'and', 'bread'], 'butter & preserves', 0.3333333333333333],
[['salmon', 'and', 'steak'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['apple', 'juice'], 'applewood smoked bacon', 0.3333333333333333],
[['cheese', 'and', 'sauce'], 'cheeseburger & frites', 0.3333333333333333],
[['butter', 'and', 'carrot'], 'butter & preserves', 0.3333333333333333],
[['sausage', 'and', 'cheese'],
'spicy andouille sausage benedict hollandaise sauce',
0.3333333333333333],
[['butter', 'and', 'corn', 'sauce'],
'butter & preserves',
0.3333333333333333],
[['butter', 'and', 'jam'], 'butter & preserves', 0.3333333333333333],
[['butter', 'and', 'herbs'], 'butter & preserves', 0.3333333333333333],
[['apple', 'cinnamon', 'waffle'],
'applewood smoked bacon',
0.3333333333333333],
[['apple', 'waffle'], 'applewood smoked bacon', 0.3333333333333333],
[['lemon', 'salmon'], 'asparagus lemon gremolata', 0.3333333333333333],
[['berry', 'pancake'], 'mixed berry coupe', 0.3333333333333333],
[['ginger', 'and', 'lime'],
'ruby red grapefruit segments candied ginger',
0.3333333333333333],
[['corn', 'hash', 'beef'],
'corned beef hash & poached eggs* roast red pepper',
0.3333333333333333],
[['apple', 'tart'], 'applewood smoked bacon', 0.3333333333333333],
[['cheese', 'and', 'bread'], 'cheeseburger & frites', 0.3333333333333333],
[['salmon', 'and', 'roast', 'beef'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['butter', 'lettuce'], 'butter & preserves', 0.3333333333333333],
[['butter', 'and', 'peach', 'jam'], 'butter & preserves', 0.3333333333333333],
[['salmon', 'and', 'spinach', 'salad'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['butter', 'lettuce', 'and', 'apple', 'salad'],
'butter & preserves',
0.3333333333333333],
[['onion', 'soup', 'and', 'salmon'],
'french onion soup the french classic',
0.3333333333333333],
[['ham', 'and', 'spinach', 'crepe'],
'ham & cheese crepe add egg',
0.3333333333333333],
[['fruit', 'and', 'yogurt'],
'fresh fruit salad brown sugar yogurt',
0.3333333333333333],
[['cheese', 'and', 'herbs'], 'cheeseburger & frites', 0.3333333333333333],
[['lemon', 'and', 'capers'], 'asparagus lemon gremolata', 0.3333333333333333],
[['lemon', 'marmalade'], 'asparagus lemon gremolata', 0.3333333333333333],
[['butter', 'and', 'garlic'], 'butter & preserves', 0.3333333333333333],
[['butter', 'and', 'slaw'], 'butter & preserves', 0.3333333333333333],
[['chicken', 'mousse', 'pate'],
'chicken liver mousse pate burgundy red wine mustard, cornichons',
0.3333333333333333],
[['berry', 'waffle'], 'mixed berry coupe', 0.3333333333333333],
[['vanilla', 'custard'],
'vanilla creme brulee burnt vanilla custard',
0.3333333333333333],
[['butter', 'cream'], 'butter & preserves', 0.3333333333333333],
[['ginger', 'and', 'carrot', 'soup'],
'ruby red grapefruit segments candied ginger',
0.3333333333333333],
[['salmon', 'and', 'capers'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['salmon', 'and', 'blueberry'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['lemon', 'tarragon', 'halibut'],
'asparagus lemon gremolata',
0.3333333333333333],
[['salmon', 'and', 'citrus'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['cheese', 'and', 'apple'], 'cheeseburger & frites', 0.3333333333333333],
[['grape', 'and', 'mint', 'juice'],
'ruby red grapefruit segments candied ginger',
0.3333333333333333],
[['berry', 'jam'], 'mixed berry coupe', 0.3333333333333333],
[['butter', 'scallops'], 'butter & preserves', 0.3333333333333333],
[['beans', 'and', 'corn'], 'french green beans', 0.3333333333333333],
[['cheese', 'sauce', 'and', 'fries'],
'cheeseburger & frites',
0.3333333333333333],
[['lemon', 'pancake'], 'asparagus lemon gremolata', 0.3333333333333333],
[['lemon', 'crepe'], 'asparagus lemon gremolata', 0.3333333333333333],
[['bacon', 'and', 'onions'], 'applewood smoked bacon', 0.3333333333333333],
[['salmon', 'and', 'wine'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['grape', 'and', 'almond', 'soup'],
'ruby red grapefruit segments candied ginger',
0.3333333333333333],
[['sugar', 'and', 'yogurt'],
'fresh fruit salad brown sugar yogurt',
0.3333333333333333],
[['butter', 'and', 'wine'], 'butter & preserves', 0.3333333333333333],
[['bacon', 'quiche'], 'applewood smoked bacon', 0.3333333333333333],
[['bacon', 'and', 'fruit'], 'applewood smoked bacon', 0.3333333333333333],
[['chicken', 'liver', 'mousse', 'and', 'duck', 'confit'],
'chicken liver mousse burgundy red wine mustard, gluten-free toast',
0.3333333333333333],
[['cheese', 'and', 'fruit'], 'cheeseburger & frites', 0.3333333333333333],
[['sauce', 'and', 'cream'],
'eggs benedict canadian bacon, hollandaise sauce',
0.3333333333333333],
[['bacon', 'and', 'turkey'], 'applewood smoked bacon', 0.3333333333333333],
[['lemon', 'quinoa'], 'asparagus lemon gremolata', 0.3333333333333333],
[['cheese', 'plate'], 'cheeseburger & frites', 0.3333333333333333],
[['apple', 'and', 'celery', 'soup'],
'applewood smoked bacon',
0.3333333333333333],
[['salmon', 'and', 'pate'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['asparagus', 'soup'], 'asparagus lemon gremolata', 0.3333333333333333],
[['avocado', 'tomato', 'relish'],
'egg white omelette avocado & tomato relish, chicken sausage',
0.3333333333333333],
[['butter', 'and', 'lemon'], 'butter & preserves', 0.3333333333333333],
[['bacon', 'spinach', 'salad'], 'applewood smoked bacon', 0.3333333333333333],
[['bacon', 'and', 'avocado'], 'applewood smoked bacon', 0.3333333333333333],
[['fruit', 'and', 'honey'],
'ruby red grapefruit segments candied ginger',
0.3333333333333333],
[['cheese', 'and', 'spinach'], 'cheeseburger & frites', 0.3333333333333333],
[['berry', 'crepe'], 'mixed berry coupe', 0.3333333333333333],
[['apple', 'sandwich'], 'applewood smoked bacon', 0.3333333333333333],
[['sauce', 'and', 'fries'],
'eggs benedict canadian bacon, hollandaise sauce',
0.3333333333333333],
[['salmon', 'and', 'trout', 'dish'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['cheese', 'sandwich'], 'cheeseburger & frites', 0.3333333333333333],
[['bacon', 'poutine'], 'applewood smoked bacon', 0.3333333333333333],
[['grape', 'and', 'strawberry'],
'ruby red grapefruit segments candied ginger',
0.3333333333333333],
[['ham', 'crepe'], 'ham & cheese crepe add egg', 0.3333333333333333],
[['salmon', 'and', 'trout'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['berry', 'tart'], 'mixed berry coupe', 0.3333333333333333],
[['salmon', 'and', 'lentils'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['salmon', 'and', 'lox'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['butter', 'nut', 'squash', 'soup'],
'butter & preserves',
0.3333333333333333],
[['cheese', 'and', 'onion', 'soup'],
'cheeseburger & frites',
0.3333333333333333],
[['salmon', 'and', 'asparagus'],
'smoked salmon eggs benedict chive hollandaise',
0.3333333333333333],
[['sauce', 'steak'],
'steak bearnaise bearnaise sauce, shallow-fry frites',
0.3333333333333333],
[['beans'], 'french green beans', 0.3333333333333333],
[['cheese', 'butter'], 'cheeseburger & frites', 0.3333333333333333],
[['cream', 'cheese'],
'skinny crepe pancakes cinnamon cream cheese icing',
0.2857142857142857],
[['ice', 'cream'],
'gala apple tarte tatin vanilla ice cream',
0.2857142857142857],
[['cream', 'wine', 'sauce'],
'bananas foster caramel sauce, fresh whipped cream',
0.2857142857142857],
[['caramel', 'sauce'],
'bananas foster caramel sauce, fresh whipped cream',
0.2857142857142857],
[['shrimp', 'and', 'scallops'],
'seafood crepe scallops, shrimp, peas & cream',
0.2857142857142857],
[['cream', 'sauce'],
'bananas foster caramel sauce, fresh whipped cream',
0.2857142857142857],
[['ice', 'cream', 'and', 'coffee'],
'gala apple tarte tatin vanilla ice cream',
0.2857142857142857],
[['wine', 'butter', 'sauce'],
'filet mignon bordeaux butter, red wine reduction',
0.2857142857142857],
[['ice', 'cream', 'dessert'],
'gala apple tarte tatin vanilla ice cream',
0.2857142857142857],
[['cream', 'and', 'blueberry'],
'french toast blueberries, whipped cream, blueberry syrup',
0.2857142857142857],
[['ice', 'cream', 'and', 'chocolate', 'sauce'],
'gala apple tarte tatin vanilla ice cream',
0.2857142857142857],
[['cream', 'butter', 'sauce'],
'bananas foster caramel sauce, fresh whipped cream',
0.2857142857142857],
[['ice', 'cream', 'cake'],
'gala apple tarte tatin vanilla ice cream',
0.2857142857142857],
[['cream', 'and', 'syrup'],
'french toast blueberries, whipped cream, blueberry syrup',
0.2857142857142857],
[['wine', 'and', 'butter', 'sauce'],
'filet mignon bordeaux butter, red wine reduction',
0.2857142857142857],
[['crepe', 'and', 'corn', 'beef', 'hash'],
'ham & cheese crepe cornichons, dijon mustard',
0.2857142857142857],
[['scallops', 'and', 'shrimp'],
'seafood crepe scallops, shrimp, peas & cream',
0.2857142857142857],
[['egg', 'omelet'],
'egg white omelette spinach, asparagus & peas',
0.2857142857142857],
[['cream', 'cheese', 'and', 'potato'],
'skinny crepe pancakes cinnamon cream cheese icing',
0.2857142857142857],
[['cinnamon', 'pancake'],
'skinny crepe pancakes cinnamon cream cheese icing',
0.2857142857142857],
[['cinnamon', 'sugar', 'crepe'],
'skinny crepe pancakes cinnamon cream cheese icing',
0.2857142857142857],
[['ice', 'cream', 'sundae'],
'gala apple tarte tatin vanilla ice cream',
0.2857142857142857],
[['shrimp', 'crepe'],
'seafood crepe scallops, shrimp, peas & cream',
0.2857142857142857],
[['wine', 'butter'],
'filet mignon bordeaux butter, red wine reduction',
0.2857142857142857],
[['blueberry', 'cinnamon', 'toast'],
'french toast blueberries, whipped cream, blueberry syrup',
0.2857142857142857],
[['cream'], 'chocolate waffle whipped cream', 0.25],
[['waffle'], 'chocolate waffle whipped cream', 0.25],
[['syrup'], 'fruit coupe vanilla syrup', 0.25],
[['tomato', 'sauce'],
'green egg white omelette sauce vert, roasted tomatoes',
0.25],
[['pepper', 'steak'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['blueberry'], 'blueberry warm blueberry syrup', 0.25],
[['kale', 'salad'], 'frisee, kale & warm bacon salad soft-poached egg', 0.25],
[['fruit'], 'fruit coupe vanilla syrup', 0.25],
[['onion'], 'scallops gratinees fennel-onion-mussel cream', 0.25],
[['avocado', 'and', 'bacon'],
'spicy salmon tartare avocado, olives, hand-cut gaufrette chips',
0.25],
[['sausage'], 'housemade pork sausage patties', 0.25],
[['lobster', 'roll'],
'maine lobster roll brioche bun, gaufrette chips, salad',
0.25],
[['blueberry', 'sauce'], 'blueberry warm blueberry syrup', 0.25],
[['pork'], 'housemade pork sausage patties', 0.25],
[['scallops', 'and', 'steak'],
'scallops gratinees fennel-onion-mussel cream',
0.25],
[['tomato', 'soup', 'sauce'],
'green egg white omelette sauce vert, roasted tomatoes',
0.25],
[['sausage', 'plate'], 'housemade pork sausage patties', 0.25],
[['almond', 'trout'],
'trout almondine french green beans, brown butter, lemon',
0.25],
[['chips', 'and', 'fries'],
'spicy salmon tartare avocado, olives, hand-cut gaufrette chips',
0.25],
[['blueberry', 'waffle'], 'blueberry warm blueberry syrup', 0.25],
[['onion', 'steak'], 'scallops gratinees fennel-onion-mussel cream', 0.25],
[['vanilla'], 'fruit coupe vanilla syrup', 0.25],
[['pork', 'sandwich'], 'housemade pork sausage patties', 0.25],
[['sage'], 'housemade pork sausage patties', 0.25],
[['avocado', 'and', 'mayo'],
'spicy salmon tartare avocado, olives, hand-cut gaufrette chips',
0.25],
[['artichoke', 'sauce'],
'artichoke & spinach benedict poached eggs, hollandaise sauce',
0.25],
[['pork', 'brisket', 'sandwich'], 'housemade pork sausage patties', 0.25],
[['corn', 'beef', 'sandwich'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['vanilla', 'sauce'], 'fruit coupe vanilla syrup', 0.25],
[['onion', 'sauce'], 'scallops gratinees fennel-onion-mussel cream', 0.25],
[['vinegar', 'sauce'],
'gabi’s fish & frites sauce gribiche, malt vinegar',
0.25],
[['sage', 'tea'], 'housemade pork sausage patties', 0.25],
[['egg', 'salad'], 'frisee, kale & warm bacon salad soft-poached egg', 0.25],
[['pea', 'sauce'], 'mashed peas & leeks', 0.25],
[['pea'], 'mashed peas & leeks', 0.25],
[['sausage', 'sandwich'], 'housemade pork sausage patties', 0.25],
[['chili', 'oil'],
'caesar salad baguette croutons, grana padano, chili oil',
0.25],
[['sandwich', 'and', 'crepe'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['cream', 'soup'], 'chocolate waffle whipped cream', 0.25],
[['avocado', 'toast'],
'avocado toast french green beans, hard-boiled egg, caesar',
0.25],
[['avocado', 'and', 'tomato'],
'spicy salmon tartare avocado, olives, hand-cut gaufrette chips',
0.25],
[['scallops'], 'scallops gratinees fennel-onion-mussel cream', 0.25],
[['onions', 'and', 'cheese'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['waffle', 'and', 'crepe'], 'chocolate waffle whipped cream', 0.25],
[['egg', 'salad', 'sandwich'],
'frisee, kale & warm bacon salad soft-poached egg',
0.25],
[['onion', 'marmalade'],
'scallops gratinees fennel-onion-mussel cream',
0.25],
[['cream', 'dessert'], 'chocolate waffle whipped cream', 0.25],
[['tomato', 'sauce', 'and', 'chicken', 'liver', 'pate'],
'pasta with butter or tomato sauce fresh green beans and apple slices',
0.25],
[['fruit', 'plate'], 'fruit coupe vanilla syrup', 0.25],
[['onions', 'and', 'sauce'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['blueberry', 'jam'], 'blueberry warm blueberry syrup', 0.25],
[['onion', 'and', 'apple'],
'scallops gratinees fennel-onion-mussel cream',
0.25],
[['vanilla', 'and', 'chocolate'], 'fruit coupe vanilla syrup', 0.25],
[['onions', 'and', 'lentils'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['fruit', 'dessert'], 'fruit coupe vanilla syrup', 0.25],
[['syrup', 'sauce'], 'fruit coupe vanilla syrup', 0.25],
[['pork', 'meat', 'dish'], 'housemade pork sausage patties', 0.25],
[['roast', 'pork'],
'cubano mojo-marinated roast pork, ham, swiss, pickles, dijon',
0.25],
[['fruit', 'juice'], 'fruit coupe vanilla syrup', 0.25],
[['order', 'order', 'order'],
'mussels mariniere white wine & herbs, half order full order w/ frites',
0.25],
[['sandwich', 'and', 'fries'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['blueberry', 'muffin'], 'blueberry warm blueberry syrup', 0.25],
[['scallops', 'and', 'trout'],
'scallops gratinees fennel-onion-mussel cream',
0.25],
[['waffle', 'fries'], 'chocolate waffle whipped cream', 0.25],
[['waffle', 'batter'], 'chocolate waffle whipped cream', 0.25],
[['onions', 'and', 'fries'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['cream', 'and', 'sugar'], 'chocolate waffle whipped cream', 0.25],
[['kale', 'salad', 'and', 'onion', 'soup'],
'frisee, kale & warm bacon salad soft-poached egg',
0.25],
[['lobster', 'roll', 'sandwich'],
'maine lobster roll brioche bun, gaufrette chips, salad',
0.25],
[['onions', 'and', 'capers'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['onion', 'and', 'wine', 'sauce'],
'scallops gratinees fennel-onion-mussel cream',
0.25],
[['lobster', 'salad', 'sandwich'],
'maine lobster roll brioche bun, gaufrette chips, salad',
0.25],
[['ham', 'and', 'spinach'],
'croque madame warm ham and cheese, fried egg',
0.25],
[['onion', 'and', 'capers'],
'scallops gratinees fennel-onion-mussel cream',
0.25],
[['fruit', 'tart'], 'fruit coupe vanilla syrup', 0.25],
[['scallops', 'dish'], 'scallops gratinees fennel-onion-mussel cream', 0.25],
[['corn', 'beef', 'and', 'salmon'],
'prime steak sandwich* caramelized onions & peppercorn mayo',
0.25],
[['cream', 'and', 'butter'], 'chocolate waffle whipped cream', 0.25],
[['bread', 'and', 'soda'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['beef', 'hash'],
'corned beef hash & poached eggs* roast red pepper',
0.2222222222222222],
[['chicken', 'sausage'],
'egg white omelette avocado & tomato relish, chicken sausage',
0.2222222222222222],
[['bread', 'and', 'butter'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['beef', 'hash', 'and', 'ham'],
'corned beef hash & poached eggs* roast red pepper',
0.2222222222222222],
[['grain', 'mustard'],
'housemade country pate cornichons, whole grain mustard, gluten-free toast',
0.2222222222222222],
[['chicken', 'liver'],
'chicken liver mousse burgundy red wine mustard, gluten-free toast',
0.2222222222222222],
[['bread', 'and', 'jam'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['bread', 'and', 'carrot', 'salad'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['roast', 'beef'],
'corned beef hash & poached eggs* roast red pepper',
0.2222222222222222],
[['corn', 'beef'],
'corned beef hash & poached eggs* roast red pepper',
0.2222222222222222],
[['bread', 'and', 'strawberry', 'jam'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['pate', 'mousse'],
'chicken liver mousse pate burgundy red wine mustard, cornichons',
0.2222222222222222],
[['chicken', 'pate'],
'chicken liver mousse pate burgundy red wine mustard, cornichons',
0.2222222222222222],
[['beef', 'and', 'hash'],
'corned beef hash & poached eggs* roast red pepper',
0.2222222222222222],
[['ice', 'tea'],
'steak & frites fresh green beans and apple slices',
0.2222222222222222],
[['liver', 'pate'],
'chicken liver mousse pate burgundy red wine mustard, cornichons',
0.2222222222222222],
[['bread', 'and', 'garlic'],
'baked goat cheese tomato sauce, warm herb garlic bread',
0.2222222222222222],
[['bread', 'sauce'],
'baked goat cheese tomato sauce, warm herb garlic bread',
0.2222222222222222],
[['tomato', 'relish'],
'egg white omelette avocado & tomato relish, chicken sausage',
0.2222222222222222],
[['wine', 'mustard'],
'chicken liver mousse burgundy red wine mustard, gluten-free toast',
0.2222222222222222],
[['liver', 'mousse'],
'chicken liver mousse burgundy red wine mustard, gluten-free toast',
0.2222222222222222],
[['bread', 'and', 'cheese'],
'baked goat cheese tomato sauce, warm herb garlic bread',
0.2222222222222222],
[['egg', 'croissant', 'sandwich'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['chicken', 'and', 'broccoli', 'quiche'],
'chicken grand-mere all-natural half chicken, bacon, mushrooms, pommes puree',
0.2222222222222222],
[['roast', 'beef', 'sandwich'],
'corned beef hash & poached eggs* roast red pepper',
0.2222222222222222],
[['chicken', 'and', 'steak'],
'chicken grand-mere all-natural half chicken, bacon, mushrooms, pommes puree',
0.2222222222222222],
[['avocado', 'tomato'],
'egg white omelette avocado & tomato relish, chicken sausage',
0.2222222222222222],
[['bread', 'and', 'coffee'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['avocado', 'relish'],
'egg white omelette avocado & tomato relish, chicken sausage',
0.2222222222222222],
[['bread', 'and', 'slaw'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['wine', 'and', 'chocolate', 'mousse'],
'chicken liver mousse burgundy red wine mustard, gluten-free toast',
0.2222222222222222],
[['salmon', 'bagel'],
'smoked salmon platter toasted bagel, cream cheese, capers, chives',
0.2222222222222222],
[['bread', 'and', 'wine'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['bread', 'and', 'mustard'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['bread', 'and', 'steak'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['bread', 'and', 'steaks'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['bread', 'and', 'onion', 'soup'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['mustard', 'and', 'toast'],
'chicken liver mousse burgundy red wine mustard, gluten-free toast',
0.2222222222222222],
[['liver', 'pate', 'and', 'sandwiches'],
'chicken liver mousse pate burgundy red wine mustard, cornichons',
0.2222222222222222],
[['egg', 'sandwich'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['bread', 'and', 'preserves'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['chicken', 'and', 'fries'],
'chicken grand-mere all-natural half chicken, bacon, mushrooms, pommes puree',
0.2222222222222222],
[['beef', 'hash', 'and', 'onion', 'soup'],
'corned beef hash & poached eggs* roast red pepper',
0.2222222222222222],
[['bread', 'and', 'corn'],
'bacon, egg & cheddar sandwich ciabatta bread, green goddess',
0.2222222222222222],
[['chicken', 'blt', 'and', 'shrimp'],
'chicken grand-mere all-natural half chicken, bacon, mushrooms, pommes puree',
0.2222222222222222],
[['crepe'], 'skinny crepe pancakes caramelized apple', 0.2],
[['egg'], 'egg, bacon & cheese crepe', 0.2],
[['duck', 'confit'],
'crispy duck confit braised red cabbage, sun-dried cherries, calvados glaze',
0.2],
[['banana', 'muffin'], 'banana foster waffle whipped cream', 0.2],
[['banana'], 'banana foster waffle whipped cream', 0.2],
[['caramel', 'chocolate', 'tart'],
'caramelized apple fresh whipped cream',
0.2],
[['chicken'], 'chicken, brie & apple crepe', 0.2],
[['crepe', 'and', 'spinach'], 'skinny crepe pancakes caramelized apple', 0.2],
[['pancake'], 'skinny crepe pancakes caramelized apple', 0.2],
[['omelet'], 'mushroom omelette brie cheese, chives', 0.2],
[['duck', 'confit', 'and', 'spinach'],
'crispy duck confit braised red cabbage, sun-dried cherries, calvados glaze',
0.2],
[['cake'], 'skinny crepe pancakes caramelized apple', 0.2],
[['egg', 'yolk'], 'egg, bacon & cheese crepe', 0.2],
[['banana', 'and', 'strawberry', 'crepe'],
'banana foster waffle whipped cream',
0.2],
[['chicken', 'sandwich'], 'chicken, brie & apple crepe', 0.2],
[['turkey', 'and', 'avocado'],
'cobb salad turkey, avocado, egg, tomato, cucumber, bacon, blue cheese',
0.2],
[['tomato', 'salad'],
'cobb salad turkey, avocado, egg, tomato, cucumber, bacon, blue cheese',
0.2],
[['nut'], 'chocolate-hazelnut nutella, fresh whipped cream', 0.2],
[['chicken', 'blt', 'sandwich'], 'chicken, brie & apple crepe', 0.2],
[['caramel'], 'caramelized apple fresh whipped cream', 0.2],
[['turkey', 'and', 'egg'],
'cobb salad turkey, avocado, egg, tomato, cucumber, bacon, blue cheese',
0.2],
[['tomato', 'and', 'bacon'],
'cobb salad turkey, avocado, egg, tomato, cucumber, bacon, blue cheese',
0.2],
[['crepe', 'and', 'fruit', 'plate'],
'skinny crepe pancakes caramelized apple',
0.2],
[['egg', 'plate'], 'egg, bacon & cheese crepe', 0.2],
[['turkey', 'egg'],
'cobb salad turkey, avocado, egg, tomato, cucumber, bacon, blue cheese',
0.2],
[['chicken', 'entree'], 'chicken, brie & apple crepe', 0.2],
[['banana', 'crepe'], 'banana foster waffle whipped cream', 0.2],
[['hazelnut'], 'chocolate-hazelnut nutella, fresh whipped cream', 0.2],
[['chicken', 'salad', 'sandwich'], 'chicken, brie & apple crepe', 0.2],
[['egg', 'dish'], 'egg, bacon & cheese crepe', 0.2],
[['savory', 'egg'],
'salad maison arugula, savory eggplant jam, pepper drops, sherry vinaigrette',
0.2],
[['chicken', 'dish'], 'chicken, brie & apple crepe', 0.2],
[['crepe', 'and', 'fish'], 'skinny crepe pancakes caramelized apple', 0.2],
[['chives', 'and', 'cilantro'], 'mushroom omelette brie cheese, chives', 0.2],
[['chicken', 'plate'], 'chicken, brie & apple crepe', 0.2],
[['crepe', 'and', 'onion', 'soup'],
'skinny crepe pancakes caramelized apple',
0.2],
[['tomato', 'and', 'basil', 'salad'],
'cobb salad turkey, avocado, egg, tomato, cucumber, bacon, blue cheese',
0.2],
[['turkey', 'and', 'bacon'],
'cobb salad turkey, avocado, egg, tomato, cucumber, bacon, blue cheese',
0.2],
[['chicken', 'salad'], 'chicken, brie & apple crepe', 0.2],
[['banana', 'crepe', 'dessert'], 'banana foster waffle whipped cream', 0.2],
[['caramel', 'tart'], 'caramelized apple fresh whipped cream', 0.2],
[['dish'],
'oysters du jour mignonette sauce, horseradish',
0.16666666666666666],
[['salmon'],
'spicy salmon tartare avocado, olives, gaufrettes',
0.16666666666666666],
[['onions'],
'quiche lorraine bacon, jarlsberg, caramelized onions',
0.16666666666666666],
[['custard'],
'vanilla creme brulee burnt vanilla custard',
0.16666666666666666],
[['sauce'],
'shrimp cocktail lemon dijonnaise, cocktail sauce',
0.16666666666666666],
[['salad'], 'fresh fruit salad brown sugar yogurt', 0.16666666666666666],
[['soup'], 'french onion soup the french classic', 0.16666666666666666],
[['sugar'], 'fresh fruit salad brown sugar yogurt', 0.16666666666666666],
[['grapefruit'],
'ruby red grapefruit segments candied ginger',
0.16666666666666666],
[['shrimp'],
'shrimp cocktail lemon dijonnaise, cocktail sauce',
0.16666666666666666],
[['ham'], 'ham & cheese crepe add egg', 0.16666666666666666],
[['muffin'],
'housemade english muffin butter & preserves',
0.16666666666666666],
[['oyster'],
'oysters du jour mignonette sauce, horseradish',
0.16666666666666666],
[['oyster', 'potato', 'soup'],
'oysters du jour mignonette sauce, horseradish',
0.16666666666666666],
[['tart'],
'spicy salmon tartare avocado, olives, gaufrettes',
0.16666666666666666],
[['benedict'],
'eggs benedict canadian bacon, hollandaise sauce',
0.16666666666666666],
[['quiche'],
'quiche lorraine bacon, jarlsberg, caramelized onions',
0.16666666666666666],
[['cheesecake'],
'orange vanilla cheesecake macerated strawberries, mint',
0.16666666666666666],
[['salmon', 'salad'],
'spicy salmon tartare avocado, olives, gaufrettes',
0.16666666666666666],
[['orange', 'juice'],
'orange vanilla cheesecake macerated strawberries, mint',
0.16666666666666666],
[['ginger'],
'ruby red grapefruit segments candied ginger',
0.16666666666666666],
[['orange'],
'orange vanilla cheesecake macerated strawberries, mint',
0.16666666666666666],
[['horseradish'],
'oysters du jour mignonette sauce, horseradish',
0.16666666666666666],
[['wine', 'and', 'herbs'],
'mussels mariniere white wine & herbs, half order full order w/ frites',
0.16666666666666666],
[['artichoke', 'soup'],
'steamed artichoke shaved vegetables, lemon-dijon vinaigrette',
0.16666666666666666],
[['grapefruit', 'juice'],
'ruby red grapefruit segments candied ginger',