forked from ndrppnc/cloud-hw1-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformatted_data.json
1888 lines (1888 loc) · 124 KB
/
formatted_data.json
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
{"index": {"_index": "restaurants", "_id": "1"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "vRrVSB-LegwUwIxpkeRVtQ"}}}
{"index": {"_index": "restaurants", "_id": "2"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "3Gz07E5YJjDTJPSuzsAStQ"}}}
{"index": {"_index": "restaurants", "_id": "3"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "OFfZUS-nu6NDnsWe1B2bUQ"}}}
{"index": {"_index": "restaurants", "_id": "4"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "h37t9rA06Sr4EetJjKrfzw"}}}
{"index": {"_index": "restaurants", "_id": "5"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "klAhw3xLQi9GF1tf_HnS7w"}}}
{"index": {"_index": "restaurants", "_id": "6"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "MmXZLVwWcYugi_TXSHmjeQ"}}}
{"index": {"_index": "restaurants", "_id": "7"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "ypqK8DWM8Bcs43YveSJnNw"}}}
{"index": {"_index": "restaurants", "_id": "8"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "WG639VkTjmK5dzydd1BBJA"}}}
{"index": {"_index": "restaurants", "_id": "9"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "B3_K2kUVbYOU0VaLcj_LTw"}}}
{"index": {"_index": "restaurants", "_id": "10"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "qY1o1MhoRyN84RRhUJtvpQ"}}}
{"index": {"_index": "restaurants", "_id": "11"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "nRO136GRieGtxz18uD61DA"}}}
{"index": {"_index": "restaurants", "_id": "12"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "xt4sa64WOrpJvZBDPNPNYg"}}}
{"index": {"_index": "restaurants", "_id": "13"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "WJS06XxRdc6DD1s4LWE9HA"}}}
{"index": {"_index": "restaurants", "_id": "14"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "MphfKkYFEe0BDQ6hZ0A5fA"}}}
{"index": {"_index": "restaurants", "_id": "15"}}
{"Item": {"Type": {"S": "Brazilian"}, "BusinessID": {"S": "7B2XMvV5uGuKyl19-HTSvg"}}}
{"index": {"_index": "restaurants", "_id": "16"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "EKkHfSYTm266-ZBve3SdgA"}}}
{"index": {"_index": "restaurants", "_id": "17"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "DZaN3bNWfwcm__sNw5bvDg"}}}
{"index": {"_index": "restaurants", "_id": "18"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "1DfbZ0VsSCg9g1KILmnvzQ"}}}
{"index": {"_index": "restaurants", "_id": "19"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "dc3hkLkAqCSxDWQzrx-g9A"}}}
{"index": {"_index": "restaurants", "_id": "20"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "LkV96_buOU_n0br4SBO57w"}}}
{"index": {"_index": "restaurants", "_id": "21"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "44SY464xDHbvOcjDzRbKkQ"}}}
{"index": {"_index": "restaurants", "_id": "22"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "IOHaEgK1zDvUvB3SfKuGCw"}}}
{"index": {"_index": "restaurants", "_id": "23"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "b8a-8u_A51v2IzyjLVsx6w"}}}
{"index": {"_index": "restaurants", "_id": "24"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "f4QBa0khsF9Ut99Tc9IMIA"}}}
{"index": {"_index": "restaurants", "_id": "25"}}
{"Item": {"Type": {"S": "Indian"}, "BusinessID": {"S": "x0k5kFArHLijdY8-NEQ7Xg"}}}
{"index": {"_index": "restaurants", "_id": "26"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "VoAuIReq_cPUrFwxbWqG_Q"}}}
{"index": {"_index": "restaurants", "_id": "27"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "LQHegfNHe7ylY3bocrFlpg"}}}
{"index": {"_index": "restaurants", "_id": "28"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "nU4XBdvxDABXqZ6CnB8Dig"}}}
{"index": {"_index": "restaurants", "_id": "29"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "fVbUVAiLiGgLA_nxBFxyww"}}}
{"index": {"_index": "restaurants", "_id": "30"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "ETgJqJHV7BW6pIr9Ox74sA"}}}
{"index": {"_index": "restaurants", "_id": "31"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "jjJc_CrkB2HodEinB6cWww"}}}
{"index": {"_index": "restaurants", "_id": "32"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "kB-lmHs7yNwLIlQyp0kMmQ"}}}
{"index": {"_index": "restaurants", "_id": "33"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "pDwhlX9jNBGnjvyGR9jYWQ"}}}
{"index": {"_index": "restaurants", "_id": "34"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "C-8mGN7lt5rIraO5n-15ug"}}}
{"index": {"_index": "restaurants", "_id": "35"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "h8XLhVVPoYPYodZqQOjRMw"}}}
{"index": {"_index": "restaurants", "_id": "36"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "z1OgXX3L9Ipl2mu-Hf4ADw"}}}
{"index": {"_index": "restaurants", "_id": "37"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "j1S3NUrkB3BVT49n_e76NQ"}}}
{"index": {"_index": "restaurants", "_id": "38"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Pr-q47vsmM4aoc2t_Sfk8w"}}}
{"index": {"_index": "restaurants", "_id": "39"}}
{"Item": {"Type": {"S": "Caribbean"}, "BusinessID": {"S": "Er9SlDRdxit2qVHwfg-lsw"}}}
{"index": {"_index": "restaurants", "_id": "40"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "_gzXNKarTxagBp6_PkmQKw"}}}
{"index": {"_index": "restaurants", "_id": "41"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "PBUIaPtgnhmdHE3KHglK-g"}}}
{"index": {"_index": "restaurants", "_id": "42"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "unWoFZeSWa0DK1YMekO_Uw"}}}
{"index": {"_index": "restaurants", "_id": "43"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "pfmAcS-g6SiNG0KlLvrqnA"}}}
{"index": {"_index": "restaurants", "_id": "44"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "cTE0e96GYzet799EJeStoQ"}}}
{"index": {"_index": "restaurants", "_id": "45"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "DoSU8IPq-Py_YV3kYmXPfQ"}}}
{"index": {"_index": "restaurants", "_id": "46"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "-XYp6w50XbZfS90YddS5ew"}}}
{"index": {"_index": "restaurants", "_id": "47"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "XsElXaLxUPKquI78poB8yw"}}}
{"index": {"_index": "restaurants", "_id": "48"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "Xjswj531-FkRZPpcccU6kQ"}}}
{"index": {"_index": "restaurants", "_id": "49"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Xk3BVvlX-KXh6kJhbClMKw"}}}
{"index": {"_index": "restaurants", "_id": "50"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "6lUsFj0KCao678o9L7QwUw"}}}
{"index": {"_index": "restaurants", "_id": "51"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "al9HKZ3kCJipAJW4uxzj4A"}}}
{"index": {"_index": "restaurants", "_id": "52"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "VmdyRRMtUXOWV7F7w0ImwQ"}}}
{"index": {"_index": "restaurants", "_id": "53"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "UA2M9QFZghe-9th2KwLoWQ"}}}
{"index": {"_index": "restaurants", "_id": "54"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "YtXl15Nv7TZvV3yIqbZc8A"}}}
{"index": {"_index": "restaurants", "_id": "55"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "a0IET3_yCFcO36OqGSsisg"}}}
{"index": {"_index": "restaurants", "_id": "56"}}
{"Item": {"Type": {"S": "Chinese"}, "BusinessID": {"S": "pBNMZp_tKCAfRNx7-ybcHQ"}}}
{"index": {"_index": "restaurants", "_id": "57"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "xEnNFXtMLDF5kZDxfaCJgA"}}}
{"index": {"_index": "restaurants", "_id": "58"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "z7H9ApIGopnDnQaglnPTzg"}}}
{"index": {"_index": "restaurants", "_id": "59"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "SxKvgnkMMZdhBJcxxKQnww"}}}
{"index": {"_index": "restaurants", "_id": "60"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "ZOa13veZkzGjA-x3kMfOmA"}}}
{"index": {"_index": "restaurants", "_id": "61"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "oTL_nPII6x0HfPVpEQklUg"}}}
{"index": {"_index": "restaurants", "_id": "62"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "qm1J_dPA5IHij1oAnoZwHw"}}}
{"index": {"_index": "restaurants", "_id": "63"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "fVsH6QIJPzXpVbgmeiolsA"}}}
{"index": {"_index": "restaurants", "_id": "64"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "bVkjBJlAIwKAj9Aw1KVWjA"}}}
{"index": {"_index": "restaurants", "_id": "65"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "xkvv0n7jbl4Ra3Vm_jfxaA"}}}
{"index": {"_index": "restaurants", "_id": "66"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "U5hCNNyJmb7f3dmC1HTzSQ"}}}
{"index": {"_index": "restaurants", "_id": "67"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "NbKATjp2MoQ4TvKKwu9fdA"}}}
{"index": {"_index": "restaurants", "_id": "68"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "FizBsTIAJwNrImIG1mPDcg"}}}
{"index": {"_index": "restaurants", "_id": "69"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "OgM6WwztLVavBQBmb_g5aw"}}}
{"index": {"_index": "restaurants", "_id": "70"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "1LIptXhtDh58vAA-QPFL4w"}}}
{"index": {"_index": "restaurants", "_id": "71"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "7iY35991NhQ1AShJZCNZgA"}}}
{"index": {"_index": "restaurants", "_id": "72"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "WyiTT3VHjzowMnOnUpZ7TQ"}}}
{"index": {"_index": "restaurants", "_id": "73"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "An1_BlhLJDZomxI91SBv7g"}}}
{"index": {"_index": "restaurants", "_id": "74"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "H26qMBb0OFNn2xmSTM1Phw"}}}
{"index": {"_index": "restaurants", "_id": "75"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "7xe5Pd4fvN2vo05FP2XOeg"}}}
{"index": {"_index": "restaurants", "_id": "76"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "PYcL2z9gHj6-ZTlViT9Nqw"}}}
{"index": {"_index": "restaurants", "_id": "77"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "diCW3Pj1PTVRSyol_d7cZw"}}}
{"index": {"_index": "restaurants", "_id": "78"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "oSAiyZF-xTqdRkwN5KrV_Q"}}}
{"index": {"_index": "restaurants", "_id": "79"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "veku2cg2qaV-7MxwhOMBmg"}}}
{"index": {"_index": "restaurants", "_id": "80"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "5CuYWr0-cE01HxlBu5Ka6g"}}}
{"index": {"_index": "restaurants", "_id": "81"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "V7lXZKBDzScDeGB8JmnzSA"}}}
{"index": {"_index": "restaurants", "_id": "82"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "KxyH5zvTyXawl17lHjA4SQ"}}}
{"index": {"_index": "restaurants", "_id": "83"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "f7apP8A_0_KqcGQTK4V2TQ"}}}
{"index": {"_index": "restaurants", "_id": "84"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "jjDsVuD7KbxnYV4jFnyftA"}}}
{"index": {"_index": "restaurants", "_id": "85"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "J9UA6rzI5WW_cDGjwDnF5g"}}}
{"index": {"_index": "restaurants", "_id": "86"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "JLpEKUYAtzBRQwsUL3RPIA"}}}
{"index": {"_index": "restaurants", "_id": "87"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "KcOeFHAojaRDV-DxQJkfPA"}}}
{"index": {"_index": "restaurants", "_id": "88"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "TcuWyuZAORVnQBPCMNbTgw"}}}
{"index": {"_index": "restaurants", "_id": "89"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "KXD44wWmrGf7mzyyr0bikw"}}}
{"index": {"_index": "restaurants", "_id": "90"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "vGS5X12NYXCl8NpynlxRuw"}}}
{"index": {"_index": "restaurants", "_id": "91"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "e5wK3I_THzF4Ce_OgoSCQw"}}}
{"index": {"_index": "restaurants", "_id": "92"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "0IFDnYf3bhqxJR6hVrG7Gw"}}}
{"index": {"_index": "restaurants", "_id": "93"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "CuwHhq1MKX5hm8YyxtqukQ"}}}
{"index": {"_index": "restaurants", "_id": "94"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "dMhRafXdr765DHe0k-QfaQ"}}}
{"index": {"_index": "restaurants", "_id": "95"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "_0WFGjXuenlBixOlbSlGeQ"}}}
{"index": {"_index": "restaurants", "_id": "96"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "8SehQovJOuQDLbtzLLYLyw"}}}
{"index": {"_index": "restaurants", "_id": "97"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "B55Ocx5RBWxo6AGSucYSIA"}}}
{"index": {"_index": "restaurants", "_id": "98"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "FeSynfcDT4qB2kDixHUQCA"}}}
{"index": {"_index": "restaurants", "_id": "99"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "FZpm4_fbd6P984foOUejWg"}}}
{"index": {"_index": "restaurants", "_id": "100"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "oLA02lMIfgvbYquvXzkARw"}}}
{"index": {"_index": "restaurants", "_id": "101"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "zR92VSkXj1rt5KTJ15bkAw"}}}
{"index": {"_index": "restaurants", "_id": "102"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "IjQ2yGUKkvP0JIldT9vRFQ"}}}
{"index": {"_index": "restaurants", "_id": "103"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Cg5kGSXIelsKX9eqlHr31A"}}}
{"index": {"_index": "restaurants", "_id": "104"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "DRitJoNGTkHXZvH_YpLIAw"}}}
{"index": {"_index": "restaurants", "_id": "105"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "7ZecxKox2SiVtsNDWphJZQ"}}}
{"index": {"_index": "restaurants", "_id": "106"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "z0lX40tXQxOHlU26VhLATA"}}}
{"index": {"_index": "restaurants", "_id": "107"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "4Jp0wdJXLpmgCwWv6o6YEQ"}}}
{"index": {"_index": "restaurants", "_id": "108"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "X8yEmEDD9ZTkHoIRFqzcRw"}}}
{"index": {"_index": "restaurants", "_id": "109"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "wx5XkAsviabyZdQma64Fyw"}}}
{"index": {"_index": "restaurants", "_id": "110"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "jc7lVTvmYMIK5RNpENtS6w"}}}
{"index": {"_index": "restaurants", "_id": "111"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "NAlOPUbFQVE0bUu8_wmBLQ"}}}
{"index": {"_index": "restaurants", "_id": "112"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "RqCMsa0IuHWhML0BEjW8_w"}}}
{"index": {"_index": "restaurants", "_id": "113"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "XzUW9MvEGOFs9_aNj11j2Q"}}}
{"index": {"_index": "restaurants", "_id": "114"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "DdoubmNfPNRi9xNmcQ64ug"}}}
{"index": {"_index": "restaurants", "_id": "115"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "Ms1p17KsYteDlkvHnllC2g"}}}
{"index": {"_index": "restaurants", "_id": "116"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "k2sHdf6WeY22pK3hs6mtqA"}}}
{"index": {"_index": "restaurants", "_id": "117"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "MGRo61aHFUeRlWhSbTv2NA"}}}
{"index": {"_index": "restaurants", "_id": "118"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "dS9rQ7SvIGngPE4y2xkSKw"}}}
{"index": {"_index": "restaurants", "_id": "119"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "R7EGjHWw0tNheY6-ahH8fQ"}}}
{"index": {"_index": "restaurants", "_id": "120"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Vc7JEi0Hj6XYfSMFEUMKGg"}}}
{"index": {"_index": "restaurants", "_id": "121"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "7EaiwMVaNdQibSs0yYkE5Q"}}}
{"index": {"_index": "restaurants", "_id": "122"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "hKdvsbuQRtjajWYwjaoOQw"}}}
{"index": {"_index": "restaurants", "_id": "123"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "NlmP5x_Ykznd55Dc85ChUg"}}}
{"index": {"_index": "restaurants", "_id": "124"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "s-b1Mn_Gzkftz2MCjZ3lwg"}}}
{"index": {"_index": "restaurants", "_id": "125"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "Me4TxTbPPQZQopW1wOGx5g"}}}
{"index": {"_index": "restaurants", "_id": "126"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "vscYK65F_MUH8WqACKSdog"}}}
{"index": {"_index": "restaurants", "_id": "127"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Nbqzy3ea5_x2zXWkdWlUIQ"}}}
{"index": {"_index": "restaurants", "_id": "128"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "jnEv25Y2DosTq2sNnvmC9g"}}}
{"index": {"_index": "restaurants", "_id": "129"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "zOmgO8Di9Ui2bQHqSarUKg"}}}
{"index": {"_index": "restaurants", "_id": "130"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "SmLFW1Ncg26KfVRVX3GVFQ"}}}
{"index": {"_index": "restaurants", "_id": "131"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "ieXKc6S3WlEiVkyxgaF9Ig"}}}
{"index": {"_index": "restaurants", "_id": "132"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "__EvomQ2tE1NtkWn32WEXg"}}}
{"index": {"_index": "restaurants", "_id": "133"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "GjEE8vvjqb7eeHA3BGNxAw"}}}
{"index": {"_index": "restaurants", "_id": "134"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "W5RSIwNKBa7k0jeAs5KDYg"}}}
{"index": {"_index": "restaurants", "_id": "135"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "XEugUtbw4rRmGr9S1XA-aQ"}}}
{"index": {"_index": "restaurants", "_id": "136"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "WqjqHMozyW42XLTtLnKGag"}}}
{"index": {"_index": "restaurants", "_id": "137"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "eTR6nfHvQzvKX7Dcd6JrfA"}}}
{"index": {"_index": "restaurants", "_id": "138"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "xTWpl9DgIkkr5B8h8_xUpA"}}}
{"index": {"_index": "restaurants", "_id": "139"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "H4jJ7XB3CetIr1pg56CczQ"}}}
{"index": {"_index": "restaurants", "_id": "140"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "KIIYvTOc0Uv90aUHEGvoSg"}}}
{"index": {"_index": "restaurants", "_id": "141"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "hDgpiXE5_d4Is1sJ5kUBQg"}}}
{"index": {"_index": "restaurants", "_id": "142"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "wyjtGsW5NeVDknGQWnIPAQ"}}}
{"index": {"_index": "restaurants", "_id": "143"}}
{"Item": {"Type": {"S": "Spanish"}, "BusinessID": {"S": "iTj5T_jPYvznd1QTgs7NZw"}}}
{"index": {"_index": "restaurants", "_id": "144"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "r-EDS_eO70HUgDmOk5_8Qw"}}}
{"index": {"_index": "restaurants", "_id": "145"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "eQ4QUGvuHGBzsOrphsVc6A"}}}
{"index": {"_index": "restaurants", "_id": "146"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "Au1AcsukhrbUfn6oit8tZw"}}}
{"index": {"_index": "restaurants", "_id": "147"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "9o4y3IqpFDaj8FddJ6oi2A"}}}
{"index": {"_index": "restaurants", "_id": "148"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Jyf4SNiBoU11dp28cGBoqA"}}}
{"index": {"_index": "restaurants", "_id": "149"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "MOwB9YYd-Ko6nVgSB-ltQw"}}}
{"index": {"_index": "restaurants", "_id": "150"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "mIbmzqQ473BUF8cngXXs_Q"}}}
{"index": {"_index": "restaurants", "_id": "151"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "I6optu9x0JAf8oT5lqJ8qw"}}}
{"index": {"_index": "restaurants", "_id": "152"}}
{"Item": {"Type": {"S": "Chinese"}, "BusinessID": {"S": "0vg2Z-HPwkyVVX613j2ysg"}}}
{"index": {"_index": "restaurants", "_id": "153"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "mi3r8tPY-nHGfsl-9BGmBw"}}}
{"index": {"_index": "restaurants", "_id": "154"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "VuR3lhMA80aH42jrBM_C8A"}}}
{"index": {"_index": "restaurants", "_id": "155"}}
{"Item": {"Type": {"S": "Greek"}, "BusinessID": {"S": "H87m0azdhuw5uo6Y166uUg"}}}
{"index": {"_index": "restaurants", "_id": "156"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "CfWe636m2CAUg4FAdl_zVQ"}}}
{"index": {"_index": "restaurants", "_id": "157"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "PqqnNrUtU7XTKQvUM4cyqQ"}}}
{"index": {"_index": "restaurants", "_id": "158"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "WHRHK3S1mQc3PmhwsGRvbw"}}}
{"index": {"_index": "restaurants", "_id": "159"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "ikb5lhHmb2xndNZM-jr_Mw"}}}
{"index": {"_index": "restaurants", "_id": "160"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "g5f6p9jfzB30Mhcu6d5OWA"}}}
{"index": {"_index": "restaurants", "_id": "161"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "Zp-K3ztVTzR-LrWwl_CBgA"}}}
{"index": {"_index": "restaurants", "_id": "162"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "KEEXuHCYhsQJ-zpJhu98bA"}}}
{"index": {"_index": "restaurants", "_id": "163"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "W4hobe10Fy54MKqmLaObEg"}}}
{"index": {"_index": "restaurants", "_id": "164"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Z65cd3Z7JvwK8TnSVg-cfA"}}}
{"index": {"_index": "restaurants", "_id": "165"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "rZIMlQ76I0mXL8uNii_wVg"}}}
{"index": {"_index": "restaurants", "_id": "166"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "Ve6GVzzJpR5QIIPdcn6ViQ"}}}
{"index": {"_index": "restaurants", "_id": "167"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "l7G5tDA96xbA_bx1ZgkOeg"}}}
{"index": {"_index": "restaurants", "_id": "168"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "0ASfmKBIeJlTO6IzES6rzw"}}}
{"index": {"_index": "restaurants", "_id": "169"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "F0MuzanyO6YEen8VtP5LOg"}}}
{"index": {"_index": "restaurants", "_id": "170"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "icpLRhJ1jpBX1zBGkt7Xqg"}}}
{"index": {"_index": "restaurants", "_id": "171"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "jNRT5vY1Hvp5WDTaHy4Mhw"}}}
{"index": {"_index": "restaurants", "_id": "172"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "OqNmzS2N2I750zYgUC6IgA"}}}
{"index": {"_index": "restaurants", "_id": "173"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "kctef59qqlzJNqAc1ZGEvg"}}}
{"index": {"_index": "restaurants", "_id": "174"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "V3USzFEGhuoXez4G2Rk11A"}}}
{"index": {"_index": "restaurants", "_id": "175"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "ogCC-lJJYnwXDvKGmKZ6Sw"}}}
{"index": {"_index": "restaurants", "_id": "176"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "VrCCr45dhN-RRM107iptdg"}}}
{"index": {"_index": "restaurants", "_id": "177"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "7Bb_IDWV_zJqpBjAvxuBIA"}}}
{"index": {"_index": "restaurants", "_id": "178"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "OD4um1mrqmeInzIDNNsF9g"}}}
{"index": {"_index": "restaurants", "_id": "179"}}
{"Item": {"Type": {"S": "Chinese"}, "BusinessID": {"S": "SMrj71bWo1lomSbU8wXgyw"}}}
{"index": {"_index": "restaurants", "_id": "180"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "vRqj40pRwz0OHHRVgOdgRg"}}}
{"index": {"_index": "restaurants", "_id": "181"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "CsdS-L70jLn-exz34j8h5Q"}}}
{"index": {"_index": "restaurants", "_id": "182"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "V-FCEicobl5Su-R7EVJQNA"}}}
{"index": {"_index": "restaurants", "_id": "183"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "MhceeLrM2_3mcKw5EGLY6A"}}}
{"index": {"_index": "restaurants", "_id": "184"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "5F9kZPnAleDYqCeCyvGJPA"}}}
{"index": {"_index": "restaurants", "_id": "185"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "K9_vumaLO80LXgoPNJJvRQ"}}}
{"index": {"_index": "restaurants", "_id": "186"}}
{"Item": {"Type": {"S": "Vietnamese"}, "BusinessID": {"S": "m2Zsy2UAkcDf0cRzk2Yoqw"}}}
{"index": {"_index": "restaurants", "_id": "187"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "CqQ2Og9kf-LhlUWtODalCQ"}}}
{"index": {"_index": "restaurants", "_id": "188"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "JION8hhg7q6zyayHYwhxIw"}}}
{"index": {"_index": "restaurants", "_id": "189"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "26emJlm1YMFyOCezfgVk4g"}}}
{"index": {"_index": "restaurants", "_id": "190"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "7cjT33LfYSk7vrRdEaSr4w"}}}
{"index": {"_index": "restaurants", "_id": "191"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "KoGN70ndDHkJmMXiDCBS3A"}}}
{"index": {"_index": "restaurants", "_id": "192"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "LXdblKc5g1Dp17xiV-Am1w"}}}
{"index": {"_index": "restaurants", "_id": "193"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "wfhMIiMh2A2psCGONOVSlg"}}}
{"index": {"_index": "restaurants", "_id": "194"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "tRIHhPKryUZ56SfIz6mLiA"}}}
{"index": {"_index": "restaurants", "_id": "195"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "6Ct7OeTRn4caY9g0swFBsw"}}}
{"index": {"_index": "restaurants", "_id": "196"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "pk89jzL1RsE9U0thf_z6tw"}}}
{"index": {"_index": "restaurants", "_id": "197"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "DeiVNRCo4kw5XUsHbXFkUg"}}}
{"index": {"_index": "restaurants", "_id": "198"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "T-ciFE0hc6O2JDY8Y1cDgg"}}}
{"index": {"_index": "restaurants", "_id": "199"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "zTK8reqKrmV7U71YVHYYjg"}}}
{"index": {"_index": "restaurants", "_id": "200"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "faukkggAc_tuJ4THYlf4fg"}}}
{"index": {"_index": "restaurants", "_id": "201"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "csVEpHy5KJoFvM1qp5XwLQ"}}}
{"index": {"_index": "restaurants", "_id": "202"}}
{"Item": {"Type": {"S": "Cajun/Creole"}, "BusinessID": {"S": "3xTQT7qjZJIxc-eBiFMerQ"}}}
{"index": {"_index": "restaurants", "_id": "203"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "gXnC_aZR09BvqEQKGKFjBg"}}}
{"index": {"_index": "restaurants", "_id": "204"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "AT12PEBFRWFox6l2tr7w4w"}}}
{"index": {"_index": "restaurants", "_id": "205"}}
{"Item": {"Type": {"S": "Greek"}, "BusinessID": {"S": "wtfEOjfOWVuugf-SuCC5yA"}}}
{"index": {"_index": "restaurants", "_id": "206"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "0BzxIsoRuFvxbMPl-iH70A"}}}
{"index": {"_index": "restaurants", "_id": "207"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "MaoCNdHni6MLjM9iYQqHcg"}}}
{"index": {"_index": "restaurants", "_id": "208"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Xu8H24NxJJxEE-9wGp_AMA"}}}
{"index": {"_index": "restaurants", "_id": "209"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "ZjU9qd-RR55cEEKufmdN5Q"}}}
{"index": {"_index": "restaurants", "_id": "210"}}
{"Item": {"Type": {"S": "Spanish"}, "BusinessID": {"S": "AIKjw2QLvVNdha3TciJYzg"}}}
{"index": {"_index": "restaurants", "_id": "211"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "K_nsaXmlsyg0I8PoIjPXrA"}}}
{"index": {"_index": "restaurants", "_id": "212"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "EDucGBSfQ0YIbxdHS-KnCg"}}}
{"index": {"_index": "restaurants", "_id": "213"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "LT0yyLNM84EiJj9DL0rfHA"}}}
{"index": {"_index": "restaurants", "_id": "214"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "CcxreLJbZsO6Z775-hMWpw"}}}
{"index": {"_index": "restaurants", "_id": "215"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "T-RXDLq_VEv7s1_SooYIYQ"}}}
{"index": {"_index": "restaurants", "_id": "216"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "210LxcDl5dXlYOMlIUmEFQ"}}}
{"index": {"_index": "restaurants", "_id": "217"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "eoz2NahxyivVRs8Ll9Ljjg"}}}
{"index": {"_index": "restaurants", "_id": "218"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "y6XohzcYjUAQOD8U3NT_yw"}}}
{"index": {"_index": "restaurants", "_id": "219"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "yB4ziqFM_7V8JxJas7CHfA"}}}
{"index": {"_index": "restaurants", "_id": "220"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "ga6sRtE0l85iftw_5-W84Q"}}}
{"index": {"_index": "restaurants", "_id": "221"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "GuzlMBKNoClNx5I1-x-DDg"}}}
{"index": {"_index": "restaurants", "_id": "222"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "s5N-w7EPY3DA68id5qycyA"}}}
{"index": {"_index": "restaurants", "_id": "223"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "qhyll2gPT-gGDRP6JGn1aQ"}}}
{"index": {"_index": "restaurants", "_id": "224"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "PnGSE8JGbMZKtdHi9go7Kg"}}}
{"index": {"_index": "restaurants", "_id": "225"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "BxNs9d8rEW3Tls-nVdmIgA"}}}
{"index": {"_index": "restaurants", "_id": "226"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "rCtsqHtOAOjZ7EUQDFRSbA"}}}
{"index": {"_index": "restaurants", "_id": "227"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "NOh24SMS6k4pzNv8Ds7KDg"}}}
{"index": {"_index": "restaurants", "_id": "228"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "9b_FvTUgkkUUMyL0nGhFtg"}}}
{"index": {"_index": "restaurants", "_id": "229"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "LF1QAuvpfX7KGQlg2zMg6Q"}}}
{"index": {"_index": "restaurants", "_id": "230"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "-J8VuX3wGrYSOBu2G0hMsw"}}}
{"index": {"_index": "restaurants", "_id": "231"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "2VpurA2lb-q90nmALklNcA"}}}
{"index": {"_index": "restaurants", "_id": "232"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "EbX_9tqAJs4gW51gZpOB7g"}}}
{"index": {"_index": "restaurants", "_id": "233"}}
{"Item": {"Type": {"S": "Greek"}, "BusinessID": {"S": "6gDUVNZo0E9lxO2DkAhHOQ"}}}
{"index": {"_index": "restaurants", "_id": "234"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "1raNn0l3I4H9PcAJce69Sw"}}}
{"index": {"_index": "restaurants", "_id": "235"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "4Objcs7HXSGuzpb0SOa-Jw"}}}
{"index": {"_index": "restaurants", "_id": "236"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "RYKGs45OjF-vlb2Ds2Jb_g"}}}
{"index": {"_index": "restaurants", "_id": "237"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "4x_WyIOEdqxk01QH1HxYrw"}}}
{"index": {"_index": "restaurants", "_id": "238"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "QObHX0yR6zd0WfksRDbJTA"}}}
{"index": {"_index": "restaurants", "_id": "239"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "ryng69yOCoveA68KE6jl-Q"}}}
{"index": {"_index": "restaurants", "_id": "240"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "zv29TbzPs9-rD5ql0qWw5A"}}}
{"index": {"_index": "restaurants", "_id": "241"}}
{"Item": {"Type": {"S": "Indian"}, "BusinessID": {"S": "jYhbUh1TV7SCfPxjIhVpcg"}}}
{"index": {"_index": "restaurants", "_id": "242"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "4KzqwQus39gXgrwrDXAjWA"}}}
{"index": {"_index": "restaurants", "_id": "243"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "DPDznXYX5DBLBASKfxQ-DQ"}}}
{"index": {"_index": "restaurants", "_id": "244"}}
{"Item": {"Type": {"S": "Brazilian"}, "BusinessID": {"S": "VnjcxOUuZAeJMiDIU-7hUQ"}}}
{"index": {"_index": "restaurants", "_id": "245"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "QeqhV5xVRCD15ivQiPc2MQ"}}}
{"index": {"_index": "restaurants", "_id": "246"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "Gc7OVEIs4HodL4hw9U3C3w"}}}
{"index": {"_index": "restaurants", "_id": "247"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "ssGhu4n3emZ9kEPVf371IQ"}}}
{"index": {"_index": "restaurants", "_id": "248"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "a0AvIH1UnFmqAXhZDEQtrw"}}}
{"index": {"_index": "restaurants", "_id": "249"}}
{"Item": {"Type": {"S": "Spanish"}, "BusinessID": {"S": "8PhwiTru5teSaZ8C6hrIww"}}}
{"index": {"_index": "restaurants", "_id": "250"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "JNkK9xp-hTWxsLrboPWC3Q"}}}
{"index": {"_index": "restaurants", "_id": "251"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "mVN2G1c5bRtAsNlr2Tbx6Q"}}}
{"index": {"_index": "restaurants", "_id": "252"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "jnHbdsqlTKlPcmJ8BCP9-g"}}}
{"index": {"_index": "restaurants", "_id": "253"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "h4VCnZ2aZ33mdenS_ZI7jQ"}}}
{"index": {"_index": "restaurants", "_id": "254"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "TGP5gbAgml0IDRLGCpFnCw"}}}
{"index": {"_index": "restaurants", "_id": "255"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "L3L6xDdrS8c67BLZROg79A"}}}
{"index": {"_index": "restaurants", "_id": "256"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "8bIXIStb1SVu1sXYfcMH5g"}}}
{"index": {"_index": "restaurants", "_id": "257"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "oB2cpcZNyjDklNqZN0n8hg"}}}
{"index": {"_index": "restaurants", "_id": "258"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "LnMRZhKtOrW1eL04FiPYTg"}}}
{"index": {"_index": "restaurants", "_id": "259"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "j0Q-yyxS2WiL3foCJEV4eg"}}}
{"index": {"_index": "restaurants", "_id": "260"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "6eqrk1wCQMww_ejze5gvsg"}}}
{"index": {"_index": "restaurants", "_id": "261"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "_IkMfWpOkQXRZtJAYJUJIw"}}}
{"index": {"_index": "restaurants", "_id": "262"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "Wx6lMnEh7dCmX-9PQF1Ifw"}}}
{"index": {"_index": "restaurants", "_id": "263"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "6hKJePanmG9AxK4dfwgyyg"}}}
{"index": {"_index": "restaurants", "_id": "264"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "8Oo2AtQEPDfxIOnA8wfXoQ"}}}
{"index": {"_index": "restaurants", "_id": "265"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "orYWYTk6kNK1YODsADk_tg"}}}
{"index": {"_index": "restaurants", "_id": "266"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "2wQsfQkorp9L03vPEFAZJw"}}}
{"index": {"_index": "restaurants", "_id": "267"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "Tp3MF3DNXuW41A10PQ2nFw"}}}
{"index": {"_index": "restaurants", "_id": "268"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "432F7ulSgnm1fNyefqgrNw"}}}
{"index": {"_index": "restaurants", "_id": "269"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "R-biStUvl2zuhIQFk40GsQ"}}}
{"index": {"_index": "restaurants", "_id": "270"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "9HD5HQiTkURkx5i7hL92EA"}}}
{"index": {"_index": "restaurants", "_id": "271"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "m9zYRZFubncaWsQFIfNo5g"}}}
{"index": {"_index": "restaurants", "_id": "272"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "iPc-zPgcpgeSo76xl5Jbpw"}}}
{"index": {"_index": "restaurants", "_id": "273"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "zuB6VRXwj3QzTh9x-nQIRQ"}}}
{"index": {"_index": "restaurants", "_id": "274"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "c3D2ckzacnPtdGIM8tb-_w"}}}
{"index": {"_index": "restaurants", "_id": "275"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "HpxYBu1ARzOGvuUcLJe54g"}}}
{"index": {"_index": "restaurants", "_id": "276"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "FaR-Kv-0ZzgcqFW1sCnacw"}}}
{"index": {"_index": "restaurants", "_id": "277"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "owYYuyLvlsdjLz68c3SSfg"}}}
{"index": {"_index": "restaurants", "_id": "278"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "js7pXIr0lGoTd_6HPMPckg"}}}
{"index": {"_index": "restaurants", "_id": "279"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "KEBKGGGkDhnuYdKrjzZblw"}}}
{"index": {"_index": "restaurants", "_id": "280"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "fqHACybQl1vlATXaIwnLqQ"}}}
{"index": {"_index": "restaurants", "_id": "281"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "pNe8ZCkGTe4cXfKdOF7kYQ"}}}
{"index": {"_index": "restaurants", "_id": "282"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "uYLIo8FCr9Ug5SFORDdsPA"}}}
{"index": {"_index": "restaurants", "_id": "283"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "j3HLOkrjzBjcvYPiIHua1A"}}}
{"index": {"_index": "restaurants", "_id": "284"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "q0hMNf-YhfDMFQyUQdsIJg"}}}
{"index": {"_index": "restaurants", "_id": "285"}}
{"Item": {"Type": {"S": "Spanish"}, "BusinessID": {"S": "qIOAlXCCYrwN0VxEEH-Tmw"}}}
{"index": {"_index": "restaurants", "_id": "286"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "mTWlEiCUEBlxBAkIikkB1A"}}}
{"index": {"_index": "restaurants", "_id": "287"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "VMugGjWqmOfCXnYv_7aFWw"}}}
{"index": {"_index": "restaurants", "_id": "288"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "egDEaHpDumYHzRUZ8JBU-w"}}}
{"index": {"_index": "restaurants", "_id": "289"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "XAltgdIxnXF3iaNgWhb5ZA"}}}
{"index": {"_index": "restaurants", "_id": "290"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "0y6eQXDw2RDLuBwkY02xGA"}}}
{"index": {"_index": "restaurants", "_id": "291"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "6YehBdKHcLDsvaewhcEjFQ"}}}
{"index": {"_index": "restaurants", "_id": "292"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "kjItczuC-FQa-nECT9VF8A"}}}
{"index": {"_index": "restaurants", "_id": "293"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "8tcFpd0dcmfzbLgbTO4tdw"}}}
{"index": {"_index": "restaurants", "_id": "294"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "rKeLuHDI3PQZsPSVCEMHtw"}}}
{"index": {"_index": "restaurants", "_id": "295"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "vk7W3_sQwr7eZbRFsXv6rw"}}}
{"index": {"_index": "restaurants", "_id": "296"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "pC_QwLpeL2Enk4hBgDcRqQ"}}}
{"index": {"_index": "restaurants", "_id": "297"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "_F29-1dkiBmDPSaKQ9_O0Q"}}}
{"index": {"_index": "restaurants", "_id": "298"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "9bAyxRD6RsGEUQw424ovQA"}}}
{"index": {"_index": "restaurants", "_id": "299"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "MoyxzhaYIsJx-p9IuGGK4w"}}}
{"index": {"_index": "restaurants", "_id": "300"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "xGNzAsakHgbbl9fwgSoiUg"}}}
{"index": {"_index": "restaurants", "_id": "301"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "ojbH3wnRu050hRhkmoxRiA"}}}
{"index": {"_index": "restaurants", "_id": "302"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "RemvTpxalDjSew5HwmNzUQ"}}}
{"index": {"_index": "restaurants", "_id": "303"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "bTyyPU8A4pz9dieLSZPMdA"}}}
{"index": {"_index": "restaurants", "_id": "304"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "nBy8KtcUHktPFKw-VClG1A"}}}
{"index": {"_index": "restaurants", "_id": "305"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "BKMCAYb9EAivUm3p-vrC9w"}}}
{"index": {"_index": "restaurants", "_id": "306"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "rFeNJtqgMWf2tWy-RB6jgg"}}}
{"index": {"_index": "restaurants", "_id": "307"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "FJepPR5CYRggxRwAjlqg6A"}}}
{"index": {"_index": "restaurants", "_id": "308"}}
{"Item": {"Type": {"S": "Indian"}, "BusinessID": {"S": "t6PzD4uzBOfyCLcd_lT8cQ"}}}
{"index": {"_index": "restaurants", "_id": "309"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "i6CpYdmMYoz712bRWTWVgQ"}}}
{"index": {"_index": "restaurants", "_id": "310"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "dEbI8l8o9mevbRdjANzsng"}}}
{"index": {"_index": "restaurants", "_id": "311"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "kz9YaFCE1sGJ4CpLDKBIjQ"}}}
{"index": {"_index": "restaurants", "_id": "312"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "-lgNzAEyFr8LCTuBTWnAMg"}}}
{"index": {"_index": "restaurants", "_id": "313"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "6Z5OWpaeGGazJHR4LfThsw"}}}
{"index": {"_index": "restaurants", "_id": "314"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "j8cKSxr6aQ8qTx23FLyyiA"}}}
{"index": {"_index": "restaurants", "_id": "315"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "4TQMO6AaKSXHMbKvGAf-gg"}}}
{"index": {"_index": "restaurants", "_id": "316"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "qBGKigOGn_flCx1apxPzlA"}}}
{"index": {"_index": "restaurants", "_id": "317"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "fgtw4swOHXEFwZpBCG05rQ"}}}
{"index": {"_index": "restaurants", "_id": "318"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "NZaq_ygLr4N8-blY5dGx-g"}}}
{"index": {"_index": "restaurants", "_id": "319"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "lEH8EUPX3Zn_trHauIycYw"}}}
{"index": {"_index": "restaurants", "_id": "320"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "nD7Hcq5aaCASbWzc0-Sg3A"}}}
{"index": {"_index": "restaurants", "_id": "321"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "lWOkeS-wV4no8qqA9OwwEg"}}}
{"index": {"_index": "restaurants", "_id": "322"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "yGpPYyu3s8iVNuO0ktqsDw"}}}
{"index": {"_index": "restaurants", "_id": "323"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "ynR4-QgEOsE7VhNfIWo73w"}}}
{"index": {"_index": "restaurants", "_id": "324"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "NTwOc9yQ1xl5deeVzZqxfw"}}}
{"index": {"_index": "restaurants", "_id": "325"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "sBL7J7s4Rnul40-MB0hXbA"}}}
{"index": {"_index": "restaurants", "_id": "326"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "pZWhRtCJvTuwWoavaiCQrA"}}}
{"index": {"_index": "restaurants", "_id": "327"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "_FAh31lob7Dnn4iGiLIwng"}}}
{"index": {"_index": "restaurants", "_id": "328"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "4hukJNoy9F2ILYJZWl4Xlw"}}}
{"index": {"_index": "restaurants", "_id": "329"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "P2CTp4xyaNCe2AXSiLeOSQ"}}}
{"index": {"_index": "restaurants", "_id": "330"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "-Exv1AEsaKU6Cdb2TO_ZUg"}}}
{"index": {"_index": "restaurants", "_id": "331"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "oczaVdQ3NRSKJpNo-4undg"}}}
{"index": {"_index": "restaurants", "_id": "332"}}
{"Item": {"Type": {"S": "Indian"}, "BusinessID": {"S": "9pMhRYYgV7E9L7pzECtJKA"}}}
{"index": {"_index": "restaurants", "_id": "333"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "LF2_slTY37P0Ua8vI4Hr5g"}}}
{"index": {"_index": "restaurants", "_id": "334"}}
{"Item": {"Type": {"S": "Greek"}, "BusinessID": {"S": "PHSsvGDW6Rh2pGWEDTrDew"}}}
{"index": {"_index": "restaurants", "_id": "335"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "7NqFIuXuRwm6WuuseLxAVw"}}}
{"index": {"_index": "restaurants", "_id": "336"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "BNaveJmi-OUGKG9sRfrIhA"}}}
{"index": {"_index": "restaurants", "_id": "337"}}
{"Item": {"Type": {"S": "Greek"}, "BusinessID": {"S": "GeoR6dpTUEpdIoyAd68Irg"}}}
{"index": {"_index": "restaurants", "_id": "338"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "wTQYOTh9_JPI2I8s6Xc-Cw"}}}
{"index": {"_index": "restaurants", "_id": "339"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "rpVX-o82EEOX8ZDnM28a_Q"}}}
{"index": {"_index": "restaurants", "_id": "340"}}
{"Item": {"Type": {"S": "Turkish"}, "BusinessID": {"S": "7gZGVdqMch7ls0IGO3DijQ"}}}
{"index": {"_index": "restaurants", "_id": "341"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "fwH7iD4-xY2ABrlZznP8CA"}}}
{"index": {"_index": "restaurants", "_id": "342"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "YE4pvo8ectzEaRYGqUgFcA"}}}
{"index": {"_index": "restaurants", "_id": "343"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "uc5qQMzs96rzjK27epDCug"}}}
{"index": {"_index": "restaurants", "_id": "344"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "-8_vEcBA2Lqd8786S-Ss-g"}}}
{"index": {"_index": "restaurants", "_id": "345"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "JwCnSW-RQ7_DxvbzWNO1hA"}}}
{"index": {"_index": "restaurants", "_id": "346"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "OLSSJIp8pu5UlugTF7tuHA"}}}
{"index": {"_index": "restaurants", "_id": "347"}}
{"Item": {"Type": {"S": "Chinese"}, "BusinessID": {"S": "H1jops1lmuhrq9lP7lEGJQ"}}}
{"index": {"_index": "restaurants", "_id": "348"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "QPEzLkO35OTYijFhs8d7-w"}}}
{"index": {"_index": "restaurants", "_id": "349"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "IiIzeFqe4tJiHaAWyw7ddg"}}}
{"index": {"_index": "restaurants", "_id": "350"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "9mWw-sK4RjSPYRHQN_S9ZQ"}}}
{"index": {"_index": "restaurants", "_id": "351"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "OFFSpIPqvwOnwdcEq8usvw"}}}
{"index": {"_index": "restaurants", "_id": "352"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "OFc7aHP1chwqXTgtYtbJzQ"}}}
{"index": {"_index": "restaurants", "_id": "353"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "m6sYBuozGY1JhnHlBf1Bzg"}}}
{"index": {"_index": "restaurants", "_id": "354"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "HD0e3eHwv573qHZOJJitWg"}}}
{"index": {"_index": "restaurants", "_id": "355"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "iexl39DYyy_76Xq3ExaJkQ"}}}
{"index": {"_index": "restaurants", "_id": "356"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "8YWLuLUKj0t_0_Xv06UUtw"}}}
{"index": {"_index": "restaurants", "_id": "357"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "PjjpgjY_sdawJU1JHbyNTQ"}}}
{"index": {"_index": "restaurants", "_id": "358"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "ExvoimQ4LzY3UWtZ6m6Lgw"}}}
{"index": {"_index": "restaurants", "_id": "359"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "kJExyhre8kocF5gI9y4IDA"}}}
{"index": {"_index": "restaurants", "_id": "360"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "VtJd1l64kqUUyWacwK0J2Q"}}}
{"index": {"_index": "restaurants", "_id": "361"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "vLsTPg42rkgN5rUpNfg1OA"}}}
{"index": {"_index": "restaurants", "_id": "362"}}
{"Item": {"Type": {"S": "Greek"}, "BusinessID": {"S": "7xV4gzrgaOgQYtPC3FBZig"}}}
{"index": {"_index": "restaurants", "_id": "363"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "aTFkjo0scqmOgsFF5kuGXg"}}}
{"index": {"_index": "restaurants", "_id": "364"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "DW5SL9RM-kJnmRyYo4oEqg"}}}
{"index": {"_index": "restaurants", "_id": "365"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "DJSLGbSqCJ1W8ma3LFlMuw"}}}
{"index": {"_index": "restaurants", "_id": "366"}}
{"Item": {"Type": {"S": "Indian"}, "BusinessID": {"S": "z2VXX7wGl8XZ6_oo9W3koA"}}}
{"index": {"_index": "restaurants", "_id": "367"}}
{"Item": {"Type": {"S": "Russian"}, "BusinessID": {"S": "yKOTFgZmTFeas8Pvt077vA"}}}
{"index": {"_index": "restaurants", "_id": "368"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "AZSC48kTDCRU1CqxdE04Kg"}}}
{"index": {"_index": "restaurants", "_id": "369"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "MTtqSunPEZwdCJFMHsiHzg"}}}
{"index": {"_index": "restaurants", "_id": "370"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "WVsPyl-DGRu0O_rQYdIMVQ"}}}
{"index": {"_index": "restaurants", "_id": "371"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "iEUXrUUqGfUhpgYYSr5Zig"}}}
{"index": {"_index": "restaurants", "_id": "372"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "RXCCofQw1EjTcSN0ZeXfRA"}}}
{"index": {"_index": "restaurants", "_id": "373"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "ZamvzoxEKiJEboO0ZUdogw"}}}
{"index": {"_index": "restaurants", "_id": "374"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "iQo5aJwTL_ZrXCdPFKq-RA"}}}
{"index": {"_index": "restaurants", "_id": "375"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "Jwb556DrGTEZryeV7XgZmQ"}}}
{"index": {"_index": "restaurants", "_id": "376"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "MJJi_5tGkWYI1VReTjhCCA"}}}
{"index": {"_index": "restaurants", "_id": "377"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "K144ThGmoIjX6Wh5-_Rn4Q"}}}
{"index": {"_index": "restaurants", "_id": "378"}}
{"Item": {"Type": {"S": "Chinese"}, "BusinessID": {"S": "lynQoI3w_pzYfHGeuUU-Qg"}}}
{"index": {"_index": "restaurants", "_id": "379"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "eGfpa9r0aGtN3V8ZwgaOEw"}}}
{"index": {"_index": "restaurants", "_id": "380"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "WYhRkUATHRyXZrE55MArbA"}}}
{"index": {"_index": "restaurants", "_id": "381"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "xzN2k19JXDYjOWAhNw62aw"}}}
{"index": {"_index": "restaurants", "_id": "382"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "CVxz9B5ncpMwVK1bk_c1YA"}}}
{"index": {"_index": "restaurants", "_id": "383"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "i8ejDDR4COtukAAA1Ls5fw"}}}
{"index": {"_index": "restaurants", "_id": "384"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "iUEvASoukxI6vrCYWYyK8g"}}}
{"index": {"_index": "restaurants", "_id": "385"}}
{"Item": {"Type": {"S": "Turkish"}, "BusinessID": {"S": "ugYhnKrr3Q1TVV15R0EEWQ"}}}
{"index": {"_index": "restaurants", "_id": "386"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "zUv1BNm_a9-3DkxrCG3tng"}}}
{"index": {"_index": "restaurants", "_id": "387"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "sBCJYLPNJuagg-aJ3Y_ozQ"}}}
{"index": {"_index": "restaurants", "_id": "388"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "77llOAEwInvK-oC2AHZ4nQ"}}}
{"index": {"_index": "restaurants", "_id": "389"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "NT2mKx3_kxO9tpjeP2Sv6Q"}}}
{"index": {"_index": "restaurants", "_id": "390"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "0ksKKrgHt-6xCCHfTlLcoA"}}}
{"index": {"_index": "restaurants", "_id": "391"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "StF9WWWbrRzEOmNAcEINcA"}}}
{"index": {"_index": "restaurants", "_id": "392"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "U0deo-JRQmHrru0uSf6QWA"}}}
{"index": {"_index": "restaurants", "_id": "393"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "4WDHrSodF1Xidv9ezS6Sgg"}}}
{"index": {"_index": "restaurants", "_id": "394"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "xrKa2SpgWzPEEbji3Iw2DQ"}}}
{"index": {"_index": "restaurants", "_id": "395"}}
{"Item": {"Type": {"S": "Chinese"}, "BusinessID": {"S": "2J3--ZI6CcoYLWSYYVdt7Q"}}}
{"index": {"_index": "restaurants", "_id": "396"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "BgGz5IdV53bGb4o7opR5zg"}}}
{"index": {"_index": "restaurants", "_id": "397"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "fanlKZzN-fI9LywqQD6EHg"}}}
{"index": {"_index": "restaurants", "_id": "398"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "WZynqsGjqQLc_T8R80_-7g"}}}
{"index": {"_index": "restaurants", "_id": "399"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "lSKEPxxTYxCN9oi6CXRmcQ"}}}
{"index": {"_index": "restaurants", "_id": "400"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "kaSd6qzlsxn__ILDtGf3iA"}}}
{"index": {"_index": "restaurants", "_id": "401"}}
{"Item": {"Type": {"S": "Spanish"}, "BusinessID": {"S": "DiHm4iIAQhqMKfjsrBPvZw"}}}
{"index": {"_index": "restaurants", "_id": "402"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "abNHO9-xlCsv31gghCUuxw"}}}
{"index": {"_index": "restaurants", "_id": "403"}}
{"Item": {"Type": {"S": "Vietnamese"}, "BusinessID": {"S": "McU7XI3HoWFELTDaGc1SEw"}}}
{"index": {"_index": "restaurants", "_id": "404"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "croh2zWlbPyCQTNS11klcg"}}}
{"index": {"_index": "restaurants", "_id": "405"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "7bD22UAtH56ikWYslOSIQg"}}}
{"index": {"_index": "restaurants", "_id": "406"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "xEF3Kvd0yw74pjnlFB2Sgg"}}}
{"index": {"_index": "restaurants", "_id": "407"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "mXN9tmuDHZIfCeUBYqSRuQ"}}}
{"index": {"_index": "restaurants", "_id": "408"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "nMWqlWid2YfDeutioit_0w"}}}
{"index": {"_index": "restaurants", "_id": "409"}}
{"Item": {"Type": {"S": "Indian"}, "BusinessID": {"S": "jf3JRaxUYU93x8LFU-8gkA"}}}
{"index": {"_index": "restaurants", "_id": "410"}}
{"Item": {"Type": {"S": "Chinese"}, "BusinessID": {"S": "A-ert0jDRBfku9ogyW_mEg"}}}
{"index": {"_index": "restaurants", "_id": "411"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "GKspSLe5U3qkUgQTXfngyQ"}}}
{"index": {"_index": "restaurants", "_id": "412"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "JSexQM-wn8HvWmfxu_m5ZA"}}}
{"index": {"_index": "restaurants", "_id": "413"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "ePqKbqXFBCbwBaWiN2Jo9w"}}}
{"index": {"_index": "restaurants", "_id": "414"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "xiwnLiNhSlEN4CDcurqsLQ"}}}
{"index": {"_index": "restaurants", "_id": "415"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "OtsLOJ4LbAHQ5UzYZBv58Q"}}}
{"index": {"_index": "restaurants", "_id": "416"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "SPyN19tjQyRTD-ltN0qNJw"}}}
{"index": {"_index": "restaurants", "_id": "417"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "bvc5P9vmRiNhyVWjd5bVcg"}}}
{"index": {"_index": "restaurants", "_id": "418"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "xrnk8mgoV7up6fauVmugpw"}}}
{"index": {"_index": "restaurants", "_id": "419"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "oyxtaqfFZkP_vC0M6GfkbA"}}}
{"index": {"_index": "restaurants", "_id": "420"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "a-Bq_yXFVk2PptoWpmry3w"}}}
{"index": {"_index": "restaurants", "_id": "421"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "gZz9A8k8ORC_xl0aHxtY4w"}}}
{"index": {"_index": "restaurants", "_id": "422"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Bb0h5Rs8ugSM2CjulRhfBw"}}}
{"index": {"_index": "restaurants", "_id": "423"}}
{"Item": {"Type": {"S": "Turkish"}, "BusinessID": {"S": "vx2JV9juVzSBRGWHOZCTAQ"}}}
{"index": {"_index": "restaurants", "_id": "424"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "YSflX6shqcP3zYno0Zz75Q"}}}
{"index": {"_index": "restaurants", "_id": "425"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "32VbG_XgkZIuye0PV-BxaA"}}}
{"index": {"_index": "restaurants", "_id": "426"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "ct58a_D8Z8DoJt7luB50wQ"}}}
{"index": {"_index": "restaurants", "_id": "427"}}
{"Item": {"Type": {"S": "Irish"}, "BusinessID": {"S": "Hp1ZDTeJOP1NrY2aFtROgQ"}}}
{"index": {"_index": "restaurants", "_id": "428"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "d79AROdlfw0Zzj5nRpUIxw"}}}
{"index": {"_index": "restaurants", "_id": "429"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "Q1_UvNyONsaVS_VC1mD9Dw"}}}
{"index": {"_index": "restaurants", "_id": "430"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "8HkB3JfIj7_g-MN5ujoRig"}}}
{"index": {"_index": "restaurants", "_id": "431"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "LZg7F1_HSl3Nmwl54NQtqA"}}}
{"index": {"_index": "restaurants", "_id": "432"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "hyBM_Xk9Hzp38acTHAHlBQ"}}}
{"index": {"_index": "restaurants", "_id": "433"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "LjBKkUSpMwrpo99hXgtHYw"}}}
{"index": {"_index": "restaurants", "_id": "434"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "dh5r9-SbN8xJ76XvnayWLQ"}}}
{"index": {"_index": "restaurants", "_id": "435"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "K9kL1ice5jlkPXcNyTus3Q"}}}
{"index": {"_index": "restaurants", "_id": "436"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "XvcRtA3pD6gpICLsdsQVbA"}}}
{"index": {"_index": "restaurants", "_id": "437"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "M8xnlKQOh0tl58LJCnPUVA"}}}
{"index": {"_index": "restaurants", "_id": "438"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "nF-EOBd_H1fX50iT1EIVZA"}}}
{"index": {"_index": "restaurants", "_id": "439"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "J3NT61-AH5d5Gu5tFJhYSw"}}}
{"index": {"_index": "restaurants", "_id": "440"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "CDywb3LHVYZlQL2-woTiJA"}}}
{"index": {"_index": "restaurants", "_id": "441"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "eWMuXtaBzf0H5u0Vf_zpjw"}}}
{"index": {"_index": "restaurants", "_id": "442"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "b2naaHiaR57Hm6JZG0njPg"}}}
{"index": {"_index": "restaurants", "_id": "443"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "TZto7AjdA337XIw66AOpUw"}}}
{"index": {"_index": "restaurants", "_id": "444"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "MCnexHfsclcOpLHS4_2U0A"}}}
{"index": {"_index": "restaurants", "_id": "445"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "xTnivXEdEtXrnhp-z4JGvg"}}}
{"index": {"_index": "restaurants", "_id": "446"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "IfIyjm4SfORGYPbaAWST3g"}}}
{"index": {"_index": "restaurants", "_id": "447"}}
{"Item": {"Type": {"S": "Indian"}, "BusinessID": {"S": "qhXIW0LDT4XsoN2IE6dZHg"}}}
{"index": {"_index": "restaurants", "_id": "448"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "NRcffNvufYo2Jul0h24_qw"}}}
{"index": {"_index": "restaurants", "_id": "449"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "sfsjk1h50ooC2ioY7m48gw"}}}
{"index": {"_index": "restaurants", "_id": "450"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "cHvd_fnNqbcR4EdyodzGzw"}}}
{"index": {"_index": "restaurants", "_id": "451"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "dvkQIG20RjgNi-SwRr_1CQ"}}}
{"index": {"_index": "restaurants", "_id": "452"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "C9BjYm4WyoQFPQUHmBErDg"}}}
{"index": {"_index": "restaurants", "_id": "453"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "82wA_Vfg_eDckx23d3dA_g"}}}
{"index": {"_index": "restaurants", "_id": "454"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "vlepW-Y_RDQaDMLtEwHWmg"}}}
{"index": {"_index": "restaurants", "_id": "455"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "wpT1QU7PSQgQQ1DkzI00JA"}}}
{"index": {"_index": "restaurants", "_id": "456"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "aSFBv64GBpMOFPqIleeQFQ"}}}
{"index": {"_index": "restaurants", "_id": "457"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "lwfCl81r5a0mjxDNxNGC9w"}}}
{"index": {"_index": "restaurants", "_id": "458"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "txSykTj5nbwmpiVNoK_Dyg"}}}
{"index": {"_index": "restaurants", "_id": "459"}}
{"Item": {"Type": {"S": "French"}, "BusinessID": {"S": "RQojRzAYA9Cq87PqwQq5yg"}}}
{"index": {"_index": "restaurants", "_id": "460"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "qLYloGaI-4OmLbNnr_wrGA"}}}
{"index": {"_index": "restaurants", "_id": "461"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "kn9rgR4KlvyTTi-s76OIaQ"}}}
{"index": {"_index": "restaurants", "_id": "462"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "BsDu_kup3lJ2QHb-Botpeg"}}}
{"index": {"_index": "restaurants", "_id": "463"}}
{"Item": {"Type": {"S": "Cajun/Creole"}, "BusinessID": {"S": "Bjv99EWQdyJUGzAZYQ_WOA"}}}
{"index": {"_index": "restaurants", "_id": "464"}}
{"Item": {"Type": {"S": "Mexican"}, "BusinessID": {"S": "ub2VfE7SRLJABAClzGZp3A"}}}
{"index": {"_index": "restaurants", "_id": "465"}}
{"Item": {"Type": {"S": "Chinese"}, "BusinessID": {"S": "0GftSP2dRwEzujkv2VKIgA"}}}
{"index": {"_index": "restaurants", "_id": "466"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "zo4mcEfVKaktdj_gnSFhGQ"}}}
{"index": {"_index": "restaurants", "_id": "467"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "D2qV8sDdHEFlHbVz7VSHRQ"}}}
{"index": {"_index": "restaurants", "_id": "468"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "lxHKbp0hReRBPZcq4fUUow"}}}
{"index": {"_index": "restaurants", "_id": "469"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "hKkPlYmHoS9Nb_UbGGqx8A"}}}
{"index": {"_index": "restaurants", "_id": "470"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "IEb99GmOvg585gmwmm4iNA"}}}
{"index": {"_index": "restaurants", "_id": "471"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "OUp31SPcjK8wkBK_E6h2Gg"}}}
{"index": {"_index": "restaurants", "_id": "472"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "t0Bel7xLMUt5g8qIpBylZg"}}}
{"index": {"_index": "restaurants", "_id": "473"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "_QYgfFhomwKBbKWfOKcatw"}}}
{"index": {"_index": "restaurants", "_id": "474"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "i34wlziIjT8lHgUN1o0ToQ"}}}
{"index": {"_index": "restaurants", "_id": "475"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "228DO__YwYmliMx6Q5jTtw"}}}
{"index": {"_index": "restaurants", "_id": "476"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "r7z65v8cnBP0MhGP4oQ0bQ"}}}
{"index": {"_index": "restaurants", "_id": "477"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "WKDdD8Z17-P1XhkyJtDEFA"}}}
{"index": {"_index": "restaurants", "_id": "478"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "2_oy2iBeT0Rg-oz4f0GF1A"}}}
{"index": {"_index": "restaurants", "_id": "479"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "JOvcJqD5eCFrGjFa6k7vpQ"}}}
{"index": {"_index": "restaurants", "_id": "480"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "1jAB_uaI8-P_wSqOo2S3KQ"}}}
{"index": {"_index": "restaurants", "_id": "481"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "iGmQlzlI4g2ky8cogfDpnQ"}}}
{"index": {"_index": "restaurants", "_id": "482"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "PajKY49h4SpvSr-TW3lwCQ"}}}
{"index": {"_index": "restaurants", "_id": "483"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "PbezejIP9RHrjw-k459iZA"}}}
{"index": {"_index": "restaurants", "_id": "484"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "06tnwnEQM2j9A6dC3HC_TQ"}}}
{"index": {"_index": "restaurants", "_id": "485"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "W1pBIFhkjJwjTe2P7o57yg"}}}
{"index": {"_index": "restaurants", "_id": "486"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "EvAJBgBdgOt1jx1EufRN7w"}}}
{"index": {"_index": "restaurants", "_id": "487"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "74FFOreAgPphSwSZlfZzgw"}}}
{"index": {"_index": "restaurants", "_id": "488"}}
{"Item": {"Type": {"S": "Thai"}, "BusinessID": {"S": "HuUiXwo2rVKHZDwMeqNfQQ"}}}
{"index": {"_index": "restaurants", "_id": "489"}}
{"Item": {"Type": {"S": "Japanese"}, "BusinessID": {"S": "Exb6scc1mLuhsWrMLJqw9g"}}}
{"index": {"_index": "restaurants", "_id": "490"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Ry04HQ6kNsF1RYTjINDaYw"}}}
{"index": {"_index": "restaurants", "_id": "491"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "q1uIqB8PvyCCX8TajaRYBg"}}}
{"index": {"_index": "restaurants", "_id": "492"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Kqb7MjTPNkjPMoFRd-rWpw"}}}
{"index": {"_index": "restaurants", "_id": "493"}}
{"Item": {"Type": {"S": "Chinese"}, "BusinessID": {"S": "WRPJeH3goSpj5ke3Pkrnfw"}}}
{"index": {"_index": "restaurants", "_id": "494"}}
{"Item": {"Type": {"S": "Korean"}, "BusinessID": {"S": "fNKYBpQJivICm0ORb3nb_Q"}}}
{"index": {"_index": "restaurants", "_id": "495"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "d-DQwNxs77Pah2ys0q7w1Q"}}}
{"index": {"_index": "restaurants", "_id": "496"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "HrdIdeDZBTUdyEdSTPG1zg"}}}
{"index": {"_index": "restaurants", "_id": "497"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "D9nQb14gqhCAOaUUvJz3-Q"}}}
{"index": {"_index": "restaurants", "_id": "498"}}
{"Item": {"Type": {"S": "Italian"}, "BusinessID": {"S": "K9Ur20N51Li3sAvaV9-6Ng"}}}
{"index": {"_index": "restaurants", "_id": "499"}}
{"Item": {"Type": {"S": "Mediterranean"}, "BusinessID": {"S": "ikkIneKupd7sClxu9nvdzQ"}}}
{"index": {"_index": "restaurants", "_id": "500"}}
{"Item": {"Type": {"S": "Other"}, "BusinessID": {"S": "Z2sNzskjS8Ck0plppRBJIg"}}}