-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscraped_yelp.json
1000 lines (1000 loc) · 663 KB
/
scraped_yelp.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
[{"category": ["Barbeque"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/3jBnsR8Dg8AbIhaE_sFIjA/90s.jpg", "name": "Li'l Porgy's Bar-B-Que", "price_rating": "1", "url": "http://www.yelp.com/biz/lil-porgys-bar-b-que-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/pJzB7YFHQtAdnAXgirk-Yw/30s.jpg", "fav_comment_content": "...meals each from it - between the chicken, lemon shake-up, and fries.", "phone": "(217) 398-6811", "fav_comment_user": "Ken R.", "address_l1": "1917 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Spanish", "Breakfast & Brunch", "Cajun/Creole"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ip5iFEtWl-FXH-mmArsivw/90s.jpg", "name": "Radio Maria", "price_rating": "2", "url": "http://www.yelp.com/biz/radio-maria-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/SPnkue-zOHcHnw1EB8XLIA/30s.jpg", "fav_comment_content": "The menu runs from an inventive tapas list to unique entrees.", "phone": "(217) 398-7729", "fav_comment_user": "Anne S.", "address_l1": "119 N Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["Meat Shops"], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/K5uy1QYoKgx5kI5X8xEIZQ/90s.jpg", "name": "Meat Science Laboratory", "price_rating": "2", "url": "http://www.yelp.com/biz/meat-science-laboratory-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/VTLrlgVxaENdde5mZX-zbA/30s.jpg", "fav_comment_content": "This is, by far, one of the best kept secrets of Champaign-Urbana.", "phone": "(217) 333-3404", "fav_comment_user": "Annie W.", "address_l1": "1503 South Maryland Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Bakeries", "Caterers"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/r0Tq3eWj_1qb6oc2D4MAgw/90s.jpg", "name": "Cream & Flutter", "price_rating": "2", "url": "http://www.yelp.com/biz/cream-and-flutter-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/I3l23JrhnvZG2fID_3k2Xw/30s.jpg", "fav_comment_content": "Very girly store with cupcakes and cocktails, both done expertly.", "phone": "(217) 355-5400", "fav_comment_user": "Andrea T.", "address_l1": "114 N Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/on4VuN8R6tpIrIfG1sOUOw/90s.jpg", "name": "El Charro", "price_rating": "1", "url": "http://www.yelp.com/biz/el-charro-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/By9EWylrx0voBQ6lUz9_lw/30s.jpg", "fav_comment_content": "Dollar taco Wednesdays! Awesome tacos.", "phone": "(217) 337-6647", "fav_comment_user": "Josh D.", "address_l1": "55 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Japanese", "Sushi Bars"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/w47HxzJ4L9uoiuDCm-F_Tw/90s.jpg", "name": "Yellowfin", "price_rating": "2", "url": "http://www.yelp.com/biz/yellowfin-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/WTVJUFsbsgCm4-m5UFpCOg/30s.jpg", "fav_comment_content": "This is gotta be my favorite Japanese joint in Chambana.", "phone": "(217) 351-7878", "fav_comment_user": "Joanna P.", "address_l1": "303 Cedar St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bakeries"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/6pAxgftbDHL4V3fLQdE17Q/90s.jpg", "name": "The Cake Artist's Studio", "price_rating": "2", "url": "http://www.yelp.com/biz/the-cake-artists-studio-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/3ZH_XSFaxahM8Mz3_3uRlA/30s.jpg", "fav_comment_content": "I ordered brown sugar oatmeal cake with cream cheese and brown sugar...", "phone": "(217) 403-0900", "fav_comment_user": "Grace C.", "address_l1": "1100 W Bloomington Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Vegetarian", "Cafes"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/JnJRe4klxBMpGxEXSlUPkg/90s.jpg", "name": "The Red Herring", "price_rating": "1", "url": "http://www.yelp.com/biz/the-red-herring-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/bYiZbDqSnaG3aNDx1wlloQ/30s.jpg", "fav_comment_content": "Fantastic bbq seitan sandwich.", "phone": "(217) 367-2340", "fav_comment_user": "Marge S.", "address_l1": "1209 W Oregon St", "address_l2": "Urbana, IL 61801"},
{"category": ["Thai", "Sushi Bars"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/HaT2Lpjp2Oaec36_lnrDlg/90s.jpg", "name": "My Thai", "price_rating": "2", "url": "http://www.yelp.com/biz/my-thai-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HOFz5eGrwjt80Xobx3tfHQ/30s.jpg", "fav_comment_content": "They make THE BEST crab rangoon I have ever eaten.", "phone": "(217) 351-8424", "fav_comment_user": "Phil P.", "address_l1": "2312 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Indian", "Vegetarian"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/dlxwSYdktrOeDXRNN34rGA/90s.jpg", "name": "Sitara", "price_rating": "2", "url": "http://www.yelp.com/biz/sitara-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/-8bEstrlBOy4apbDSorcEQ/30s.jpg", "fav_comment_content": "I was overjoyed that an Indian restaurant opening up in downtown Urbana! And I was right to be excited - this place is wonderful. The service is quick and the food was great. I was dining in\u2026", "phone": "(217) 344-6440", "fav_comment_user": "Kara B.", "address_l1": "114 S Race St", "address_l2": "Urbana, IL 61801"},
{"category": ["Coffee & Tea", "Cafes"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/Htu_KkvwoNF_yJLCH22SHQ/90s.jpg", "name": "Aroma Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/aroma-cafe-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Xs_W__Omk1Dis-ZXcrib7w/30s.jpg", "fav_comment_content": "...to go here when it finally gets warmer and try out the back patio.", "phone": "(217) 356-3200", "fav_comment_user": "Haley L.", "address_l1": "118 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/LkumJtN6HjsUbMv1PUaG0w/90s.jpg", "name": "The Art Theater", "price_rating": "", "url": "http://www.yelp.com/biz/the-art-theater-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I'm extremely biased (as a co-op member) but the Art is the best place I've ever seen a movie at. \u00a0 The place is an old-school art-house theater with one screen. The showtimes vary a bit\u2026", "phone": "(217) 355-0068", "fav_comment_user": "David T.", "address_l1": "126 W Church", "address_l2": "Champaign, IL 61820"},
{"category": ["Chocolatiers & Shops", "Delis", "Seafood Markets"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/gmUBzED37W2dSHqPNv6EoQ/90s.jpg", "name": "Cheese and Crackers", "price_rating": "2", "url": "http://www.yelp.com/biz/cheese-and-crackers-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/r-9ctjuEtfcsUCTNejW53A/30s.jpg", "fav_comment_content": "They have a great variety of cheese, crackers and chocolates.", "phone": "(217) 615-8531", "fav_comment_user": "Zoe V.", "address_l1": "1715 W Kirby", "address_l2": "Champaign, IL 61821"},
{"category": ["Pubs", "American (New)"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/xp9o45mhz0_cDPu5O2KnMA/90s.jpg", "name": "Murphy's Pub", "price_rating": "1", "url": "http://www.yelp.com/biz/murphys-pub-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/c2lUU0JlhepB6q_ZVyjr7w/30s.jpg", "fav_comment_content": "They have great drink specials and amazing Irish nachos.", "phone": "(217) 344-4372", "fav_comment_user": "Anne D.", "address_l1": "604 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mediterranean", "Diners"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/OmhM3KzIAk4fHSrEoHGrDQ/90s.jpg", "name": "Sam's Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/sams-cafe-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/tOFvrqW1Uvaqb0FKAJ9ZcQ/30s.jpg", "fav_comment_content": "I love french toast, it is my favorite breakfast food.", "phone": "(217) 352-7102", "fav_comment_user": "Stacy S.", "address_l1": "115 N Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bars", "American (Traditional)"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/IRu3Ml8ojoKxCzWbCBKbgg/90s.jpg", "name": "Crane Alley", "price_rating": "2", "url": "http://www.yelp.com/biz/crane-alley-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/vLDYh5tb6cQPHtw8ibVmFg/30s.jpg", "fav_comment_content": "Aside from tasty burgers, their beer selection rocks.", "phone": "(217) 384-7526", "fav_comment_user": "Kimberly N.", "address_l1": "115 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": ["Beer, Wine & Spirits", "Cheese Shops", "Sandwiches"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Wa4sGIVvNuqSsG8V56xqAQ/90s.jpg", "name": "Sun Singer Wine and Spirits Ltd.", "price_rating": "2", "url": "http://www.yelp.com/biz/sun-singer-wine-and-spirits-ltd-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/V_77EgGdQRXXGiRT0RBsDA/30s.jpg", "fav_comment_content": "The almond-crusted goat cheese salad is one of my favorite menu items.", "phone": "(217) 351-1115", "fav_comment_user": "Jon H.", "address_l1": "1115 W Windsor Rd", "address_l2": "Champaign, IL 61821"},
{"category": ["Chinese"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/jP75nLpwe9O-HednazPRVQ/90s.jpg", "name": "Golden Wok", "price_rating": "1", "url": "http://www.yelp.com/biz/golden-wok-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/qHPX9lZaRvZF1aPvBR0qaQ/30s.jpg", "fav_comment_content": "This place is still my favorite pad thai place.", "phone": "(217) 356-8383", "fav_comment_user": "Allan C.", "address_l1": "405 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Grocery", "Health Markets"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/yrCpQ7FH8w8Z7HqewQuk4Q/90s.jpg", "name": "Common Ground Food Co-Op", "price_rating": "2", "url": "http://www.yelp.com/biz/common-ground-food-co-op-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/nEe0qZDMRMvq0Mh-zTGNrg/30s.jpg", "fav_comment_content": "Today, I picked up organic fairly traded coffee for $8.99/lb.", "phone": "(217) 352-3347", "fav_comment_user": "Samuel I.", "address_l1": "300 S Broadway", "address_l2": "Urbana, IL 61801"},
{"category": ["Hair Removal", "Hair Salons", "Skin Care"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/2y1Paz3lRzWNwHuXCMkFzg/90s.jpg", "name": "H2O Salon", "price_rating": "2", "url": "http://www.yelp.com/biz/h2o-salon-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/DAB4-r4L4a57DwF-zQ_XzA/30s.jpg", "fav_comment_content": "I have come here for almost a year now and I have NEVER been disappointed. Edith, the owner runs a free spirited, lgbt friendly shop that offers the works. Maggie, the senior stylist uses the\u2026", "phone": "(217) 337-1480", "fav_comment_user": "Cameron S.", "address_l1": "109 N Broadway", "address_l2": "Urbana, IL 61801"},
{"category": ["Chinese", "Asian Fusion", "Malaysian"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/WfTBP9h3oIo3xCVVn36A7A/90s.jpg", "name": "Cravings", "price_rating": "1", "url": "http://www.yelp.com/biz/cravings-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/7LNh6W7AxA1JjW3NadQR7g/30s.jpg", "fav_comment_content": "2 things to order- Jakarta fried rice and hot and spicy chicken.", "phone": "(217) 328-2538", "fav_comment_user": "Danny M.", "address_l1": "603 S Wright St", "address_l2": "Champaign, IL 61820"},
{"category": ["Thai"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/OhLtoN390FxYh05wRCKQ0g/90s.jpg", "name": "Thara Thai", "price_rating": "2", "url": "http://www.yelp.com/biz/thara-thai-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LTyruqA5pZg8RkFYEPR2Rw/30s.jpg", "fav_comment_content": "...pad Thai, coconut milk soup, and papaya salad are all delicious.", "phone": "(217) 378-1986", "fav_comment_user": "Marcus D.", "address_l1": "912 1/2 W Bloomington Rd", "address_l2": "Champaign, IL 61821"},
{"category": ["American (Traditional)"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Mb_EQSO8qdsgvpbL3bjMZQ/90s.jpg", "name": "Courier Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/courier-cafe-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/sMJ0hN7Zr1prrZgp3UCGKA/30s.jpg", "fav_comment_content": "Salad bar is also a great choice for lunch.", "phone": "(217) 328-1811", "fav_comment_user": "Cleda W.", "address_l1": "111 N Race St", "address_l2": "Urbana, IL 61801"},
{"category": ["Latin American"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/PQbUJesuO0SVV0KwBdtx0g/90s.jpg", "name": "Escobar's", "price_rating": "2", "url": "http://www.yelp.com/biz/escobars-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/a1dbM84bkWtuPPrLiQJi2A/30s.jpg", "fav_comment_content": "The scallop nachos were innovative;the phyllo-wrapped lamb was divine.", "phone": "(217) 352-7467", "fav_comment_user": "Bonnie J.", "address_l1": "6 E Columbia Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Ethnic Food", "Delis"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/N6K5eo89Lkl5h76Su7CC0g/90s.jpg", "name": "World Harvest Foods", "price_rating": "2", "url": "http://www.yelp.com/biz/world-harvest-foods-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/RjJZ5MFm1ig32oV1IwqVAA/30s.jpg", "fav_comment_content": "Lots of delicious cheeses, which they will always let you try before...", "phone": "(217) 356-4444", "fav_comment_user": "Heather C.", "address_l1": "519 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/gliutxma0aH3vElK9lUfaA/90s.jpg", "name": "Krannert Center for The Performing Arts", "price_rating": "", "url": "http://www.yelp.com/biz/krannert-center-for-the-performing-arts-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/io5vNEeohtjImiQekBjnFw/30s.jpg", "fav_comment_content": "Always something fun going on here and make sure to watch out for the FREE events happening during the week. My wife and I loved the free Jazz nights and complimentary wine and cheese!!", "phone": "(217) 333-6280", "fav_comment_user": "Jess C.", "address_l1": "500 S Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Sushi Bars", "Japanese"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/9mZQNYtbkp429QSE6mJCUQ/90s.jpg", "name": "Sushi Kame", "price_rating": "2", "url": "http://www.yelp.com/biz/sushi-kame-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/pJzB7YFHQtAdnAXgirk-Yw/30s.jpg", "fav_comment_content": "For dinners, there are meals like the bento boxes or sushi.", "phone": "(217) 356-3366", "fav_comment_user": "Ken R.", "address_l1": "132 W. Church St", "address_l2": "Champaign, IL 61820"},
{"category": ["Thai"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/UHX9lVR1zclg77HRli_ckQ/90s.jpg", "name": "Siam Terrace", "price_rating": "2", "url": "http://www.yelp.com/biz/siam-terrace-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/VpxNkYZpoS98xw8XDMmBmw/30s.jpg", "fav_comment_content": "The rad nar, pad thai, and other options are all excellent choices.", "phone": "(217) 367-8424", "fav_comment_user": "Brian L.", "address_l1": "212 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": ["Greek"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/8K6KHJeX_omKiPnK3_-pYw/90s.jpg", "name": "Zorba's Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/zorbas-restaurant-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/V56_BQxlSG-yvN30PDLW3A/30s.jpg", "fav_comment_content": "This was my favorite place to get Gyros in town.", "phone": "(217) 344-0710", "fav_comment_user": "David B.", "address_l1": "627 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/rBzLykqfMWTW6Xk1ineB1Q/90s.jpg", "name": "University of Illinois", "price_rating": "", "url": "http://www.yelp.com/biz/university-of-illinois-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/cBeTGm5xUKWu85u3Dl2Y-A/30s.jpg", "fav_comment_content": "Maybe my review is a little different than the reviews you have read about UIUC. \u00a0You see, I was a student there from 1962 to 1966. \u00a0I graduated when dinosaurs roamed the quadrangle and women\u2026", "phone": "(217) 244-0072", "fav_comment_user": "Richard B.", "address_l1": "605 E Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Coffee & Tea"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/-toA0MBm1SiWRcbcvOleSg/90s.jpg", "name": "Cafe Kopi", "price_rating": "1", "url": "http://www.yelp.com/biz/cafe-kopi-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/_Dh8OfDVVMAE82nfEdrijQ/30s.jpg", "fav_comment_content": "It's a great place to come study and get off campus.", "phone": "(217) 359-4266", "fav_comment_user": "Sonny S.", "address_l1": "109 N Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hair Salons"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/2Sd4lQ1sv8ss3M41hwcYMQ/90s.jpg", "name": "Ippatsu Salon", "price_rating": "3", "url": "http://www.yelp.com/biz/ippatsu-salon-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/odXkJWqlVV-jbylLdev08Q/30s.jpg", "fav_comment_content": "I cannot say enough about how great my experience was here. I have very curly, very thick hair that has been massacred many a time in the past. I had a guy in Chicago who had cut my hair for\u2026", "phone": "(217) 356-6547", "fav_comment_user": "Elizabeth T.", "address_l1": "73 E Chester", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/aX96nifylf9-wI3Y3wqT5w/90s.jpg", "name": "Urbana Free Library", "price_rating": "", "url": "http://www.yelp.com/biz/urbana-free-library-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/pbDzUWJSn-rN3l9Bebj-BQ/30s.jpg", "fav_comment_content": "This is the kind of place that makes you feel good about the community you live in. \u00a0It is a haven and a community center. \u00a0 \u00a0We have two kids (1 and 4) so that shades this review. \u00a0After\u2026", "phone": "(217) 367-4057", "fav_comment_user": "Gabe N.", "address_l1": "210 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/m7H3pTs9yaaY3R9ML98X4g/90s.jpg", "name": "Champaign Public Library", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-public-library-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/bMpDsEETrlRkGCKflWVYzA/30s.jpg", "fav_comment_content": "This is definitely one of the best libraries I've been to and here's why: \u00a0- TONS of window light - Cafe with tasty treats and lattes - Free wifi - Lots of table space - Great book selection -\u2026", "phone": "(217) 403-2000", "fav_comment_user": "Angela C.", "address_l1": "200 W Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Italian"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/MijLBncYd1rAwtjSOc9WJw/90s.jpg", "name": "Biaggi's Ristorante Italiano", "price_rating": "2", "url": "http://www.yelp.com/biz/biaggis-ristorante-italiano-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/oBwxlSFLkmpSIwUxdC9h6w/30s.jpg", "fav_comment_content": "Their soft bread and parmesan/olive oil to dip in is the best.", "phone": "(217) 356-4300", "fav_comment_user": "Ellen C.", "address_l1": "2235 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bikes"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Baker's Bikes", "price_rating": "1", "url": "http://www.yelp.com/biz/bakers-bikes-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "Bike geeks relish matching the right bike to the right person.", "phone": "(217) 365-0318", "fav_comment_user": "Tim J.", "address_l1": "1003 S Lynn St", "address_l2": "Urbana, IL 61801"},
{"category": ["American (Traditional)", "Pubs", "Lounges"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/JCIlXREkbh0kye5_jHU-og/90s.jpg", "name": "Seven Saints", "price_rating": "2", "url": "http://www.yelp.com/biz/seven-saints-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Do0Da97nETjDqIa_auvV6A/30s.jpg", "fav_comment_content": "Definitely try the sweet potato fries or beet chips.", "phone": "(217) 351-7775", "fav_comment_user": "Ben C.", "address_l1": "32 E Chester St", "address_l2": "Champaign, IL 61820"},
{"category": ["Asian Fusion", "Sushi Bars"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/jquflHKCK0qecxJfseBh7g/90s.jpg", "name": "Kofusion", "price_rating": "2", "url": "http://www.yelp.com/biz/kofusion-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/lN0sjwSmZHNPdPAVEoO3gA/30s.jpg", "fav_comment_content": "The big roll (their special house roll) is amazing and huge.", "phone": "(217) 531-1166", "fav_comment_user": "Lauren C.", "address_l1": "1 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": ["Coffee & Tea"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/1xtDiiAIQTPGIfv0clASLQ/90s.jpg", "name": "Columbia Street Roastery By Herriott's", "price_rating": "2", "url": "http://www.yelp.com/biz/columbia-street-roastery-by-herriotts-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/JtWszsiI7jwE4wHTLFteFQ/30s.jpg", "fav_comment_content": "And you can get great blends or beautiful single-origin.", "phone": "(217) 352-9713", "fav_comment_user": "Heather T.", "address_l1": "24 Columbia St", "address_l2": "Champaign, IL 61820"},
{"category": ["Breakfast & Brunch"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/KlhSSXJ548D1YZdOs6KY2w/90s.jpg", "name": "Original Pancake House", "price_rating": "2", "url": "http://www.yelp.com/biz/original-pancake-house-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/7bPg69ZWo3fzjeVgr6VIsA/30s.jpg", "fav_comment_content": "They have the best pancakes in town and the coffee is great.", "phone": "(217) 352-8866", "fav_comment_user": "Mark W.", "address_l1": "1909 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Pizza"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Z_HsnGi6LeEMF5hkX6jrvA/90s.jpg", "name": "Manolo's Pizza & Empanadas", "price_rating": "1", "url": "http://www.yelp.com/biz/manolos-pizza-and-empanadas-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fiAohjZn0s2Tj0f9ASWP6w/30s.jpg", "fav_comment_content": "I recommend the Spotted Goat if they have it when you're there.", "phone": "(217) 365-0110", "fav_comment_user": "John M.", "address_l1": "1115 W Oregon St", "address_l2": "Urbana, IL 61803"},
{"category": ["Chinese"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/T_Qp_AGB_fTzbnbfLCSR9Q/90s.jpg", "name": "Green Jade", "price_rating": "1", "url": "http://www.yelp.com/biz/green-jade-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/Z_4aMgX49gP_8Tf5hIC28A/30s.jpg", "fav_comment_content": "I love their orange chicken (of course) and their sesame chicken is...", "phone": "(217) 355-5988", "fav_comment_user": "Janelle O.", "address_l1": "1109 W Windsor", "address_l2": "Champaign, IL 61822"},
{"category": ["Building Supplies", "Furniture Stores", "Thrift Stores"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/NzBYsaguxHQBQKaPNAgvQw/90s.jpg", "name": "The Habitat for Humanity ReStore", "price_rating": "1", "url": "http://www.yelp.com/biz/the-habitat-for-humanity-restore-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/PjPYLE7dNlI3F7sxfYCSYg/30s.jpg", "fav_comment_content": "Great finds on used furniture and housewares.", "phone": "(217) 355-6460", "fav_comment_user": "Allyson D.", "address_l1": "119 E. University Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/F710YphrND5YVa03x81apQ/90s.jpg", "name": "Activities and Recreation Center - ARC", "price_rating": "", "url": "http://www.yelp.com/biz/activities-and-recreation-center-arc-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/IV5LkCIz2ev37lbXoA0MxA/30s.jpg", "fav_comment_content": "This place is amazing. If you are a U of I student, and you didn't come here to workout, that is a huge mistake. My parents introduced me to Lifetime Fitness when I was in high school, and I\u2026", "phone": "(217) 333-3806", "fav_comment_user": "Daniel G.", "address_l1": "201 E Peabody Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Nail Salons"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/2ulW5dPrROAZO05ysZRRtw/90s.jpg", "name": "Modern Nails Salon", "price_rating": "2", "url": "http://www.yelp.com/biz/modern-nails-salon-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Michael and Michelle do a wonderful job of making sure Modern Nails is the best nail salon in Champaign-Urbana (which is why they won Buzz's Best Nail Salon of CU). I've been going to Modern\u2026", "phone": "(217) 954-0500", "fav_comment_user": "S G.", "address_l1": "1711 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Chinese"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/BWl0TjZTslLgF9IsxVx-vQ/90s.jpg", "name": "Peking Garden Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/peking-garden-restaurant-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/4sRZB3SmT4l2ZQoW7oOEeg/30s.jpg", "fav_comment_content": "For those who are afraid to try it, ziran means cumin so if you like...", "phone": "(217) 355-8888", "fav_comment_user": "Daisy Z.", "address_l1": "206 N Randolph St", "address_l2": "Champaign, IL 61820"},
{"category": ["Korean"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/wh-wOPqX7S09lEtBGU9ADQ/90s.jpg", "name": "Woori Jib Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/woori-jib-restaurant-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/Hz4UY5CRiKqTqSG2hXLtqA/30s.jpg", "fav_comment_content": "I also love the chicken stir fry.", "phone": "(217) 384-8282", "fav_comment_user": "Natalie Z.", "address_l1": "710 S 6th St", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/7HYSFI-BGQcanpmtR4PJbw/90s.jpg", "name": "Friar Tuck Beverage", "price_rating": "2", "url": "http://www.yelp.com/biz/friar-tuck-beverage-savoy", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Hsa-VEvuHS7ydBXhiL2Eeg/30s.jpg", "fav_comment_content": "It also sells this really cool German honey liquor.", "phone": "(217) 355-7933", "fav_comment_user": "Anne W.", "address_l1": "1333 Savoy Plaza Ln", "address_l2": "Savoy, IL 61874"},
{"category": ["Hair Salons", "Day Spas", "Hair Removal"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/bRcViFozO7B3xfKXxn3Msg/90s.jpg", "name": "Kane & Company", "price_rating": "3", "url": "http://www.yelp.com/biz/kane-and-company-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/cErkDX3Upa1VEqv2WxMJLA/30s.jpg", "fav_comment_content": "It took me 4 years of college to find this place. \u00a0The salon staff are really friendly, and Ursa is great! I have curly hair which is sometimes difficult to cut, but she is a pro (and is\u2026", "phone": "(217) 359-2424", "fav_comment_user": "Max E.", "address_l1": "41 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Beer, Wine & Spirits"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/MB3vR_hGlCkDrbtnSCJswA/90s.jpg", "name": "Binny's Beverage Depot", "price_rating": "1", "url": "http://www.yelp.com/biz/binnys-beverage-depot-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/pJzB7YFHQtAdnAXgirk-Yw/30s.jpg", "fav_comment_content": "If you live closer to Savoy, I'd keep going to Friar Tucks.", "phone": "(217) 355-0625", "fav_comment_user": "Ken R.", "address_l1": "802 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["American (Traditional)"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/fhXkts94C0xkqEQf9ZixMw/90s.jpg", "name": "Curtis Orchard & Pumpkin Patch", "price_rating": "2", "url": "http://www.yelp.com/biz/curtis-orchard-and-pumpkin-patch-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/oDMxi33M9_iZVrVuHWiOng/30s.jpg", "fav_comment_content": "Drink delicious apple cider and eat phenomenal apple donuts.", "phone": "(217) 359-5565", "fav_comment_user": "Mike B.", "address_l1": "3902 S Duncan Rd", "address_l2": "Champaign, IL 61822"},
{"category": ["Arts & Crafts", "Nurseries & Gardening", "Flowers & Gifts"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/UI83a-klIchhZGFIE_d7xw/90s.jpg", "name": "Prairie Gardens", "price_rating": "2", "url": "http://www.yelp.com/biz/prairie-gardens-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/grI8ZQ-7qVR6e9EYAw6C9A/30s.jpg", "fav_comment_content": "With that, Prairie Gardens has many things to offer beyond plants.", "phone": "(217) 356-1233", "fav_comment_user": "Amber Y.", "address_l1": "3000 W Springfield Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Bakeries"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/JQeL8Ig1wBETfE_hr_EYUQ/90s.jpg", "name": "Great Harvest Bread Company", "price_rating": "2", "url": "http://www.yelp.com/biz/great-harvest-bread-company-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/nJEkvU1INndGJ6JlC60JlA/30s.jpg", "fav_comment_content": "The honey whole wheat is perfect toasted, and their apple breads are...", "phone": "(217) 398-5623", "fav_comment_user": "Paige M.", "address_l1": "2149 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Italian"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/hwPuQyy94L_DTfSpEYN47g/90s.jpg", "name": "Timpone's", "price_rating": "2", "url": "http://www.yelp.com/biz/timpones-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/95S96Cl9rR6UWTpu7uWiiQ/30s.jpg", "fav_comment_content": "Creme brulee is always there and very good, gelato too.", "phone": "(217) 344-7619", "fav_comment_user": "Morgan M.", "address_l1": "710 S Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Chinese"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/tzwwzJJD5AyVmWuXvHMmtg/90s.jpg", "name": "Mandarin Wok", "price_rating": "1", "url": "http://www.yelp.com/biz/mandarin-wok-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/_Dh8OfDVVMAE82nfEdrijQ/30s.jpg", "fav_comment_content": "Definitely recommend the dim sum.", "phone": "(217) 337-1200", "fav_comment_user": "Sonny S.", "address_l1": "403 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Furniture Stores", "Used, Vintage & Consignment"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/Y5Z0gIQyaG61xCMkyKqKXw/90s.jpg", "name": "Furniture Lounge", "price_rating": "3", "url": "http://www.yelp.com/biz/furniture-lounge-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/gP7HMPGKZMuSDiHHuYPmtw/30s.jpg", "fav_comment_content": "you love mid century modern design.", "phone": "(217) 418-5388", "fav_comment_user": "Anastasia T.", "address_l1": "11 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/1-1FR6jEcZrI3a3W9N3tpg/90s.jpg", "name": "Fiesta Cafe", "price_rating": "2", "url": "http://www.yelp.com/biz/fiesta-cafe-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Zza-ZZLalB52hc8csnPFUg/30s.jpg", "fav_comment_content": "On a nice night, outdoor seating is fun.", "phone": "(217) 352-5902", "fav_comment_user": "John B.", "address_l1": "216 S 1st St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/BhvqT6sPFHN66h_UhD6UWg/90s.jpg", "name": "Papa Del's Pizza At the Crossing", "price_rating": "2", "url": "http://www.yelp.com/biz/papa-dels-pizza-at-the-crossing-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/TIu_-IVCGN-pq0oL8cuaFw/30s.jpg", "fav_comment_content": "Hands down, absolutely the best deep dish pizza.", "phone": "(217) 359-5500", "fav_comment_user": "Anthony C.", "address_l1": "2510 Village Green Pl", "address_l2": "Champaign, IL 61820"},
{"category": ["Southern", "Soul Food"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/fZJxijJttF_AjxMil9YGEA/90s.jpg", "name": "Seaboat", "price_rating": "1", "url": "http://www.yelp.com/biz/seaboat-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/blcSW4P2-PWWn_s5cTQ4sg/30s.jpg", "fav_comment_content": "Accompanying sides of fried okra and mac n cheese were on spot.", "phone": "(217) 355-9933", "fav_comment_user": "Justin B.", "address_l1": "403 W Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Chinese"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/QO6tniodEcXyUUgW6lgNnA/90s.jpg", "name": "First Wok", "price_rating": "1", "url": "http://www.yelp.com/biz/first-wok-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/QiJsYxuzkSOyzOJejzEaAw/30s.jpg", "fav_comment_content": "General Tso's Chicken is one of my favorite dishes, and this place...", "phone": "(805) 744-5673", "fav_comment_user": "Kate D.", "address_l1": "1805 Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Thai"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/HGSLwyyL-ggPKpgIoeyniQ/90s.jpg", "name": "Let's Take a Seat: Thai Cuisine", "price_rating": "2", "url": "http://www.yelp.com/biz/lets-take-a-seat-thai-cuisine-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Awesome Duck Basil and Angel Fish.", "phone": "(217) 351-5827", "fav_comment_user": "Jason A.", "address_l1": "2506 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/9Hf0RE3g29qndQZs1B2cVw/90s.jpg", "name": "Prairieland Feeds", "price_rating": "", "url": "http://www.yelp.com/biz/prairieland-feeds-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/ENm44_9TeGgE7ovaSXq_Ow/30s.jpg", "fav_comment_content": "I went here on a recommendation from a friend. \u00a0Right when I walked in the door, they greeted me, which was nice. \u00a0The atmosphere is also cute and cabin-y and pleasant. \u00a0Definitely a big step\u2026", "phone": "(217) 352-2232", "fav_comment_user": "Megan H.", "address_l1": "303 S Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": ["Thai"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/snb1NCj0iMjs2Sb16Lh88w/90s.jpg", "name": "The Y Eatery", "price_rating": "1", "url": "http://www.yelp.com/biz/the-y-eatery-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/5Jd3726rTpawFUuYNCR0xA/30s.jpg", "fav_comment_content": "My favorite dish is the turkey/shrimp pad Thai.", "phone": "(217) 344-5040", "fav_comment_user": "Debra W.", "address_l1": "1001 S Wright St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/gz_kZnzto9sus-sHIpLePg/90s.jpg", "name": "Savoy 16 Theater", "price_rating": "", "url": "http://www.yelp.com/biz/savoy-16-theater-savoy-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/76w4gChu7l32JtOPZ3bduQ/30s.jpg", "fav_comment_content": "Definitely the better theatre in town. Very clean, comfy seats and easy ticketing system for prepay. Just saw hunger games and really enjoyed my experience. Theatre was a bit cold though.", "phone": "(217) 355-3456", "fav_comment_user": "Aisha C.", "address_l1": "232 Burwash Ave", "address_l2": "Savoy, IL 61874"},
{"category": ["Arts & Crafts"], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/POLS4hBgamV0CIkhFnvg-Q/90s.jpg", "name": "Klose Knit", "price_rating": "4", "url": "http://www.yelp.com/biz/klose-knit-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I love this yarn store. \u00a0The owner is always helpful and friendly and wants to make sure you'll get something you'll be happy with. \u00a0Really nice selection and just a fun store all around.\u2026", "phone": "(217) 344-2123", "fav_comment_user": "Heidi H.", "address_l1": "311 W Springfield Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Music Venues"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/8ylyqURQV6NM5dA2uo9QCw/90s.jpg", "name": "The Canopy Club", "price_rating": "2", "url": "http://www.yelp.com/biz/the-canopy-club-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/FjuMHfXohgK-65bsl494UA/30s.jpg", "fav_comment_content": "A reasonable variety of shows come through the Canopy and tickets are...", "phone": "(217) 367-3140", "fav_comment_user": "Gretchen H.", "address_l1": "708 S Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Pubs"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/CiA63PTUBLuUdweS9tAYtw/90s.jpg", "name": "Bentley's Pub", "price_rating": "2", "url": "http://www.yelp.com/biz/bentleys-pub-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/YmIIGwrT27K7ET0qbP8tTg/30s.jpg", "fav_comment_content": "I only go on Wednesday nights when they have traditional Irish music.", "phone": "(217) 359-7977", "fav_comment_user": "Laurie T.", "address_l1": "419 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bars", "Sandwiches"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/7GHYfQ-7vYcpmyXdBRsl-A/90s.jpg", "name": "Legends", "price_rating": "1", "url": "http://www.yelp.com/biz/legends-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/T9nyU6_meHOROO7wlDkwOw/30s.jpg", "fav_comment_content": "We try and go there for the best fish sandwich in town.", "phone": "(217) 355-7674", "fav_comment_user": "Lawrence D.", "address_l1": "522 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Ethnic Food", "Mexican"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/-j57hvMMw8Mzf_kUvlp_Nw/90s.jpg", "name": "Taco Loco", "price_rating": "1", "url": "http://www.yelp.com/biz/taco-loco-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/12UN49EX4k1OpagehEr5_A/30s.jpg", "fav_comment_content": "It's a really good lunch spot up in the north Prospect area.", "phone": "(217) 355-8226", "fav_comment_user": "Grace T.", "address_l1": "523 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/hfbi3Ay6JXDbf-kTsy4x5A/90s.jpg", "name": "Farm & Fleet", "price_rating": "", "url": "http://www.yelp.com/biz/farm-and-fleet-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "It's a rare day that I can't get what I need here. \u00a0I think the last time was when I was looking for a milk frother and I ended up talking to the guy who sells equipment for dairy farmers. But\u2026", "phone": "(217) 367-1354", "fav_comment_user": "Beth K.", "address_l1": "2701 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/R0aNX5njDHpyJ0kLWGQUTA/90s.jpg", "name": "Krannert Art Museum", "price_rating": "", "url": "http://www.yelp.com/biz/krannert-art-museum-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/cXX5DIYGb0Q8TacX21KIpQ/30s.jpg", "fav_comment_content": "Come get your creative juices flowin - \u00a0 What a great way to spend 2 hours on a Friday afternoon! There were several rotating exhibits one being from the graduate students at UIUC. Other\u2026", "phone": "(217) 333-1861", "fav_comment_user": "Jessica Y.", "address_l1": "500 E Peabody Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/i6Ai0GyJw3xsyt5oqEyD-A/90s.jpg", "name": "Urbana Dog Park", "price_rating": "", "url": "http://www.yelp.com/biz/urbana-dog-park-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/elSk6EJQGAYemeie4FDhdA/30s.jpg", "fav_comment_content": "I've been to a lot of dogs parks between Minnesota and Georgia (driving with 2 big dogs means a lot of stops!). \u00a0This dog park is the most beautiful dog park I have ever seen! \u00a0It is very\u2026", "phone": "(217) 384-4062", "fav_comment_user": "Dave C.", "address_l1": "1501 E. Perkins Rd", "address_l2": "Urbana, IL 61803"},
{"category": ["Japanese", "Sushi Bars"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/vRlbnMxca01IQwYxAoIMKw/90s.jpg", "name": "Sakanaya Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/sakanaya-restaurant-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/REOpF4U-d3Zu2IEpqyAqDg/30s.jpg", "fav_comment_content": "Good sushi. Great atmosphere and attention to detail with everything from the cups to soy sauce bottles. One of my new favorite spots on Green St! \u00a0The one issue is that it's tiny so there may\u2026", "phone": "(217) 344-1400", "fav_comment_user": "Najia Y.", "address_l1": "403 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Italian"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Oo0cBi_tMdrgUR-7yRjA3Q/90s.jpg", "name": "Minneci's Ristorante", "price_rating": "2", "url": "http://www.yelp.com/biz/minnecis-ristorante-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Excellent food, service and atmosphere! \u00a0I was visiting from out of town and had a craving for high quality Italian food and wine for a decent price, and I was so lucky to have been driving by\u2026", "phone": "(217) 352-4425", "fav_comment_user": "Sara L.", "address_l1": "401 S First St", "address_l2": "Champaign, IL 61820"},
{"category": ["Sports Bars", "American (New)"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/_y4qVWO8cUjxHP7ffKcnnw/90s.jpg", "name": "Billy Barooz Bar & Grill", "price_rating": "2", "url": "http://www.yelp.com/biz/billy-barooz-bar-and-grill-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/8sYzNUWIOW9JakNOde47wQ/30s.jpg", "fav_comment_content": "Place can become really loud, but a great place to watch a game.", "phone": "(217) 355-8030", "fav_comment_user": "Steve W.", "address_l1": "2521 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": ["Fast Food", "Food Stands"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/7gM8tjh6WAOk0Fj1KLgxvA/90s.jpg", "name": "Derald's", "price_rating": "1", "url": "http://www.yelp.com/biz/deralds-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/7MVBlcQ3i6ZkpbqWDLNucA/30s.jpg", "fav_comment_content": "I passed by this truck so many times on my way to class. \u00a0Each time, I dared myself to try it. \u00a0But I was scared. I'd never ordered anything from a truck before. \u00a0What if I look dumb? Do they\u2026", "phone": "", "fav_comment_user": "Esther S.", "address_l1": "Mathews Ave & Green St", "address_l2": "Urbana, IL 61801"},
{"category": ["Middle Eastern", "Indian"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/9YD8Ga-ZRzs6_BZl4GvM6g/90s.jpg", "name": "Casablanca Kabab House", "price_rating": "2", "url": "http://www.yelp.com/biz/casablanca-kabab-house-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/QOKOarbjTrNsIPUArtSR_A/30s.jpg", "fav_comment_content": "Their naan is always freshly made and perfectly done.", "phone": "(217) 328-1600", "fav_comment_user": "Aaron O.", "address_l1": "623 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (Traditional)"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/hvQPjgqidaB-JAjdfXwWGw/90s.jpg", "name": "Za's Italian Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/zas-italian-cafe-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "...have a whole menu of create your own salads, pizza's and sandwiches.", "phone": "(217) 355-4990", "fav_comment_user": "Julia B.", "address_l1": "2006 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Tobacco Shops"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/JUqIBD17ICbjcRpjRt0UDA/90s.jpg", "name": "Jon's Pipe Shop", "price_rating": "2", "url": "http://www.yelp.com/biz/jons-pipe-shop-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/uAHnurPSUFCJnKUq52Lvxw/30s.jpg", "fav_comment_content": "Jon's- a rectangle of a store between a sportswear place and an old-time barber shop. \u00a0Packed to the gills with so many pipes and pipe-blends that you'll need their expertise to know where to\u2026", "phone": "(217) 344-3459", "fav_comment_user": "Allen H.", "address_l1": "509 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Diners"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/mdxDk_eVxp_ztdtrQjZ-OA/90s.jpg", "name": "Merry Ann's Diner", "price_rating": "1", "url": "http://www.yelp.com/biz/merry-anns-diner-urbana-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/bUOjT9txOq11kuWYXjtqKA/30s.jpg", "fav_comment_content": "...food around campus, and by far my favorite place for breakfast food.", "phone": "(217) 344-2455", "fav_comment_user": "Regular G.", "address_l1": "1103 W Oregon St", "address_l2": "Urbana, IL 61801"},
{"category": ["Grocery"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/9CdtqagVbZagMEVrqgAISQ/90s.jpg", "name": "Am-Ko Oriental Foods & Gifts", "price_rating": "1", "url": "http://www.yelp.com/biz/am-ko-oriental-foods-and-gifts-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/aMVA0QE7L2-H8UyJm5Ad1Q/30s.jpg", "fav_comment_content": "...and Japanese recipes, plus a few items from other Asian cuisines.", "phone": "(217) 398-2922", "fav_comment_user": "Stefani M.", "address_l1": "101 E Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Indian"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/jDBFjLHMgOqy6sPKQz_izQ/90s.jpg", "name": "Aroma Curry House", "price_rating": "2", "url": "http://www.yelp.com/biz/aroma-curry-house-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/s_ZZkwJkL6sS8i7Eki7CKA/30s.jpg", "fav_comment_content": "The Masala Dosa is a large crispy crepe stuffed with mildly spiced...", "phone": "(217) 352-3663", "fav_comment_user": "Kelly S.", "address_l1": "2502 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": ["Korean"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/lvZOSfu0LXgXv3_MUuaRLg/90s.jpg", "name": "K-Bowl", "price_rating": "1", "url": "http://www.yelp.com/biz/k-bowl-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/gXYGRKoJCS3dynV-kxevCg/30s.jpg", "fav_comment_content": "...probably the most beautifully arranged Bi Bim Bap I've seen, which is...", "phone": "(217) 344-6022", "fav_comment_user": "Aron F.", "address_l1": "39 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/RSXjFuVYa5YhSoSP0yhzNA/90s.jpg", "name": "Refinery", "price_rating": "", "url": "http://www.yelp.com/biz/refinery-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/T63tkM7YmLFawcqe-W8SjA/30s.jpg", "fav_comment_content": "I love my gym, love love love! \u00a0I also joined soon after it opened, which means I have been a member now for just over two years, and I have loved it universally the whole time. \u00a0I trained for\u2026", "phone": "(217) 355-4444", "fav_comment_user": "Sarah L.", "address_l1": "2302 W John St", "address_l2": "Champaign, IL 61821"},
{"category": ["American (Traditional)", "Burgers", "Bars"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/y7IkvuTd1TUztcDebuX-rw/90s.jpg", "name": "Firehaus", "price_rating": "2", "url": "http://www.yelp.com/biz/firehaus-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Tf0nbZo9a0sp0FrckiTV7A/30s.jpg", "fav_comment_content": "Not too crowded for a campus town spot.", "phone": "(217) 344-4171", "fav_comment_user": "Edward M.", "address_l1": "708 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Speed Lube 10 Minute Oil Change Shops Inc", "price_rating": "", "url": "http://www.yelp.com/biz/speed-lube-10-minute-oil-change-shops-inc-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "This is a local chain of oil change shops that blows away the national chains. They are fast, courteous, and do good work without trying to sell you a bunch of crap you don't need.\u2026", "phone": "(217) 352-8353", "fav_comment_user": "Tim J.", "address_l1": "307 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Breakfast & Brunch"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/lnmwws_necyj1wUqYezypA/90s.jpg", "name": "Le Peep Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/le-peep-restaurant-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/bSrwnCBeK83_PZMck9CkpQ/30s.jpg", "fav_comment_content": "French toast and peasant potatoes are delish.", "phone": "(217) 352-7599", "fav_comment_user": "Jen F.", "address_l1": "2209 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Diners", "Breakfast & Brunch"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/xaWD3JQYrFbbhXQgBHnUvg/90s.jpg", "name": "Merry-Ann's Diner", "price_rating": "1", "url": "http://www.yelp.com/biz/merry-anns-diner-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/y4mu4_G1jlxgzhR__s9j7A/30s.jpg", "fav_comment_content": "i liked watching the cooks assemble a stack like an artist at work.", "phone": "(217) 352-5399", "fav_comment_user": "Note s.", "address_l1": "1510 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/fy8c1wXHl8Xj_HZDAxKyPw/90s.jpg", "name": "Vinny's East Coast Pizzeria", "price_rating": "2", "url": "http://www.yelp.com/biz/vinnys-east-coast-pizzeria-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fiAohjZn0s2Tj0f9ASWP6w/30s.jpg", "fav_comment_content": "...the best place to get New York style pizza in the Champaign-Urbana...", "phone": "(217) 355-4500", "fav_comment_user": "John M.", "address_l1": "401 W. Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Greek"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/cEpfB2jmZ1IhAsmcNKAHTg/90s.jpg", "name": "Niro's Gyros", "price_rating": "1", "url": "http://www.yelp.com/biz/niros-gyros-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/OWvbF0NjcHWm-hQTjrb-MQ/30s.jpg", "fav_comment_content": "This is the best gyro place in town, and one of the better meal...", "phone": "(217) 328-6476", "fav_comment_user": "Edward M.", "address_l1": "1007 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Asian Fusion"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/TBAT3m2kcnvdX3y-STjwWg/90s.jpg", "name": "Flat Top Grill", "price_rating": "2", "url": "http://www.yelp.com/biz/flat-top-grill-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/WyZLT51THsDL90Tswlnv7g/30s.jpg", "fav_comment_content": "...fact that you can create your own stir fry and try all the different...", "phone": "(217) 344-3200", "fav_comment_user": "Ami T.", "address_l1": "607 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": ["Dive Bars", "American (Traditional)"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/kWCkkAC24c6jso12iFERbQ/90s.jpg", "name": "Bunny's Tavern", "price_rating": "1", "url": "http://www.yelp.com/biz/bunnys-tavern-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/sgFx-RaLx-l3i4EOAhUkhw/30s.jpg", "fav_comment_content": "Cheap drinks and great food.", "phone": "(217) 367-8175", "fav_comment_user": "Kristina H.", "address_l1": "119 W Water St", "address_l2": "Urbana, IL 61801"},
{"category": ["Bars", "Mexican"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/f75rp497iKYcLZyFU4hyDw/90s.jpg", "name": "Wedge Tequila Bar & Grill", "price_rating": "3", "url": "http://www.yelp.com/biz/wedge-tequila-bar-and-grill-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LWjEeqJHqfT483T43-Y59g/30s.jpg", "fav_comment_content": "I tried a delicious a\u00f1ejo, the guacamole, and a pastor taco.", "phone": "(217) 398-2869", "fav_comment_user": "Sarah H.", "address_l1": "415 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Diners"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/0OQxcHUZNqOCRAY8hKT0iA/90s.jpg", "name": "Merry-Ann's Diner", "price_rating": "1", "url": "http://www.yelp.com/biz/merry-anns-diner-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Great hash browns as well.", "phone": "(217) 531-1160", "fav_comment_user": "Tom K.", "address_l1": "1 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/CQRc8i04y9Mqjp9XKWpBWQ/90s.jpg", "name": "Sailfin Pet Shop", "price_rating": "", "url": "http://www.yelp.com/biz/sailfin-pet-shop-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "Best Local Fish Store within 100 miles of CU. There are others with better selections of niche products (such as Johnny's Reef Experience in Normal has better coral), but Sailfin is the\u2026", "phone": "(217) 352-1121", "fav_comment_user": "Tim J.", "address_l1": "720 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Ice Cream & Frozen Yogurt"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/UjpI6PbT2_clI9jRov8sfA/90s.jpg", "name": "Beri Frozen Yogurt", "price_rating": "1", "url": "http://www.yelp.com/biz/beri-frozen-yogurt-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/nURfFP2t4jrVdbfaTaHA2w/30s.jpg", "fav_comment_content": "oh, and also, make green tea one of your flavors.", "phone": "(217) 328-4008", "fav_comment_user": "Pete B.", "address_l1": "701 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hair Salons"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hair Benders", "price_rating": "2", "url": "http://www.yelp.com/biz/hair-benders-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/jnXKmh7GucSJIYkW6TptKw/30s.jpg", "fav_comment_content": "Since I was already slightly overdue for a haircut when I first moved here, when I noticed a person I was talking to had a more-than-basic hairstyle that was still nicely done, I asked if\u2026", "phone": "(217) 383-0379", "fav_comment_user": "J Y.", "address_l1": "703 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/QCtNn-ZDeh9V5aKY0dmSnQ/90s.jpg", "name": "Willard Airport", "price_rating": "", "url": "http://www.yelp.com/biz/willard-airport-savoy", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/H6hb50w9C3XZbuey3enxzw/30s.jpg", "fav_comment_content": "For a small airport, CMI is a 4-star airport. \u00a0It can be described in one word: \u00a0breeze. \u00a0Everything is easy here - checking in, the friendliness of the people who work here, getting through\u2026", "phone": "(217) 244-8600", "fav_comment_user": "Robert G.", "address_l1": "11 Airport Rd", "address_l2": "Savoy, IL 61874"},
{"category": ["Chinese"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/z-45SUrVeTIqxEbU_J475g/90s.jpg", "name": "Chopstix", "price_rating": "1", "url": "http://www.yelp.com/biz/chopstix-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/o26xoQXnwiWU0Ynexc5Bvg/30s.jpg", "fav_comment_content": "My go to when I want late night Chinese.", "phone": "(217) 359-2222", "fav_comment_user": "Hannah D.", "address_l1": "202 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/tsT_qcTSy_pgL1rAADLLKg/90s.jpg", "name": "VCA Heritage Animal Hospital", "price_rating": "", "url": "http://www.yelp.com/biz/vca-heritage-animal-hospital-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/sGMkicMYkLdndLuMWnzJqQ/30s.jpg", "fav_comment_content": "Like another reviewer, I will also happily take any vet who happens to be available to treat my 2 dogs and 2 cats. \u00a0Everyone is wonderful, capable and friendly. \u00a0I do have to say that Dr. Dust\u2026", "phone": "(217) 866-0258", "fav_comment_user": "Rebecca M.", "address_l1": "2101 N Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": ["Tattoo", "Piercing"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/jyX1A_dWrClwmKQ0NEOZRg/90s.jpg", "name": "No Regrets Tattoos & Body Piercing", "price_rating": "2", "url": "http://www.yelp.com/biz/no-regrets-tattoos-and-body-piercing-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/W6t23PT8IpA_wgMuR6yJTg/30s.jpg", "fav_comment_content": "The tattoo I got at No Regrets had to have been about three years ago, but I ought to give credit where credit is due. \u00a0My tat is exactly what I wanted, basically an exact replica of one of my\u2026", "phone": "(217) 351-9902", "fav_comment_user": "William R.", "address_l1": "117 W Church St", "address_l2": "Champaign, IL 61820"},
{"category": ["Used, Vintage & Consignment", "Costumes"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/KG5aIFOz-gNV3a0QeL9FLg/90s.jpg", "name": "Dandelion Vintage & Used Clothing", "price_rating": "2", "url": "http://www.yelp.com/biz/dandelion-vintage-and-used-clothing-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/baOxm2y9A-3gNHvZlmgdeg/30s.jpg", "fav_comment_content": "Pants in every conceivable color of pleather.", "phone": "(217) 355-9333", "fav_comment_user": "Helena B.", "address_l1": "9 E Taylor St", "address_l2": "Champaign, IL 61820"},
{"category": ["Dance Clubs"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/WUbgXOQ5unrZSc7PPkF0VQ/90s.jpg", "name": "Chester Street Bar", "price_rating": "1", "url": "http://www.yelp.com/biz/chester-street-bar-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/YPWoKdLJEQ9A45NPTVxHnA/30s.jpg", "fav_comment_content": "...club to this day as far as atmosphere, music, and engineering.", "phone": "(217) 356-5607", "fav_comment_user": "Al S.", "address_l1": "63 E Chester St", "address_l2": "Champaign, IL 61820"},
{"category": ["Chinese"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/zKWCJRfMCpQhyGYqVvyMsQ/90s.jpg", "name": "Empire Chinese Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/empire-chinese-restaurant-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/vPZS-Hz2VCq-8Cf6EhrNQg/30s.jpg", "fav_comment_content": "Best General Tso's chicken I have ever had, and I'm Chinese.", "phone": "(217) 328-0832", "fav_comment_user": "Vickie L.", "address_l1": "410 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Nail Salons"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/2zovDMuEkDp2f8JxrPWp1w/90s.jpg", "name": "Pro Nails", "price_rating": "2", "url": "http://www.yelp.com/biz/pro-nails-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/s_Yu_BuNBwa1CkX32yQe8w/30s.jpg", "fav_comment_content": "We got great manis and pedis here today! For $30 total, they give you excellent pedicure with hot stones. They also use nice products including OPI polish and Bath and Body Works lotion. \u00a0It's\u2026", "phone": "(217) 328-7430", "fav_comment_user": "Erica V.", "address_l1": "2022 Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Japanese"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/yXNbS8W-acBeiMQL3b-MsQ/90s.jpg", "name": "Sushi Rock", "price_rating": "2", "url": "http://www.yelp.com/biz/sushi-rock-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/N2B9tOZkR9sD7CqHdr8dtg/30s.jpg", "fav_comment_content": "...items to get include the Bento Boxes (the chicken is yummi), the...", "phone": "(217) 337-4285", "fav_comment_user": "Jun J.", "address_l1": "621 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/IIFJ9iQ6H9j_bGuNBhKo_w/90s.jpg", "name": "Illini Union", "price_rating": "", "url": "http://www.yelp.com/biz/illini-union-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/8Nc7aWiTseV-yyTxwYqO4Q/30s.jpg", "fav_comment_content": "When you know and understand what a real student union is and what it is supposed to look like at a public land grant university, then you simply want to weep when you come home and gaze at\u2026", "phone": "(217) 333-2050", "fav_comment_user": "Alex P.", "address_l1": "1401 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": ["Bikes", "Mountain Biking"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/AZ-_k6YdorSp8uypL_lpBA/90s.jpg", "name": "Champaign Cycle Co", "price_rating": "2", "url": "http://www.yelp.com/biz/champaign-cycle-co-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/VTLrlgVxaENdde5mZX-zbA/30s.jpg", "fav_comment_content": "My trek rides like a totally new bike now.", "phone": "(217) 352-7600", "fav_comment_user": "Annie W.", "address_l1": "506 S Country Fair Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Music & DVDs", "Videos & Video Game Rental", "Vinyl Records"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/cAgP2xGBEynJaLsakKAtDw/90s.jpg", "name": "Exile on Main Street", "price_rating": "2", "url": "http://www.yelp.com/biz/exile-on-main-street-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "...looking through if you're interested in independent music, films, etc.", "phone": "(217) 398-6246", "fav_comment_user": "m k.", "address_l1": "1 E. Main St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bars"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/jDTZG4SjuasNVlEs_bdwnA/90s.jpg", "name": "Clybourne", "price_rating": "2", "url": "http://www.yelp.com/biz/clybourne-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/vPZS-Hz2VCq-8Cf6EhrNQg/30s.jpg", "fav_comment_content": "Wine night - how I loathe/heart thee.", "phone": "(217) 383-1008", "fav_comment_user": "Vickie L.", "address_l1": "708 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/9YtDckDuFtBpax5DIuTHGQ/90s.jpg", "name": "Chipotle Mexican Grill", "price_rating": "1", "url": "http://www.yelp.com/biz/chipotle-mexican-grill-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ZiQfQCcmKEmIPOIPVCr-2Q/30s.jpg", "fav_comment_content": "I love their chicken tacos and burrito bowls and they have tons of...", "phone": "(217) 344-0466", "fav_comment_user": "Mellissa K.", "address_l1": "528 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Shoe Stores", "Outdoor Gear"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/3PrYha7kHLQi41oI203i5Q/90s.jpg", "name": "Champaign Surplus", "price_rating": "2", "url": "http://www.yelp.com/biz/champaign-surplus-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "...they have those little details for camping that you always need at...", "phone": "(217) 356-4703", "fav_comment_user": "Steve M.", "address_l1": "303 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Thai"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Uk3UifhdoRcdvIHZQilwig/90s.jpg", "name": "Basil Thai Urbana", "price_rating": "1", "url": "http://www.yelp.com/biz/basil-thai-urbana-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/FvnI0XzURlNK_yXsab5E-A/30s.jpg", "fav_comment_content": "Pad See Ewe with chicken was one of my favorites during freshman year.", "phone": "(217) 344-8662", "fav_comment_user": "Irene M.", "address_l1": "701 S Gregory St", "address_l2": "Urbana, IL 61803"},
{"category": ["Dive Bars"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/4iQ5Ouz0ZbqQGo1lK3yUaQ/90s.jpg", "name": "Tumble Inn Tavern", "price_rating": "2", "url": "http://www.yelp.com/biz/tumble-inn-tavern-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/pp83Ww-ksa0kWrjn1Ez_lA/30s.jpg", "fav_comment_content": "you just can't beat TI, where you tumble in and you stumble out. \u00a0I spent many, many nights here and always had fun. The bartenders (Chester especially) are great and the company is good. You\u2026", "phone": "(217) 356-0012", "fav_comment_user": "Elizabeth A.", "address_l1": "302 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Jewelry", "Art Galleries"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "International Galleries", "price_rating": "2", "url": "http://www.yelp.com/biz/international-galleries-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/9iKhlwl65I-hESYnPTw-vQ/30s.jpg", "fav_comment_content": "I just bought a picture for my living room wall. \u00a0It is the prettiest picture I ever bought (It's a Fall scene). \u00a0They laid out some framing choices for me and it was done within a week. \u00a0 It\u2026", "phone": "(217) 328-2254", "fav_comment_user": "Crystal M.", "address_l1": "118 Lincoln Square", "address_l2": "Urbana, IL 61801"},
{"category": ["Middle Eastern"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/7hZWFR7r3GQELBldS0_kvA/90s.jpg", "name": "Jerusalem Middle Eastern Cuisine", "price_rating": "1", "url": "http://www.yelp.com/biz/jerusalem-middle-eastern-cuisine-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/YHrUMOfi5cgveLQ-qqOLog/30s.jpg", "fav_comment_content": "Wonderful hummus and everything else, too.", "phone": "(217) 398-9022", "fav_comment_user": "Jenna Z.", "address_l1": "601 S Wright St", "address_l2": "Champaign, IL 61820"},
{"category": ["Italian"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/OrK5G6tXkltAfDUNd5X64w/90s.jpg", "name": "The Great Impasta", "price_rating": "2", "url": "http://www.yelp.com/biz/the-great-impasta-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/TlVBQfEc8Mqn9QsoHGRAZw/30s.jpg", "fav_comment_content": "The BEST place in Champaign-Urbana to enjoy some incredible pasta.", "phone": "(217) 359-7377", "fav_comment_user": "Bill J.", "address_l1": "156 C Lincoln Square", "address_l2": "Urbana, IL 61801"},
{"category": ["Grocery", "Health Markets", "Coffee & Tea"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/wkTo_4Tzb-Ecz22bDLM2sA/90s.jpg", "name": "Strawberry Fields", "price_rating": "3", "url": "http://www.yelp.com/biz/strawberry-fields-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/X1uW96-JkEN9ETIlPFkzOQ/30s.jpg", "fav_comment_content": "Plus, it's organic, healthy and affordable.", "phone": "(217) 328-1655", "fav_comment_user": "Kwoky L.", "address_l1": "306 W Springfield Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Italian", "Dive Bars"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/bd4hrP6i0bM_ITiJGdoYpQ/90s.jpg", "name": "Geovanti's", "price_rating": "1", "url": "http://www.yelp.com/biz/geovantis-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/NLzRT1nIYh9K1Q-Ls_eB3g/30s.jpg", "fav_comment_content": "But who can turn down amazing chicken strips.", "phone": "(217) 344-4600", "fav_comment_user": "Lisa G.", "address_l1": "401 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Sandwiches"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/8cA4F4d6HoQMcl3ba4GLVQ/90s.jpg", "name": "Fat Sandwich Company", "price_rating": "1", "url": "http://www.yelp.com/biz/fat-sandwich-company-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Mayo, ketchup, bacon, chicken fingers, mozz sticks and load of fries...", "phone": "(217) 328-5035", "fav_comment_user": "Mac B.", "address_l1": "502 E. John St", "address_l2": "Champaign, IL 61820"},
{"category": ["Grocery"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/zH7UwQOivJPOHFIIlBmryQ/90s.jpg", "name": "Meijer", "price_rating": "1", "url": "http://www.yelp.com/biz/meijer-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/EjLLj5A51uz7olaQBn5FQQ/30s.jpg", "fav_comment_content": "Huge with pretty much everything you need.", "phone": "(217) 353-4001", "fav_comment_user": "Sherwin C.", "address_l1": "2401 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Music Venues", "Dance Clubs"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/L38xUhu8cjZiXX3bKPGnOg/90s.jpg", "name": "The Highdive", "price_rating": "1", "url": "http://www.yelp.com/biz/the-highdive-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/vONjpn97YWN9BMBQbiZ2Fg/30s.jpg", "fav_comment_content": "Folks, this is your quintessential small town concert venue. \u00a0Great prices, great service, great music. \u00a0I came from way out of town for an act that I couldn't pass up: the Corb Lund Band.\u2026", "phone": "(217) 356-2337", "fav_comment_user": "Scot C.", "address_l1": "51 East Main St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/GXFNZukrubzLX4NW3jcOOQ/90s.jpg", "name": "Hilton Garden Inn Champaign/ Urbana", "price_rating": "2", "url": "http://www.yelp.com/biz/hilton-garden-inn-champaign-urbana-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/xs0hqKDeO3wAjAVvWTO4JA/30s.jpg", "fav_comment_content": "The hotel is very clean, the staff are friendly.", "phone": "(217) 352-9970", "fav_comment_user": "Van L.", "address_l1": "1501 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hair Salons"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/KOjkqY77i_A5REIDa6w9UQ/90s.jpg", "name": "Limited Edition Hair Studio, Inc.", "price_rating": "2", "url": "http://www.yelp.com/biz/limited-edition-hair-studio-inc-savoy", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Amy has been coloring and cutting my hair for many years. \u00a0She has always done an amazing job. \u00a0Over the years, I've changed colors and styles many times and I've been very pleased every time.\u2026", "phone": "(217) 352-9508", "fav_comment_user": "Kari S.", "address_l1": "411 Claredon Ct", "address_l2": "Savoy, IL 61874"},
{"category": ["Comic Books"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/XKfUf2SUUFGxU2U1UOdDbw/90s.jpg", "name": "G-Mart Comics", "price_rating": "1", "url": "http://www.yelp.com/biz/g-mart-comics-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/xibZBpgp0XHFp2B7R9OKwg/30s.jpg", "fav_comment_content": "1 word. Colbotron. \u00a0Colbotron is the part robot, part wizard, part supercomputer imp employed by G-mart. \u00a0 I once witnessed him throw a nerd through a bookshelf for stating that Warren Ellis\u2026", "phone": "(217) 356-7733", "fav_comment_user": "A. J. H.", "address_l1": "44 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bakeries"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Cookie Jar", "price_rating": "1", "url": "http://www.yelp.com/biz/the-cookie-jar-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/BPVdd0ql09oYng_cJXz1Fw/30s.jpg", "fav_comment_content": "I was at the University of Illinois for many years and since then have never found a place with cookies as good as The Cookie Jar has. \u00a0Hands downs, best cookie is the Buttercreme Sandwich.\u2026", "phone": "(217) 384-5246", "fav_comment_user": "Samir P.", "address_l1": "712 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": ["Optometrists", "Eyewear & Opticians"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/zMcztLPZEsmSSNKrEyBwSw/90s.jpg", "name": "Illini Eye Care", "price_rating": "4", "url": "http://www.yelp.com/biz/illini-eye-care-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/twumPwOQgcFQGSPNROtOag/30s.jpg", "fav_comment_content": "I'm no expert on eye exams or optometry in general, but my experience at Illini Eye Care was as good as I could have expected. \u00a0 \u00a0I was on my way out to the mall to get an eye exam at one of\u2026", "phone": "(217) 351-6110", "fav_comment_user": "Brent F.", "address_l1": "518 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Japanese"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/5JHI1Sptr3J8ICLVDOXbKQ/90s.jpg", "name": "Kamakura Japanese Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/kamakura-japanese-restaurant-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/oDMxi33M9_iZVrVuHWiOng/30s.jpg", "fav_comment_content": "The sushi is fresh tasting and just delicious.", "phone": "(217) 351-4332", "fav_comment_user": "Mike B.", "address_l1": "715 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Breakfast & Brunch"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/_cnEmrpQ79W0KHoPIor5gw/90s.jpg", "name": "Cracker Barrel Old Country Store", "price_rating": "2", "url": "http://www.yelp.com/biz/cracker-barrel-old-country-store-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/zTCFn2hiIq22ns6pzzgCxA/30s.jpg", "fav_comment_content": "The only chink in the armor of my meal was the baked potato.", "phone": "(217) 344-9087", "fav_comment_user": "Tyler N.", "address_l1": "2101 N Kenyon Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Pizza"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Ama6HfGQo7CuzocFS6-H8g/90s.jpg", "name": "Jet's Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/jets-pizza-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vYYx4qDn4yPeayvIwJyUUg/30s.jpg", "fav_comment_content": "The deep dish is most similar to Garcia's.", "phone": "(217) 352-3333", "fav_comment_user": "Tony B.", "address_l1": "512 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Grocery"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/mHw4uel-bsPDqTiLlCJRWg/90s.jpg", "name": "County Market", "price_rating": "2", "url": "http://www.yelp.com/biz/county-market-champaign-4", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/ZwsMkS6fdHA0AjhlEDGSkQ/30s.jpg", "fav_comment_content": "My favorite thing is the Caribou Coffee.", "phone": "(217) 352-4123", "fav_comment_user": "Myles M.", "address_l1": "331 E Stoughton St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bakeries"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/L6704dv1kPHXrajYgmvg6g/90s.jpg", "name": "The New Sweet Indulgence", "price_rating": "2", "url": "http://www.yelp.com/biz/the-new-sweet-indulgence-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LWjEeqJHqfT483T43-Y59g/30s.jpg", "fav_comment_content": "I bought a birthday cake for my friend here yesterday.", "phone": "(217) 352-2433", "fav_comment_user": "Sarah H.", "address_l1": "1121 Windsor Rd", "address_l2": "Champaign, IL 61821"},
{"category": ["Grocery", "Drugstores"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/6FtwEz6oKZx0EUAdOQ-hvw/90s.jpg", "name": "Schnucks Supermarkets", "price_rating": "2", "url": "http://www.yelp.com/biz/schnucks-supermarkets-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wU5ZrRBMK3SZCQd7sRrBlw/30s.jpg", "fav_comment_content": "...town for fresh produce, and their salad bar is a great lunch option.", "phone": "(217) 351-2600", "fav_comment_user": "N A.", "address_l1": "109 N Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Bakeries", "Grocery", "Florists"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "County Market", "price_rating": "2", "url": "http://www.yelp.com/biz/county-market-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/lN0sjwSmZHNPdPAVEoO3gA/30s.jpg", "fav_comment_content": "County Market rocks. They have a huge selection and their prices are very reasonable. \u00a0I've since moved to Texas and am sorely disappointed by some of the produce down here. Enjoy your corn\u2026", "phone": "(217) 351-8600", "fav_comment_user": "Lauren C.", "address_l1": "2901 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Thai"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/YSzh1tbuxq3pTeo9eeKltg/90s.jpg", "name": "Nitaya Thai", "price_rating": "2", "url": "http://www.yelp.com/biz/nitaya-thai-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/lN0sjwSmZHNPdPAVEoO3gA/30s.jpg", "fav_comment_content": "I really enjoyed the Pad Thai from this place.", "phone": "(217) 359-5540", "fav_comment_user": "Lauren C.", "address_l1": "134 W Church St", "address_l2": "Champaign, IL 61820"},
{"category": ["Massage"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/EYSqKtaHak6YC5IHRVLyfQ/90s.jpg", "name": "Jennifer Allen Therapies", "price_rating": "1", "url": "http://www.yelp.com/biz/jennifer-allen-therapies-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/T_hb50sw2RaiZ0jLzA6LyA/30s.jpg", "fav_comment_content": "I cannot say enough good things about my massage experience with Jennifer. She is warm and inviting and naturally puts you at ease the moment you step through the door. I am not a big fan of\u2026", "phone": "(217) 721-6813", "fav_comment_user": "Lynn S.", "address_l1": "1110 W Daniel St", "address_l2": "Champaign, IL 61821"},
{"category": ["Specialty Food"], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/8ZVwtVTwQ4dgBUaY8ixw7A/90s.jpg", "name": "Prairie Fruits Farm", "price_rating": "2", "url": "http://www.yelp.com/biz/prairie-fruits-farm-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/VwUQIE3JCU0uJ3kMaj_8Cg/30s.jpg", "fav_comment_content": "Prairie Fruits Farmstead and Creamery is located just North of Urbana. It is a little hard to get to because of the similarly named roads (Lincoln, N. Lincoln, etc.), but well worth the trip.\u2026", "phone": "", "fav_comment_user": "Michael K.", "address_l1": "4410 N Lincoln Ave", "address_l2": "Champaign, IL 61803"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Black Cab & Limo", "price_rating": "", "url": "http://www.yelp.com/biz/black-cab-and-limo-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I needed a ride to the auto repair shop and then back later in the afternoon. \u00a0He is friendly and punctual and has a great system where you text your ride request to his phone and as soon as\u2026", "phone": "(217) 693-2468", "fav_comment_user": "Mike P.", "address_l1": "Champaign, IL", "address_l2": ""},
{"category": ["Restaurants", "Pubs", "Music Venues"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/LE3rc01C67J-MGLDOHfC3w/90s.jpg", "name": "Cowboy Monkey", "price_rating": "2", "url": "http://www.yelp.com/biz/cowboy-monkey-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/MldW9Bk468AkpPR82GQODA/30s.jpg", "fav_comment_content": "...the summer, dare I say, it has the best outdoor seating in Champaign.", "phone": "(217) 398-2688", "fav_comment_user": "Eric U.", "address_l1": "6 E Taylor St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/VHJGLZV-Dk-nrV36CW52mw/90s.jpg", "name": "Champaign-Urbana Mass Transit District", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-urbana-mass-transit-district-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/upijtlaEPc2cUjvNBK1o3Q/30s.jpg", "fav_comment_content": "I definitely support MTD, it's a life saver. Can get it around anywhere in CU area. Sometimes bus can be late due to traffic or other issues. When have something important be sure to ride one\u2026", "phone": "(217) 384-8188", "fav_comment_user": "Suzy W.", "address_l1": "1101 E University Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["Seafood"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/N6Ju3pAph54SMvoJN5fGpA/90s.jpg", "name": "Red Lobster", "price_rating": "2", "url": "http://www.yelp.com/biz/red-lobster-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/KUsiU_9iWBYzi2DlJk84MA/30s.jpg", "fav_comment_content": "I also love,love, love those Cheddar Bay biscuits.", "phone": "(217) 355-2577", "fav_comment_user": "L H.", "address_l1": "1901 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Coffee & Tea"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/QPS2Id-tJSbB3pkpuyDP1A/90s.jpg", "name": "Espresso Royale", "price_rating": "1", "url": "http://www.yelp.com/biz/espresso-royale-champaign-7", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/uDvYvuHgw14wmQwsryAWqw/30s.jpg", "fav_comment_content": "I ordered a soy latte with hazelnut syrup and it was delicious.", "phone": "(217) 328-1112", "fav_comment_user": "Margaret A.", "address_l1": "602 E Daniel St", "address_l2": "Champaign, IL 61820"},
{"category": ["Party Supplies", "Costumes"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/isxZcuSoK6yeDRcnMcwomA/90s.jpg", "name": "Dallas & Co Costumes & Magic", "price_rating": "2", "url": "http://www.yelp.com/biz/dallas-and-co-costumes-and-magic-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "The best (and basically the only) place to go for Halloween in Champaign. Since Halloween is my favorite holiday, I cannot have a successful fall without visiting this place at least once\u2026", "phone": "(217) 351-5974", "fav_comment_user": "Ashley B.", "address_l1": "101 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Japanese"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/R55TG6mO40LkC6a8H6RVaA/90s.jpg", "name": "Oishi", "price_rating": "2", "url": "http://www.yelp.com/biz/oishi-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/gP7HMPGKZMuSDiHHuYPmtw/30s.jpg", "fav_comment_content": "The sushi is delicious, perfectly prepared.", "phone": "(217) 398-6888", "fav_comment_user": "Anastasia T.", "address_l1": "2501 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Mexican"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/d5UwAp6X2Xpql6TWEyYYnA/90s.jpg", "name": "El Torero", "price_rating": "1", "url": "http://www.yelp.com/biz/el-torero-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/8HC4GY5XaarkqTiJRoAAAQ/30s.jpg", "fav_comment_content": "Excellent service, food and it didn't smell like bathrooms. \u00a0Prices were very reasonable, with strong margaritas. \u00a0They got Jessie tipsy. The only downfall was the annoying woman two booths\u2026", "phone": "(217) 351-7024", "fav_comment_user": "Rick And Jessie R.", "address_l1": "2312 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Steakhouses"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/NhBeIFacxCodNrxShs8ZiA/90s.jpg", "name": "Alexander's Steakhouse", "price_rating": "2", "url": "http://www.yelp.com/biz/alexanders-steakhouse-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/3It37lAWY1RmwSRlQs9GGA/30s.jpg", "fav_comment_content": "...this existed where you get to cook your own steak on a big grill in...", "phone": "(217) 359-1789", "fav_comment_user": "Deanna C.", "address_l1": "202 W Anthony Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Grocery", "Ethnic Food", "American (New)"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/WkMr52IrZMxcstpMacxSaA/90s.jpg", "name": "Far East", "price_rating": "1", "url": "http://www.yelp.com/biz/far-east-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/DpZrYFnS73vorhzJgqjNsg/30s.jpg", "fav_comment_content": "CASH ONLY so be prepared for that.", "phone": "(217) 352-7137", "fav_comment_user": "Valerie W.", "address_l1": "105 S 5th St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/lqEYNL1RaVKGPdQ60yqs6A/90s.jpg", "name": "Kcm Auto Care", "price_rating": "", "url": "http://www.yelp.com/biz/kcm-auto-care-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Everyone here is great. They are friendly, honest, and they know what they are doing. I drive a 1988 BMW which presents some problems because of how old it is. The mechanics here are very good\u2026", "phone": "(217) 384-3055", "fav_comment_user": "Raquel H.", "address_l1": "1709 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/077RItnyuQMy2DzY3UTsYg/90s.jpg", "name": "Virginia Theatre", "price_rating": "", "url": "http://www.yelp.com/biz/virginia-theatre-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/5Jd3726rTpawFUuYNCR0xA/30s.jpg", "fav_comment_content": "The Virginia is an historic old movie theatre that can also stage plays, concerts or whatever. I am very happy that they are restoring the theatre and the old pipe organ to their former glory.\u2026", "phone": "(217) 356-9063", "fav_comment_user": "Debra W.", "address_l1": "203 W Park Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Chinese"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/vNgyLoseYp5ZpIOUOn0c6g/90s.jpg", "name": "Shanghai 1938", "price_rating": "2", "url": "http://www.yelp.com/biz/shanghai-1938-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/r2CpS14uYUFSCdbCB0M79Q/30s.jpg", "fav_comment_content": "Really good food. Just not the greatest soda (you might want to ask them to change it). Also doesn't deliver sometimes.", "phone": "(217) 351-8886", "fav_comment_user": "Carmen M.", "address_l1": "2504 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": ["Steakhouses"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Ribeye", "price_rating": "2", "url": "http://www.yelp.com/biz/the-ribeye-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Hsa-VEvuHS7ydBXhiL2Eeg/30s.jpg", "fav_comment_content": "I am not actually a huge fan of the ribeye steaks.", "phone": "(217) 351-9115", "fav_comment_user": "Anne W.", "address_l1": "1701 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bridal"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/b3PW2PurwbnDPqYP5hx3ig/90s.jpg", "name": "Michelle's Bridal Shoppe", "price_rating": "3", "url": "http://www.yelp.com/biz/michelles-bridal-shoppe-urbana-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I went here a while ago, but I wanted to post a review. \u00a0Basically, they had a good selection, they let me try on a few dresses, they allowed you to take pictures, I didn't feel rushed AND\u2026", "phone": "(217) 384-7914", "fav_comment_user": "Jen K.", "address_l1": "2210 N Willow Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Cajun/Creole"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/enjk0rpvgDMkC6EMXEcMZA/90s.jpg", "name": "J Gumbo's", "price_rating": "1", "url": "http://www.yelp.com/biz/j-gumbos-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/DNskUYkpNPEc8-NBubynUg/30s.jpg", "fav_comment_content": "Red hot chicken and drunken chicken are both really impressive. Spicy and flavorful. I've been twice and I need to get back more often: I forget this place exists. \u00a0The counter-staff were\u2026", "phone": "(217) 337-4840", "fav_comment_user": "Chris R.", "address_l1": "700 S Gregory St", "address_l2": "Urbana, IL 61801"},
{"category": ["Restaurants"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/-xr13XWHSWV5apQ3dHC7jQ/90s.jpg", "name": "Urbana Garden Family Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/urbana-garden-family-restaurant-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/VE1jW-m0XBdCOt0r4sYW9g/30s.jpg", "fav_comment_content": "My brothers and I ended up at a hotel next to this restaurant. \u00a0We always use yelp when trying to find a good restaurant in a new location - and when yelp gave us this restaurant as the #1 in\u2026", "phone": "(217) 328-1514", "fav_comment_user": "Julie L.", "address_l1": "810 W Killarney St", "address_l2": "Urbana, IL 61801"},
{"category": ["Chinese"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/kBOclu_qpurvwDJfKCVDZw/90s.jpg", "name": "South China Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/south-china-restaurant-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/QrIoYS2w_DrYotF7rPvSqw/30s.jpg", "fav_comment_content": "It has to be 5 stars this time since the owner bribed us with a complimentary medium dish of celery and pork dumplings. The dough covering was not thin but with firm and chewy texture. The\u2026", "phone": "(217) 352-9008", "fav_comment_user": "Nanxi L.", "address_l1": "25 E Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Italian"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Zm3ZSFYvjVSNbMMgribxRA/90s.jpg", "name": "Za's Italian Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/zas-italian-cafe-champaign-3", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/7EnLbXG5-4lfT_fvLATYhA/30s.jpg", "fav_comment_content": "...your little heart desires like garlic bread, soup, toppings, etc.", "phone": "(217) 356-5347", "fav_comment_user": "Josh L.", "address_l1": "1905 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Sandwiches"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/Loon5QwPvVf1XZTfj31BvQ/90s.jpg", "name": "Silver Mine Subs", "price_rating": "1", "url": "http://www.yelp.com/biz/silver-mine-subs-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/AxDmrsYIifsdkpJxN_h4cQ/30s.jpg", "fav_comment_content": "This review is on their breakfast only, as I have never been there for anything else. I have now had the pleasure of ordering all of the 5 burrito choices that must be made before 11 AM. Some\u2026", "phone": "(217) 328-5000", "fav_comment_user": "Mark B.", "address_l1": "612 E Daniel St", "address_l2": "Champaign, IL 61820"},
{"category": ["Tex-Mex", "Mexican"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Cactus Grill", "price_rating": "1", "url": "http://www.yelp.com/biz/cactus-grill-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/mzSXETFQakTSu-HUg3p7FQ/30s.jpg", "fav_comment_content": "Cactus Grill is a worthy substitute for Chipotle (I avoid campus if I can and the other location is out of the way). Their daily specials are a fair price and filling. I usually get the\u2026", "phone": "(217) 351-8226", "fav_comment_user": "E. C.", "address_l1": "1405 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Coffee & Tea"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/LZbkxToJifdFZ43uUe_KLw/90s.jpg", "name": "Starbucks", "price_rating": "2", "url": "http://www.yelp.com/biz/starbucks-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/O0mRl9DHtZNJunGd8L8PtA/30s.jpg", "fav_comment_content": "Have been a few times and have never had any problems with orders. They move the line of customers pretty quickly. Staff is friendly. There is a decent amount of seating, but it usually gets\u2026", "phone": "(217) 344-8613", "fav_comment_user": "Zewditu D.", "address_l1": "501 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Jewelry", "Watches"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Robert's", "price_rating": "1", "url": "http://www.yelp.com/biz/roberts-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "The first time I went to Robert's, I really wasn't sure what to expect. I wanted something unusual set into a ring--a tiny 20-sided die. Cindy worked with me to create an amazing engagement\u2026", "phone": "(217) 352-8618", "fav_comment_user": "Crayola B.", "address_l1": "28 E Chester St", "address_l2": "Champaign, IL 61821"},
{"category": ["Jewelry", "Watches"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Robert's", "price_rating": "1", "url": "http://www.yelp.com/biz/roberts-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "The first time I went to Robert's, I really wasn't sure what to expect. I wanted something unusual set into a ring--a tiny 20-sided die. Cindy worked with me to create an amazing engagement\u2026", "phone": "(217) 352-8618", "fav_comment_user": "Crayola B.", "address_l1": "28 E Chester St", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/MyoxG1EZqVWjt5Safu4Niw/90s.jpg", "name": "Skins & Tin Drum Shop", "price_rating": "", "url": "http://www.yelp.com/biz/skins-and-tin-drum-shop-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/P-G8Ji9CFPQf_nbFtMACZg/30s.jpg", "fav_comment_content": "Amazing drum shop! I lucked out and found this while working in Champaign. Stacked from floor to ceiling and wall to wall with new and unique cymbals and a myriad of drum gear. If they don't\u2026", "phone": "(217) 352-3786", "fav_comment_user": "Erick S.", "address_l1": "29 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": ["Optometrists", "Eyewear & Opticians"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Albert Jodi & Associates", "price_rating": "2", "url": "http://www.yelp.com/biz/albert-jodi-and-associates-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ILMYiSH0HxQeb4W1m4ORaQ/30s.jpg", "fav_comment_content": "Excellent service provided by Dr. Quivey for an annual exam and a contacts fitting exam. She was very thorough and performed visual exams I hadn't noticed other doctors doing before. She was\u2026", "phone": "(217) 356-5787", "fav_comment_user": "Someone S.", "address_l1": "505 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/hNcBgxbvQg60KbSwEgDVwg/90s.jpg", "name": "University Of Illinois Arboretum", "price_rating": "", "url": "http://www.yelp.com/biz/university-of-illinois-arboretum-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/CV8QqLjE8RAkDGyJjbY37A/30s.jpg", "fav_comment_content": "This is an amazing nature refuge. If you enjoy walking, biking, or running in a more natural and scenic environment, then this is the place for you. You can enjoy strolls around the lake, soak\u2026", "phone": "", "fav_comment_user": "Sandy W.", "address_l1": "S Lincoln Avenue & W Florida Avenue", "address_l2": "Urbana, IL 61801"},
{"category": ["Massage"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/13Ez8YDJ6eM6FhwYo3Eqww/90s.jpg", "name": "Body Therapy Center", "price_rating": "1", "url": "http://www.yelp.com/biz/body-therapy-center-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/GFqqGFtsyTC4J0ufDc5PrQ/30s.jpg", "fav_comment_content": "My husband got me a gift certificate for a one-hour massage with Glenn. \u00a0I have to say, this was probably the BEST one-hour massage I've ever had. \u00a0When you go in, you fill out a sheet\u2026", "phone": "(217) 355-8001", "fav_comment_user": "Gretchen C.", "address_l1": "206 N Randolph St", "address_l2": "Champaign, IL 61820"},
{"category": ["Art Supplies", "Thrift Stores"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The I.D.E.A. Store", "price_rating": "1", "url": "http://www.yelp.com/biz/the-i-d-e-a-store-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/aulgQqj8zlKjBShm6Ge_kA/30s.jpg", "fav_comment_content": "This place is awesome! They have any kind of random junk you would need to make some cool artwork! Just about everything is sold by the pound, which also makes it really cheap! My friend got a\u2026", "phone": "(217) 352-7878", "fav_comment_user": "Robin L.", "address_l1": "28 E Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/KClvDgwjIh7F7h1dcoINmw/90s.jpg", "name": "Triple T Car Wash", "price_rating": "", "url": "http://www.yelp.com/biz/triple-t-car-wash-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Got my SUV detailed and waxed. \u00a0It was embarrassingly dirty. When I got it back, it looked as good as it did when I first drove it off the car lot. \u00a0The gentleman behind the counter was kind\u2026", "phone": "(217) 352-9200", "fav_comment_user": "Heather J.", "address_l1": "1905 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/UlXvtcSmkSlJYCwljxdFAQ/90s.jpg", "name": "Mariya Vandivort - Keller Williams Realty", "price_rating": "", "url": "http://www.yelp.com/biz/mariya-vandivort-keller-williams-realty-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "While not totally new to the Champaign-Urbana area, we didn't know it well enough to make a definitive decision about buying a condo. Mariya was rated highly on yelp and her web site was well\u2026", "phone": "(217) 239-7125", "fav_comment_user": "John A.", "address_l1": "2441 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": ["Breakfast & Brunch"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/05JiTqoRMW0JRn17XzUZ_w/90s.jpg", "name": "Sammie's Pancake House", "price_rating": "1", "url": "http://www.yelp.com/biz/sammies-pancake-house-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/aulgQqj8zlKjBShm6Ge_kA/30s.jpg", "fav_comment_content": "I got the \"Hillbilly Skillet\". I felt kind of awkward ordering it because it was called hillbilly, but it looked good on the menu. It was really good, and I switched my pancakes for French\u2026", "phone": "(217) 355-3403", "fav_comment_user": "Robin L.", "address_l1": "1206 N Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Pizza", "Italian"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Manzella's Italian Patio", "price_rating": "2", "url": "http://www.yelp.com/biz/manzellas-italian-patio-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "...tablecloths, comfortable booths and Chianti bottles hanging from the...", "phone": "(217) 352-7624", "fav_comment_user": "Ellen M.", "address_l1": "115 S 1st St", "address_l2": "Champaign, IL 61820"},
{"category": ["Desserts"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/zno-kblORM-nLyeb6YzUrg/90s.jpg", "name": "Insomnia Cookies", "price_rating": "2", "url": "http://www.yelp.com/biz/insomnia-cookies-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/L-8bvq_MApK57p_nrYKPtw/30s.jpg", "fav_comment_content": "Every town should have a cookie place that delivers late at night.", "phone": "(877) 632-6654", "fav_comment_user": "April P.", "address_l1": "502 E John St", "address_l2": "Champaign, IL 61820"},
{"category": ["Coffee & Tea"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/Rxo3gjrMNRtotlkVYQwl5A/90s.jpg", "name": "Walnut Street Tea Co", "price_rating": "2", "url": "http://www.yelp.com/biz/walnut-street-tea-co-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/aulgQqj8zlKjBShm6Ge_kA/30s.jpg", "fav_comment_content": "This is one of my favorite shops! \u00a0They have really good prices on tea, and they sell coffee too! \u00a0It is the best place to get tea infusers, and they have all kinds of cute ones like ones that\u2026", "phone": "(217) 351-6975", "fav_comment_user": "Robin L.", "address_l1": "115 S Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["Donuts"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Y6873vgff_xrI1yKescJZA/90s.jpg", "name": "Carmella's Creme", "price_rating": "1", "url": "http://www.yelp.com/biz/carmellas-creme-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Yes. Just yes. Visited for the first time today and it's a good thing I'm only living here for a few more months, because I can see myself getting into a dangerous habit of going here. 6\u2026", "phone": "(217) 531-0024", "fav_comment_user": "Crayola B.", "address_l1": "1611 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/6EAPePfyFHhRQBSS-_xOsw/90s.jpg", "name": "O'Brien Auto Park of Urbana", "price_rating": "", "url": "http://www.yelp.com/biz/o-brien-auto-park-of-urbana-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/bj5mAm5tpq50Exf8YOJ_hg/30s.jpg", "fav_comment_content": "This dealership is FANTASTIC!! I've never shopped for a car before and they were very helpful and patient, giving me information but not making me choose one way or another. I had Steve and he\u2026", "phone": "(855) 315-7598", "fav_comment_user": "Sarah H.", "address_l1": "1111 O'brien Dr", "address_l2": "Urbana, IL 61802"},
{"category": ["Lounges"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/cudGUzatSw5YM07RFlDnBg/90s.jpg", "name": "Red Star Liquors", "price_rating": "3", "url": "http://www.yelp.com/biz/red-star-liquors-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I LOVED THIS PLACE!!!!!!!!! I have been in Urbana for two years now!!!! and DAMN!!!!!!!! have I been missing out!!! I'm a medical student who needed some getting away!! Damn did Red Star come\u2026", "phone": "(217) 954-1125", "fav_comment_user": "Francisca M.", "address_l1": "114 S Race St", "address_l2": "Urbana, IL 61801"},
{"category": ["Sandwiches", "Bakeries"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/V4a2vUOpb0jmmyYJXq6aPQ/90s.jpg", "name": "Atlanta Bread Company", "price_rating": "1", "url": "http://www.yelp.com/biz/atlanta-bread-company-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/bSrwnCBeK83_PZMck9CkpQ/30s.jpg", "fav_comment_content": "Chicken salad is great.", "phone": "(217) 356-8040", "fav_comment_user": "Jen F.", "address_l1": "1905 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Los Amigos", "price_rating": "1", "url": "http://www.yelp.com/biz/los-amigos-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/S4NHJpoSUm5BMwAj43FZag/30s.jpg", "fav_comment_content": "i went to visit my brother and went to eat their and it is the best food that i have ate in champaign the meat is the best the service is good its authentic i live out in chicago i like to go\u2026", "phone": "(217) 337-7300", "fav_comment_user": "daisy s.", "address_l1": "404 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Women's Clothing", "Shoe Stores", "Jewelry"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Bella Mia Boutique", "price_rating": "3", "url": "http://www.yelp.com/biz/bella-mia-boutique-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LRnqAkWUt3A_v_2uwSO7og/30s.jpg", "fav_comment_content": "I have purchased quite a few gift's here, and I will continue to do so. \u00a0They have a wide selection of clothing (mens too!) and jewelry and shoes. \u00a0They have done a great job of having a wide\u2026", "phone": "(217) 352-2222", "fav_comment_user": "Chris n.", "address_l1": "1422 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Sandwiches", "Food Delivery Services", "Delis"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/hrw_9CjQW-UHxr-fra8mKQ/90s.jpg", "name": "Jimmy John's", "price_rating": "1", "url": "http://www.yelp.com/biz/jimmy-johns-urbana-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/9HZH7YviUN7YfQSlaR2w6Q/30s.jpg", "fav_comment_content": "Scary fast delivery (no joke: one time, my order arrived 3 min later). \u00a0Never a mess up (no joke: throughout all 4 years of undergrad). \u00a0This Jimmy John's saved my life so many times when my\u2026", "phone": "(217) 328-2700", "fav_comment_user": "Sivling H.", "address_l1": "102 E University", "address_l2": "Urbana, IL 61801"},
{"category": ["Shoe Stores"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/7gqXZHiG9_xLzfp_P70iGw/90s.jpg", "name": "BodyN'Sole", "price_rating": "2", "url": "http://www.yelp.com/biz/bodynsole-savoy", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fSD8AHQsWAw4XU31NNKH_w/30s.jpg", "fav_comment_content": "i have been a runner for many years, and i've always bought my shoes at this place. \u00a0they do check gait, and know how to put you in the right shoe for your needs. \u00a0i appreciate that they are\u2026", "phone": "(217) 356-8926", "fav_comment_user": "RJ D.", "address_l1": "1317 Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": ["Bars", "American (Traditional)"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/NJezNST5yNtWA72qVoRtaA/90s.jpg", "name": "Guido's Bar & Grill", "price_rating": "2", "url": "http://www.yelp.com/biz/guidos-bar-and-grill-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ZiQfQCcmKEmIPOIPVCr-2Q/30s.jpg", "fav_comment_content": "Surprisingly though the eggplant fries were amazingly delicious.", "phone": "(217) 359-3148", "fav_comment_user": "Mellissa K.", "address_l1": "2 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": ["Italian"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/VYTpEBGh0GoH8f1CvNMzIg/90s.jpg", "name": "Olive Garden Italian Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/olive-garden-italian-restaurant-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/O0mRl9DHtZNJunGd8L8PtA/30s.jpg", "fav_comment_content": "This rating is based on my most recent visit because it had been quite a long time since I had been here. \u00a0Nuts and bolts: Went with the family to celebrate a birthday. \u00a0Order: 1 app, 3 orders\u2026", "phone": "(217) 351-6339", "fav_comment_user": "Zewditu D.", "address_l1": "30 E Anthony Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Sushi Bars", "Japanese"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/-NV0MoEYTrFAMRJlkymQKg/90s.jpg", "name": "Sushi Ichiban", "price_rating": "2", "url": "http://www.yelp.com/biz/sushi-ichiban-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Teriyaki lunch combos are very good and a fantastic value.", "phone": "(217) 954-0493", "fav_comment_user": "Victoria W.", "address_l1": "619 S Wright St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Bj7MxDS7SEwwK5ri6cEMkw/90s.jpg", "name": "Hampton Inn Champaign/Urbana", "price_rating": "2", "url": "http://www.yelp.com/biz/hampton-inn-champaign-urbana-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/A8uDMOEkVaJh3Lbx61vJmw/30s.jpg", "fav_comment_content": "This place is tops. \u00a0We've had two kids go through college at UICC over a span of seven years, so know the area accommodations well. \u00a0The staff change periodically, but the Champaign Hampton\u2026", "phone": "(217) 337-1100", "fav_comment_user": "skip l.", "address_l1": "1200 West University Avenue", "address_l2": "Urbana, IL 61801"},
{"category": ["Hobby Shops"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/-c10-DD8IQmMZQAC9qizig/90s.jpg", "name": "The Gaming Goat", "price_rating": "1", "url": "http://www.yelp.com/biz/the-gaming-goat-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/l2uzpQtDlhEIaPPkM5RI-w/30s.jpg", "fav_comment_content": "I happened into the Gaming Goat shortly after it opened and I have to say, I was impressed. I am not from the Champaign area but was in town to hang out with some friends, got in town early\u2026", "phone": "(217) 607-2317", "fav_comment_user": "Carl S.", "address_l1": "723 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Chinese"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/vQJFuyA5RpWVsQwffK3JIA/90s.jpg", "name": "Home of Gourmet Chinese & Thai Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/home-of-gourmet-chinese-and-thai-restaurant-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SCFG3OMTOjL_feIiCAwiPQ/30s.jpg", "fav_comment_content": "I really enjoyed the authentic Chinese food I had at lunch here.", "phone": "(217) 344-7483", "fav_comment_user": "Eric M.", "address_l1": "604 E Daniel St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/J5RcQyjAPP0zsbEi8oPLnQ/90s.jpg", "name": "Rosati's Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/rosatis-pizza-urbana-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/NujAPL9rgTbynbY6NG6wUw/30s.jpg", "fav_comment_content": "I am a lover of thin crust and their Pepperoni Classic was very tasty.", "phone": "(217) 328-2408", "fav_comment_user": "Christy O.", "address_l1": "701 S Gregory St", "address_l2": "Urbana, IL 61801"},
{"category": ["Asian Fusion"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/nL34XfUZIAnD9ZGZzc3UUw/90s.jpg", "name": "Noodles and Company", "price_rating": "1", "url": "http://www.yelp.com/biz/noodles-and-company-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I tried the Pesto Cavatappi with Chicken ($2.35 extra) at Noodles and...", "phone": "(217) 367-2000", "fav_comment_user": "Reet S.", "address_l1": "528 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/JLrLJr0MePuilmc8wowpgA/90s.jpg", "name": "Pizza M", "price_rating": "2", "url": "http://www.yelp.com/biz/pizza-m-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/t0NyqJMck9RP2Yl3-_tbJg/30s.jpg", "fav_comment_content": "BEST PIZZA IN TOWN! \u00a0I really don't understand the bad reviews for this place. Yes, sometimes the wait is long but the pizza is made from scratch. If you want to eat some crap that only takes\u2026", "phone": "(217) 202-1919", "fav_comment_user": "Shantel M.", "address_l1": "208 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ANzi-kA10V9vWQLF2P0uFg/90s.jpg", "name": "Kessler Optical", "price_rating": "", "url": "http://www.yelp.com/biz/kessler-optical-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/JtWszsiI7jwE4wHTLFteFQ/30s.jpg", "fav_comment_content": "I never thought I would describe an Optometrist's office as \"trendy\" or \"chic.\" \u00a0But there are no other words for Dr. Kessler's office. \u00a0It's like a chichi hair salon. \u00a0The waiting room has\u2026", "phone": "(217) 356-5377", "fav_comment_user": "Heather T.", "address_l1": "44 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Caring Hands Animal Hospital", "price_rating": "", "url": "http://www.yelp.com/biz/caring-hands-animal-hospital-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ILMYiSH0HxQeb4W1m4ORaQ/30s.jpg", "fav_comment_content": "My dog has always received great service from Caring Hands and the staff has always been great and friendly. My dog has not had any major procedures there. \u00a0Prices are competitive and\u2026", "phone": "(217) 328-5350", "fav_comment_user": "Someone S.", "address_l1": "1704 Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Ice Cream & Frozen Yogurt"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/HnYS_pU8uoa47dKTmZtr2w/90s.jpg", "name": "Marble Slab Creamery", "price_rating": "2", "url": "http://www.yelp.com/biz/marble-slab-creamery-savoy", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/TbumYY9wo3Uyt0xZOnaoYg/30s.jpg", "fav_comment_content": "This is an imitation of a Cold Stone Creamery in my mind. \u00a0The ice cream and toppings are very solid, but I give it a 4/5, whereas I would give Cold Stone a 5/5. \u00a0This location has always\u2026", "phone": "(217) 359-5950", "fav_comment_user": "Ben K.", "address_l1": "1211 Savoy Plz Ln", "address_l2": "Savoy, IL 61874"},
{"category": ["Hotels"], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/eXlwql6DKQfcrCU90tj5BQ/90s.jpg", "name": "Ihotel", "price_rating": "2", "url": "http://www.yelp.com/biz/ihotel-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/x9zCWu2XjTQLwti8lWLieQ/30s.jpg", "fav_comment_content": "As this business executive was driving from Fort Wayne to Springfield, he had to find a hotel to stay. All the usual ones came to mind at any exit before Springfield. Still things look and\u2026", "phone": "(217) 819-5000", "fav_comment_user": "Aris M.", "address_l1": "1900 S 1st St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/_KM0f_lC3qYNg-QpaSoLQQ/90s.jpg", "name": "Tire Barn Warehouse", "price_rating": "", "url": "http://www.yelp.com/biz/tire-barn-warehouse-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/cOdaIPEERSegvUS2MT7OkQ/30s.jpg", "fav_comment_content": "About a month ago I had a flat. I told them we planned on getting new tires anyway a month later. He fixed my flat free of charge. We set up an appointment for 1:45pm. We were in and out with\u2026", "phone": "(217) 351-8473", "fav_comment_user": "Ashleigh S.", "address_l1": "806 Bloomington Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["American (New)", "Bars"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/ko1iwuoSe9iufB6bQZ5abA/90s.jpg", "name": "Houlihan's", "price_rating": "2", "url": "http://www.yelp.com/biz/houlihans-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/hItOqUp3panUiWWrBH3DQw/30s.jpg", "fav_comment_content": "The Fish Tacos were the best I've had \"inland.", "phone": "(217) 819-5005", "fav_comment_user": "David K.", "address_l1": "1900 S 1st St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza", "Italian"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/vLtJ1jdR4amh8Hmx0y0skA/90s.jpg", "name": "Monical's Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/monicals-pizza-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/XAriuVlN6A5hL9xAbHUg_Q/30s.jpg", "fav_comment_content": "We ordered the stuffed pizza. While similar to a Chicao-style pizza, this \u00a0had a bottom and top crust, as well as sauce on the top. It was FABULOUS! And it comes with 3 toppings for under $15.\u2026", "phone": "(217) 356-4243", "fav_comment_user": "Kimberly S.", "address_l1": "103 W Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Bakeries", "Grocery"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/wvM06jkwOaC9xlpa75_lOg/90s.jpg", "name": "Schnucks Supermarkets", "price_rating": "2", "url": "http://www.yelp.com/biz/schnucks-supermarkets-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Hsa-VEvuHS7ydBXhiL2Eeg/30s.jpg", "fav_comment_content": "I do all my grocery shopping here. \u00a0I know it's more expensive than going to Meijer or Walmart.. but the produce is really much fresher (with the exception of the tomatoes). \u00a0That means if you\u2026", "phone": "(217) 337-6016", "fav_comment_user": "Anne W.", "address_l1": "200 N Vine St", "address_l2": "Urbana, IL 61802"},
{"category": ["American (Traditional)", "Breakfast & Brunch"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/shHZnZEqSP3z0y4QnJ8B_w/90s.jpg", "name": "O'Charley's", "price_rating": "2", "url": "http://www.yelp.com/biz/o-charleys-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/i0H9ukv2BoHBnkqXGJXdoQ/30s.jpg", "fav_comment_content": "Decent food, sometimes feel ignored, but hey, can't beat the rolls.", "phone": "(217) 355-3901", "fav_comment_user": "Chelsey S.", "address_l1": "730 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Pizza"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/_oDd4HJT1Zk8lLLDpzmnIg/90s.jpg", "name": "Monical's Pizza", "price_rating": "2", "url": "http://www.yelp.com/biz/monicals-pizza-urbana-3", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/IGKRSIUKsHVzWSZadzyPSg/30s.jpg", "fav_comment_content": "Awesome thin crust pizza. The crust is cracker crispy, just burnt enough on the edges to give it the right smokiness. \u00a0The toppings are just right too. \u00a0Does anyone even order anything else?\u2026", "phone": "(217) 367-5781", "fav_comment_user": "Eric Y.", "address_l1": "2720 S Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Florists"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Mr_UOUfSpNZFQrH2sq3XoA/90s.jpg", "name": "English Hedgerow", "price_rating": "3", "url": "http://www.yelp.com/biz/english-hedgerow-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "An adorable, quaint little shop that has a ton of beautiful finds and a nice selection of flowers. Both ladies that were helping us find some spring bouquets for our moms were reallllly\u2026", "phone": "(217) 365-0055", "fav_comment_user": "Ashley B.", "address_l1": "406 N Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Burgers", "Sandwiches", "Ice Cream & Frozen Yogurt"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/ZIVayjCj8sO1cwx7j3VeLg/90s.jpg", "name": "Culver's", "price_rating": "2", "url": "http://www.yelp.com/biz/culvers-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/xAoVdj0GAOGTcjCcXOvfhQ/30s.jpg", "fav_comment_content": "Neat, clean, tidy place. Quick service. \u00a0If you like Reuben sandwiches, they make 'em right. With seeded rye. The only way to go.", "phone": "(217) 356-8132", "fav_comment_user": "Gary H.", "address_l1": "903 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Hair Salons", "Nail Salons"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Wingard Salon", "price_rating": "2", "url": "http://www.yelp.com/biz/wingard-salon-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "I have been going to Wingard since the day they opened. \u00a0My stylist, Debbie C,. does such a fantastic job that I would never consider going to any one else. \u00a0She knows all the latest\u2026", "phone": "(217) 403-1153", "fav_comment_user": "Lisa B.", "address_l1": "805 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Thomas E Standley, DMD", "price_rating": "", "url": "http://www.yelp.com/biz/thomas-e-standley-dmd-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I loved Dr.Standley. I had a problem with one of my fillings in my molars and he repeatedly worked only at no cost until I was pain free. He was very nice \u00a0and does not rush to get to the next\u2026", "phone": "(217) 355-5600", "fav_comment_user": "E T.", "address_l1": "30 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Ivey Auto Body Specialist", "price_rating": "", "url": "http://www.yelp.com/biz/ivey-auto-body-specialist-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/v5BjGHaFHxzblp621q3qKg/30s.jpg", "fav_comment_content": "Our car got hit and needed a paint job on the front bumper. \u00a0We took it in for an estimate, and brought it back the next week to get it worked on. \u00a0The car was finished in ONE day and for the\u2026", "phone": "(217) 356-3961", "fav_comment_user": "Deborah K.", "address_l1": "503 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/U3fg107eDpI38PgNWEeJ4g/90s.jpg", "name": "Red's Muffler Shop", "price_rating": "", "url": "http://www.yelp.com/biz/reds-muffler-shop-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I needed a new flex tube put on my 2000 Toyota Camry. \u00a0The Toyota dealer gave me an absurd quote-- close to $1500-- and recommended that I check out Red's Muffler Shop for a reputable fix from\u2026", "phone": "(217) 344-1676", "fav_comment_user": "Ben J.", "address_l1": "102 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Bars"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/3SPGFeTFJvD1Zf24eJ7ceA/90s.jpg", "name": "It's Brothers Bar & Grill", "price_rating": "1", "url": "http://www.yelp.com/biz/its-brothers-bar-and-grill-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Hsa-VEvuHS7ydBXhiL2Eeg/30s.jpg", "fav_comment_content": "But they do play good music.", "phone": "(217) 328-5531", "fav_comment_user": "Anne W.", "address_l1": "613 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Women's Clothing", "Accessories", "Shoe Stores"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/HtIOf_Ccdg_C0OnAshjFtQ/90s.jpg", "name": "Circles Boutique", "price_rating": "3", "url": "http://www.yelp.com/biz/circles-boutique-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/ChBsq5OQt_4EN-dlj4oAhg/30s.jpg", "fav_comment_content": "I love this store. It stands alone here. For a city with a major university, Champaign has very little to offer in terms of shopping. If that sounds snotty to you, I ask you to look down at\u2026", "phone": "(217) 359-2195", "fav_comment_user": "Megs F.", "address_l1": "114 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bookstores"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/Of-L-o_PdbUgW-NrZdHSlw/90s.jpg", "name": "Barnes & Noble Booksellers", "price_rating": "2", "url": "http://www.yelp.com/biz/barnes-and-noble-booksellers-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/NIiRJKBOJrx2nDCkzUjKIg/30s.jpg", "fav_comment_content": "A very nice B&N Bookstore right off the interstate in Champaign, IL. \u00a0I stopped in for some reading material to help me fall asleep while on the road this week. Reading has a very therapeutic\u2026", "phone": "(217) 355-2045", "fav_comment_user": "Neal E.", "address_l1": "65 E Market View Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Korean"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/BexA4J97iRixt4vBNxr32g/90s.jpg", "name": "Spoon House Korean Kitchen", "price_rating": "2", "url": "http://www.yelp.com/biz/spoon-house-korean-kitchen-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M0gd9w8A_lX9WYAtozPCVQ/30s.jpg", "fav_comment_content": "The sweet and Spicy chicken tacos are fantastic.", "phone": "", "fav_comment_user": "Geoff B.", "address_l1": "616 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/kamWTGY1skJOBxPvMatcrw/90s.jpg", "name": "Planned Parenthood", "price_rating": "", "url": "http://www.yelp.com/biz/planned-parenthood-champaign-3", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/lN0sjwSmZHNPdPAVEoO3gA/30s.jpg", "fav_comment_content": "I haven't been to this clinic in awhile, but when I did go, it was usually a good experience. I occasionally had a mess up with scheduling or some other issue that wasted a lot of my time and\u2026", "phone": "(217) 359-8022", "fav_comment_user": "Lauren C.", "address_l1": "302 E Stoughton", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Me8ED_paGfNyAFVN5s_7Ig/90s.jpg", "name": "Comfort Suites", "price_rating": "3", "url": "http://www.yelp.com/biz/comfort-suites-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/bgLbkMdGw-KOxPgCMoVBCw/30s.jpg", "fav_comment_content": "Get's the job done. \u00a0Clean, free breakfast. \u00a0 Down a star for not being walking distance to anywhere. \u00a0There is one restaurant across the street but if price is the same i'd look for something\u2026", "phone": "(217) 328-3500", "fav_comment_user": "Parker S.", "address_l1": "2001 N Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Sandwiches", "Food Delivery Services", "Delis"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/ijTqBUX6e1RaHEqriadVCQ/90s.jpg", "name": "Jimmy John's", "price_rating": "2", "url": "http://www.yelp.com/biz/jimmy-johns-champaign-3", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/bB_Oia2VOmge3SiMa_cFww/30s.jpg", "fav_comment_content": "Ok, i have a disclaimer: this is for JJ's in general and not just for the one on Kirby Ave. \u00a0 I love jimmy johns. Seriously - this company has given me great memories. I used to walked to JJs\u2026", "phone": "(217) 359-9100", "fav_comment_user": "John G.", "address_l1": "1811 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Chinese"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/ESpxJastOadtdtmJp5HVZg/90s.jpg", "name": "Rainbow Garden", "price_rating": "2", "url": "http://www.yelp.com/biz/rainbow-garden-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/NkANgXiD9WIM8bpgP0YQNA/30s.jpg", "fav_comment_content": "Good Chinese food! One of the most delicious and authentic Chinese restaurants in this area.", "phone": "(217) 344-1888", "fav_comment_user": "Jiexin L.", "address_l1": "202 E University", "address_l2": "Urbana, IL 61801"},
{"category": ["American (New)", "Breakfast & Brunch", "Fast Food"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/bYJx_B9JS2y605DOkolCHA/90s.jpg", "name": "Steak 'n Shake", "price_rating": "1", "url": "http://www.yelp.com/biz/steak-n-shake-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/88UhFY_XHm9B36wrwMcV2g/30s.jpg", "fav_comment_content": "wow, the mint oreo milkshake, the apple/cranberry salad, and the...", "phone": "(217) 352-5001", "fav_comment_user": "Kailey O.", "address_l1": "1709 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bars"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/yiGgKz13SfwrxYPbVIgowg/90s.jpg", "name": "Iron Post", "price_rating": "1", "url": "http://www.yelp.com/biz/iron-post-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/3It37lAWY1RmwSRlQs9GGA/30s.jpg", "fav_comment_content": "Basically, live music almost every night, fun crowd, and good food...", "phone": "(217) 337-7678", "fav_comment_user": "Deanna C.", "address_l1": "120 S Race St", "address_l2": "Urbana, IL 61801"},
{"category": ["Pizza", "Arcades", "Pool Halls"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/wziP7xWHaBEiPPgL2IurvA/90s.jpg", "name": "Jupiter's At The Crossing", "price_rating": "2", "url": "http://www.yelp.com/biz/jupiters-at-the-crossing-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ai_iq-GzsZyyGgPwfLr5bQ/30s.jpg", "fav_comment_content": "OK, this is not the kind of place I typically enjoy, but their Tuesday night trivia is a pretty good time. Teams compete for free, the emcee is funny and knowledgeable (without being too\u2026", "phone": "(217) 366-8300", "fav_comment_user": "Elizabeth M.", "address_l1": "2511 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": ["American (New)"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/pwyQ5YMm_cA3QsZxJvkuDg/90s.jpg", "name": "Prairie Fire Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/prairie-fire-restaurant-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Cg3erMC5YxU0r4DCRhGoCA/30s.jpg", "fav_comment_content": "My boyfriend chose this place because of the burning gateway. \u00a0Lol \u00a0We had the ribs and steak. \u00a0Both were very flavorful and cooked perfectly, according to our specifications. \u00a0The bbq sauce\u2026", "phone": "(217) 353-5333", "fav_comment_user": "Patricia N.", "address_l1": "100 Trade Centre Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Day Spas", "Hair Salons", "Skin Care"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/V6jpyEECy2ibYcFkE3LPXQ/90s.jpg", "name": "Spa Envy and Salon", "price_rating": "2", "url": "http://www.yelp.com/biz/spa-envy-and-salon-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Some people like to spend their money on makeup, haircuts, manicures and pedicures --I prefer facials. Michelle is my facialist and I will never go anywhere else. \u00a0 The spa room is heavenly\u2026", "phone": "(217) 378-4939", "fav_comment_user": "Justine B.", "address_l1": "2219 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bikes"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Bikeworks", "price_rating": "1", "url": "http://www.yelp.com/biz/bikeworks-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/k-ZxroGD7IdvGs0zqCNsug/30s.jpg", "fav_comment_content": "Bikeworks is like a golden jewel that I wish I'd stumbled onto earlier. I could have been saved a lot of time, money and headache. \u00a0These bad reviews seem to be coming from a generation of\u2026", "phone": "(217) 328-2001", "fav_comment_user": "Stephanie H.", "address_l1": "1103 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Norris Tire & Auto Center", "price_rating": "", "url": "http://www.yelp.com/biz/norris-tire-and-auto-center-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/HdxjJpLJbm9K_Pgpkm2jQg/30s.jpg", "fav_comment_content": "Ok! This place is the sh&%! I'm telling ya word of mouth gets you good business OR NOT! and this is one place that is consistently good and I've told everyone that this place will not rip you\u2026", "phone": "(217) 359-0103", "fav_comment_user": "Crystal B.", "address_l1": "702 N Country Fair Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Mexican"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/TVVUc0swso_NB68b8ltWxQ/90s.jpg", "name": "Maize Mexican Grill", "price_rating": "1", "url": "http://www.yelp.com/biz/maize-mexican-grill-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/a-DkjHTIpW_bD43fQ-K7Vg/30s.jpg", "fav_comment_content": "...the chicken, asada, and pastor tacos all equally, and can't wait to...", "phone": "(217) 355-6400", "fav_comment_user": "Jason D.", "address_l1": "60 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Videos & Video Game Rental"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/tS-MXMqaIJU4rrHcDbHAyw/90s.jpg", "name": "That's Rentertainment", "price_rating": "1", "url": "http://www.yelp.com/biz/thats-rentertainment-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/F7jktT5wuYjaQ_hdB7VRLQ/30s.jpg", "fav_comment_content": "Best place to get movies in Champaign, hands down.", "phone": "(217) 384-0977", "fav_comment_user": "Hollie D.", "address_l1": "516 E John St", "address_l2": "Champaign, IL 61820"},
{"category": ["Ice Cream & Frozen Yogurt"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/j4Km-s47fDuieUJDR-yPwQ/90s.jpg", "name": "Jarling's Custard Cup - Temp. CLOSED", "price_rating": "1", "url": "http://www.yelp.com/biz/jarlings-custard-cup-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/JtWszsiI7jwE4wHTLFteFQ/30s.jpg", "fav_comment_content": "And I cannot *wait* to try a \"Snickerette Snowstorm.", "phone": "(217) 352-2273", "fav_comment_user": "Heather T.", "address_l1": "309 W Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Pubs", "Beer, Wine & Spirits"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/KL1KncXw5yNsz4Rt0z9kxw/90s.jpg", "name": "The Blind Pig Company", "price_rating": "2", "url": "http://www.yelp.com/biz/the-blind-pig-company-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/bB_Oia2VOmge3SiMa_cFww/30s.jpg", "fav_comment_content": "As many have stated, the beer selection is outstanding.", "phone": "(217) 398-1532", "fav_comment_user": "John G.", "address_l1": "120 N Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["Chinese"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/WlWpSYUG-iuGNz2Qae5Fvw/90s.jpg", "name": "Golden Harbor Authentic Chinese Cuisine", "price_rating": "2", "url": "http://www.yelp.com/biz/golden-harbor-authentic-chinese-cuisine-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/iVJrO_4f8diyu1Wgfo0jNw/30s.jpg", "fav_comment_content": "My favorite lunch specials are Crispy Tofu, and Broccoli Chicken.", "phone": "(217) 398-8988", "fav_comment_user": "Claire M.", "address_l1": "505 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/KEIMjrhuV466cpYyYI8nhw/90s.jpg", "name": "Papa Del's Pizza", "price_rating": "2", "url": "http://www.yelp.com/biz/papa-dels-pizza-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/juJ-k0Ge-IpP1qU2pc3b6w/30s.jpg", "fav_comment_content": "Pops is still making some of the best Deep Dish anywhere.", "phone": "(217) 359-7700", "fav_comment_user": "Tony D.", "address_l1": "206 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pubs"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/U4uFHeZ5x95FT62CRc1BqA/90s.jpg", "name": "Farren's Pub & Eatery", "price_rating": "2", "url": "http://www.yelp.com/biz/farrens-pub-and-eatery-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/knUn1MjnI46gsWJaEKRHZw/30s.jpg", "fav_comment_content": "All i have to say is, the most amazing burgers ive had in my life.", "phone": "(217) 359-6977", "fav_comment_user": "Susie M.", "address_l1": "308 N Randolph St", "address_l2": "Champaign, IL 61820"},
{"category": ["Ice Cream & Frozen Yogurt"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/Bojg9v6tDrp7K77Yndh68Q/90s.jpg", "name": "Cocomero", "price_rating": "1", "url": "http://www.yelp.com/biz/cocomero-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/k-ZxroGD7IdvGs0zqCNsug/30s.jpg", "fav_comment_content": "Tons of flavors (I recommend Red Velvet and Cafe au Lait (sp.", "phone": "(217) 328-3888", "fav_comment_user": "Stephanie H.", "address_l1": "709 S Wright St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bakeries", "Desserts"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Eh7dOHzIfCrgKbbOVDmz-A/90s.jpg", "name": "Mirabelle Fine Pastry", "price_rating": "2", "url": "http://www.yelp.com/biz/mirabelle-fine-pastry-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/bHy2W1CJhfCpTV0011JpDA/30s.jpg", "fav_comment_content": "The pastries are superb- try apricot filled or almond croissant.", "phone": "(217) 384-6460", "fav_comment_user": "Erin Y.", "address_l1": "124 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": ["Chinese", "Asian Fusion", "Malaysian"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/WfTBP9h3oIo3xCVVn36A7A/90s.jpg", "name": "Cravings", "price_rating": "1", "url": "http://www.yelp.com/biz/cravings-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/7LNh6W7AxA1JjW3NadQR7g/30s.jpg", "fav_comment_content": "2 things to order- Jakarta fried rice and hot and spicy chicken.", "phone": "(217) 328-2538", "fav_comment_user": "Danny M.", "address_l1": "603 S Wright St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (Traditional)"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/dopVJ8toUisKW0ng80AAPA/90s.jpg", "name": "The Apple Dumpling", "price_rating": "1", "url": "http://www.yelp.com/biz/the-apple-dumpling-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/GhzxoMHg04Y2tcqxNrx01g/30s.jpg", "fav_comment_content": "Lightly breaded and juicy, just the way fried chicken should be.", "phone": "(217) 344-0076", "fav_comment_user": "Daniel B.", "address_l1": "2014 High Cross Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Hardware Stores"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/fKMo2-sZlhW5tKQTuelxMA/90s.jpg", "name": "Menards", "price_rating": "2", "url": "http://www.yelp.com/biz/menards-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/KtRvrjNe8uDkEAA9frZ04w/30s.jpg", "fav_comment_content": "I have purchased a bunch of equipment here including cleaning products, an acrylic sheet, lightbulbs, extension cords, etc. \u00a0 The prices were relatively good and the selection is larger than\u2026", "phone": "(217) 351-5701", "fav_comment_user": "Brendan H.", "address_l1": "620 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Delis", "Salad", "Sandwiches"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/B4yKmRM6ATdSF-Vuo5gNyA/90s.jpg", "name": "McAlister's Deli", "price_rating": "1", "url": "http://www.yelp.com/biz/mcalisters-deli-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LTyruqA5pZg8RkFYEPR2Rw/30s.jpg", "fav_comment_content": "McAllister's will receive 4 stars for multiple reasons. Is it a true deli? No. But once you realize that and understand that it is simply a fast food place that serves deli sandwiches, soups\u2026", "phone": "(217) 355-6480", "fav_comment_user": "Marcus D.", "address_l1": "421 Town Center Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza", "American (Traditional)", "Salad"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/M2d9I_l4V0RTznBhXaxidw/90s.jpg", "name": "Old Chicago", "price_rating": "2", "url": "http://www.yelp.com/biz/old-chicago-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/oIvggwKrcN7lusQZaFw2iA/30s.jpg", "fav_comment_content": "Good pizza and the buffet at lunch pretty cheap, always end up eating too much. Beer selection okay too. Half price pizza tuesday nights.", "phone": "(217) 607-1489", "fav_comment_user": "Jay B.", "address_l1": "1910 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Szechuan"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/RnjMGCnHNuz8LIwi5fCurw/90s.jpg", "name": "Evo Cafe", "price_rating": "2", "url": "http://www.yelp.com/biz/evo-cafe-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/RRBPFSPzPolmJg1moS_fjw/30s.jpg", "fav_comment_content": "The bubble tea here is simply amazing! I am from California, where they have tons of bubble tea places. However, Evo Cafe supplies the most amazing bubble tea I have ever ingested! \u00a0 They have\u2026", "phone": "(217) 328-7688", "fav_comment_user": "Grace T.", "address_l1": "711 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/k8Pttf8GRHXH1Ca9svLKsw/90s.jpg", "name": "Car-X Auto Service", "price_rating": "", "url": "http://www.yelp.com/biz/car-x-auto-service-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Excellent, Fast, Reliable, Friendly Service", "phone": "(217) 352-0124", "fav_comment_user": "Timothy F.", "address_l1": "601 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Drury Inn", "price_rating": "2", "url": "http://www.yelp.com/biz/drury-inn-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Exactly what I expect from this chain. Newish building in very good shape. Clean rooms with nice bed and tv. This room had extra plugs that were conveniently located for recharging of our\u2026", "phone": "(217) 398-0030", "fav_comment_user": "Bruce D.", "address_l1": "905 W Anthony Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Bakeries"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/QjlTCkbAukxvpz-UjpOVEw/90s.jpg", "name": "Rick's Bakery Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/ricks-bakery-cafe-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/NujAPL9rgTbynbY6NG6wUw/30s.jpg", "fav_comment_content": "It was a \"Tres Leches\" cake, literally translates to \"Three Milks.", "phone": "(217) 344-9383", "fav_comment_user": "Christy O.", "address_l1": "2018 S Philo Rd", "address_l2": "Urbana, IL 61801"},
{"category": ["Barbeque", "Pizza"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/4DDllZx9dMeZj85q_2Kufg/90s.jpg", "name": "Po'-Boys", "price_rating": "2", "url": "http://www.yelp.com/biz/po-boys-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/wIa8giqVyw7F7Cu8vIuGOA/30s.jpg", "fav_comment_content": "Po Boys is the place for BBQ and Pizza!! Its my opinion that you should combine both tasty delicacies and have the BBQ Pizza! The pulled pork pizza is out of this freakin world!!! \u00a0If BBQ is\u2026", "phone": "(217) 367-2255", "fav_comment_user": "Chicago A.", "address_l1": "1901 N High Cross Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Hair Removal"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Jiya Beauty Salon", "price_rating": "1", "url": "http://www.yelp.com/biz/jiya-beauty-salon-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/mujRsaQD2eGTSYGuCj_Hzg/30s.jpg", "fav_comment_content": "I have been a customer ever since they were in a kiosk in the mall years ago. I was thrilled when they moved to their new location because it is easy for a busy mom / business woman like me to\u2026", "phone": "(217) 352-2011", "fav_comment_user": "Susan H.", "address_l1": "7 Convenience Center Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Dive Bars"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Illini Inn", "price_rating": "1", "url": "http://www.yelp.com/biz/illini-inn-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/7C9VIYL1LGejwgplEb-S6w/30s.jpg", "fav_comment_content": "What the Inn lacks in amenities, it more than makes up with it's ambiance. This is no Joe's, Legends, or Brothers. While Ed is correct that lately, it seems like there's more patrons wearing\u2026", "phone": "(217) 344-5209", "fav_comment_user": "Conor O.", "address_l1": "901 S 4th St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/99JeXru8MvVk6sLT6sOBBg/90s.jpg", "name": "University of Illinois Veterinary Teaching Hospital", "price_rating": "", "url": "http://www.yelp.com/biz/university-of-illinois-veterinary-teaching-hospital-urbana-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/9hi-J57NpoPiICoG1RDheA/30s.jpg", "fav_comment_content": "This review is for the LARGE animal clinic (horses and livestock). I had a bad experience with the small animal clinic where they were prepared to do $1800 worth of tests on my elderly cat to\u2026", "phone": "(217) 333-5300", "fav_comment_user": "Rachel V.", "address_l1": "1008 W Hazelwood Dr", "address_l2": "Urbana, IL 61801"},
{"category": ["Nail Salons"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dazzling Nails", "price_rating": "1", "url": "http://www.yelp.com/biz/dazzling-nails-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/utktFKEDtsgp8xv5qelJJg/30s.jpg", "fav_comment_content": "Probably my top nail spot so far in Champaign/Urbana. They do a nice job and listen to what you want. Prices are very reasonable and they have a big tv that usually has a popular movie on.\u2026", "phone": "(217) 328-2650", "fav_comment_user": "Nicole U.", "address_l1": "45 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/_bI8oOMPEYl6HacVcHvTRA/90s.jpg", "name": "Penn Station", "price_rating": "", "url": "http://www.yelp.com/biz/penn-station-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/jde-qk25d-Nv6Qk3qf8DMg/30s.jpg", "fav_comment_content": "Toasted sandwiches are the way to go. Such it Subway. The Philly cheese steak and chicken Teriyaki were my favorites. The fries were pretty good.", "phone": "(217) 344-9050", "fav_comment_user": "Eric F.", "address_l1": "605 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": ["Tattoo"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/-FxtZmauSGdBsgr29fSA8w/90s.jpg", "name": "New Life Tattoos", "price_rating": "2", "url": "http://www.yelp.com/biz/new-life-tattoos-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/LqumuE8s9Wp1eLsYU2gvXA/30s.jpg", "fav_comment_content": "Went in today to get my rook piercings switched out and get my tongue pierced. Lunchbox was awesome and nice, and apologized for the 30-45 minute wait while he did 2 small tattoos for people\u2026", "phone": "(217) 367-5320", "fav_comment_user": "Sarah L.", "address_l1": "404 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Steakhouses", "American (Traditional)"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/3Uo6YaFf_sm7VKDzFVSbXg/90s.jpg", "name": "LongHorn Steakhouse", "price_rating": "2", "url": "http://www.yelp.com/biz/longhorn-steakhouse-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/8lt_5_BPHBgfmfWoMFfc4g/30s.jpg", "fav_comment_content": "Jus ate here. Food was good. I'm a guy though and pretty easy to please when it comes to red meat. The ambiance is good. Good for a date and doesn't necessarily lend itself to families with\u2026", "phone": "(217) 352-9189", "fav_comment_user": "Brian K.", "address_l1": "2101 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Delis", "Sandwiches"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ZJxh0ShPKDxSc2-9nvgpQw/90s.jpg", "name": "Jimmy John's", "price_rating": "1", "url": "http://www.yelp.com/biz/jimmy-johns-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Welcome to Jimmy John's, the place where you can get a sandwich in your hand before you're done paying. I probably come here once a week, more or less, and haven't had any bad experiences.\u2026", "phone": "(217) 344-4443", "fav_comment_user": "Eric K.", "address_l1": "601 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bars", "Burgers", "American (Traditional)"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/mP4WDsOY_cAfy9aSwdeQHA/90s.jpg", "name": "Joe's Brewery", "price_rating": "2", "url": "http://www.yelp.com/biz/joes-brewery-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/IV5LkCIz2ev37lbXoA0MxA/30s.jpg", "fav_comment_content": "Ha, Joe's, or as I like to call it, \"The House of Regrets\" was oddly one of my favorite places. It probably had to do with one summer when I had a Temporary Tattoos-day party during 8th grade\u2026", "phone": "(217) 384-1790", "fav_comment_user": "Daniel G.", "address_l1": "706 S 5th St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hessel Park Family Dentistry", "price_rating": "", "url": "http://www.yelp.com/biz/hessel-park-family-dentistry-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/lMfxepJjAeELbfhf03G9KQ/30s.jpg", "fav_comment_content": "I have some pretty significant problems with my teeth (mostly resulting from having them improperly sealed by a different dentist when the procedure was brand-new in the 80s). Dr. Faught and\u2026", "phone": "(217) 398-9898", "fav_comment_user": "Alecia M.", "address_l1": "314 W Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/BdQpmbVL-CKsqO-i0cw8lA/90s.jpg", "name": "Tri-Color Locksmiths", "price_rating": "", "url": "http://www.yelp.com/biz/tri-color-locksmiths-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/MNCcmdWINhp10VmqQOlKiQ/30s.jpg", "fav_comment_content": "We were locked out of our house on, literally, the hottest day of the year. It was after-hours (past 5pm) and several other locksmiths said we had to call back later. When we called Tri-Color\u2026", "phone": "(217) 384-6006", "fav_comment_user": "Paul J.", "address_l1": "1002 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Shoe Stores", "Shoe Repair"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/WksEiegaVOyCs9rqzNK6KQ/90s.jpg", "name": "Heel To Toe", "price_rating": "3", "url": "http://www.yelp.com/biz/heel-to-toe-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/nGdPYnMMQy9vo7l9ompr5Q/30s.jpg", "fav_comment_content": "One of the only \"full service\" shops still around. The knowledgeable staff really takes the time to make sure you're getting the right shoe to help your aches and pains and the right fit (SO\u2026", "phone": "(217) 367-2880", "fav_comment_user": "Kristina G.", "address_l1": "106 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": ["Fabric Stores", "Art Supplies"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hobby Lobby Creative Center", "price_rating": "1", "url": "http://www.yelp.com/biz/hobby-lobby-creative-center-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/GnwUPgNPIO-sJ_5lvzBJtQ/30s.jpg", "fav_comment_content": "One of my favorite places to shop! The yarns, especially their own brands are lucious, simply yummy, and the prices can't be beat. I have rarely been disappointed when looking for a particular\u2026", "phone": "(217) 355-2924", "fav_comment_user": "Marjorie J.", "address_l1": "2002 Glen Park Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Sandwiches", "Salad", "Soup"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Yg9vsbjk_eLcE-7o6FsX9Q/90s.jpg", "name": "Panera Bread", "price_rating": "2", "url": "http://www.yelp.com/biz/panera-bread-champaign-3", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/EUpV6JJmC_9FQgpSJjpx0A/30s.jpg", "fav_comment_content": "I am a fan of Panera in Chicago, where I live, so I was glad to see one here. The food is good, but not spectacular -- but if you've ever been in a Panera, you'll agree or disagree with me\u2026", "phone": "(217) 344-2528", "fav_comment_user": "Elliot R.", "address_l1": "616 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/nn2ViyDEtQi9oUNmaBBnUg/90s.jpg", "name": "Living Yoga Center", "price_rating": "", "url": "http://www.yelp.com/biz/living-yoga-center-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/qY9-cX5GfsfnYmYBZ215WA/30s.jpg", "fav_comment_content": "This is a really nice yoga center, with excellent deals on class cards/monthly memberships. \u00a0In Boston, I used to drop-in to a local studio's weekly-super-cheap-class ($5 drop-in fee). \u00a0It was\u2026", "phone": "", "fav_comment_user": "Penelope Y.", "address_l1": "115 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/EixzFBIWAx9C3NdIQ6eBxw/90s.jpg", "name": "CityView", "price_rating": "", "url": "http://www.yelp.com/biz/cityview-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "I love the train as an alternative to driving to the city, if your destination is the loop, downtown or along one of the Metra or CTA routes. Buying your tix ahead of time saves big bucks, as\u2026", "phone": "(217) 384-3577", "fav_comment_user": "Tim J.", "address_l1": "45 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Beer, Wine & Spirits"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/pt5zJT2K4_BfASMP1a3g2w/90s.jpg", "name": "Piccadilly Beverage Shops", "price_rating": "1", "url": "http://www.yelp.com/biz/piccadilly-beverage-shops-champaign-4", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/D61ZXKmETIBl8fROJcXzJQ/30s.jpg", "fav_comment_content": "I stopped in to the 1st St location looking for microbrews I can't get in CA. \u00a0They pointed me to the Neil St location, which has a larger selection. \u00a0Thoroughly impressed! \u00a0The staff was\u2026", "phone": "(217) 359-8777", "fav_comment_user": "Will M.", "address_l1": "505 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Massage"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "LaVida Massage of Champaign", "price_rating": "2", "url": "http://www.yelp.com/biz/lavida-massage-of-champaign-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vG16zF5PsGCbAwppakeoxA/30s.jpg", "fav_comment_content": "I really love LaVida Massage! \u00a0I have been a student at the U of I for many years and have always searched for the most affordable massages in town, particularly student discounts. \u00a0I\u2026", "phone": "(217) 363-2811", "fav_comment_user": "Melissa B.", "address_l1": "1812 Glenn Park Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/SzbKCKr8tLqT2LcDkMVo-w/90s.jpg", "name": "Putt Zone Fun Center", "price_rating": "", "url": "http://www.yelp.com/biz/putt-zone-fun-center-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/BiBZTUwwL-mEWXkQ0w4VEg/30s.jpg", "fav_comment_content": "Be sure to take a look at the picture of this place. \u00a0Every hole seems to be just a boring straight shot with the occasional few cruddy things on the side that don't do anything. \u00a0It's like\u2026", "phone": "(217) 356-6121", "fav_comment_user": "Craig Z.", "address_l1": "815 Dennison Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Best Wok", "price_rating": "", "url": "http://www.yelp.com/biz/best-wok-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/kQ_WBz7kPgyguuEnhOxWqA/30s.jpg", "fav_comment_content": "I love this place. I have gotten many of the dishes on the menu and have never been disappointed. I love the Orange chicken. The egg rolls are awesome. They changed their dumplings a few years\u2026", "phone": "(217) 356-5757", "fav_comment_user": "Judy E.", "address_l1": "907 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Barbers", "Men's Hair Salons"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/RAoe-8w4-WgrhVWlFoAcoA/90s.jpg", "name": "Pizzazz Haircutery", "price_rating": "1", "url": "http://www.yelp.com/biz/pizzazz-haircutery-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fiAohjZn0s2Tj0f9ASWP6w/30s.jpg", "fav_comment_content": "After moving across town, I quickly realized that I needed to find a new place to get my haircut. After searching for something cheap and close to my apartment I decided to give this place a\u2026", "phone": "", "fav_comment_user": "John M.", "address_l1": "602 S 1st", "address_l2": "Champaign, IL 61820"},
{"category": ["Day Spas", "Massage", "Massage Therapy"], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/HWzVZLDNZWiCk3CVPx9yMQ/90s.jpg", "name": "Essential Healing Therapeutic Massage & Bodywork", "price_rating": "2", "url": "http://www.yelp.com/biz/essential-healing-therapeutic-massage-and-bodywork-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/cOdaIPEERSegvUS2MT7OkQ/30s.jpg", "fav_comment_content": "My husband and I went here for our first ever couples massage. It was a wonderful experience! Shanna and Jessica were tremendous! We highly recommend them!", "phone": "(217) 552-6604", "fav_comment_user": "Ashleigh S.", "address_l1": "104 W Tomaras Ave", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/NL0Fp3hM8qAdZMldV9FnGw/90s.jpg", "name": "Justine Bursoni Photography", "price_rating": "", "url": "http://www.yelp.com/biz/justine-bursoni-photography-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/xzriow0KTyXHteIGhQHQ2Q/30s.jpg", "fav_comment_content": "We had our ceremony at the Champaign County Courthouse, and wanted to have formal photographs taken afterwards. I had just moved to the area and had no idea on location, but Justine was really\u2026", "phone": "(773) 988-1245", "fav_comment_user": "S. P.", "address_l1": "", "address_l2": ""},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Ruth's Salon", "price_rating": "", "url": "http://www.yelp.com/biz/ruths-salon-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/PaREC4z7MH8VmDzcqJQF5w/30s.jpg", "fav_comment_content": "I just left Ruth's salon after getting my hair beautiful by Hannah. She is extremely nice, listened to what I wanted and did an amazing job. This was my first time at this salon. I was more\u2026", "phone": "(217) 352-1170", "fav_comment_user": "Ella M.", "address_l1": "1314 W Church St", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/0tU4dwLKjuRTb46C4AY8Zg/90s.jpg", "name": "Scott Anderson, DDS", "price_rating": "", "url": "http://www.yelp.com/biz/scott-anderson-dds-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/w0nLbunKn5tVyazfXPGhEQ/30s.jpg", "fav_comment_content": "I came here to have a filling that fell out replaced, since I was at school and couldn't find time to get home before finals. \u00a0It was a very positive experience for me (for a dentist). \u00a0I was\u2026", "phone": "(217) 356-7334", "fav_comment_user": "James B.", "address_l1": "2535 Galen Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Muris Technologies", "price_rating": "", "url": "http://www.yelp.com/biz/muris-technologies-urbana-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Maxwell was extremely helpful when I needed to get my old laptop fixed. I had the laptop for about 5 years and was ready to just let it die, but he managed to fix the issues (problems with the\u2026", "phone": "(847) 814-8928", "fav_comment_user": "P C.", "address_l1": "411 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/bVrZ4FsSGuLVi3tzSjxAlg/90s.jpg", "name": "McVicker Martial Arts", "price_rating": "", "url": "http://www.yelp.com/biz/mcvicker-martial-arts-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/yZ7LYIAksOP0ronb48zJSA/30s.jpg", "fav_comment_content": "Jack McVicker is an excellent instructor and coach. His laid back style coupled with mastery of Jeet Kune Do concepts and Brazilian Jiu-Jitsu make for a great experience. \u00a0I highly recommend\u2026", "phone": "(217) 355-6335", "fav_comment_user": "Andy P.", "address_l1": "2508 Galen Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/SJpKd7HIYoj6BhU3_140oA/90s.jpg", "name": "T&G Maintenance and Construction", "price_rating": "", "url": "http://www.yelp.com/biz/t-and-g-maintenance-and-construction-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I called T&G Maintenance to get a quote to install a short run of black pipe from an existing gas line in my basement to a new gas stove. Ryan provided a quick, free estimate, and suggested\u2026", "phone": "(217) 317-9140", "fav_comment_user": "Rachel C.", "address_l1": "", "address_l2": ""},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Subaru of Champaign County", "price_rating": "", "url": "http://www.yelp.com/biz/subaru-of-champaign-county-savoy-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/UzWkt3HRNr0bQ_FMkw5xRw/30s.jpg", "fav_comment_content": "There a two kinds of car dealers: the slimy ones, and the friendly ones. While in the end both have the same purpose - sell you a car, I find the slimy ones just impossible to deal with. After\u2026", "phone": "(800) 523-0754", "fav_comment_user": "David S.", "address_l1": "1402 N Dunlap Dr", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/8KvS-zhgEJogejy5Qexmdg/90s.jpg", "name": "Magic Needle", "price_rating": "", "url": "http://www.yelp.com/biz/magic-needle-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "The Magic Needle does excellent work, and their prices are very reasonable. There are certainly less expensive places around town, but I've had bad experiences with the the cheaper places I've\u2026", "phone": "(217) 337-7238", "fav_comment_user": "T L.", "address_l1": "202 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/hTg13NpgX-HO4ZLUKC2Dkw/90s.jpg", "name": "May's Alterations", "price_rating": "", "url": "http://www.yelp.com/biz/mays-alterations-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I had an emergency tear along the zipper of my down coat and she stitched it up flawlessly on the spot. May's work is excellent and her prices are very reasonable. She is such a nice lady!\u2026", "phone": "(217) 355-4745", "fav_comment_user": "Gina K.", "address_l1": "905 S Neil", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/BeAWivtVRQqG3_RMCE4TuA/90s.jpg", "name": "Urbana Acupuncture llc", "price_rating": "", "url": "http://www.yelp.com/biz/urbana-acupuncture-llc-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I had three worries when I first heard of Urbana Acupuncture. \u00a0My first worry was that due to the group setting, it would be hard to talk about my concerns. \u00a0My second worry was that the care\u2026", "phone": "(217) 344-9118", "fav_comment_user": "Sean C.", "address_l1": "155-A Lincoln Square Mall", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/BvlV71qgIDpkTrq9xCZL3A/90s.jpg", "name": "Fetch! Pet Care", "price_rating": "", "url": "http://www.yelp.com/biz/fetch-pet-care-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fSD8AHQsWAw4XU31NNKH_w/30s.jpg", "fav_comment_content": "these guys are a class act. \u00a0lauren came by to do a consult with us and meet our dogs when we first signed up. \u00a0at first, i didn't know if i would be too comfortable leaving not only a credit\u2026", "phone": "(217) 903-5003", "fav_comment_user": "RJ D.", "address_l1": "1100 W Bloomington Rd", "address_l2": "Champaign, IL 61821"},
{"category": ["Nail Salons"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/mQUrij0pTr_c2SNtSCVNjg/90s.jpg", "name": "Magic Nails", "price_rating": "2", "url": "http://www.yelp.com/biz/magic-nails-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/HdxjJpLJbm9K_Pgpkm2jQg/30s.jpg", "fav_comment_content": "Ok, so I am late posting this review. \u00a0I went into this nail salon to treat myself this past weds. for my b-day. This place has a very nice atomsphere and is clean and spacious! I like this\u2026", "phone": "(217) 344-8020", "fav_comment_user": "Crystal B.", "address_l1": "202 E University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Maid To Perfection", "price_rating": "", "url": "http://www.yelp.com/biz/maid-to-perfection-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/YaEOUvIQz9hVI59MdU1V6g/30s.jpg", "fav_comment_content": "Have had M2P come in on two occasions. \u00a0 \u00a0The first was to wash walls, windows, and pretty much make our old basement sparkle. \u00a0It did. \u00a0The second was a whole house clean, including some high\u2026", "phone": "(217) 398-1881", "fav_comment_user": "Iris M.", "address_l1": "2110 N Market St Ste F", "address_l2": "Champaign, IL 61822"},
{"category": ["Hotels"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/sPXUbkdnHcwcR3Am4mSlTA/90s.jpg", "name": "Marriott Residence Inn", "price_rating": "2", "url": "http://www.yelp.com/biz/marriott-residence-inn-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/0ZnvmccjDCIwwa7igTJovg/30s.jpg", "fav_comment_content": "There's one thing that should matter more than anything else at a hotel: did you get a good night's sleep? Yes. Yes, I did. This Residence Inn opened just over a month before my stay. It's a\u2026", "phone": "(217) 398-0000", "fav_comment_user": "Scott S.", "address_l1": "502 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Karaoke", "Tapas Bars"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/ThswMnf3XcIU5VxOOQnjFg/90s.jpg", "name": "The Clark Bar", "price_rating": "1", "url": "http://www.yelp.com/biz/the-clark-bar-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/HowAMA619w_uaJpSspKtCA/30s.jpg", "fav_comment_content": "Great Bar, Yes Gay Bar, Yes Great Food, Fun & Service, Yes \u00a0Eclectic comes to mind, and it works well @ The Clark Bar", "phone": "(217) 359-8644", "fav_comment_user": "Margaret P.", "address_l1": "207 W Clark St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/SM6WbZ943OY6EAPDzOG7hA/90s.jpg", "name": "Peoria Charter Coach Co", "price_rating": "", "url": "http://www.yelp.com/biz/peoria-charter-coach-co-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "I cannot even begin to explain how grateful I am for two of the bus drivers of Peoria Charter Coach Company. They both went above and beyond their call of duty. \u00a0 And I witnessed Mark, on the\u2026", "phone": "(800) 448-0572", "fav_comment_user": "Justine B.", "address_l1": "2008 N Federal Dr", "address_l2": "Urbana, IL 61801"},
{"category": ["American (Traditional)", "Bars"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/5L-k-hFg1LCixHndSj0mgQ/90s.jpg", "name": "Boomerang's Bar & Grill", "price_rating": "1", "url": "http://www.yelp.com/biz/boomerangs-bar-and-grill-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/cyJcFX4bHvF99yp3hliIGg/30s.jpg", "fav_comment_content": "We've been to Boomerangs on several occasions now. Their wing night on Wednesdays can't be beat. Their sauces are really good. I actually prefer a lot of their sauces over that big-chain wing\u2026", "phone": "(217) 239-7264", "fav_comment_user": "Heather J.", "address_l1": "1309 E Washington St", "address_l2": "Urbana, IL 61802"},
{"category": ["Pizza"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/rnGWrh2Ky6N4kUqD9gQVig/90s.jpg", "name": "Papa John's Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/papa-johns-pizza-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/1zanTcghY5sw7eXqaJeWGw/30s.jpg", "fav_comment_content": "What can i say, I love me some Papa John's. \u00a0I appreicate that this pizza chain is consistent, no matter what state I am in. \u00a0Prompt delivery of still hot and tasty pizza = good enough in my\u2026", "phone": "(217) 351-7272", "fav_comment_user": "Liz R.", "address_l1": "2104 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Department Stores", "Grocery", "Bakeries"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/CKmDIlRcn3EYdhfa8QmcRw/90s.jpg", "name": "Sam's Club", "price_rating": "2", "url": "http://www.yelp.com/biz/sams-club-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/nvc6vxu64qnI9r-9Lprrig/30s.jpg", "fav_comment_content": "Pretty much the only bulk shopping available in Chambanavoy. \u00a0 \u00a0Sam's stocks all the basics for your produce/household needs, along with a rotating seasonal stock at prices that justify the\u2026", "phone": "(217) 355-2223", "fav_comment_user": "Amy V.", "address_l1": "915 W Marketview Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ZE8hNXDzwIUT5j1siUXl3w/90s.jpg", "name": "Christie Clinic Illinois Marathon", "price_rating": "", "url": "http://www.yelp.com/biz/christie-clinic-illinois-marathon-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/io5vNEeohtjImiQekBjnFw/30s.jpg", "fav_comment_content": "This race was where it all started. Great local race right in the heart of UIUC and it's perfect for people looking start their couch to 5k programs. \u00a0My wife and I had a goal just to finish\u2026", "phone": "", "fav_comment_user": "Jess C.", "address_l1": "PO Box 262", "address_l2": "Champaign, IL 61824"},
{"category": ["Fabric Stores"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Needleworks", "price_rating": "3", "url": "http://www.yelp.com/biz/needleworks-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I have been to Needleworks a few times for various projects. \u00a0Every single time, the staff and the regular knitters have been incredibly helpful. \u00a0I had a question about gauge for different\u2026", "phone": "(217) 352-1340", "fav_comment_user": "Katie O.", "address_l1": "24 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Animal Outfitters", "price_rating": "", "url": "http://www.yelp.com/biz/animal-outfitters-savoy-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "The best place for high quality food for dogs and cats for sure. I'm from Champaign but I've been living in Chicago and we have a Kriser's across the street from our house that I've become\u2026", "phone": "(217) 355-4770", "fav_comment_user": "Ashley B.", "address_l1": "1323 N Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": ["Hotels"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/7edK7moibzsi34n8Fqhn3Q/90s.jpg", "name": "Hawthorn Suites By Wyndham Champaign", "price_rating": "2", "url": "http://www.yelp.com/biz/hawthorn-suites-by-wyndham-champaign-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/Y9H852en0yH2dJsPMdLjTg/30s.jpg", "fav_comment_content": "I stayed here with four friends when we came into town recently for a football game. \u00a0The rates were pretty decent - it wasn't homecoming or any special weekend - $135 a night got us a room\u2026", "phone": "(888) 293-5571", "fav_comment_user": "Meredith B.", "address_l1": "101 Trade Centre Dr.", "address_l2": "Champaign, IL 61820"},
{"category": ["Ice Cream & Frozen Yogurt"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Y73KRJNI_wL014TatGbhlg/90s.jpg", "name": "City Girl Yogurt", "price_rating": "1", "url": "http://www.yelp.com/biz/city-girl-yogurt-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/em_aWoW3ClB1moyvcssLcQ/30s.jpg", "fav_comment_content": "Hands down BEST frozen yogurt I have ever had!!!!! \u00a0Very clean facility too!! We love to come here and see what new yummy flavors are available. \u00a0Fancy French vanilla is my favorite and the\u2026", "phone": "(217) 607-1345", "fav_comment_user": "Lori S.", "address_l1": "202 E University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Sandwiches"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/wAUqEjbYGrcy1Pdjtia4RA/90s.jpg", "name": "Penn Station", "price_rating": "2", "url": "http://www.yelp.com/biz/penn-station-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/Q5A4X57t5BAHQTX1IscYZg/30s.jpg", "fav_comment_content": "They have pretty good subs, however they are kind of pricey. \u00a0If you're a student it's well worth getting the student combo special. \u00a0Also, their home squeezed lemonade is amazing.", "phone": "(217) 403-1990", "fav_comment_user": "Mital B.", "address_l1": "906 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Barbers", "Hair Salons"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Lando", "price_rating": "2", "url": "http://www.yelp.com/biz/lando-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/y0NYILdAe_9sijILlEDFNQ/30s.jpg", "fav_comment_content": "After moving away from home, I had to find someone to cut my hair so that I didn't look like a yeti in between periods of going home. Also, so that I can look my spiffiest for on campus\u2026", "phone": "(217) 344-0097", "fav_comment_user": "Kevin D.", "address_l1": "707 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Schoonover Sewer Service", "price_rating": "", "url": "http://www.yelp.com/biz/schoonover-sewer-service-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I found Schoonover's to be very helpful. \u00a0I thought I had a sewer problem. They came over, took pictures and reviewed the area I was concerned about within a few hours. The supervisor then\u2026", "phone": "(217) 239-0106", "fav_comment_user": "Mary O.", "address_l1": "201 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hair Salons", "Day Spas"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "BJ Grand Salon and Spa", "price_rating": "3", "url": "http://www.yelp.com/biz/bj-grand-salon-and-spa-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Gpatt-w9hHhq7CsdfEPrvw/30s.jpg", "fav_comment_content": "Boys need spa days too. So, for my birthday my sister got me a Men's Spa package at BJ, and from beginning to end, I was thoroughly impressed and pampered. Now I see why women do it. The most\u2026", "phone": "(217) 355-0505", "fav_comment_user": "Matthew L.", "address_l1": "3006 Crossing Ct", "address_l2": "Champaign, IL 61820"},
{"category": ["Bike Repair/Maintenance", "Bikes"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/SV06atAV-5El97_0VgXPug/90s.jpg", "name": "Neutral Cycle Workshop", "price_rating": "1", "url": "http://www.yelp.com/biz/neutral-cycle-workshop-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ycKtcGtcGjDVUSC34ESlUg/30s.jpg", "fav_comment_content": "I've been going to Neutral since it was just Tim working on dumpster bikes in a garage that was falling apart. Now he's got a full staff working on every bike imaginable in a newly renovated\u2026", "phone": "(773) 217-0125", "fav_comment_user": "Alex G.", "address_l1": "201 N Busey Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Breakfast & Brunch", "Sandwiches"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/9xcobqY6pKXm89FEhcWkhQ/90s.jpg", "name": "Einstein Bros Bagels", "price_rating": "1", "url": "http://www.yelp.com/biz/einstein-bros-bagels-urbana-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vG16zF5PsGCbAwppakeoxA/30s.jpg", "fav_comment_content": "I have always liked Einstein Bros Bagels; their \"Veg Out\" bagel sandwich is one of my favorite vegetarian sandwiches and their bagels are always delicious. \u00a0 \u00a0I have gone to this Einstein\u2026", "phone": "(217) 344-7520", "fav_comment_user": "Melissa B.", "address_l1": "901 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Sports Wear"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/VtiOTF3TX3R9HyTXDWxWOA/90s.jpg", "name": "Te Shurt", "price_rating": "2", "url": "http://www.yelp.com/biz/te-shurt-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/xbFvLJg_rNQ9wzMyGGCueA/30s.jpg", "fav_comment_content": "I was never in a frat, never had any custom shirts made - none of that stuff. So I'm not the target audience here. But they are one of the few places left to get Chief apparel. Namely, hoodies\u2026", "phone": "(217) 344-1226", "fav_comment_user": "Andrew T.", "address_l1": "711 S Wright St", "address_l2": "Champaign, IL 61820"},
{"category": ["Fashion"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/9bKzauqZHvNCJ4E5sNmnPg/90s.jpg", "name": "Urban Outfitters", "price_rating": "3", "url": "http://www.yelp.com/biz/urban-outfitters-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/gzLifDtvuQMnOOTq-iT8-w/30s.jpg", "fav_comment_content": "There are so many interesting book~ just got three from there and they help to make my studies life more interesting~", "phone": "(217) 328-0277", "fav_comment_user": "Zijun Z.", "address_l1": "507 E. Green Street", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/5nHgEunUNWvADt2K8wTQ5g/90s.jpg", "name": "Papa Murphy's Take N Bake Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/papa-murphys-take-n-bake-pizza-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/TJw16DYv1zbvIBCXqprLuA/30s.jpg", "fav_comment_content": "Papa Murphy's is cheap and I can make it at my convenience at home. \u00a0Can't argue with that. \u00a0unlike most other pizza places the size of their pies has not shrunk over time to try to garner\u2026", "phone": "(217) 344-7700", "fav_comment_user": "Drake M.", "address_l1": "114 N Vine St", "address_l2": "Urbana, IL 61802"},
{"category": ["Sandwiches", "Burgers"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/8VXjN8YaiOCqyyhLK-DOcw/90s.jpg", "name": "Ruby Tuesday", "price_rating": "2", "url": "http://www.yelp.com/biz/ruby-tuesday-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/zTCFn2hiIq22ns6pzzgCxA/30s.jpg", "fav_comment_content": "Ruby Tuesday is always good. \u00a0Probably one of the best melt-in-your-mouth rib eye steaks I've ever had was at this Ruby Tuesdays. \u00a0That was on a day when I didn't have much extra time to dwell\u2026", "phone": "(217) 355-9683", "fav_comment_user": "Tyler N.", "address_l1": "2301 N Prospect", "address_l2": "Champaign, IL 61822"},
{"category": ["Pizza"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/cFkkyK88pKsYmMHdtoxjpw/90s.jpg", "name": "DP Dough", "price_rating": "1", "url": "http://www.yelp.com/biz/dp-dough-champaign", "fav_comment_user_face": "", "fav_comment_content": "", "phone": "(217) 365-9663", "fav_comment_user": "", "address_l1": "33 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/nrbJiU5M8VeMRJBmngba-g/90s.jpg", "name": "Browne's Fine Jewelry", "price_rating": "", "url": "http://www.yelp.com/biz/brownes-fine-jewelry-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/cyJcFX4bHvF99yp3hliIGg/30s.jpg", "fav_comment_content": "I cannot say enough good things about Browne's. \u00a0 I've been married for 4 years now, engaged for over 5. Every year on our wedding anniversary I take my ring in and they clean it and inspect\u2026", "phone": "(217) 352-2575", "fav_comment_user": "Heather J.", "address_l1": "302 W Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Champaign County Humane Society", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-county-humane-society-urbana-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wU5ZrRBMK3SZCQd7sRrBlw/30s.jpg", "fav_comment_content": "I adopted one of my dogs from the CCHS, and I can't say enough wonderful things about this facility. I imagine they are working a shoestring budget but they nonetheless take wonderful care of\u2026", "phone": "(217) 344-7297", "fav_comment_user": "N A.", "address_l1": "1911 E Main", "address_l2": "Urbana, IL 61802"},
{"category": ["Hardware Stores"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/drIiz2W073bB23d0P_ayhg/90s.jpg", "name": "Rural King", "price_rating": "1", "url": "http://www.yelp.com/biz/rural-king-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/VZe7-SwuliZ3VIHG_E7j6Q/30s.jpg", "fav_comment_content": "Rural King is a pretty awesome store for good ol' country folk (I don't really fall into that category, but I like to pretend every once in a while). \u00a0The best part is definitely the free\u2026", "phone": "(217) 403-1011", "fav_comment_user": "Kyle H.", "address_l1": "913 W Marketview Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Secretary of State", "price_rating": "", "url": "http://www.yelp.com/biz/secretary-of-state-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/8mxxXl89A-cYFLxWzmIgPg/30s.jpg", "fav_comment_content": "Lindsay was awesome and fast. They rock for a college town. This \u00a0is so fast & friendly . \u00a0 Completed Three transactions in no time.", "phone": "(217) 278-3344", "fav_comment_user": "N S.", "address_l1": "2401 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Chinese", "Buffets"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/b2gKXgdpsYpVhNiK2DGikA/90s.jpg", "name": "Chinatown", "price_rating": "2", "url": "http://www.yelp.com/biz/chinatown-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LL-3zBe-Q17IKLLzWw-wNQ/30s.jpg", "fav_comment_content": "I've gone to Chinatown buffet more time than I'd like to admit -- This is your run-of-the-mill Chinese buffet, with lots of Americanized Chinese food and dishes containing Krab (with a K). The\u2026", "phone": "(217) 398-9888", "fav_comment_user": "Idan S.", "address_l1": "713 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Hardware Stores"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "DO-It-Best-Hardware", "price_rating": "2", "url": "http://www.yelp.com/biz/do-it-best-hardware-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/cyJcFX4bHvF99yp3hliIGg/30s.jpg", "fav_comment_content": "This is my go-to hardware store. It's close to my house and I don't have to battle the traffic on North Prospect to get to the big stores. I can get in and out in a short amount of time. \u00a0What\u2026", "phone": "(217) 356-6454", "fav_comment_user": "Heather J.", "address_l1": "107 W Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Tattoo", "Piercing"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/NRBUG_w-NbvwYz51V6kgzw/90s.jpg", "name": "Mark of Cain Tattoo's", "price_rating": "2", "url": "http://www.yelp.com/biz/mark-of-cain-tattoos-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/QfBl7rFkeXPx8nFBLpEgSA/30s.jpg", "fav_comment_content": "Great pricing and place for piercing, in the case of my tragus and 2nd lobe piercings. I recommend this place if you want a sanitary, quick piercer who is no-nonsense and gets the job done\u2026", "phone": "(217) 355-3876", "fav_comment_user": "Sherry Y.", "address_l1": "204 W Springfield", "address_l2": "Champaign, IL 61820"},
{"category": ["Hobby Shops"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/NOG7p1dj9JPcQHo9UT2q5Q/90s.jpg", "name": "The Dragons Table", "price_rating": "2", "url": "http://www.yelp.com/biz/the-dragons-table-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/l_EoCFLQbU7UEuptoXDXkg/30s.jpg", "fav_comment_content": "After years of staying on the periphery of the gaming community it was finally time to buy my own die and get a miniature for the RPG we're doing. I was actually really hesitant to go in\u2026", "phone": "(217) 359-0503", "fav_comment_user": "Sarah B.", "address_l1": "205 N Market St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/Die-qx3m7ubbCDBSWOvIgg/90s.jpg", "name": "Car-X Tire & Auto", "price_rating": "", "url": "http://www.yelp.com/biz/car-x-tire-and-auto-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/177xIS8MstjZQC1a8RKIoA/30s.jpg", "fav_comment_content": "The Car-X on Neil Street offers good quality workmanship and good customer service. They stand by their work. \u00a0I've had them work on my vehicle three times, and on all occasions, their waiting\u2026", "phone": "(217) 531-3900", "fav_comment_user": "Jon R.", "address_l1": "2216 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Coffee & Tea"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/vQX8FjjI5lFaD7rjmK4cDQ/90s.jpg", "name": "Espresso Royale Caffe", "price_rating": "3", "url": "http://www.yelp.com/biz/espresso-royale-caffe-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ijXZiipC0L7s3OJPSz59AA/30s.jpg", "fav_comment_content": "Nice and convenient stop located on the first floor of the building I work in. \u00a0A little nook located in the Courtyard Cafe, it has a surprising amount of menu selections for such a small\u2026", "phone": "(217) 328-1335", "fav_comment_user": "Jason B.", "address_l1": "1401 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": ["Coffee & Tea"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/vrh11QQIdzmNM5kXvWZ91w/90s.jpg", "name": "Starbucks", "price_rating": "3", "url": "http://www.yelp.com/biz/starbucks-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/ZIjT_bmYBRT8OzFxd5rbUg/30s.jpg", "fav_comment_content": "I love this Starbucks! \u00a0The staff is super friendly. \u00a0Should you decide not to drive-thru \u00a0(which is *usually a great choice), the inside is cozy- opposed to the treacherous parking lot. \u00a0 The\u2026", "phone": "(217) 398-0821", "fav_comment_user": "Jaclyn B.", "address_l1": "2702 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Hair Salons"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Juno Hair", "price_rating": "2", "url": "http://www.yelp.com/biz/juno-hair-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ydsXA6ihMezdORzPpe8pfg/30s.jpg", "fav_comment_content": "When I first heard Juno did digital perms for $120, I would have thought it was a) a scam, or b) of such shoddy quality it would fry my hair, or c) possibly both. \u00a0 The reason I *didn't* think\u2026", "phone": "(217) 328-4444", "fav_comment_user": "Christine Y.", "address_l1": "616 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Sandwiches", "Salad", "Soup"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/TGUq4dfpzHxHpdd60f0kbg/90s.jpg", "name": "Panera Bread", "price_rating": "1", "url": "http://www.yelp.com/biz/panera-bread-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/dQTVhqCi_4ypacqON-5X0Q/30s.jpg", "fav_comment_content": "I kept wanting to like this place because I need to come for the convenience and \u00a0proximity. \u00a0But there are several issues keep coming up: Wifi sucks: speed and consistency. Coffee not always\u2026", "phone": "(217) 355-9885", "fav_comment_user": "Hong C.", "address_l1": "1765 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Burgers"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/L7lp4AeLxGylwA9WXXRSBw/90s.jpg", "name": "Five Guys Burgers & Fries", "price_rating": "2", "url": "http://www.yelp.com/biz/five-guys-burgers-and-fries-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/Hz4UY5CRiKqTqSG2hXLtqA/30s.jpg", "fav_comment_content": "I really loved the burger! I got a mini and it was still a decent size portion. \u00a0I went here because I was told they had the best Cajan fries. Sadly I did not enjoy them at all. \u00a0I also went\u2026", "phone": "", "fav_comment_user": "Natalie Z.", "address_l1": "913 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Chocolatiers & Shops"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Rubens Chocolate", "price_rating": "3", "url": "http://www.yelp.com/biz/rubens-chocolate-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I was excitingly telling a friend of mine from Belgium who was in St. Louis for a few years about Rubes Chocolates. \u00a0I remember Jacque polity listening and smiling. \u00a0So I sent him a box. \u00a0\u2026", "phone": "(217) 344-7979", "fav_comment_user": "Michael H.", "address_l1": "127 Lincoln Sq", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/tXZ1UfTNhf-t986eHe8v2g/90s.jpg", "name": "Beaumont Small Animal Clinic", "price_rating": "", "url": "http://www.yelp.com/biz/beaumont-small-animal-clinic-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I have been taking my pet cats here for four years. \u00a0I have been satisfied with any vet and any assistant that has seen my cats. \u00a0They aren't all gushy over my animals, but they do a good job\u2026", "phone": "(217) 367-1187", "fav_comment_user": "AS D.", "address_l1": "1304 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["Pizza", "Gluten-Free"], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/tN3zq9dOY383DvY7N5vcyA/90s.jpg", "name": "Station 6 Pizza", "price_rating": "2", "url": "http://www.yelp.com/biz/station-6-pizza-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/wjHrJtXbpCc329TyreBwbA/30s.jpg", "fav_comment_content": "Friendly folks, delicious food, and it's affordable too. Went to the lunch buffet with the family, and everything was fantastic. Bacon cheeseburger pizza was amazing!", "phone": "(217) 355-1911", "fav_comment_user": "Lisa C.", "address_l1": "1103 W Windsor", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/SJpKd7HIYoj6BhU3_140oA/90s.jpg", "name": "T&G Maintenance and Construction", "price_rating": "", "url": "http://www.yelp.com/biz/t-and-g-maintenance-and-construction-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I called T&G Maintenance to get a quote to install a short run of black pipe from an existing gas line in my basement to a new gas stove. Ryan provided a quick, free estimate, and suggested\u2026", "phone": "(217) 317-9140", "fav_comment_user": "Rachel C.", "address_l1": "", "address_l2": ""},
{"category": ["IT Services & Computer Repair", "Computers"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Computer Deli", "price_rating": "4", "url": "http://www.yelp.com/biz/computer-deli-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/QE1uGlkJytQG_V0-ff0UlA/30s.jpg", "fav_comment_content": "These guys are my heroes. I have a small business and when my computers have an issue, I always turn to these guys. They are fast and they get the job done. I see that some other reviewers\u2026", "phone": "(217) 398-4000", "fav_comment_user": "Jennipher W.", "address_l1": "39 E Marketview Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Fast Food"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/3MqE2Zpks85ZNVz7aShbFw/90s.jpg", "name": "Sonic", "price_rating": "1", "url": "http://www.yelp.com/biz/sonic-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/k46eII5LKmPEzlrrMTpWGg/30s.jpg", "fav_comment_content": "This is one place I probably will never get old of. I always substitute a soda for a \u00a0Strawberry limeade, which are THE best. Big size strawberries and of course crushed ice! \u00a0The service is\u2026", "phone": "(217) 356-1230", "fav_comment_user": "Jenny R.", "address_l1": "601 N Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Pizza"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/eVQtqh3Dc8TcjIgFKLFweQ/90s.jpg", "name": "Drew's Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/drews-pizza-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Is Drew's sleazy? Oh, most definitely. The place looks like it's one step above selling pizzas out of the back of a van and it did not shock me in the very least that they were offering food\u2026", "phone": "(217) 384-7000", "fav_comment_user": "David T.", "address_l1": "508 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Ice Cream & Frozen Yogurt"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/MZ5l3m1BopdyeFFp3jHdiA/90s.jpg", "name": "Cold Stone Creamery", "price_rating": "3", "url": "http://www.yelp.com/biz/cold-stone-creamery-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "They have a prize wheel where you win things.", "phone": "(217) 367-5555", "fav_comment_user": "C S.", "address_l1": "505 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Shopping Centers"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/vJm5brSVKNOVibaqb5VR6Q/90s.jpg", "name": "Market Place Shopping Center", "price_rating": "3", "url": "http://www.yelp.com/biz/market-place-shopping-center-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "Compared to the malls in Springfield and Decatur, this one is the better of the three. There are no empty stores and it does get busy at the mall. \u00a0They have a great steak and potato company\u2026", "phone": "(217) 356-2700", "fav_comment_user": "Jenny S.", "address_l1": "2000 North Neil Street", "address_l2": "Champaign, IL 61820"},
{"category": ["Hair Salons"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/KBRWZGN_z7uMH3bL2VfPbQ/90s.jpg", "name": "Red Hair", "price_rating": "2", "url": "http://www.yelp.com/biz/red-hair-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/Wiq7R_kvCkYso1i-R9D56w/30s.jpg", "fav_comment_content": "Make sure you get the lady! She is really great and very friendly! I only speak English with her and it is completely fine, so do not feel like this place is only for Korean-speaking people.\u2026", "phone": "(217) 328-7363", "fav_comment_user": "Nelson K.", "address_l1": "713 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/EEVWTvOdrM8NcwnIM5_qnQ/90s.jpg", "name": "La Fiesta Mexican Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/la-fiesta-mexican-restaurant-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/QiJsYxuzkSOyzOJejzEaAw/30s.jpg", "fav_comment_content": "...never runs out and our chips and salsa are constantly being topped...", "phone": "(217) 344-8879", "fav_comment_user": "Kate D.", "address_l1": "1717 Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/3lwzqGN4jwn2oYRPhNpMOQ/90s.jpg", "name": "Kirby's Firestone Service Center", "price_rating": "", "url": "http://www.yelp.com/biz/kirbys-firestone-service-center-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/QYIGz7pArhwfiOB9jGCJJQ/30s.jpg", "fav_comment_content": "Will definitely recommend to everyone. \u00a0I was looking foe tire replacements and the people there talked to me very nicely. Later I found another source where I can get cheaper tires so decided\u2026", "phone": "(217) 367-6362", "fav_comment_user": "Siyao L.", "address_l1": "303 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": ["Barbeque"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/O6XNTayqryqRcqg7FfIuEA/90s.jpg", "name": "Smoky's House BBQ", "price_rating": "1", "url": "http://www.yelp.com/biz/smokys-house-bbq-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/xibZBpgp0XHFp2B7R9OKwg/30s.jpg", "fav_comment_content": "Every time I eat Smoky's, I repeatedly catch myself being sort of shocked at how good it is. They really are executing extremely well over there. The pork is smokey, moist, and tender--pulled\u2026", "phone": "(217) 355-2272", "fav_comment_user": "A. J. H.", "address_l1": "1333 Savoy Plaza Ln", "address_l2": "Savoy, IL 61874"},
{"category": ["Chinese"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/BbTOU_WVLXfChJZP3PQH7A/90s.jpg", "name": "China Garden", "price_rating": "1", "url": "http://www.yelp.com/biz/china-garden-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/qpIvyQVg0SRBqon4dLewyw/30s.jpg", "fav_comment_content": "This place has everything you could want from a Chinese take-out. Cheap, delicious, and fast. \u00a0The combination plates are excellent for the price, getting you a choice from a dozen or so\u2026", "phone": "(217) 367-6588", "fav_comment_user": "Sean H.", "address_l1": "114 N Vine St", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/aVOcLdhvAUMNBmZ9475B9Q/90s.jpg", "name": "Grainger Engineering Library", "price_rating": "", "url": "http://www.yelp.com/biz/grainger-engineering-library-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/c-lGov1muAFyEqZcWgj9Ig/30s.jpg", "fav_comment_content": "University of Illinois at Urbana-Champaign is known for having one of the biggest university library systems in the world. \u00a0Grainger Engineering Library is UIUC's cornerstone library. \u00a0\u2026", "phone": "(217) 333-3576", "fav_comment_user": "Forrest I.", "address_l1": "1301 W Springfield Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Karaoke"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/hCOAI8dNotEnI8tmt-j2UA/90s.jpg", "name": "Star Karaoke", "price_rating": "2", "url": "http://www.yelp.com/biz/star-karaoke-savoy", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Vw3xrGFoiarAX_jtGyVRfg/30s.jpg", "fav_comment_content": "budajige\u3002not bad. We always order this dish, and the restaurant open late, good for people like me who stay pretty late at night", "phone": "(217) 356-3333", "fav_comment_user": "Zhenmin L.", "address_l1": "1503 Lyndhurst Alley", "address_l2": "Savoy, IL 61874"},
{"category": ["Department Stores"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/08VSrJF74isyQ1SHr8YBqg/90s.jpg", "name": "TJ Maxx", "price_rating": "2", "url": "http://www.yelp.com/biz/tj-maxx-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/7dnK4G3lDZAm3tMlp1RmIQ/30s.jpg", "fav_comment_content": "they are also getting a really good selection of gluten-free products, particularly mixes, bars, cookies, snacks, that kind of thing. However, they are randomly scattered all over the store so\u2026", "phone": "(217) 352-3435", "fav_comment_user": "Rachel S.", "address_l1": "21 E Marketview Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/vkAqXdf1SKxTjuTvUkwOlg/90s.jpg", "name": "Evolve Fitness Club", "price_rating": "", "url": "http://www.yelp.com/biz/evolve-fitness-club-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/JgZ0IZoQPqHTAfzR8vXhdg/30s.jpg", "fav_comment_content": "Pretty nice gym, especially for the Champaign area since I was displeased with several other gyms I went to look at. \u00a0The owners are very nice, and it seems they are always willing to help you\u2026", "phone": "(217) 378-8714", "fav_comment_user": "Grimace B.", "address_l1": "508 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Coffee & Tea"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/TjvwIvuVzHxRy6d0q0BQEw/90s.jpg", "name": "Espresso Royale", "price_rating": "3", "url": "http://www.yelp.com/biz/espresso-royale-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/mzSXETFQakTSu-HUg3p7FQ/30s.jpg", "fav_comment_content": "Great coffees and teas, free wi-fi, and parking. The Jumpin' Ginseng tea is awesome for a caffeine-less evening, or if your stomach is queasy because of papers/finals. \u00a0I generally don't eat\u2026", "phone": "(217) 351-0928", "fav_comment_user": "E. C.", "address_l1": "1411 S Neil St", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Will Am-Fm Radio", "price_rating": "", "url": "http://www.yelp.com/biz/will-am-fm-radio-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "WILL is the straight but never narrow radio station, playing mostly classical and jazz for their music component, with some folk and world beat stuff. \u00a0They also air National Public Radio and\u2026", "phone": "(217) 333-0850", "fav_comment_user": "Ellen M.", "address_l1": "300 N Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Dive Bars"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Z7l07ZZdNnVOLyg7U4MOZA/90s.jpg", "name": "Brass Rail", "price_rating": "1", "url": "http://www.yelp.com/biz/brass-rail-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/MpWtmMBib8M6Ci2-ObBNpA/30s.jpg", "fav_comment_content": "The Brass Rail is what a dive bar should be. \u00a0Slightly uncomfortable with bad furnishings, decent beer, and a great place to hang. \u00a0Every time I've come I've enjoyed it. \u00a0There's even an\u2026", "phone": "(217) 352-7512", "fav_comment_user": "Teej T.", "address_l1": "15 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Grocery", "Indian"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/q1f-hdafMOOnSI9okrlY4Q/90s.jpg", "name": "Mirsung Indian Fast food and Groceries", "price_rating": "1", "url": "http://www.yelp.com/biz/mirsung-indian-fast-food-and-groceries-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/0P43rcPbYLstvG1nRMxeVg/30s.jpg", "fav_comment_content": "One of the best Indian restaurants in town. \u00a0 The dosas are great, the tandoori chicken is fabulous, the butter chicken is awesome and the naan is delicious. Enough said! \u00a0And they deliver;\u2026", "phone": "(217) 344-2660", "fav_comment_user": "John K.", "address_l1": "49 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/IZxf2JE55G0AWLqiQxkp_w/90s.jpg", "name": "Armored Gopher Games", "price_rating": "", "url": "http://www.yelp.com/biz/armored-gopher-games-urbana-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/pJzB7YFHQtAdnAXgirk-Yw/30s.jpg", "fav_comment_content": "I like this place, it is a game store you can visit without feeling like a weirdo. \u00a0It's kind of tucked into the shopping complex on Cunningham, so you could easily miss it if you weren't\u2026", "phone": "(217) 366-3266", "fav_comment_user": "Ken R.", "address_l1": "1508-A N Cunningham Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Furniture Stores"], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/k6yS4oLb5g5HXbsTUV37Mg/90s.jpg", "name": "Woodie Alans", "price_rating": "3", "url": "http://www.yelp.com/biz/woodie-alans-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/XEUkS2dwWOuAOb5MPVKhGA/30s.jpg", "fav_comment_content": "Woodie Alans continues to deliver great products at great prices with service that is delightfully charming. \u00a0On my last visit, I ordered a gorgeous Nuevo chair and received several skeins of\u2026", "phone": "(217) 239-0986", "fav_comment_user": "Douglas H.", "address_l1": "717 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Chipotle", "price_rating": "2", "url": "http://www.yelp.com/biz/chipotle-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/rw1BLNfjSt_rLec3J1rVTw/30s.jpg", "fav_comment_content": "Today was my first visit to Chipotle. My first impression was the smile I was greeted with. I have worked with public and I realize the importance of this. The girl behind the counter was\u2026", "phone": "(217) 398-0997", "fav_comment_user": "Jan D.", "address_l1": "903 W Anthony Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Hair Salons"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Bella Capelli", "price_rating": "2", "url": "http://www.yelp.com/biz/bella-capelli-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/-I4E-T1eVjOL8Q97I6EqMg/30s.jpg", "fav_comment_content": "I miss Jean G. so much! I live in Los Angeles now, but I still get a haircut from Jean whenever I am back in Champaign. I always appreciated the way she kept me from drastic changes when I was\u2026", "phone": "(217) 352-2604", "fav_comment_user": "Loretta G.", "address_l1": "1401 S State St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dave & Harry Locksmiths", "price_rating": "", "url": "http://www.yelp.com/biz/dave-and-harry-locksmiths-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/NLzRT1nIYh9K1Q-Ls_eB3g/30s.jpg", "fav_comment_content": "I needed to have three locks re-keyed as well as duplicate keys made. The people there were friendly and straightforward. The locks work well and they charged a very fair price. I'm very happy\u2026", "phone": "(217) 352-5034", "fav_comment_user": "Lisa G.", "address_l1": "116 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Ice Cream & Frozen Yogurt", "Ethnic Food"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Nm7ksu-LbNNtdRocd2SjXg/90s.jpg", "name": "El Oasis", "price_rating": "2", "url": "http://www.yelp.com/biz/el-oasis-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/0SLtpJoTrm3Mz92IjWoMNw/30s.jpg", "fav_comment_content": "This is a very unique place with authentic Mexican flavors. I really loved the pinenut and mango rum with raisins!!! Worth trying people:-)", "phone": "", "fav_comment_user": "Raj K.", "address_l1": "510 North Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/tkGWrkBukJBj1e04E4PKDg/90s.jpg", "name": "Espresso Royale", "price_rating": "", "url": "http://www.yelp.com/biz/espresso-royale-champaign-6", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/6cpyUkZ48th2XdFwxxsJMQ/30s.jpg", "fav_comment_content": "Good coffee, friendly staff Free wifi, lots of seating.", "phone": "", "fav_comment_user": "Raymond T.", "address_l1": "2401 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": ["Bakeries"], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/_S1P6356ZbUWCTg2p5-Sbg/90s.jpg", "name": "Wedding Cakes by Rosie", "price_rating": "2", "url": "http://www.yelp.com/biz/wedding-cakes-by-rosie-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wVnw-oLdfNWTfqwRXs68mQ/30s.jpg", "fav_comment_content": "My mother fell in love with her at our first appt. :) I was planning my wedding from Georgia and Cali....and she made it so much easier. :) I had an idea from Pinterest and was worried she\u2026", "phone": "(217) 359-1526", "fav_comment_user": "Krishona C.", "address_l1": "2128 County Road 900 E", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/H1HKvBBBeg4kyk-iodaC1w/90s.jpg", "name": "University of Illinois Employees Credit Union", "price_rating": "", "url": "http://www.yelp.com/biz/university-of-illinois-employees-credit-union-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/wloul_gX-2chk51GaV5J1g/30s.jpg", "fav_comment_content": "Not for profit financial services. I had no idea I could join. I thought only U of I employees and professors could join. But locals, I guess residents of Champaign County can join. Alumni,\u2026", "phone": "(217) 278-7700", "fav_comment_user": "Anthony S.", "address_l1": "2201 S 1st St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Royse & Brinkmeyer Apartments", "price_rating": "", "url": "http://www.yelp.com/biz/royse-and-brinkmeyer-apartments-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/OZyKM3BvxOXOIDJskpgW8g/30s.jpg", "fav_comment_content": "Without a doubt the best landlord I have dealt with in Champaign/Urbana/Savoy/\u00adCampus. \u00a0I lived in a 2BD apartment in their Continental Plaza location. \u00a0Everyone from the office staff,\u2026", "phone": "(217) 352-4178", "fav_comment_user": "Amy F.", "address_l1": "211 W Springfield Ave Ste 100", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Midas", "price_rating": "", "url": "http://www.yelp.com/biz/midas-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ocfYgxfSEgHQMI9ma-ZI7Q/30s.jpg", "fav_comment_content": "I had what ended up being a super bizarre and drawn out saga of car trouble. \u00a0However, the moral of the story is that these guys were great is keeping me in the loop with what was happening\u2026", "phone": "(217) 359-0900", "fav_comment_user": "Sarah B.", "address_l1": "2102 Moreland Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Dry Cleaning & Laundry"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Denny's Professional Cleaners & Launderers", "price_rating": "1", "url": "http://www.yelp.com/biz/dennys-professional-cleaners-and-launderers-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/fivZX4PLPZEvywqylV1wSA/30s.jpg", "fav_comment_content": "Very good service! I have 3 coats need dry clean. It charges me $17.5 per long coat and $15 for the short one, and gives a discount at last. Its price is really reasonable! It even sews a\u2026", "phone": "(217) 352-1576", "fav_comment_user": "Fan F.", "address_l1": "1205 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Pet Supplies Plus", "price_rating": "", "url": "http://www.yelp.com/biz/pet-supplies-plus-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/r2CpS14uYUFSCdbCB0M79Q/30s.jpg", "fav_comment_content": "Nice pets. Has a pretty big variety. They let you take out animals and pet them. I think this place is great.", "phone": "(217) 366-9240", "fav_comment_user": "Carmen M.", "address_l1": "2821 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Grocery"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/crKHjoivvcjoEF8b_z_QNw/90s.jpg", "name": "Annapurna Stores", "price_rating": "2", "url": "http://www.yelp.com/biz/annapurna-stores-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/JtWszsiI7jwE4wHTLFteFQ/30s.jpg", "fav_comment_content": "I always have full faith that Annapoorna will have what I need when I'm cooking Indian cuisine. \u00a0For instance: I went to two other places looking for curry leaves before finally arriving at\u2026", "phone": "(217) 355-5215", "fav_comment_user": "Heather T.", "address_l1": "505 South Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Roto-Rooter Plumbers", "price_rating": "", "url": "http://www.yelp.com/biz/roto-rooter-plumbers-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/cyJcFX4bHvF99yp3hliIGg/30s.jpg", "fav_comment_content": "We had a clog somewhere in the line between our house and the tie-in at the street. Things were getting backed up and coming into our basement sink. I called Schoonover and they took my info\u2026", "phone": "(217) 367-9427", "fav_comment_user": "Heather J.", "address_l1": "813 Pioneer St", "address_l2": "Champaign, IL 61820"},
{"category": ["Interior Design", "Home Decor"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Checkered Moon", "price_rating": "2", "url": "http://www.yelp.com/biz/the-checkered-moon-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "Best spot in Champaign for gifts! They literally have a little bit of everything, ranging from jewelry, purses, amazing home decor, paintings, candles, rugs, books, magnets, toys, baby stuff,\u2026", "phone": "(217) 403-0263", "fav_comment_user": "Ashley B.", "address_l1": "1731 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Pizza", "Italian"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/4WNeEv3jSVEAsK-mKDUB-w/90s.jpg", "name": "Monical's Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/monicals-pizza-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/IGKRSIUKsHVzWSZadzyPSg/30s.jpg", "fav_comment_content": "If you like super-thin pizza, Monical's is the best. \u00a0The crust is crispy and crackling, with just the right amount of char, and the toppings are perfectly proportioned to not overwhelm the\u2026", "phone": "(217) 359-3514", "fav_comment_user": "Eric Y.", "address_l1": "205 N Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Bakeries", "American (Traditional)"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Intermezzo Caf\u00e9", "price_rating": "1", "url": "http://www.yelp.com/biz/intermezzo-caf%C3%A9-urbana-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/bTWEbMfMwtytkDqCxzfumw/30s.jpg", "fav_comment_content": "I've been here twice now, both times on Wednesdays for lunch. \u00a0The first time I went, I got the beef nachos. Yes. Yes. Yes. For six bucks, you get a mountain of nachos. If you're trying to\u2026", "phone": "(217) 333-8412", "fav_comment_user": "James C.", "address_l1": "500 S Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Bars", "Tex-Mex", "American (New)"], "rating": "2.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/HuUjMxb9LFKFz1oIySzc2A/90s.jpg", "name": "Chili's Grill & Bar", "price_rating": "2", "url": "http://www.yelp.com/biz/chilis-grill-and-bar-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/3k9fgyIRjkfPxycm4VavsA/30s.jpg", "fav_comment_content": "It's Chili's you know what you are signing up for. I've never had a problem with service here and the food is always adequate, I enjoy the potato soup. \u00a0Turn up.", "phone": "(217) 398-2161", "fav_comment_user": "Jason M.", "address_l1": "1905 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Mattresses"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/TG7cSu_XO_u4nGvKRDDaog/90s.jpg", "name": "Illini Mattress Co", "price_rating": "2", "url": "http://www.yelp.com/biz/illini-mattress-co-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/cOOz7tFl-OG49pzIMrCCOw/30s.jpg", "fav_comment_content": "This is the best mattress place in town. It's locally owned. They carry brand-name mattresses like Serta, Sealy, Tempur-Pedic etc, but they have their own factory with mattresses they make\u2026", "phone": "(217) 359-0156", "fav_comment_user": "Kris H.", "address_l1": "514 S Country Fair Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Sandwiches"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Subway", "price_rating": "1", "url": "http://www.yelp.com/biz/subway-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/grI8ZQ-7qVR6e9EYAw6C9A/30s.jpg", "fav_comment_content": "This Subway restaurant- Village Green Place in SW Champaign- is the best I have ever been to...and I have been to a lot of Subway restaurants. \u00a0The very polite staff will not skimp on your\u2026", "phone": "(217) 239-4982", "fav_comment_user": "Amber Y.", "address_l1": "2409 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/TysiuuZ-zVWlYvXrbUKg5w/90s.jpg", "name": "Lanz Heating & Cooling", "price_rating": "", "url": "http://www.yelp.com/biz/lanz-heating-and-cooling-champaign-4", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/OOYmeVxDruxNwKhqEpLX9Q/30s.jpg", "fav_comment_content": "Lanz came out to the house to install a brand new sump pump we bought for our condo. \u00a0Firstly, the office staff was incredibly friendly. \u00a0The two young women I worked with (first to schedule\u2026", "phone": "(217) 355-5512", "fav_comment_user": "Jen T.", "address_l1": "", "address_l2": ""},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/PhCmveL7CUQ1I7qM2o4CtQ/90s.jpg", "name": "Carmike Beverly Cinema 18", "price_rating": "", "url": "http://www.yelp.com/biz/carmike-beverly-cinema-18-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/HX3L1QybX1X-OsIludXoGQ/30s.jpg", "fav_comment_content": "Went to the improved theater the other day and gotta say, it's a major upgrade from the old building. \u00a0I like how they ask if you want to salt and butter your popcorn before they fill the\u2026", "phone": "(217) 359-4995", "fav_comment_user": "Benjamin U.", "address_l1": "910 Meijer Drive", "address_l2": "Champaign, IL 61822"},
{"category": ["Breakfast & Brunch", "American (Traditional)"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/uP_bZhpZ2tQWo_CJX33VPQ/90s.jpg", "name": "Bob Evans Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/bob-evans-restaurant-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/eXAw2NCNt0tpP32J9WVy1Q/30s.jpg", "fav_comment_content": "Our last visit to Bob Evans was only ok . Service was friendly ,the dinning room area was clean can't say that about the bathroom at all,really really dirty ,the bathroom did not see any\u2026", "phone": "(217) 356-1006", "fav_comment_user": "Fran A.", "address_l1": "1813 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Animal Emergency Clinic of Champaign County", "price_rating": "", "url": "http://www.yelp.com/biz/animal-emergency-clinic-of-champaign-county-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Wonderful experience here. I had a scary emergency with my dog last weekend during Christmas at a relative's house. She ended up needing surgery to remove her eye. The vet who was working was\u2026", "phone": "(217) 359-1977", "fav_comment_user": "Elizabeth H.", "address_l1": "1713 S State St", "address_l2": "Champaign, IL 61820"},
{"category": ["Ethnic Food", "Grocery"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/MBQppWAL318AuyrNA181FA/90s.jpg", "name": "Green Onion", "price_rating": "1", "url": "http://www.yelp.com/biz/green-onion-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/3It37lAWY1RmwSRlQs9GGA/30s.jpg", "fav_comment_content": "There's a huge variety of items here I haven't seen since I was still running around in diapers! \u00a0Overall, I would say the smallest Asian grocery store around Champaign, but because it's the\u2026", "phone": "(217) 359-5370", "fav_comment_user": "Deanna C.", "address_l1": "2020 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/7gHSPHXJTnOI3j4QuPdAzA/90s.jpg", "name": "Garcia's Pizza In A Pan", "price_rating": "2", "url": "http://www.yelp.com/biz/garcias-pizza-in-a-pan-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/2EyatP0B0YZE0M6IqJO94w/30s.jpg", "fav_comment_content": "I went to Illinois in the late '80s, ate a lot of Garcias pizza back then, and I have to say it is as good or even better now. \u00a0Best crust and sauce I've ever eaten. \u00a0Sure, the service is a\u2026", "phone": "(217) 352-1212", "fav_comment_user": "Brad D.", "address_l1": "313 N Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/hZHl1zbnhRPqSjNk_-MP1A/90s.jpg", "name": "Amtrak", "price_rating": "", "url": "http://www.yelp.com/biz/amtrak-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "A clean station with helpful staff. \u00a0I rode the train from Flagstaff, AZ to Kansas City, then to Champaign via Chicago. The crew on the trains were always very pleasant and eager to please.\u2026", "phone": "(217) 352-5905", "fav_comment_user": "William L.", "address_l1": "45 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/jVV5UXUIkGyEec0nhRWUeQ/90s.jpg", "name": "Bud's Tree Care", "price_rating": "", "url": "http://www.yelp.com/biz/buds-tree-care-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "We had to have a giant river birch removed from our front yard. Ryan and his crew answered all our questions, came to the house on time and were professional, quick and courteous. Ryan is very\u2026", "phone": "(217) 239-1220", "fav_comment_user": "Bryanna M.", "address_l1": "", "address_l2": ""},
{"category": ["Health Markets"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/tJk8qhrt-emR1ySLjjHQkg/90s.jpg", "name": "Natural Gourmet", "price_rating": "2", "url": "http://www.yelp.com/biz/natural-gourmet-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/NLzRT1nIYh9K1Q-Ls_eB3g/30s.jpg", "fav_comment_content": "Help, I'm addicted. \u00a0The Natural Gourmet (NG) deli has the BEST authentic Thai curry anywhere in town! \u00a0Order it with an egg on the side and you'll know what I mean. \u00a0They don't hold back on\u2026", "phone": "(217) 355-6365", "fav_comment_user": "Lisa G.", "address_l1": "2225 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/ntthqltokJSUSs2HgvKjNA/90s.jpg", "name": "Crystal Lake Park", "price_rating": "", "url": "http://www.yelp.com/biz/crystal-lake-park-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/7dnK4G3lDZAm3tMlp1RmIQ/30s.jpg", "fav_comment_content": "I love this park. I used to go to summer camp here many years ago and have a lot of good memories. My favorite part of the park is Busey Woods. There is something very magical and peaceful\u2026", "phone": "", "fav_comment_user": "Rachel S.", "address_l1": "Park and Broadway", "address_l2": "Urbana, IL 61801"},
{"category": ["Women's Clothing", "Used, Vintage & Consignment"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Robin's Nest", "price_rating": "2", "url": "http://www.yelp.com/biz/robins-nest-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "The store and selection are amazing. \u00a0The selection is much, much better quality than any other consignment store in town. \u00a0I was a little put off at first by the owner when I tried to consign\u2026", "phone": "(217) 607-1074", "fav_comment_user": "Angela B.", "address_l1": "515 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Hotels"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/s0Dz6sS8-WrsQW7cmC1UlA/90s.jpg", "name": "Eastland Suites", "price_rating": "3", "url": "http://www.yelp.com/biz/eastland-suites-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Stayed here with the wife four two nights while in town for a wedding. I do travel quite a bit for business and normally stay in 5-star joints as my work allows. This place was as good as any\u2026", "phone": "(217) 367-8331", "fav_comment_user": "Nathan W.", "address_l1": "1907 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["Florists", "Wedding Planning"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/IfSznybNWHczwZ3JVC8ZWg/90s.jpg", "name": "Blossom Basket Florist", "price_rating": "2", "url": "http://www.yelp.com/biz/blossom-basket-florist-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wVnw-oLdfNWTfqwRXs68mQ/30s.jpg", "fav_comment_content": "Used them for my wedding. Brittany was perfect and patient with me being a picky indecisive bride. When I was able to view my flowers the day before I got teary eyed. Everything came out well.\u2026", "phone": "(217) 367-8354", "fav_comment_user": "Krishona C.", "address_l1": "", "address_l2": ""},
{"category": ["Hotels"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/9wYAuaGjzPaW1kkM7U19Ug/90s.jpg", "name": "Courtyard Champaign", "price_rating": "2", "url": "http://www.yelp.com/biz/courtyard-champaign-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Can't go wrong with 24 hour Starbuck's service! \u00a0We stayed in mid September, 2013. \u00a0The lobby was inviting, especially the use of the colors throughout. \u00a0 Our room was very comfortable and\u2026", "phone": "(217) 355-0411", "fav_comment_user": "D. J.", "address_l1": "1811 Moreland Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Hotels", "Restaurants", "Venues & Event Spaces"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/qjV-oyAaaqCRlhe3vYvDZw/90s.jpg", "name": "Holiday Inn Hotel Champaign/Urbana", "price_rating": "2", "url": "http://www.yelp.com/biz/holiday-inn-hotel-champaign-urbana-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/8pGkCbvikipngANEJj2uVQ/30s.jpg", "fav_comment_content": "Enjoyed the entire experience! \u00a0 I will come back! \u00a0Food, check in, ambiance.", "phone": "(217) 328-7900", "fav_comment_user": "Kim L.", "address_l1": "1001 W Killarney St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/2xS1FFemUyRDmP-PsAfjbA/90s.jpg", "name": "Antonio's Pizza", "price_rating": "", "url": "http://www.yelp.com/biz/antonios-pizza-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/KtRvrjNe8uDkEAA9frZ04w/30s.jpg", "fav_comment_content": "ANTONIO'S is back!!! \u00a0I loved getting pizza here after a night of fun on Green St. and the bars. Antonio's is the place to go for a delicious quick slice of New York-styled pizza and the price\u2026", "phone": "(217) 365-9500", "fav_comment_user": "Brendan H.", "address_l1": "619 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "N Tailor & Alterations Co", "price_rating": "", "url": "http://www.yelp.com/biz/n-tailor-and-alterations-co-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/ZYD8GNo1zwnlokMBnRAfDg/30s.jpg", "fav_comment_content": "First rate work on an unusual job! \u00a0Although their business seems to be mostly bridal and dress alterations, I brought in a set of Gore-Tex \u00a0\"foulies\" (heavy foul-weather gear used on\u2026", "phone": "(217) 355-9425", "fav_comment_user": "Scott M.", "address_l1": "1401 N Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Florists"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Fleurish", "price_rating": "2", "url": "http://www.yelp.com/biz/fleurish-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Okay, I admit, I'd used Fleurish twice before and wasn't all that keen about the freshness of the flowers. \u00a0But when I received the most beautiful bouquet of my life in April 2012, I'm a\u2026", "phone": "(217) 607-0015", "fav_comment_user": "Anne F.", "address_l1": "122 N Walnut", "address_l2": "Champaign, IL 61820"},
{"category": ["Beer, Wine & Spirits"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/0N6mIJU8iNAwYvLUC_6_XA/90s.jpg", "name": "Corkscrew Wine Emporium", "price_rating": "2", "url": "http://www.yelp.com/biz/corkscrew-wine-emporium-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/o4DnCx7assY71oVkb02PWQ/30s.jpg", "fav_comment_content": "My review is based on first impressions at the Grand Opening celebration of Buvons. \u00a0During previous visits to Corkscrew, I noticed this next-door construction project, but never bothered to\u2026", "phone": "(217) 337-7704", "fav_comment_user": "Katherine C.", "address_l1": "203 N Vine St", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/WeEPSnNy7v0F2R6Pqcw3zQ/90s.jpg", "name": "Parkland College", "price_rating": "", "url": "http://www.yelp.com/biz/parkland-college-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/lN0sjwSmZHNPdPAVEoO3gA/30s.jpg", "fav_comment_content": "- Challenging courses and some great teachers - Science department ROCKED! - Awesome homey and pretty campus - Online classes made life easier - Affordable tuition - Small classroom experience\u2026", "phone": "(217) 351-2200", "fav_comment_user": "Lauren C.", "address_l1": "2400 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Hot Dogs", "Burgers"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/ZIvHGxaeW_-skxkD1Qtqaw/90s.jpg", "name": "Windy City Express", "price_rating": "1", "url": "http://www.yelp.com/biz/windy-city-express-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/9yCHNDRloyvalcaMmQ-JKA/30s.jpg", "fav_comment_content": "Best Italian Beef in town, as far as I'm concerned. Awesome fries - they're those lightly battered crispy fries. Serve yourself soft drink refills (which is always a plus for me in a counter\u2026", "phone": "(217) 344-9404", "fav_comment_user": "Stephanie H.", "address_l1": "410 N Race St", "address_l2": "Urbana, IL 61801"},
{"category": ["Barbeque"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/A0G9KYo08_9kyTt3Xt2zQQ/90s.jpg", "name": "Po' Boys Restaruant", "price_rating": "2", "url": "http://www.yelp.com/biz/po-boys-restaruant-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/c4yATETS3nhkmjhaS4mtEg/30s.jpg", "fav_comment_content": "Great pulled pork sandwich!! Nice and tender the medium sauce had just the right bite! Will come back for sure!!", "phone": "(217) 367-2255", "fav_comment_user": "Jon L.", "address_l1": "202 E University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Antiques"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/P0dFc_RlzDg_04j5PlJ1dA/90s.jpg", "name": "Carrie's", "price_rating": "3", "url": "http://www.yelp.com/biz/carries-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/L-8bvq_MApK57p_nrYKPtw/30s.jpg", "fav_comment_content": "This place is really cool, but it's also really overwhelming. I give it five stars for the awesome stuff they have in there. It was kind of like walking through a museum. I give it one star\u2026", "phone": "(217) 352-3231", "fav_comment_user": "April P.", "address_l1": "204 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Luggage"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "J J's Luggage & Shoe", "price_rating": "1", "url": "http://www.yelp.com/biz/j-js-luggage-and-shoe-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/ZcU0wGzwyKRkCHLgc8D2FQ/30s.jpg", "fav_comment_content": "I was kind of nervous to bring my boots here since people felt they were slow or disorganized, but my particular experience ended up being highly favorable and should I need to, I will be\u2026", "phone": "(217) 352-0111", "fav_comment_user": "A W.", "address_l1": "109 S Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["Beer, Wine & Spirits", "Jazz & Blues"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/rkcIrBA7_z8cUyAo4Se_iw/90s.jpg", "name": "Alto Vineyards Champaign", "price_rating": "2", "url": "http://www.yelp.com/biz/alto-vineyards-champaign-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/r8g_rsu2rzZd8GWzAR7img/30s.jpg", "fav_comment_content": "I've been attending summer concerts here for a few years. \u00a0They are generally pretty good with a low cover charge. \u00a0They have a small dance stage too. \u00a0There is plenty of seating if you arrive\u2026", "phone": "(217) 356-4784", "fav_comment_user": "Dawn H.", "address_l1": "4210 North Duncan Road", "address_l2": "Champaign, IL 61822"},
{"category": ["Jewelry"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/m1Qd_twbQs1aHXC5Ohl_Aw/90s.jpg", "name": "Christopher's Fine Jewelry Design", "price_rating": "3", "url": "http://www.yelp.com/biz/christophers-fine-jewelry-design-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wxsjBRqinaZrAaac9w92IQ/30s.jpg", "fav_comment_content": "the original name was \"the dragon's hoard\". \u00a0 stunning designs by master jeweler & metalsmith Chris Jupp. he made my engagement ring - rose-gold with a large sapphire - and our wedding rings -\u2026", "phone": "(217) 352-2415", "fav_comment_user": "Nancy P.", "address_l1": "124 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/O6VXyPPuGTnFf7QjpRUIFQ/90s.jpg", "name": "Papa John's Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/papa-johns-pizza-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/J0D7Jk9YBnfPM2CtjpaqeQ/30s.jpg", "fav_comment_content": "They have consistently good pizza, not super spectacular, but soft and flavorful enough to satisfy any cravings. They always have promo codes that you can use to get pizza for cheap. Also, I\u2026", "phone": "(217) 355-5858", "fav_comment_user": "Jessica C.", "address_l1": "106 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Estate Sale", "price_rating": "", "url": "http://www.yelp.com/biz/the-estate-sale-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Unfortunately, this gem of a store is closing. However, everything is now 50% off which is amazing. They have truly beautiful pieces of classic furniture and accessories. Seriously, I've been\u2026", "phone": "(217) 355-2001", "fav_comment_user": "Kate R.", "address_l1": "219 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/bpaRjcU0NTOIKz5rQlbE0A/90s.jpg", "name": "Hessel Park", "price_rating": "", "url": "http://www.yelp.com/biz/hessel-park-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "Great park. Lots of room to play a sport, run around, walk dog, take a walk, jog, and even a small playground with water sprinklers. Water operates from 11-3 then from 5-7 everyday during the\u2026", "phone": "", "fav_comment_user": "Jenny S.", "address_l1": "1401 Grandview Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Ice Cream & Frozen Yogurt"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Serendipity", "price_rating": "1", "url": "http://www.yelp.com/biz/serendipity-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/R-tu-j-8Qu5Vw747VEqlGA/30s.jpg", "fav_comment_content": "I really have nothing bad to say about Serendipity. They were often \u00a0closed at the most inconvenient times ever (weekends, etc.) but I think that changed recently. My friends and I love the\u2026", "phone": "(217) 333-2362", "fav_comment_user": "Shelly A.", "address_l1": "1401 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/3rQukjEaHn7aw2DpKPW7cA/90s.jpg", "name": "Taco Bell", "price_rating": "", "url": "http://www.yelp.com/biz/taco-bell-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/r2CpS14uYUFSCdbCB0M79Q/30s.jpg", "fav_comment_content": "Good just packed with calories.", "phone": "(217) 356-7526", "fav_comment_user": "Carmen M.", "address_l1": "1910 West Springfield", "address_l2": "Champaign, IL 61821"},
{"category": ["Mexican"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/b7aqDydrRfww33le_yQo_Q/90s.jpg", "name": "La Bamba Mexican Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/la-bamba-mexican-restaurant-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "If I were on death row.... This would be my last meal. \u00a0Undoubtedly, the best burritos ever.", "phone": "(217) 355-2888", "fav_comment_user": "Ben S.", "address_l1": "313 N Mattis Ave Ste 213", "address_l2": "Champaign, IL 61821"},
{"category": ["Italian"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/FLv0mostqWPkQtDEJy5cMA/90s.jpg", "name": "Fazoli's", "price_rating": "2", "url": "http://www.yelp.com/biz/fazolis-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/YK_nqGUGba0WUS8uXDVNrg/30s.jpg", "fav_comment_content": "Good basic food. Tasty sauce. Reasonable prices. Plus, it's a terrific place to take your single digit aged nieces, nephews and grandchildren. Fast food that doesn't taste fast. \u00a0 I'm a fan.", "phone": "(217) 356-4820", "fav_comment_user": "Gwen M.", "address_l1": "2029 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Chinese"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/2eIA-d9sBabX9sME5frWeQ/90s.jpg", "name": "Number One Wok", "price_rating": "1", "url": "http://www.yelp.com/biz/number-one-wok-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/9nUaUQHtlYVQZUDgJ7iLhQ/30s.jpg", "fav_comment_content": "Food is great, service is great, staff is great.... Chinese Food is one of my favorite cuisines, and I've tried many place locally as well as out of town... this is one of the best. \u00a0There is\u2026", "phone": "(217) 356-4700", "fav_comment_user": "Ruthie H.", "address_l1": "12 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (Traditional)"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/IlmKB6ykXreTs_hBmKffTg/90s.jpg", "name": "TGI Friday's", "price_rating": "2", "url": "http://www.yelp.com/biz/tgi-fridays-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M8qB37EUQvzsHo8NQMw44g/30s.jpg", "fav_comment_content": "The TGI Friday's I'm used to going to is nothing special. But this one is great! \u00a0First the place looks really nice. It doesn't look like a tacky family restaurant. It's \u00a0has a very fresh,\u2026", "phone": "(217) 352-8443", "fav_comment_user": "Aaron P.", "address_l1": "103 W Marketview Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Nightlife"], "rating": "2.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Aqp2ahQvVGwQnUAS27EmAA/90s.jpg", "name": "KAMS", "price_rating": "1", "url": "http://www.yelp.com/biz/kams-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/fUC0Ya_9B4zRMgSxFY2Efg/30s.jpg", "fav_comment_content": "...all this, and DESPITE its sticky floors and weird clientele, I still...", "phone": "(217) 328-1605", "fav_comment_user": "Stacey A.", "address_l1": "618 E Daniel St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/whrW-4TQiHnTGOXnPzVv0A/90s.jpg", "name": "Country View Veterinary Clinic", "price_rating": "", "url": "http://www.yelp.com/biz/country-view-veterinary-clinic-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/odXkJWqlVV-jbylLdev08Q/30s.jpg", "fav_comment_content": "This is a fantastic vet clinic. Growing up on a farm and participating in 4H, I feel that I have the best veterinary experiences visiting Country View. The staff is relatively young but very\u2026", "phone": "(217) 356-6481", "fav_comment_user": "Elizabeth T.", "address_l1": "2619 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "N Tailoring & Alteration", "price_rating": "", "url": "http://www.yelp.com/biz/n-tailoring-and-alteration-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/o4DnCx7assY71oVkb02PWQ/30s.jpg", "fav_comment_content": "As of March 31, 2012, this shop has moved to 1205 S. Mattis Ave. in Champaign, next door to Denny's Cleaners and Little Caesars. \u00a0When I was trying to find its location, the Internet\u2026", "phone": "(217) 403-4631", "fav_comment_user": "Katherine C.", "address_l1": "1205 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Coffee & Tea"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/d7SuRIfKNxKhmkOTtUDrkQ/90s.jpg", "name": "Flying Machine Coffee", "price_rating": "2", "url": "http://www.yelp.com/biz/flying-machine-coffee-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/jtlo2-Z0vajJTx-SrWBgoA/30s.jpg", "fav_comment_content": "Being from Chicago I've been spoiled greatly with fantastic coffee shops. It took a year, but I've finally found what seems to be the only comparable place in CU. \u00a0 In striking up a\u2026", "phone": "(217) 607-2721", "fav_comment_user": "Myles G.", "address_l1": "208 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": ["Hotels"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/IAJmgac3WNKEH4re-8ZYtQ/90s.jpg", "name": "Wingate Inn", "price_rating": "2", "url": "http://www.yelp.com/biz/wingate-inn-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/9HZH7YviUN7YfQSlaR2w6Q/30s.jpg", "fav_comment_content": "Rented the Business Class King Bedroom for two nights. It was very clean, spacious, and comfortable. \u00a0 Highlights: - Modern decor was warm and inviting - Amenities were in excellent condition\u2026", "phone": "(217) 355-5566", "fav_comment_user": "Sivling H.", "address_l1": "516 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Korean"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/CuE6r5PbGMMxfRIs_f6v6Q/90s.jpg", "name": "Good Fella Korean Bistro", "price_rating": "2", "url": "http://www.yelp.com/biz/good-fella-korean-bistro-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "When I lived in Champaign, I came here as often as I could. I used to get the ox bone soup all the time, which was heavenly velvet awesomeness, and they had fantastic barbecue. the Kimchi was\u2026", "phone": "(217) 239-5959", "fav_comment_user": "Carmen D.", "address_l1": "905 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Little Caesar's Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/little-caesars-pizza-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/EvNZCaxweJv6askfSqaPIw/30s.jpg", "fav_comment_content": "$5.00 hot & ready, best deal in town!!", "phone": "(217) 352-5544", "fav_comment_user": "Carol W.", "address_l1": "1211 S Mattis", "address_l2": "Champaign, IL 61821"},
{"category": ["Chicken Wings", "Fish & Chips", "Fast Food"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/ionliUO_rJiVEBavqmWKxw/90s.jpg", "name": "Big J J Fish & Chicken", "price_rating": "1", "url": "http://www.yelp.com/biz/big-j-j-fish-and-chicken-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I liked this place although the food seems dry and it is halal. Although nice food for fish and fries were tasty.", "phone": "(217) 351-4005", "fav_comment_user": "Tim B.", "address_l1": "1114 N Market St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/_jCvA9CwwKCgOjYkO1GOhQ/90s.jpg", "name": "Two Men and A Truck Central Illinois", "price_rating": "", "url": "http://www.yelp.com/biz/two-men-and-a-truck-central-illinois-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/Io9hF5hxW7NpwKV7c9axVA/30s.jpg", "fav_comment_content": "Moved in May of this year and they were wonderful....They over quoted with was great as that way I know just how much was needed ...But the best news was they came way under quote.....saved me\u2026", "phone": "(217) 619-9004", "fav_comment_user": "Lois C.", "address_l1": "", "address_l2": ""},
{"category": ["Used, Vintage & Consignment", "Thrift Stores"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Salvation Army Thrift Store", "price_rating": "1", "url": "http://www.yelp.com/biz/salvation-army-thrift-store-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/O73E_ClnDPMasVb23dho7w/30s.jpg", "fav_comment_content": "Lady luck frequents this place and all at a feesible price. \u00a0 I went there on a quest with one objective: find a nice pair of high-waist shorts. I had my doubts, and when i began the search i\u2026", "phone": "(217) 373-7825", "fav_comment_user": "T B.", "address_l1": "2212 N Market St", "address_l2": "Champaign, IL 61822"},
{"category": ["Home Decor"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Ten Thousand Villages", "price_rating": "3", "url": "http://www.yelp.com/biz/ten-thousand-villages-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/8SRojXd_CyYZ6Qr-Jvbrqw/30s.jpg", "fav_comment_content": "I only get to come here about once a year when I happen to be in Champaign visiting my daughters who over the years have gone to school or lived in the CU area. \u00a0 \u00a0It is a cute little store\u2026", "phone": "(217) 352-8200", "fav_comment_user": "Kathleen M.", "address_l1": "105 N Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/QXAcNpzV-Q_LqbrKdxS19g/90s.jpg", "name": "Pampered Pet Grooming and Dog Training", "price_rating": "", "url": "http://www.yelp.com/biz/pampered-pet-grooming-and-dog-training-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "This is the best place in town to get your dog groomed and for pet sitting, I have been taking my shi-tzu there for years and have always been pleased with there service. Absolutely the best\u2026", "phone": "(217) 352-0595", "fav_comment_user": "John B.", "address_l1": "2 Henson Pl", "address_l2": "Champaign, IL 61820"},
{"category": ["Breweries"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Tc2MiflpY3eVezU5NP8c_w/90s.jpg", "name": "Triptych Brewing", "price_rating": "1", "url": "http://www.yelp.com/biz/triptych-brewing-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/a-DkjHTIpW_bD43fQ-K7Vg/30s.jpg", "fav_comment_content": "Just got back from my first visit here, and I'm definitely impressed! I was a bit skeptical of what the environment would be like going in, considering Triptych is located in a commercial\u2026", "phone": "", "fav_comment_user": "Jason D.", "address_l1": "1703 Woodfield Dr", "address_l2": "Savoy, IL 61874"},
{"category": ["Florists"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Rick Orr Florist", "price_rating": "2", "url": "http://www.yelp.com/biz/rick-orr-florist-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/jYeGHznFj1S7N-VOMM9dAA/30s.jpg", "fav_comment_content": "Rick Orr Florist has been a truly unique design florist for years in the Champaign area. Amazing floral designs and unique plantings are a specialty. Have sent many superb gifts of flowers and\u2026", "phone": "(217) 351-9299", "fav_comment_user": "Lora S.", "address_l1": "122 N Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["Barbers"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/a5GMzkN85fsbDrqxZ0YCfw/90s.jpg", "name": "Clutch Cuts", "price_rating": "2", "url": "http://www.yelp.com/biz/clutch-cuts-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/l1z7AwCLrHJrqs4WuevhjQ/30s.jpg", "fav_comment_content": "I just got my haircut by Ashley the other day and she did a great job. I love that I pull in get a haircut and neck shave and then jet. Even had the nose hairs yanked out. First place I've\u2026", "phone": "(217) 355-2887", "fav_comment_user": "Adam S.", "address_l1": "202 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/jtuG7xM5TwYLiIYT5mZgSw/90s.jpg", "name": "El Toro Bravo", "price_rating": "1", "url": "http://www.yelp.com/biz/el-toro-bravo-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/RxBtKlv_szvnn60nmmwuxw/30s.jpg", "fav_comment_content": "A very nice, new building with an ambient, comfortable atmosphere. \u00a0The servers are very prompt and polite. \u00a0The food is just kind of mediocre and blah. \u00a0It's the typical Americanized Mexican\u2026", "phone": "(217) 351-7024", "fav_comment_user": "Andrea B.", "address_l1": "2561 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Chinese"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/XHNixKWKPtMxglvFL3FWKA/90s.jpg", "name": "Hot Wok Express", "price_rating": "1", "url": "http://www.yelp.com/biz/hot-wok-express-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "One of my vices for sure. I love this place for some odd reason. The lo mein, broccoli chicken, and sweet and sour chicken are my favs. Egg rolls are good too.", "phone": "(217) 384-7170", "fav_comment_user": "Ashley B.", "address_l1": "1102 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Building Supplies", "Hardware Stores", "Nurseries & Gardening"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Es8-GueFFmW218-6ZyJgAw/90s.jpg", "name": "Lowe's Home Improvement", "price_rating": "2", "url": "http://www.yelp.com/biz/lowes-home-improvement-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/tmzbtm1AWRr0wp1xTGc_AA/30s.jpg", "fav_comment_content": "I am a big fan of Lowe's and find the sales staff to be very friendly and helpful. They will do their best to provide advice on a wide variety of projects to help do-it-yourself customers. \u00a0\u2026", "phone": "(217) 373-7300", "fav_comment_user": "Joanna R.", "address_l1": "1904 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Greek", "Mediterranean", "Hookah Bars"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/X58kr1PkTVk0TB8miJ4leA/90s.jpg", "name": "Green Street Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/green-street-cafe-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/4uktNOayftzHjtz2yg8zKQ/30s.jpg", "fav_comment_content": "I have experience in both sides of the business but I'll start with the hookah side. \u00a0 \u00a0 \u00a0This was my first experience in smoking Hookah, and it is now a favorite hobby of mine. The prices are\u2026", "phone": "(217) 367-6844", "fav_comment_user": "Geoff M.", "address_l1": "35 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bookstores"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/VFXTvmzV7C_hMMLxT3e1IA/90s.jpg", "name": "T.I.S. College Bookstore", "price_rating": "2", "url": "http://www.yelp.com/biz/t-i-s-college-bookstore-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/BK5g8_yRcPpYV4ZOLmMFlw/30s.jpg", "fav_comment_content": "Ah, the good old days..... \u00a0I always loved visiting TIS when I was in Champaign. \u00a0Trying to search out a book in the middle of the racks and racks of books was always so much fun (or at least\u2026", "phone": "(217) 337-4900", "fav_comment_user": "Kathleen C.", "address_l1": "707 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": ["Nail Salons", "Hair Salons", "Massage"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/jWZ6CxdjtiIpUVp5n_Xw_Q/90s.jpg", "name": "Timothy John Salon and Spa", "price_rating": "2", "url": "http://www.yelp.com/biz/timothy-john-salon-and-spa-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/_Ojvf0fkjkqXih16RoDK9w/30s.jpg", "fav_comment_content": "I originally started coming here to see Shelly for waxing. She made me feel so comfortable and she's quick too! I had also always wanted red hair and had tried a few times myself and never\u2026", "phone": "(217) 344-4720", "fav_comment_user": "Nakita D.", "address_l1": "404 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": ["Pizza", "Chicken Wings", "Sandwiches"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/sTzZM4KyxfOytt6LRRVRFg/90s.jpg", "name": "Domino's Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/dominos-pizza-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/JgZ0IZoQPqHTAfzR8vXhdg/30s.jpg", "fav_comment_content": "Several years ago, I used to really dislike Domino's pizza. \u00a0Then one day recently..... \u00a0 \u00a0 \"Let's get Domino's!\" my girlfriend said. \u00a0Apparently, she was a big fan. \u00a0\"Ehh, I don't like their\u2026", "phone": "(217) 398-6800", "fav_comment_user": "Grimace B.", "address_l1": "1803 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Breakfast & Brunch"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Yfmh7E5t4S9eI5wEhl7Cwg/90s.jpg", "name": "Perkins Family Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/perkins-family-restaurant-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/eXAw2NCNt0tpP32J9WVy1Q/30s.jpg", "fav_comment_content": "We had Lunch there on a Sunday ,pretty busy . I say the food is ok not a wow but ok. The service was good and the place looked pretty clean . They got lots to pick from. \u00a0We did wait a long\u2026", "phone": "(217) 328-3000", "fav_comment_user": "Fran A.", "address_l1": "1214 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/4NIPca4s_cvwqnJKl9EGFg/90s.jpg", "name": "Morrissey Park", "price_rating": "", "url": "http://www.yelp.com/biz/morrissey-park-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/oFCwsGnMoJ7vfdOolT3WEA/30s.jpg", "fav_comment_content": "Very nice park. Well maintained with a large soccer field and tennis courts too.", "phone": "(217) 398-2550", "fav_comment_user": "Heather T.", "address_l1": "1400 Windsor Rd", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "AMVETS", "price_rating": "", "url": "http://www.yelp.com/biz/amvets-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/WX06xigq9lLIBXl8ISeIQg/30s.jpg", "fav_comment_content": "Recently rented their party room to throw a birthday party for 30 guests. \u00a0The room can fit anywhere from 50-100 guests, and has been used for weddings, birthdays, graduation parties, or\u2026", "phone": "(217) 398-1144", "fav_comment_user": "D A.", "address_l1": "203 W Hill St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/HFuZgFRcRJMrCvErYKgUXA/90s.jpg", "name": "Edens Rain Salon", "price_rating": "", "url": "http://www.yelp.com/biz/edens-rain-salon-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Melissa is excellent! It is so hard to find a good hair person when you move to a new town. I was pleased to have found her. She takes the time to listen and then executes a beautiful cut. She\u2026", "phone": "(217) 352-3366", "fav_comment_user": "Marcia D.", "address_l1": "501 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Cheese Shops"], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/cnBiUs1eM94lJgGAzPftyA/90s.jpg", "name": "Huggermugger", "price_rating": "1", "url": "http://www.yelp.com/biz/huggermugger-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/lbbJAlLVPSmw0SxAecDLRw/30s.jpg", "fav_comment_content": "Huggermugger is quaint and cozy and never fails to be a great place to meet up with friends. Although the menu constantly rotates and is at times experimental, the food is always delicious and\u2026", "phone": "", "fav_comment_user": "Lisa C.", "address_l1": "Gregory and Stoughton", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/LF27ArszNqBHdnrL44OODg/90s.jpg", "name": "Midwest Automotive & Diesel", "price_rating": "", "url": "http://www.yelp.com/biz/midwest-automotive-and-diesel-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ta02bj0BtlpG8DcFk9hwZQ/30s.jpg", "fav_comment_content": "I've only reviewed a few places simply because I'm lazy and I have to really be impressed to take the extra 3 minutes. \u00a0 I will definitely make the time for Jason & the guys at Midwest\u2026", "phone": "(217) 352-7343", "fav_comment_user": "Sheri-Lynn K.", "address_l1": "1306 N Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Zxns9OxFQYN-jKSY-3Iy0A/90s.jpg", "name": "Wilbur's Taxi", "price_rating": "", "url": "http://www.yelp.com/biz/wilburs-taxi-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/NXqI4zXEDDmxruj951lEgw/30s.jpg", "fav_comment_content": "Came out this way on a business trip in December and the couple that run this taxi service are fast, friendly and reasonably priced. \u00a0Best taxi service in campaign and I tried the rest so I\u2026", "phone": "(217) 781-0310", "fav_comment_user": "Isaac N.", "address_l1": "", "address_l2": ""},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Champaign Ballet Academy", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-ballet-academy-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/_kxIxVn7HGgvi98xAH4WPA/30s.jpg", "fav_comment_content": "I attended Champaign Ballet Academy from the ages of 5-11. During these impressionable years of my life, Deanna instilled in me the attitude that anything is possible through hard work and\u2026", "phone": "(217) 355-8234", "fav_comment_user": "Bri C.", "address_l1": "2810 W Clark Rd", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Animal Hospital At the Crossing", "price_rating": "", "url": "http://www.yelp.com/biz/animal-hospital-at-the-crossing-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/ozl7Lx4y8KhmzSZjGwLPGw/30s.jpg", "fav_comment_content": "Animal Hospital at the Crossing is the best vet clinic that I've ever been to and I've had animals since I was a little girl. Ever since my husband I moved to Champaign we have been going to\u2026", "phone": "(217) 356-6387", "fav_comment_user": "Samantha M.", "address_l1": "3001 Village Office Pl", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Speed Lube 10 Minute Oil Change Shops Inc", "price_rating": "", "url": "http://www.yelp.com/biz/speed-lube-10-minute-oil-change-shops-inc-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/3ZH_XSFaxahM8Mz3_3uRlA/30s.jpg", "fav_comment_content": "I love this place. I've been using this Speed Lube since a few months after I moved to town. The guys (and gals) are efficient, friendly, and they never try to up-sell things I don't actually\u2026", "phone": "(217) 355-6682", "fav_comment_user": "Grace C.", "address_l1": "901 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Z-sG8u2wAW2WcaFAkL612w/90s.jpg", "name": "Mettler Therapy", "price_rating": "", "url": "http://www.yelp.com/biz/mettler-therapy-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/wyR-EDW-t_CZf9xAs-Olgw/30s.jpg", "fav_comment_content": "I'm not sure how I was referred to the Mettler Center after a serious wrist fracture, but however it happened, I can assuredly say: Mettler Therapy is as good as it gets. \u00a0 After a broken\u2026", "phone": "(217) 398-9800", "fav_comment_user": "Pete J.", "address_l1": "2906 Crossing Ct", "address_l2": "Champaign, IL 61822"},
{"category": ["Thrift Stores"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Frogs & Fairies", "price_rating": "2", "url": "http://www.yelp.com/biz/frogs-and-fairies-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "This was a nice little secret for Urbana. I wish more people knew about it, but it seemed to get business while I was shopping. They seem to do special orders on something. \u00a0They have all\u2026", "phone": "(217) 267-6700", "fav_comment_user": "Jenny S.", "address_l1": "2860 S Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Shoe Stores"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Tradehome Shoes", "price_rating": "3", "url": "http://www.yelp.com/biz/tradehome-shoes-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "Great service. My husband found the shoes he was looking for. The sales associate was funny and interactive. We will be back.", "phone": "(217) 351-6836", "fav_comment_user": "Jenny S.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Andy's Towing", "price_rating": "", "url": "http://www.yelp.com/biz/andys-towing-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/GM2iKEQSAG6YCU4yapX5sQ/30s.jpg", "fav_comment_content": "Pretty remarkable. \u00a0I had a tire fail on I-74 Tuesday night and left my car on the road shoulder ( because my spare tire was no longer good). Unbeknownst to me, my car was towed in the early\u2026", "phone": "(217) 352-6969", "fav_comment_user": "Daniel W.", "address_l1": "515 N Market St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/oETdqwTXODXhg887fAzRig/90s.jpg", "name": "D & W Lake Camping & Fishing", "price_rating": "", "url": "http://www.yelp.com/biz/d-and-w-lake-camping-and-fishing-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Lreor6U54dESGts3i8hdDw/30s.jpg", "fav_comment_content": "Incredibly clean, immaculate bathrooms and shower. Owner is very very friendly.", "phone": "(217) 356-3732", "fav_comment_user": "Monica V.", "address_l1": "411 W Hensley Rd", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/n_ykN1ExJ7cXrj_OSYQVoA/90s.jpg", "name": "University High School", "price_rating": "", "url": "http://www.yelp.com/biz/university-high-school-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/pexvrF2Di760Ny70yXHTrQ/30s.jpg", "fav_comment_content": "I also went to Uni High, and thank god I did. The anti-intellectual social pressures of the public high schools were killing me, whereas uni was this creative sanctuary. And the teachers are\u2026", "phone": "(217) 333-2870", "fav_comment_user": "Joseph S.", "address_l1": "1212 W Springfield Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Masterspec Home Inspection Service Inc", "price_rating": "", "url": "http://www.yelp.com/biz/masterspec-home-inspection-service-inc-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/OOYmeVxDruxNwKhqEpLX9Q/30s.jpg", "fav_comment_content": "You won't find a better home inspector around! \u00a0Scott is a one-of-a-kind-- honest, extremely hard-working, and very fair when it comes to pricing. \u00a0Pick a package from Scott's site or let him\u2026", "phone": "(217) 398-6799", "fav_comment_user": "Jen T.", "address_l1": "2208 Tamarack Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Family Practice", "Drugstores", "Dermatologists"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/HD0hlztlmIw4kpnHad6_uw/90s.jpg", "name": "Carle Clinic Association", "price_rating": "2", "url": "http://www.yelp.com/biz/carle-clinic-association-urbana-5", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/q0nC7--yBSQGOE3Te1jY4Q/30s.jpg", "fav_comment_content": "Efficient Checkins-Caring Physicians-MTD accessible-Excellent location-Ample parking-New facilities-Affordable!", "phone": "(217) 255-9646", "fav_comment_user": "Madonna B.", "address_l1": "1818 E Windsor Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Cosmetics & Beauty Supply"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Ulta", "price_rating": "2", "url": "http://www.yelp.com/biz/ulta-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/4xUko3kJChBxo5_rHZcItA/30s.jpg", "fav_comment_content": "This review is based on my experience at the salon, although I enjoy the store as well. \u00a0I was at Ulta purchasing travel-sized stuff for an upcoming trip and received a 20% off coupon for a\u2026", "phone": "", "fav_comment_user": "Chelsea L.", "address_l1": "2023 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/iaMhdLzDtMFEIWcRN4ZlMw/90s.jpg", "name": "Pro-Tech Motors", "price_rating": "", "url": "http://www.yelp.com/biz/pro-tech-motors-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "They were flexible, got us in quickly (on a Tues.) \u00a0and even corrected a mistake they made when they estimated the price. \u00a0We just had the rear brakes and rotor replaced for a 2008 Volkwagen\u2026", "phone": "(217) 328-2337", "fav_comment_user": "Bryan K.", "address_l1": "2001 N Kenyon Rd", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ioDEfOhrA3GbNTkX-g9XkA/90s.jpg", "name": "Insty-Prints Business Printing Services", "price_rating": "", "url": "http://www.yelp.com/biz/insty-prints-business-printing-services-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/8YC-4AP3DHGekqAIhMiADw/30s.jpg", "fav_comment_content": "This place is awesome. We ordered a backdrop on Friday at 3 pm and our stuff was huge 8x6.5, so they had to send it to a different place. They got it print out on the next Wednesday! And we\u2026", "phone": "(217) 356-6166", "fav_comment_user": "Christina L.", "address_l1": "1001 N Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Good Servants Home Cleaning Co", "price_rating": "", "url": "http://www.yelp.com/biz/good-servants-home-cleaning-co-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/IMxBGEjDQqNWoaFX-3BVtw/30s.jpg", "fav_comment_content": "We've had Good Servants cleaning our house for a few months and they do an outstanding job. \u00a0We have them coming once a week and the charge for our 3 bedroom, 1 bath two-story house is $75.\u2026", "phone": "(217) 355-8333", "fav_comment_user": "GiGi G.", "address_l1": "2103 Sumac Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Aq9XGZAIaD1711ps84RaKw/90s.jpg", "name": "M & M Auto Repair", "price_rating": "", "url": "http://www.yelp.com/biz/m-and-m-auto-repair-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/9NThTZ9rLP10vMVPc-7PyQ/30s.jpg", "fav_comment_content": "Let me first say I am not a car expert by any stretch of the imagination, but I will say my experience with M&M was absolutely phenomenal. \u00a0 \u00a0My situation started when I got a terrible scratch\u2026", "phone": "(217) 355-5065", "fav_comment_user": "Matthew M.", "address_l1": "703 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["Restaurants", "Dive Bars"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/wkAa3_OQ2kX6UklTxvZTUQ/90s.jpg", "name": "Pia's Sports Bar & Grill", "price_rating": "1", "url": "http://www.yelp.com/biz/pias-sports-bar-and-grill-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "A great dive bar. Friendly bar staff, great prices (huge frosty beer steins for $2.50 on a Friday night, $7.50 pitchers with frosty glass pints to go with) and greasy pub grub. When we went\u2026", "phone": "(217) 351-1993", "fav_comment_user": "Tim J.", "address_l1": "1609 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/H-go44ihBa95KC591VTKng/90s.jpg", "name": "Dulak Pilates Center", "price_rating": "", "url": "http://www.yelp.com/biz/dulak-pilates-center-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/vYnLy25f98TjVM_74h6EdA/30s.jpg", "fav_comment_content": "The Dulak Pilates Center is a gift to our community. \u00a0Pilates is a form of exercise and fitness that both prevents physical problems and helps deal with or solve existing ones by focusing on\u2026", "phone": "(217) 239-2694", "fav_comment_user": "Diane G.", "address_l1": "44 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Framer's Market", "price_rating": "", "url": "http://www.yelp.com/biz/framers-market-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/UzWkt3HRNr0bQ_FMkw5xRw/30s.jpg", "fav_comment_content": "I came back from my last trip to France carrying in my luggage an old painting by my great aunt, who was an artist back in the days. The old canvas had been in the family for many years: it\u2026", "phone": "(217) 351-7020", "fav_comment_user": "David S.", "address_l1": "807 W Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Kfxm-fFJ3eY9DoTb6K2jXw/90s.jpg", "name": "Montessori School of Champaign-Urbana", "price_rating": "", "url": "http://www.yelp.com/biz/montessori-school-of-champaign-urbana-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "This school has been operating since 1962. \u00a0All three of our children attended 2 years of preschool + kindergarten here. \u00a0Their experience here could be described as extremely happy,\u2026", "phone": "(217) 356-1818", "fav_comment_user": "Tammy N.", "address_l1": "1403 Regency Dr E", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/8YDEA2JkAFQahQa8kGYoOA/90s.jpg", "name": "Pinky's Piercings's & Fine Body Jewelry", "price_rating": "", "url": "http://www.yelp.com/biz/pinkys-piercingss-and-fine-body-jewelry-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/IxDm_yVDbopqNINSr2bCgA/30s.jpg", "fav_comment_content": "In short... Pinky rocks! \u00a0I was initially referred to Pinky by both a reputable piercer in Chicago as well as a close friend who had gotten her last piercing done by Pinky... and I'm very\u2026", "phone": "(217) 778-7745", "fav_comment_user": "C T.", "address_l1": "2520 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Beckman Institute For Advanced Science and Tchnlgy", "price_rating": "", "url": "http://www.yelp.com/biz/beckman-institute-for-advanced-science-and-tchnlgy-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/T63tkM7YmLFawcqe-W8SjA/30s.jpg", "fav_comment_content": "I also have an office in the psychology building, but I consider it a good week when I get to spend 100% of my time in the Beckman instead.", "phone": "(217) 244-1176", "fav_comment_user": "Sarah L.", "address_l1": "405 N Mathews Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Average Joe Auto Repair", "price_rating": "", "url": "http://www.yelp.com/biz/average-joe-auto-repair-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Bu7nktBhQjuxRejCrzWf8g/30s.jpg", "fav_comment_content": "Great mechanic, passionate about his work, very reasonable costs, was able to fix a problem with my old Mazda that two other shops can't, specializes in old low-value cars. \u00a0 Cons: it's a one\u2026", "phone": "(217) 356-5900", "fav_comment_user": "Dmitriy M.", "address_l1": "1001 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Us8PKe1RfxecCgj7PDWpAA/90s.jpg", "name": "Meadowbrook Park", "price_rating": "", "url": "http://www.yelp.com/biz/meadowbrook-park-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "Playground area, two picnic areas for get together, large field to fly kites, art sculptures and a trail that is over two miles long, sums up this park. Also, lots of people walk their dogs,\u2026", "phone": "", "fav_comment_user": "Jenny S.", "address_l1": "Windsor Rd and Race St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Ward & Associates Realtors Inc", "price_rating": "", "url": "http://www.yelp.com/biz/ward-and-associates-realtors-inc-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/YaEOUvIQz9hVI59MdU1V6g/30s.jpg", "fav_comment_content": "Debby was the listing agent on a home I purchased about 5 years ago. \u00a0She was professional, responsive, flexible enough, treated us fairly, and dealt with us in a straightforward manner. \u00a0I\u2026", "phone": "(217) 355-1000", "fav_comment_user": "Iris M.", "address_l1": "8 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/j2sqbnE_1bEmVWNxYD_BEw/90s.jpg", "name": "Long's Garage", "price_rating": "", "url": "http://www.yelp.com/biz/longs-garage-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Easily the best garage in Chambana. I went to Midas in Champaign and was told my car was in serious danger because the brakes we are less than 10% pads. I was also told my left front strut was\u2026", "phone": "(217) 367-3942", "fav_comment_user": "Daniel G.", "address_l1": "503 E Main St", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/PXPaLWjyPNPLGq5hZaNHUg/90s.jpg", "name": "C-U Pet Sitting Service", "price_rating": "", "url": "http://www.yelp.com/biz/c-u-pet-sitting-service-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I am a very paranoid cat owner, and one of the (many) things that stresses me out about traveling is leaving my cats behind. Silly, I know, but I love my felines. \u00a0 I found Janus through a\u2026", "phone": "(217) 352-4709", "fav_comment_user": "Nanette D.", "address_l1": "707 W Clark St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Spies Home Inspection Serv", "price_rating": "", "url": "http://www.yelp.com/biz/spies-home-inspection-serv-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/IUs14SidZBm8tAtFNxYFRw/30s.jpg", "fav_comment_content": "The Spies family does quality home inspections, and also has a local radio show on WILL. They came highly recommended by a friend who had a horrible experience with another local company who\u2026", "phone": "(217) 356-5048", "fav_comment_user": "Matt B.", "address_l1": "800 La Sell Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Sports Wear"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Eddie Bauer", "price_rating": "2", "url": "http://www.yelp.com/biz/eddie-bauer-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/SMM72SdHOJyzrMb7CwyhFw/30s.jpg", "fav_comment_content": "Wonderful products, wonderful service! Love Eddie Bauer products, high quality outdoor wear. You should definitely pop by.", "phone": "(217) 356-6101", "fav_comment_user": "Noam S.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Tattoo", "Piercing"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/o51bKDIBc5Mi0Wa7wv905w/90s.jpg", "name": "Typecast Inc. Tattoos & Piercing", "price_rating": "2", "url": "http://www.yelp.com/biz/typecast-inc-tattoos-and-piercing-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/UnavnCHG4wv3Dn0lGNCxCA/30s.jpg", "fav_comment_content": "Awesome tattoo artist! Justin is a nice, funny, professional guy. I've had 2 tattoos done by him. He does a fantasic job. His first colored feather was on me and he did an excellent job, very\u2026", "phone": "(217) 954-1406", "fav_comment_user": "Lydia D.", "address_l1": "602 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Car-X Tire & Auto", "price_rating": "", "url": "http://www.yelp.com/biz/car-x-tire-and-auto-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/3OU-lIe_V_Rtj554YnfGcw/30s.jpg", "fav_comment_content": "Hands down the best service in town. Rob, the manager, didn't try to sell me anything I didn't need which was nice. They even offer free wi-fi and a ride if you need it. Sometimes it's the\u2026", "phone": "(217) 352-9700", "fav_comment_user": "Tyler S.", "address_l1": "906 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Illini Oil Change", "price_rating": "", "url": "http://www.yelp.com/biz/illini-oil-change-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/rIBD_RXElRUZKbDh4K-noQ/30s.jpg", "fav_comment_content": "We had a slow leak in one of our tires and although we are close to needing new ones, my husband insisted it could be fixed and that new tires could still wait a few months. \u00a0We tried taking\u2026", "phone": "(217) 384-4933", "fav_comment_user": "Rachael C.", "address_l1": "301 E Main St", "address_l2": "Urbana, IL 61802"},
{"category": ["Breakfast & Brunch"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Yfmh7E5t4S9eI5wEhl7Cwg/90s.jpg", "name": "Perkins Family Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/perkins-family-restaurant-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/eXAw2NCNt0tpP32J9WVy1Q/30s.jpg", "fav_comment_content": "We had Lunch there on a Sunday ,pretty busy . I say the food is ok not a wow but ok. The service was good and the place looked pretty clean . They got lots to pick from. \u00a0We did wait a long\u2026", "phone": "(217) 328-3000", "fav_comment_user": "Fran A.", "address_l1": "1214 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Lounges"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Soma Ultralounge", "price_rating": "2", "url": "http://www.yelp.com/biz/soma-ultralounge-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/NJrrin50JPKmxGnGFuweGg/30s.jpg", "fav_comment_content": "I paid $2.50 to get in. For reals? It was a huge group of girls for my friend's bachelorette party and the guy decides it'll be nice of him to do a 2 for $5 deal. And then it was nearly EMPTY\u2026", "phone": "(217) 359-7662", "fav_comment_user": "Elie L.", "address_l1": "320 N Neil St", "address_l2": "Champaign, IL 61821"},
{"category": ["Chinese"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Panda Express", "price_rating": "1", "url": "http://www.yelp.com/biz/panda-express-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "I decided to try Panda Express at the mall this time over the other fast food Chinese places. \u00a0What struck me was they slice the chicken breast in front of you so you know you are not getting\u2026", "phone": "(217) 356-7700", "fav_comment_user": "Lisa B.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Sports Bars"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/DIxyD7v1cgYRIK8bjMctIQ/90s.jpg", "name": "Hubers", "price_rating": "1", "url": "http://www.yelp.com/biz/hubers-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "Hubers is a good neighborhood bar. There really aren't any others like it in Chambana, but they are a dime a dozen in Chicago, and when they are good, they are great. Hubers is a townie bar,\u2026", "phone": "(217) 352-0606", "fav_comment_user": "Tim J.", "address_l1": "1312 W Church St", "address_l2": "Champaign, IL 61821"},
{"category": ["Japanese"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Kamakura Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/kamakura-restaurant-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/43Q4Adpu-w3dvny-6OCV6A/30s.jpg", "fav_comment_content": "Aw, poor Kamakura, why all the hate? \u00a0I have a soft spot for this place, because it's been a family favorite for YEARS - my dad took us there when they first opened because he had recently\u2026", "phone": "(217) 351-9898", "fav_comment_user": "Kali M.", "address_l1": "715 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Pottery Place", "price_rating": "", "url": "http://www.yelp.com/biz/the-pottery-place-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "This place has always been awesome and accommodating to me and the different crowds in store. Whether there are loads of little children running around, grandmas with their more mature\u2026", "phone": "(217) 355-7654", "fav_comment_user": "Chaya S.", "address_l1": "1808 Round Barn Rd", "address_l2": "Champaign, IL 61821"},
{"category": ["Tanning"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/vxyAAU8eMvzQu4-ncJ8VMg/90s.jpg", "name": "BodiBronze Sunless Spa", "price_rating": "3", "url": "http://www.yelp.com/biz/bodibronze-sunless-spa-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/QaQxy_WCCYmbryINKRnnNQ/30s.jpg", "fav_comment_content": "BodiBronze trains its employees in airbrushing technique and their application is flawless. The salon is lovely and the tanning room is large - the size of a large bedroom. This is important\u2026", "phone": "(217) 355-1101", "fav_comment_user": "Shellie S.", "address_l1": "2919 Crossing Ct", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/OQhaVK2D71fE-5DHJ_hPSQ/90s.jpg", "name": "Fifth Dimension Collision Repair", "price_rating": "", "url": "http://www.yelp.com/biz/fifth-dimension-collision-repair-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/WX06xigq9lLIBXl8ISeIQg/30s.jpg", "fav_comment_content": "I feel this is the best collision repair center in town. \u00a0They are honest, and I like how they have the computer right in front of you, to show you the parts that need to be replaced when they\u2026", "phone": "(217) 531-2695", "fav_comment_user": "D A.", "address_l1": "2702 N Mattis Ave", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dankle W Casey DDS", "price_rating": "", "url": "http://www.yelp.com/biz/dankle-w-casey-dds-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/D2Qq9-b_mkaycbQl1b0XVg/30s.jpg", "fav_comment_content": "Great guy! \u00a0My father was a dentist for forty two years and my father gave him a five star rating as a Doctor as well!", "phone": "(217) 359-2641", "fav_comment_user": "Dan M.", "address_l1": "102 W Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Steakhouses"], "rating": "2.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/9sWzv8PNoSqs2umQyHrQEA/90s.jpg", "name": "Outback Steakhouse", "price_rating": "2", "url": "http://www.yelp.com/biz/outback-steakhouse-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/cyJcFX4bHvF99yp3hliIGg/30s.jpg", "fav_comment_content": "We went last night, 7/7/12. We don't usually frequent chain restaurants, but we had a gift certificate. We went early to beat the rush and were immediately sat. The hostess was friendly and\u2026", "phone": "(217) 398-3322", "fav_comment_user": "Heather J.", "address_l1": "2402 N Prospect Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["American (Traditional)"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/c5rAY08fIBCM7lMru2DbtA/90s.jpg", "name": "Illini Union Ballroom Dining", "price_rating": "1", "url": "http://www.yelp.com/biz/illini-union-ballroom-dining-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/o4DnCx7assY71oVkb02PWQ/30s.jpg", "fav_comment_content": "With no visible signs or advertising, you could easily overlook this place during your entire stint at the university. \u00a0(By the way, you can find it on the second floor, northwestern corner of\u2026", "phone": "(217) 333-3030", "fav_comment_user": "Katherine C.", "address_l1": "1404 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": ["Chinese", "Buffets"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Sunny China Buffet", "price_rating": "1", "url": "http://www.yelp.com/biz/sunny-china-buffet-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/ExEwCv4re8ukrUxG_BNCPw/30s.jpg", "fav_comment_content": "I've had the fortune of living close to Sunny China Buffet many years before moving and continue driving over all the way to Urbana for their food. They offer a cornucopia of savory\u2026", "phone": "(217) 367-8883", "fav_comment_user": "Jade R.", "address_l1": "1703 Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Fast Food"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/w5vbLrypVk3WFTOfDGsDlA/90s.jpg", "name": "Sonic", "price_rating": "1", "url": "http://www.yelp.com/biz/sonic-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LhP_qTynDcovb3aajSeOzA/30s.jpg", "fav_comment_content": "As far as fast food or Sonic Drive-In goes, this is pretty much what it should be. \u00a0The kids love to order their food at the table. \u00a0The prices are cheap and it definitely tastes better than\u2026", "phone": "(217) 359-8901", "fav_comment_user": "Jamie L.", "address_l1": "101 Calvin", "address_l2": "Savoy, IL 61874"},
{"category": ["Hotels"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/bo8-O6Kp3l63KlFRTB7taQ/90s.jpg", "name": "Country Inn & Suites", "price_rating": "2", "url": "http://www.yelp.com/biz/country-inn-and-suites-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/Ac76fap_VRhzKn-yG11sMA/30s.jpg", "fav_comment_content": "A large group of us stayed here during a football game weekend and everyone was pretty pleased with the accomodations. \u00a0The beds were comfortable and had an abundance of pillows. \u00a0The TVs\u2026", "phone": "(217) 355-6666", "fav_comment_user": "William L.", "address_l1": "602 W. Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Les Cheveux Gallery", "price_rating": "", "url": "http://www.yelp.com/biz/les-cheveux-gallery-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/l1gB-gS5dIXkNwQRGmabPA/30s.jpg", "fav_comment_content": "Whenever I am in the Urbana-Champaign area, I go to Les Cheveux Gallery and get my hair \"did\" by Charlissa. She works strictly by appointment only, so do not walk in the salon, expecting her\u2026", "phone": "(217) 355-5560", "fav_comment_user": "Liza B.", "address_l1": "24 E Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/LPFo7npcvBwCuXXazd6WwQ/90s.jpg", "name": "Harold Huang Photography", "price_rating": "", "url": "http://www.yelp.com/biz/harold-huang-photography-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/olGry2iOqB47F4RfhysuzA/30s.jpg", "fav_comment_content": "He did our family and baby photos. Has great ideas and pictures were beautiful! I have seen pictures from other sessions of his and they as well are very nicely done. He has a great awareness\u2026", "phone": "(217) 418-6839", "fav_comment_user": "Daniel M.", "address_l1": "", "address_l2": ""},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/-TCBQ33wUSSU-boedXA7Zg/90s.jpg", "name": "Meineke Car Care Center", "price_rating": "", "url": "http://www.yelp.com/biz/meineke-car-care-center-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/0voLCzEq6t_X5nMFvYgZrQ/30s.jpg", "fav_comment_content": "I used to come here when I still lived in Urbana. They took great care of my old car. \u00a0The place needs to be updated but I don't care about that if the mechanics are honest and don't try to\u2026", "phone": "(217) 337-1122", "fav_comment_user": "Vatrenn S.", "address_l1": "712 North Cunningham Avenue", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dyno-Tune", "price_rating": "", "url": "http://www.yelp.com/biz/dyno-tune-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/cuVH0lysLcpqpJ_7joyDzA/30s.jpg", "fav_comment_content": "I took my car here because it was making a godawful grinding noise (it turns out that the muffler had rusted through). The initial estimate didn't take too long, and the price Scott quoted to\u2026", "phone": "(217) 328-0007", "fav_comment_user": "Benjamin E.", "address_l1": "104 S Vine St", "address_l2": "Urbana, IL 61802"},
{"category": ["Barbers"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dave & Gene's Barber Shop", "price_rating": "2", "url": "http://www.yelp.com/biz/dave-and-genes-barber-shop-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "This is my favorite barber shop on campus. Dave and Gene are very friendly and they provide good cuts at a good price. \u00a0 The price is a bit high, but I'm pretty sure that's because most of the\u2026", "phone": "(217) 367-3797", "fav_comment_user": "David T.", "address_l1": "509 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Music & DVDs"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Record Swap", "price_rating": "3", "url": "http://www.yelp.com/biz/record-swap-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/_9YJ-uoO-VhDOcUILwYtAg/30s.jpg", "fav_comment_content": "Real nice shop. I bought a real nice first pressing Miles Davis record in great shape for a good price. The owner was real helpful to me and my brother. \u00a0I have been to the shop twice and the\u2026", "phone": "(217) 367-7927", "fav_comment_user": "Jeremy G.", "address_l1": "114 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Sandwiches", "Fast Food", "Delis"], "rating": "2.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/M2WthwvBMPNhMzT9QtPn6Q/90s.jpg", "name": "Jersey Mike's", "price_rating": "1", "url": "http://www.yelp.com/biz/jersey-mikes-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ZiQfQCcmKEmIPOIPVCr-2Q/30s.jpg", "fav_comment_content": "Jersey Mike's has its own little atmosphere. The customer service is great and the workers are really friendly despite what other reviews may say. I've been here at least 3 times so far. I've\u2026", "phone": "(217) 954-1167", "fav_comment_user": "Mellissa K.", "address_l1": "505 E. Green Street", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Champaign Dental Group", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-dental-group-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/fBSJaddkfyKHWWZ5ZEtSUw/30s.jpg", "fav_comment_content": "Im not sure what all of the negative reviews are about - I had a fantastic experience here. I came in with nerve pain and a preexisting deathly fear of needles and came out with fear fended\u2026", "phone": "(217) 398-2244", "fav_comment_user": "Thomas P.", "address_l1": "703 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Sandwiches", "Salad", "Soup"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/Y0rzhWtF8wgoyNMz2WN6zg/90s.jpg", "name": "Panera Bread", "price_rating": "2", "url": "http://www.yelp.com/biz/panera-bread-champaign-4", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "I have been to Panera several times. \u00a0The broccoli cheese soup and french onion soup are the best,. \u00a0 \u00a0However, I have never had a good apple from Panera. \u00a0EVER. \u00a0They are always tasteless and\u2026", "phone": "(217) 239-5000", "fav_comment_user": "Lisa B.", "address_l1": "1903 Convenience Place", "address_l2": "Champaign, IL 61820"},
{"category": ["Sushi Bars", "Buffets", "Chinese"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Hv6yeYSi4nnIAo-yT15ahg/90s.jpg", "name": "Ichiban Buffet", "price_rating": "1", "url": "http://www.yelp.com/biz/ichiban-buffet-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/oBwxlSFLkmpSIwUxdC9h6w/30s.jpg", "fav_comment_content": "You had me at $6.99 all you can eat lunch. \u00a0Love the price but of course you get what you pay for. \u00a0I recommend going during peak times since the hot food and sushi is fresher. \u00a0Sushi can be\u2026", "phone": "(217) 398-5650", "fav_comment_user": "Ellen C.", "address_l1": "105 N Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/vlOYm12h3JWfrQkRRLWu1Q/90s.jpg", "name": "Roland Realty", "price_rating": "", "url": "http://www.yelp.com/biz/roland-realty-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/nJEkvU1INndGJ6JlC60JlA/30s.jpg", "fav_comment_content": "I lived at 702/704 W Elm St in Urbana for a year. \u00a0I have no complaints about the management. \u00a0Maintenance requests were always handled quickly, and because my apartment was not the \"show\u2026", "phone": "(217) 351-8900", "fav_comment_user": "Paige M.", "address_l1": "", "address_l2": ""},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/eSd4t63lZjKmCXOT6TLmPA/90s.jpg", "name": "PetSmart", "price_rating": "", "url": "http://www.yelp.com/biz/petsmart-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/MNIom4-DoquoGo6hcl1UtQ/30s.jpg", "fav_comment_content": "I will say this about Petsmart: First, the people who work there are friendly. Second, they will take back, without question, anything that doesn't work for you. Even if your cat doesn't like\u2026", "phone": "(217) 351-9244", "fav_comment_user": "Dian T.", "address_l1": "2017 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Drugstores", "Cosmetics & Beauty Supply", "Convenience Stores"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/N6IBZsSt-PzIUsiZQPx50g/90s.jpg", "name": "Walgreens", "price_rating": "1", "url": "http://www.yelp.com/biz/walgreens-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/NIiRJKBOJrx2nDCkzUjKIg/30s.jpg", "fav_comment_content": "As the previous reviewer Bailey stated - nice clean store, brightly lit. \u00a0I wanted one of those soft cloths for cleaning eyeglass - they had none. I had to buy a package (30 count) of these\u2026", "phone": "(217) 351-1516", "fav_comment_user": "Neal E.", "address_l1": "1509 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/FMwax6VgVgoyMbTTk-tmfw/90s.jpg", "name": "Torticas Grill", "price_rating": "1", "url": "http://www.yelp.com/biz/torticas-grill-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/eJ7SLIWYAaL4UJU5BxdEfg/30s.jpg", "fav_comment_content": "I'm not sure why i haven't heard about this campustown gem earlier, but i am VERY happy i know about it now. \u00a0First off,i LOVE their salsa more than anywhere else in town, but it must be mixed\u2026", "phone": "(217) 607-0073", "fav_comment_user": "Eric B.", "address_l1": "408 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/8dprMF28bHn7C9hTzug2Gw/90s.jpg", "name": "Urbana Landmark Hotel", "price_rating": "2", "url": "http://www.yelp.com/biz/urbana-landmark-hotel-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "We took a bit of a chance staying at this fixer-upper but we were well taken care of and now consider ourselves investors in the effort to save this historic hotel. We look forward to future\u2026", "phone": "(217) 384-8800", "fav_comment_user": "Mallory S.", "address_l1": "210 S Race St", "address_l2": "Urbana, IL 61801"},
{"category": ["Dry Cleaning & Laundry"], "rating": "2.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Ma_1cycD5PzbUtX1dfDa2A/90s.jpg", "name": "Starcrest Cleaners", "price_rating": "3", "url": "http://www.yelp.com/biz/starcrest-cleaners-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/ATKHZ2xMCA0nI_YU7-zimg/30s.jpg", "fav_comment_content": "definitely the best laundromat i have found in the c-u area. it's got plenty of washers and dryers, as well as industrial sized ones for the time that you want to wash all your sheets, your\u2026", "phone": "(217) 352-4801", "fav_comment_user": "Kate F.", "address_l1": "611 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bikes"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Durst Cycle & Fitness", "price_rating": "4", "url": "http://www.yelp.com/biz/durst-cycle-and-fitness-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/RxBtKlv_szvnn60nmmwuxw/30s.jpg", "fav_comment_content": "I've been here with a friend before to get his bike fixed, and he seemed to be very satisfied with the service. \u00a0Then again, I'm not sure exactly how knowledgeable he is about bikes, because\u2026", "phone": "(217) 367-3600", "fav_comment_user": "Andrea B.", "address_l1": "1112 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Toys R US", "price_rating": "", "url": "http://www.yelp.com/biz/toys-r-us-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "They recently did a remodel of their store and it looks better and has more flow. I still can't find anything though. \u00a0Come with coupons or you'll be paying a lot for things you can find at a\u2026", "phone": "(217) 356-8697", "fav_comment_user": "Jenny S.", "address_l1": "40 E Anthony Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Breakfast & Brunch", "American (New)", "Fast Food"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/_IcT9-qnuVLT2l8AWV8Eaw/90s.jpg", "name": "Steak 'n Shake", "price_rating": "1", "url": "http://www.yelp.com/biz/steak-n-shake-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/eM2eEEX5QPfIYbd8h2O3oQ/30s.jpg", "fav_comment_content": "This place is open 24 hours and it has a huge list of items that are $4! That is simply awesome. Steak 'n Shake is a sit down restaurant that features fast food quality food. Their breakfast\u2026", "phone": "(217) 398-1606", "fav_comment_user": "Mark C.", "address_l1": "2010 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Mexican"], "rating": "2.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/pv2WeZaBZdO4QgSIgFsOYQ/90s.jpg", "name": "Qdoba Mexican Grill", "price_rating": "1", "url": "http://www.yelp.com/biz/qdoba-mexican-grill-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/nEe0qZDMRMvq0Mh-zTGNrg/30s.jpg", "fav_comment_content": "Qdoba here is pretty much like Qdoba any where else. The burritos are filling and made to order cafeteria style, and the lines are never as long as Chipotle's. \u00a0 In the entrance of Follett's\u2026", "phone": "(217) 384-9002", "fav_comment_user": "Samuel I.", "address_l1": "617 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Nail Salons"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Millennium Nails", "price_rating": "2", "url": "http://www.yelp.com/biz/millennium-nails-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/oFCwsGnMoJ7vfdOolT3WEA/30s.jpg", "fav_comment_content": "One of my favorite nail salons in town, and newly remodeled. \u00a0They have the biggest selection of \u00a0'no chip' shellac nail colors, the most staff, the most pedicure chairs, and are fast and\u2026", "phone": "(217) 355-1984", "fav_comment_user": "Heather T.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Yong's Alteration & Embroidery", "price_rating": "", "url": "http://www.yelp.com/biz/yongs-alteration-and-embroidery-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I have worked with Yong's for about 5 years. \u00a0They are always helpful, they do top quality work and if I ever have had a problem, they rush to fix it. \u00a0 A few days ago I needed a design\u2026", "phone": "(217) 359-7310", "fav_comment_user": "Marion S.", "address_l1": "1502 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Used, Vintage & Consignment"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Plato's Closet", "price_rating": "1", "url": "http://www.yelp.com/biz/platos-closet-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/uJI7iMfxvJApXXQAPeJu6A/30s.jpg", "fav_comment_content": "I would give 4.5 stars if I could, but 4 will have to do. \u00a0 For Champaign, this is about as good as it gets for name-brand casual wear for ages 25 and under. This is really the only place I\u2026", "phone": "(217) 366-8200", "fav_comment_user": "Jeremy S.", "address_l1": "29 E Marketview Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/HruVD9SDt2zCqdqBJQaFuQ/90s.jpg", "name": "Illini Union Guest Rooms", "price_rating": "2", "url": "http://www.yelp.com/biz/illini-union-guest-rooms-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Stayed there for Admitted Students Day recently. \u00a0Went back and forth as to the better I-Hotel a mile away and finally decided that I couldn't beat the location of the Union. \u00a0I was a little\u2026", "phone": "(217) 333-3030", "fav_comment_user": "Clare M.", "address_l1": "1401 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": ["Hotels"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Extended Stay America Champaign-Urbana", "price_rating": "1", "url": "http://www.yelp.com/biz/extended-stay-america-champaign-urbana-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/ecAe4usifamD9lnUhCocaw/30s.jpg", "fav_comment_content": "Pleasantly Surprised! \u00a0After reading several negative reviews, I was somewhat apprehensive about staying here. However, I was pleasantly surprised by the quality of both the staff and the\u2026", "phone": "(217) 351-8899", "fav_comment_user": "Jinx T.", "address_l1": "610 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Notes & Quotes", "price_rating": "", "url": "http://www.yelp.com/biz/notes-and-quotes-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fiAohjZn0s2Tj0f9ASWP6w/30s.jpg", "fav_comment_content": "This place is a GREAT place if you are looking to print on card stock. They offer a variety of awesome colors and you can print single sided, duplex, black ink only, or color ink. It's also\u2026", "phone": "(217) 344-4433", "fav_comment_user": "John M.", "address_l1": "502 E John St", "address_l2": "Champaign, IL 61820"},
{"category": ["Convenience Stores", "Gas & Service Stations"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/1EsZqh1-qQUURR86gLbYRQ/90s.jpg", "name": "Road Ranger", "price_rating": "2", "url": "http://www.yelp.com/biz/road-ranger-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BynRI1Mtv6mYwZXGIJ3vAQ/30s.jpg", "fav_comment_content": "Yah, I know. It's just a gas station/convenience store. Not something to Yelp about. Except that it is. \u00a0In the last handful of hours on long road trip, a place that is clean and has yummy\u2026", "phone": "(815) 315-4991", "fav_comment_user": "Maggie A.", "address_l1": "4910 N Market St", "address_l2": "Champaign, IL 61822"},
{"category": ["Hair Extensions", "Eyelash Service"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/iW0nXe-z_geSN2xYy8RiuA/90s.jpg", "name": "Allure Salon", "price_rating": "2", "url": "http://www.yelp.com/biz/allure-salon-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/V9o72vN7Mv4TJmUiAdAujg/30s.jpg", "fav_comment_content": "With great reluctance, I had to find a new stylist as my long relationship with Lydia at Salon 73 ended when she moved away. \u00a0 \u00a0I had decided to try at least 3 stylists recommended by friends\u2026", "phone": "(217) 355-3900", "fav_comment_user": "Jeannette B.", "address_l1": "2907 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Hotels"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Sleep Inn", "price_rating": "2", "url": "http://www.yelp.com/biz/sleep-inn-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Great value, friendly staff. Arrived here in the middle of a New Year's Day snowstorm, unable to continue on to Chicago. Was greeted by very helpful female clerk who printed out a list of\u2026", "phone": "(217) 367-6000", "fav_comment_user": "Angela A.", "address_l1": "1908 N Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/DHat40CgBhws5d5qKkon3A/90s.jpg", "name": "Mettler Center", "price_rating": "", "url": "http://www.yelp.com/biz/mettler-center-champaign-3", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Tf0nbZo9a0sp0FrckiTV7A/30s.jpg", "fav_comment_content": "Just joined recently and have been very impressed so far. \u00a0It's on the almost complete opposite end of C-U from where I live but worth the drive each day. \u00a0The clientele covers all ages but\u2026", "phone": "(217) 356-6543", "fav_comment_user": "Edward M.", "address_l1": "2906 Crossing Ct", "address_l2": "Champaign, IL 61822"},
{"category": ["Bookstores"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/wrjEr60IHbtkHNEZSzIZ3w/90s.jpg", "name": "Illini Union Bookstore", "price_rating": "2", "url": "http://www.yelp.com/biz/illini-union-bookstore-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Hsa-VEvuHS7ydBXhiL2Eeg/30s.jpg", "fav_comment_content": "Definitely not the cheapest place to go but you know the money you pay here goes back to the school.. so, as an alumni.. I am okay with that. \u00a0Best swag definitely.. I went to TIS and this\u2026", "phone": "(217) 333-2050", "fav_comment_user": "Anne W.", "address_l1": "809 S Wright St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Skateland", "price_rating": "", "url": "http://www.yelp.com/biz/skateland-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "Hey! \u00a0I can't believe it. \u00a0They bought all new rental skates. \u00a0They got rid of the ones they have had for over 35 years. \u00a0No more ugly brown with orange wheel skates. \u00a0I have my own skates so\u2026", "phone": "(217) 359-3335", "fav_comment_user": "Lisa B.", "address_l1": "208 W Curtis Rd", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Gg3s8eM54OjretlHyHRK5g/90s.jpg", "name": "Carle Foundation Hospital Level 1 Trauma Center", "price_rating": "", "url": "http://www.yelp.com/biz/carle-foundation-hospital-level-1-trauma-center-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/jchNVI0-OXQQ_3r-PFr3XA/30s.jpg", "fav_comment_content": "By far the best ER experience I have ever had. The staff were ( for the most part) very friendly, responsible, an knowledgeable. They let me know what to expect and how long I could expect to\u2026", "phone": "(217) 337-3313", "fav_comment_user": "Kristin J.", "address_l1": "611 W Park St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Newberry's Ata Black Belt Academy", "price_rating": "", "url": "http://www.yelp.com/biz/newberrys-ata-black-belt-academy-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/r2CpS14uYUFSCdbCB0M79Q/30s.jpg", "fav_comment_content": "My sister and I really enjoy practicing martial arts here at Newberry's. You learn so much in just one class but it doesn't feel like you're learning it too fast. Being around people who seem\u2026", "phone": "(217) 351-8531", "fav_comment_user": "Carmen M.", "address_l1": "2413 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Old Orchard Links Inc", "price_rating": "", "url": "http://www.yelp.com/biz/old-orchard-links-inc-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/MNCcmdWINhp10VmqQOlKiQ/30s.jpg", "fav_comment_content": "One of the more \"adult friendly\" mini-golf courses around. I disagree with other reviewers that the course is easy - I think it's rather challenging. Mostly because of small hills, and of\u2026", "phone": "(217) 378-4653", "fav_comment_user": "Paul J.", "address_l1": "901 N Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": ["Mexican"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/6XjoCoJ_6KFZ4OgDgAoNsw/90s.jpg", "name": "Mas Amigos", "price_rating": "2", "url": "http://www.yelp.com/biz/mas-amigos-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I really like this place. It's a nice, cheap Mexican joint with good, greasy food, and probably my favorite Mexican place in Champaign. \u00a0I've only been to the new location once, but my\u2026", "phone": "(217) 344-6711", "fav_comment_user": "David T.", "address_l1": "1106 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Parasol", "price_rating": "", "url": "http://www.yelp.com/biz/parasol-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Best indie rock mail order shop in the country. And if you live in Urbana - Champaign you should feel fortunate enough to walk in, look around and shop. \u00a0 Responsible for breaking HUM, Poster\u2026", "phone": "(217) 344-8609", "fav_comment_user": "Justine B.", "address_l1": "303 W Griggs St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Fairfield Automotive", "price_rating": "", "url": "http://www.yelp.com/biz/fairfield-automotive-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Brought my Saturn to Fairfield Automotive and I couldn't be happier. The fuel pump had a component that was cracked and they were able to repair it, rather than my purchasing the entire unit,\u2026", "phone": "(217) 328-5978", "fav_comment_user": "Sara A.", "address_l1": "211 S Cottage Grove Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/fkHrW1nOWag66qXeCqlfpQ/90s.jpg", "name": "The Station Theatre", "price_rating": "", "url": "http://www.yelp.com/biz/the-station-theatre-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "The Station Theatre is host to Urbana's own community theatre group, the Celebration Theatre Company. I've seen one show there, \"Ug\", which is a tongue in cheek take on stage productions\u2026", "phone": "(217) 384-4000", "fav_comment_user": "Tim J.", "address_l1": "223 N Broadway Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/z6_-JOQ8sz7yX8UV7H8MSw/90s.jpg", "name": "Error Records", "price_rating": "", "url": "http://www.yelp.com/biz/error-records-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fiAohjZn0s2Tj0f9ASWP6w/30s.jpg", "fav_comment_content": "The only all ages music venue in Champaign, hosting a variety of shows for all genres of music. Not to mention the storefront of the venue is a record store/art gallery. \u00a0This is the best\u2026", "phone": "(217) 552-1080", "fav_comment_user": "John M.", "address_l1": "702 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hair Stylists"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/tkauA1_E16oK18tQo7KjbQ/90s.jpg", "name": "Cost Cutters", "price_rating": "1", "url": "http://www.yelp.com/biz/cost-cutters-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I'm a young male who just wanted a pretty simple haircut w/ no styling, so take this review with a grain of salt. \u00a0However, there was no wait, the stylist understood exactly what I wanted, and\u2026", "phone": "(217) 398-6098", "fav_comment_user": "Adam M.", "address_l1": "10 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (New)"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Candide Roasteries", "price_rating": "1", "url": "http://www.yelp.com/biz/candide-roasteries-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/pJzB7YFHQtAdnAXgirk-Yw/30s.jpg", "fav_comment_content": "I don't think I'll be going back to Espresso Royale soon. \u00a0Sometime in November this coffee truck started appearing on Matthews Ave. \u00a0Curious, I checked it out. \u00a0Prices seemed reasonable, and\u2026", "phone": "", "fav_comment_user": "Ken R.", "address_l1": "505 S Mathews Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Adult Entertainment"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Silver Bullet Bar", "price_rating": "1", "url": "http://www.yelp.com/biz/silver-bullet-bar-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/rcrJOGp6f4PxUMngYuIOeA/30s.jpg", "fav_comment_content": "5 totally skanky stars! and i say that in the best way possible. \u00a0 let's be honest- no one comes to the bullet thinking they are going to see amazingly hot strippers do crazy pole acrobatics\u2026", "phone": "(217) 344-0937", "fav_comment_user": "Bev h.", "address_l1": "1401 E Washington St", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/erVRmY4zB0ASFvPMAWG6sA/90s.jpg", "name": "Just Fore Fun Golf Center", "price_rating": "", "url": "http://www.yelp.com/biz/just-fore-fun-golf-center-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/P9igA7FOLCzhz9azeb6UEA/30s.jpg", "fav_comment_content": "Jeff Butts is the man. \u00a0He was really the only reason I ever went out here but it was a pretty nice facility. \u00a0The range is massive and wide open too.", "phone": "(217) 403-4653", "fav_comment_user": "Taylor K.", "address_l1": "301 Eisner Rd", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/wpqtWuCNagYRqfnm1Ru99w/90s.jpg", "name": "Helen Pope Therapeutic Massage & Bodywork", "price_rating": "", "url": "http://www.yelp.com/biz/helen-pope-therapeutic-massage-and-bodywork-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I have had a number of massages with Helen, she is always excellent and responsive to requests and discussion about body issues I am having at the time.", "phone": "(217) 220-7673", "fav_comment_user": "Alyse M.", "address_l1": "206 N Randolph St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (Traditional)", "Sports Bars", "Chicken Wings"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/rv_LEg4XhpwyltMmDSq5DQ/90s.jpg", "name": "Hooters", "price_rating": "2", "url": "http://www.yelp.com/biz/hooters-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/jchNVI0-OXQQ_3r-PFr3XA/30s.jpg", "fav_comment_content": "The Philly cheesesteak and burger we had for lunch were very good. The service was great, waitress was very attentive. There was only one negative while we were there. There was a university\u2026", "phone": "(217) 355-7682", "fav_comment_user": "Kristin J.", "address_l1": "1706 S State St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican", "Tex-Mex", "Fast Food"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/6qPCOsDvdWZVCmtEAQqlog/90s.jpg", "name": "Taco Bell", "price_rating": "1", "url": "http://www.yelp.com/biz/taco-bell-urbana-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/VcpoyTnVcqa-LOlB7hGe8w/30s.jpg", "fav_comment_content": "I have eaten at this specific Taco Bell many times before. The service is excellent, the staff are friendly, and they have never messed up an order! You can really tell that the employees here\u2026", "phone": "(217) 367-2871", "fav_comment_user": "Akhil T.", "address_l1": "1003 University", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/iYgAvJh30U_iQ6KK_1XVTg/90s.jpg", "name": "McKinley Health Center", "price_rating": "", "url": "http://www.yelp.com/biz/mckinley-health-center-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/TIBmsY0wRPwz128EUgAnMQ/30s.jpg", "fav_comment_content": "Free stuff when you ask. Some doctors are questionable, and very rarely do the Phone-A-Nurses give any good advice. If you do have to go, (and you're a female) ask for Dr. Ambroz. She isn't\u2026", "phone": "(217) 333-2701", "fav_comment_user": "Amanda O.", "address_l1": "1109 S Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Bike Project of Urbana-Champaign", "price_rating": "", "url": "http://www.yelp.com/biz/the-bike-project-of-urbana-champaign-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "The basic premise of a bike co-op is to provide a workspace for people to learn more about maintaining their bicycles. \u00a0At the Bike Project, you can fix up your own bike under the guidance of\u2026", "phone": "(217) 469-5126", "fav_comment_user": "Ben J.", "address_l1": "202 S Broadway Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/olt9E8SDfXieDZHa74vVEA/90s.jpg", "name": "Myler Automotive Repair", "price_rating": "", "url": "http://www.yelp.com/biz/myler-automotive-repair-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/X54eHqNiimWs2hnfmDE6Zw/30s.jpg", "fav_comment_content": "I found Myler Automotive through Yelp and I am so happy I did. \u00a0The people at Myler take care of you like you're family. \u00a0Lindy, Brian, and Steve are great!!! \u00a0They always give a fair and\u2026", "phone": "(217) 359-0798", "fav_comment_user": "Candace O.", "address_l1": "1212 Parkland Ct", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Deborah Hedin", "price_rating": "", "url": "http://www.yelp.com/biz/deborah-hedin-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vG16zF5PsGCbAwppakeoxA/30s.jpg", "fav_comment_content": "Deborah helped me a lot when I was going through many different changes in my life... \u00a0I was juggling graduate school, a history of depression, and a relationship I was not sure I wanted to be\u2026", "phone": "(217) 356-2213", "fav_comment_user": "Melissa B.", "address_l1": "701 Devonshire Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Elite Bridal Shop", "price_rating": "", "url": "http://www.yelp.com/biz/elite-bridal-shop-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ALImBMmKwMJ84Yi80GOnlA/30s.jpg", "fav_comment_content": "I went here as my 2nd appointment of the first day I tried on wedding dresses. I am a very budget conscious bride and was honestly worried that all their dresses would be too expensive. My\u2026", "phone": "(217) 363-3050", "fav_comment_user": "Traci J.", "address_l1": "106 S Country Fair Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Art Galleries"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/0ktWNOSGm8orKsKG50WVCw/90s.jpg", "name": "Wind Water & Light Artisans Gallery", "price_rating": "2", "url": "http://www.yelp.com/biz/wind-water-and-light-artisans-gallery-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/P7ArNBDs3XWDduHYCWs0LA/30s.jpg", "fav_comment_content": "This adorable gallery shop sells locally made crafts. It is so cozy and filled with charming jewels and other beautiful pieces-- from art to earrings to shirts. The couple who runs this place\u2026", "phone": "(217) 344-2484", "fav_comment_user": "Helen H.", "address_l1": "161 Lincoln Sq", "address_l2": "Urbana, IL 61801"},
{"category": ["Drugstores"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "CVS Pharmacy", "price_rating": "2", "url": "http://www.yelp.com/biz/cvs-pharmacy-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "This CVS just recently opened. \u00a0It is in a good location with plenty of parking and easy to get in and out of. \u00a0The staff are all very friendly. \u00a0 \u00a0I have a CVS rewards card and they emailed\u2026", "phone": "(217) 351-2123", "fav_comment_user": "Lisa B.", "address_l1": "1111 N Dunlap St", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Pdq Printing Service, Inc", "price_rating": "", "url": "http://www.yelp.com/biz/pdq-printing-service-inc-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/YxHhXsh1wm9pXR462osXJw/30s.jpg", "fav_comment_content": "Unfortunately I don't think this place is in business any longer according to this old News-Gazette article: ", "phone": "(217) 367-4014", "fav_comment_user": "Sara B.", "address_l1": "1802 N Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/BMawUjuSSn6w5OnwfkwzVg/90s.jpg", "name": "The Art Party Studio", "price_rating": "", "url": "http://www.yelp.com/biz/the-art-party-studio-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/bMpDsEETrlRkGCKflWVYzA/30s.jpg", "fav_comment_content": "This place has been a fantastic addition to Chambana. It's perfect for date nights, bachelorette parties, random get togethers, or even company team-building events. \u00a0 I brought my wife here\u2026", "phone": "(217) 239-8896", "fav_comment_user": "Angela C.", "address_l1": "111 S Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "A & E Animal Hospital", "price_rating": "", "url": "http://www.yelp.com/biz/a-and-e-animal-hospital-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/9hi-J57NpoPiICoG1RDheA/30s.jpg", "fav_comment_content": "I've been taking pets here for several years after a bad experience with another vet. These vets do not require unnecessary tests on every visit, don't act like you hate your pet if you don't\u2026", "phone": "(217) 367-1137", "fav_comment_user": "Rachel V.", "address_l1": "3003 E Windsor Rd", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "April's Florist", "price_rating": "", "url": "http://www.yelp.com/biz/aprils-florist-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ShvntCvjHEOaohfrir7mOw/30s.jpg", "fav_comment_content": "Great flowers", "phone": "(217) 328-0038", "fav_comment_user": "Harrison G.", "address_l1": "512 E John St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Piano People the", "price_rating": "", "url": "http://www.yelp.com/biz/piano-people-the-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "I'm all about piano people - I'm a piano person myself. \u00a0This is a great place because they'll not only take care of your Steinway, but they offer apprenticeships to learn piano tuning, repair\u2026", "phone": "(217) 359-7601", "fav_comment_user": "Ellen M.", "address_l1": "322 N Randolph St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Peter B's Automotive", "price_rating": "", "url": "http://www.yelp.com/biz/peter-bs-automotive-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/EgWO2pTUIGh2T_vJeIdmaA/30s.jpg", "fav_comment_content": "Peter B's is the only place I trust with my car. \u00a0Excellent work, always very professional, and it's done at a fair price. \u00a0Of particular value are their buyers checks for a used car. \u00a0They\u2026", "phone": "(217) 367-3821", "fav_comment_user": "Ed T.", "address_l1": "509 N Lierman Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Bugbee's Dj Plus", "price_rating": "", "url": "http://www.yelp.com/biz/bugbees-dj-plus-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "We met with Greg a few times before our wedding. He was prepared, professional, yet extremely personable. He was all that we could have wanted for our wedding day and more. We had an approved\u2026", "phone": "(217) 649-3832", "fav_comment_user": "A. R.", "address_l1": "1409 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "TLC Pest Control", "price_rating": "", "url": "http://www.yelp.com/biz/tlc-pest-control-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Always the best. \u00a0Fair price and great service.", "phone": "(217) 352-7672", "fav_comment_user": "Jeffrey E.", "address_l1": "4101 Colleen Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Barbers"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/zt00Tkxxjd4IAFLCS5NRJQ/90s.jpg", "name": "King's Barber Shop", "price_rating": "2", "url": "http://www.yelp.com/biz/kings-barber-shop-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fiAohjZn0s2Tj0f9ASWP6w/30s.jpg", "fav_comment_content": "Got my first cut here today. It was a little intimidating just because I was the youngest person there by about twenty years but I loved every second of it. \u00a0 The atmosphere was perfect.\u2026", "phone": "(217) 384-5822", "fav_comment_user": "John M.", "address_l1": "104 S McCullough St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Analog Outfitters", "price_rating": "", "url": "http://www.yelp.com/biz/analog-outfitters-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fiAohjZn0s2Tj0f9ASWP6w/30s.jpg", "fav_comment_content": "I always bring my broken musical equipment in here and they always do an excellent repair job. \u00a0Highly recommend to anyone looking to get an old vintage amp tuned up, or even a simple repair\u2026", "phone": "(217) 954-1805", "fav_comment_user": "John M.", "address_l1": "514 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/dQVEMVLRQKFXSSRNH_6bQg/90s.jpg", "name": "New Prairie Construction Co.", "price_rating": "", "url": "http://www.yelp.com/biz/new-prairie-construction-co-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/boLEti9bKhwfEseKE-Ak4A/30s.jpg", "fav_comment_content": "We moved to Urbana last year into a lovely old home that needed bathroom and kitchen updates. We decided on New Prairie to perform both bathroom remodeling projects, after seeing their good\u2026", "phone": "(217) 344-5131", "fav_comment_user": "Patricia J.", "address_l1": "", "address_l2": ""},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Kin6ktrvv6voKRPqNmxKyA/90s.jpg", "name": "D&D Cleaning", "price_rating": "", "url": "http://www.yelp.com/biz/d-and-d-cleaning-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "David does our floors every few moths and he does a great job. Would reccoment using them very honest and reliable!", "phone": "(217) 848-2311", "fav_comment_user": "Earl E.", "address_l1": "", "address_l2": ""},
{"category": ["Computers"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Ramjet", "price_rating": "2", "url": "http://www.yelp.com/biz/ramjet-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/nt6WKhasOMz6h72nDEOyVA/30s.jpg", "fav_comment_content": "I'm intimidated by my smartphone, but on the other hand, for years I've been routinely adding memory to my own and friends' computers, thanks to Ramjet. \u00a0They have exactly what you need, and\u2026", "phone": "(217) 355-0755", "fav_comment_user": "Steve H.", "address_l1": "3001 Research Rd Ste D2", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Gallo-Miller Paint & Collision Repair Inc", "price_rating": "", "url": "http://www.yelp.com/biz/gallo-miller-paint-and-collision-repair-inc-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Gallo Miller is one of the best auto body repair shops I have ever used! The friendly, knowledgeable staff makes getting your car's booboo fixed as painless as possible. They are booked\u2026", "phone": "(217) 353-0770", "fav_comment_user": "Marcia D.", "address_l1": "501 W Kenyon Rd", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Q_RibwVB3QpM6GfYbPN5YQ/90s.jpg", "name": "Ice Arena", "price_rating": "", "url": "http://www.yelp.com/biz/ice-arena-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vzLTe3jnPdjnJmADf4v3gw/30s.jpg", "fav_comment_content": "Oh how I love this rink!!!!! It's a little crowded, however I have fun skating. Nothing feels so good like working out your legs in blistering cold...shiver.....\u00adsuddenly you warm up and say\u2026", "phone": "(217) 333-2212", "fav_comment_user": "Nicole R.", "address_l1": "406 E Armory Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Jkhyr_DLG-3iNn-dG8nQ7Q/90s.jpg", "name": "Urbana Butcher Shop", "price_rating": "", "url": "http://www.yelp.com/biz/urbana-butcher-shop-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/a-DkjHTIpW_bD43fQ-K7Vg/30s.jpg", "fav_comment_content": "When you step into the Urbana Butcher Shop, your perception of quality meat will be forever changed. All local, grass-fed, and every part of the animal butchered and used in shop. This meat\u2026", "phone": "(217) 419-5224", "fav_comment_user": "Jason D.", "address_l1": "119 W Main", "address_l2": "Urbana, IL 61801"},
{"category": ["Nail Salons", "Barbers"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "My Salon", "price_rating": "3", "url": "http://www.yelp.com/biz/my-salon-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/cyJcFX4bHvF99yp3hliIGg/30s.jpg", "fav_comment_content": "I am SO happy that I found this place! I went on the recommendation of a friend and I am so thankful that I listened. \u00a0 I have long, thick hair. It's not the most difficult to cut, but not the\u2026", "phone": "(217) 359-8310", "fav_comment_user": "Heather J.", "address_l1": "907 Arrow Rd Ste 2", "address_l2": "Champaign, IL 61821"},
{"category": ["Medical Spas", "Skin Care", "Laser Hair Removal"], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/5TBItKVMpSb19NUHpRPE7Q/90s.jpg", "name": "Bella V Med Spa", "price_rating": "2", "url": "http://www.yelp.com/biz/bella-v-med-spa-champaign-4", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/CrfCSDTu3SUkHPRoeGjzKg/30s.jpg", "fav_comment_content": "I would highly recommend Bella Vein for any medical vein type procedures. \u00a0I had minor surgery done on both of my legs for varicose veins and Dr. Ruffolo and his staff did an excellent job.\u2026", "phone": "(217) 355-8346", "fav_comment_user": "Melissa M.", "address_l1": "2502 Galen Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/yLlOEIkzRP2JCF-LMfjz5g/90s.jpg", "name": "Moore Trees", "price_rating": "", "url": "http://www.yelp.com/biz/moore-trees-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Trees for the holidays. This quaint family farm has a tremendous selection + you can cut your own, if you'd like!", "phone": "(217) 202-1383", "fav_comment_user": "Justine B.", "address_l1": "3510 W Bloomington Rd", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Haussermann Alan W DDS", "price_rating": "", "url": "http://www.yelp.com/biz/haussermann-alan-w-dds-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I've been going to Dr. Haussermann for years now, and I have no complaints. He is always gentle and soothing, very good about explaining what is going on at all times. His calming manner would\u2026", "phone": "(217) 359-2500", "fav_comment_user": "T L.", "address_l1": "919 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/GXPTpl1LvLKwPRSeBQzEmg/90s.jpg", "name": "Clean Houses C U", "price_rating": "", "url": "http://www.yelp.com/biz/clean-houses-c-u-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/88RTYV46t5OJ7clLY4h7uA/30s.jpg", "fav_comment_content": "Very, very, very last minute before moving out I realized I had to do a move-out clean with a professional carpet cleaning, so I contacted Ashley to set this up. \u00a0She was extremely flexible\u2026", "phone": "(217) 530-2113", "fav_comment_user": "Taylor S.", "address_l1": "Champaign, IL 61820", "address_l2": ""},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/x_-w91ny4iNNcQklBUPnwA/90s.jpg", "name": "Frank's A. Carpenter", "price_rating": "", "url": "http://www.yelp.com/biz/franks-a-carpenter-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/VZ3_VimCfj8xTiLDHFgQSg/30s.jpg", "fav_comment_content": "So thankful to have found Frank. He helped with odds & ends around the house (hang things on the wall to install a new outdoor light fixture). \u00a0He is professional and skilled at his job. I've\u2026", "phone": "(217) 202-0067", "fav_comment_user": "Valerie J.", "address_l1": "410 Hessel Blvd", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/rvgKyPu1RnRgBlVuYpA1rg/90s.jpg", "name": "G.A.S Barbershop & Hair Salon", "price_rating": "", "url": "http://www.yelp.com/biz/g-a-s-barbershop-and-hair-salon-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/CGlQLFfHr99m1nrscN6mnw/30s.jpg", "fav_comment_content": "Great service!", "phone": "(217) 355-0402", "fav_comment_user": "Rebecah P.", "address_l1": "121 W Church St", "address_l2": "Champaign, IL 61820"},
{"category": ["Nail Salons"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/F__Em0J8xLan2W02UmYjsg/90s.jpg", "name": "Angel Hair & Nail", "price_rating": "2", "url": "http://www.yelp.com/biz/angel-hair-and-nail-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Great little family owned place!!! Super friendly and very professional! They have hundreds of nail designs already mocked up on fake nails to help you choose a design or you can bring a\u2026", "phone": "(217) 398-1898", "fav_comment_user": "Jennifer O.", "address_l1": "706 W Marketview Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Fitness Center", "price_rating": "", "url": "http://www.yelp.com/biz/fitness-center-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/YHrUMOfi5cgveLQ-qqOLog/30s.jpg", "fav_comment_content": "LOVE the Fitness Center. \u00a0Their group fitness classes are seriously the best, the instructors are all so personable and really care about the members. \u00a0The staff and trainers and great too,\u2026", "phone": "(217) 356-1616", "fav_comment_user": "Jenna Z.", "address_l1": "2508 Galen Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/PtRgkBrRlxgGyD8fzFPdTA/90s.jpg", "name": "Japan House", "price_rating": "", "url": "http://www.yelp.com/biz/japan-house-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/u3eRUCac0-vYstYpzxmtTA/30s.jpg", "fav_comment_content": "I was not expecting this in the middle of Illinois. The white cherry blossoms were incredible. We came on a sunny day and the flowers were in full bloom. It was gorgeous. Saw a lot of students\u2026", "phone": "(217) 244-9934", "fav_comment_user": "Cindy C.", "address_l1": "2000 S Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Shoe Stores", "Men's Clothing", "Women's Clothing"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/nd6g7u9xmyz6gRE4NWyaGA/90s.jpg", "name": "Kohl's Department Stores", "price_rating": "2", "url": "http://www.yelp.com/biz/kohls-department-stores-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/eXAw2NCNt0tpP32J9WVy1Q/30s.jpg", "fav_comment_content": "I love this store,I found my kind of clothes there . I am tall and getting older so this store is not just for 20 year old ones. And the prices are good. The store was clean and so where the\u2026", "phone": "(217) 352-0431", "fav_comment_user": "Fran A.", "address_l1": "109 Convenience Center Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Baby Gear & Furniture"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Babyland", "price_rating": "3", "url": "http://www.yelp.com/biz/babyland-savoy", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "I got my stroller here, and I'm waiting on the bed to come in. I might even order the rocker chair here as well. I bought a bunch of baby books here and I am registered. The staff are nice and\u2026", "phone": "(217) 359-5100", "fav_comment_user": "Jenny S.", "address_l1": "1209 Savoy Plaza Ln", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Beaumont Tire & Auto Repair", "price_rating": "", "url": "http://www.yelp.com/biz/beaumont-tire-and-auto-repair-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/jdmGbHk-lj7b5pkfspE8cQ/30s.jpg", "fav_comment_content": "Prompt, communicative, and honest. My family has been going here for a while and will continue to do so.", "phone": "(217) 239-3939", "fav_comment_user": "Kevin S.", "address_l1": "1202 W Bloomington Rd", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Campus Recreation Center East", "price_rating": "", "url": "http://www.yelp.com/biz/campus-recreation-center-east-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/fHV6OzLj3k_lKa8nZpTalA/30s.jpg", "fav_comment_content": "CRCE, \u00a0You were such a huge part of my college life, and only now I realize how much I took you for granted. Is it wrong of me to say how much I miss you, considering that when I had you, I\u2026", "phone": "(217) 244-3603", "fav_comment_user": "Kali B.", "address_l1": "1102 W. Gregory Drive", "address_l2": "Urbana, IL 61803"},
{"category": ["Art Supplies"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Art Coop", "price_rating": "3", "url": "http://www.yelp.com/biz/art-coop-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Art Coop saves my ass every time. They are open late and always have what I need. Even though they may not be THE cheapest art store, they are the only art store in town. (And don't even think\u2026", "phone": "(217) 352-4562", "fav_comment_user": "Justine B.", "address_l1": "150 Lincoln Sq Village", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Tatman's Car Care", "price_rating": "", "url": "http://www.yelp.com/biz/tatmans-car-care-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/T63tkM7YmLFawcqe-W8SjA/30s.jpg", "fav_comment_content": "I was very, very pleased with Tatman's. \u00a0They towed my car. \u00a0They fixed my car. \u00a0They didn't send me the same form 4 times to get my insurance info like Carle did, they just called the number\u2026", "phone": "(217) 328-1589", "fav_comment_user": "Sarah L.", "address_l1": "802 Perkins Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Community Service/Non-Profit", "Thrift Stores"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Goodwill", "price_rating": "3", "url": "http://www.yelp.com/biz/goodwill-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/qY9-cX5GfsfnYmYBZ215WA/30s.jpg", "fav_comment_content": "I have to update my review now that I've shopped here for clothing. \u00a0The selection of women's clothing is pretty great. \u00a0Not only have I found plenty of things that I like and that fit well,\u2026", "phone": "(217) 356-4021", "fav_comment_user": "Penelope Y.", "address_l1": "912 West Anthony", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Ray's Heating & Air Conditioning Co", "price_rating": "", "url": "http://www.yelp.com/biz/rays-heating-and-air-conditioning-co-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/WFcbCLoB1MUyBiCPn-s_CA/30s.jpg", "fav_comment_content": "Mr. Dill of Ray's Heating + Air Conditioning is a local legend. \u00a0Ray's is consistent in their care for customers, both old and new. They installed our A/C system \u00a0about 12 years ago- and\u2026", "phone": "(217) 367-5264", "fav_comment_user": "Pat L.", "address_l1": "806 E Main St", "address_l2": "Urbana, IL 61802"},
{"category": ["Fast Food"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "McDonald's", "price_rating": "1", "url": "http://www.yelp.com/biz/mcdonalds-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/2g2BzsxJyA_DH5BaCNY5fg/30s.jpg", "fav_comment_content": "Newer mcdonalds restaurant. Parking lot is a bit long and narrow, so most \u00a0of the parking spots are a few extra steps from the door. \u00a0 Otherwise, good fast food in a clean environment.", "phone": "(217) 367-3722", "fav_comment_user": "Bob K.", "address_l1": "601 N Cunningham Ave", "address_l2": "Urbana, IL 61803"},
{"category": ["Eyewear & Opticians"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/w12E_Ak4OTt8xr9CjxcsNw/90s.jpg", "name": "LensCrafters", "price_rating": "3", "url": "http://www.yelp.com/biz/lenscrafters-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/6lhunN3BgotPYLosDZN4PQ/30s.jpg", "fav_comment_content": "In this day and age with online glasses for cheap, I went into LensCrafters not expecting a whole lot. It turns out I found a good pair, Heather was attentive, & I'm pleased to say that with\u2026", "phone": "(217) 356-8585", "fav_comment_user": "Sean F.", "address_l1": "2000 North Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Breakfast & Brunch", "Burgers", "Hot Dogs"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/P6BwMDMLLyFyr5W2i3V5gQ/90s.jpg", "name": "Crepe De Licious", "price_rating": "1", "url": "http://www.yelp.com/biz/crepe-de-licious-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/o4DnCx7assY71oVkb02PWQ/30s.jpg", "fav_comment_content": "The location of Crepe de Licious (inside the Illinois Student Union) will probably be enough to scare off any diner who is not affiliated with the university. \u00a0The basement of the union is set\u2026", "phone": "(217) 265-0807", "fav_comment_user": "Katherine C.", "address_l1": "1401 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": ["Department Stores", "Drugstores", "Discount Store"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/DxOBIACiz99rYXiVSTM2yg/90s.jpg", "name": "Walmart", "price_rating": "1", "url": "http://www.yelp.com/biz/walmart-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/9RK2cXHsoaxtY3SYq8HbHQ/30s.jpg", "fav_comment_content": "While I haven't been here since May of 2010, this is the nicest Walmart I have ever been to. \u00a0(My God, I can't believe it was that long ago...) \u00a0We were in the area staying in Monticello and I\u2026", "phone": "(217) 355-5845", "fav_comment_user": "Sara W.", "address_l1": "505 S Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/WHD7qeX0KzLGej2A395wqQ/90s.jpg", "name": "City of Champaign", "price_rating": "", "url": "http://www.yelp.com/biz/city-of-champaign-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/UlCjWpbYYukO5dM2na4UsA/30s.jpg", "fav_comment_content": "I love Champaign. So many great restaurants. Trying very hard to mimic that suburban/urban feel that I am so used to growing up in the suburbs. I hate U of I though. Too much clout!", "phone": "(217) 403-8700", "fav_comment_user": "Pat E.", "address_l1": "102 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Kuhn Jos & Co", "price_rating": "", "url": "http://www.yelp.com/biz/kuhn-jos-and-co-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I had a short-notice interview and I needed a suit that day. I'd always noticed this place downtown, so I stopped in. \u00a0 The salesman was really great. His name was Bo and he wasn't pushy about\u2026", "phone": "(217) 352-7666", "fav_comment_user": "Adam M.", "address_l1": "33 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/36BN47OIC4fROXwEO4ZYJA/90s.jpg", "name": "Tuesday Morning", "price_rating": "", "url": "http://www.yelp.com/biz/tuesday-morning-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/7dnK4G3lDZAm3tMlp1RmIQ/30s.jpg", "fav_comment_content": "This place has a lot of disorganized crap, but there are some great deals. You just have to dig to find them. Especially nice for quality yarns and craft supplies at very discounted prices.\u2026", "phone": "(217) 398-3757", "fav_comment_user": "Rachel S.", "address_l1": "241 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Buttitta John the Tailor", "price_rating": "", "url": "http://www.yelp.com/biz/buttitta-john-the-tailor-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ZVJTUWGUmYztlGGxpNJoqw/30s.jpg", "fav_comment_content": "John is a very kind and reasonable man. Not only am I glad that I found a great tailor, but also knowing him was a pleasure too! \u00a0 I found John by searching up tailors in Champaign. Initially,\u2026", "phone": "(217) 351-7086", "fav_comment_user": "Soubhan S.", "address_l1": "1401 Theodore Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Juice Bars & Smoothies"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/ceiXvTwEVEWMwIKa1ZC8mg/90s.jpg", "name": "Jamba Juice", "price_rating": "3", "url": "http://www.yelp.com/biz/jamba-juice-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/tZkS1gfp8hYr-PWkYBHQJA/30s.jpg", "fav_comment_content": "Finally! I had actually been thinking that this campus needed a Jamba and here it is in all its glory. \u00a0All I can say is that their smoothies taste like ... fruity sunshine. That's the only\u2026", "phone": "", "fav_comment_user": "Kayla M.", "address_l1": "1401 Green St.", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Anita Purves Nature Center", "price_rating": "", "url": "http://www.yelp.com/biz/anita-purves-nature-center-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Ahhh... it's that time of year again. Summer and Fall are the two best seasons to go out and visit the Anita Purves Nature Center. Technically, it's on the North end of Crystal Lake Park... so\u2026", "phone": "(217) 384-4062", "fav_comment_user": "Justine B.", "address_l1": "1505 N Broadway Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/GQcVIper6FhaWQRwypb5DA/90s.jpg", "name": "Carle Foundation Hospital", "price_rating": "", "url": "http://www.yelp.com/biz/carle-foundation-hospital-urbana-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/RRBPFSPzPolmJg1moS_fjw/30s.jpg", "fav_comment_content": "This is probably the best hospital in the Champaign-Urbana area. The nurses are super friendly and the hospital is very clean and very well maintained.", "phone": "(217) 326-2900", "fav_comment_user": "Grace T.", "address_l1": "602 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Florists"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Abbott's Florist", "price_rating": "3", "url": "http://www.yelp.com/biz/abbotts-florist-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/O7TVnGyWlBPogvbJyj2OGQ/30s.jpg", "fav_comment_content": "Recently, used Abbott's for sending flowers for a family death (yes, I know). I called in the order from out of state and they took care of everything, Thank you Lisa. \u00a0 The family that\u2026", "phone": "(217) 352-9616", "fav_comment_user": "Barramundi S.", "address_l1": "1119 Windsor Rd", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/XZUxvPgPLx-Ga5Ie0RmwZw/90s.jpg", "name": "Savvy Expressions Wedding & Event Coordination", "price_rating": "", "url": "http://www.yelp.com/biz/savvy-expressions-wedding-and-event-coordination-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/-qkAbVkybYSr9NQtO-TYxA/30s.jpg", "fav_comment_content": "I have nothing but good things to say about Stacey and her staff. My sister just got married this past September after over a year of planning with Stacey. My sister lives in Cincinnati but\u2026", "phone": "(217) 344-2430", "fav_comment_user": "Shannon B.", "address_l1": "Champaign, IL 61826", "address_l2": ""},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Subaru of Champaign County", "price_rating": "", "url": "http://www.yelp.com/biz/subaru-of-champaign-county-savoy", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fISNvZDrbWtILB5C2UXsDg/30s.jpg", "fav_comment_content": "Buying a car....a fun and yet totally terrifying process for most.... :( \u00a0After months and months and months of test drives, reading consumer reports magazines, looking up crash test ratings,\u2026", "phone": "(217) 352-4700", "fav_comment_user": "Dianna R.", "address_l1": "1402 N Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": ["Electronics"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Glenn Poor's Audio-Video", "price_rating": "3", "url": "http://www.yelp.com/biz/glenn-poors-audio-video-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/daflEbOf6OIK2L2suEm61g/30s.jpg", "fav_comment_content": "This is an amazing store. \u00a0We went in on a Saturday afternoon with a problem with our turntable. \u00a0It had been a gift that was not bought at their store. \u00a0The friendly and knowledgeable staff\u2026", "phone": "(217) 356-5456", "fav_comment_user": "Vickie W.", "address_l1": "1745 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "National Car Rental", "price_rating": "", "url": "http://www.yelp.com/biz/national-car-rental-savoy-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "I rented a car to take on a trip. \u00a0I did some price comparisons and discovered that National car rental at the airport was way cheaper than the stand alones here in town. \u00a0When I went to pick\u2026", "phone": "", "fav_comment_user": "Lisa B.", "address_l1": "Willard Airport", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/-Kx5WtsV04Bgxm1jAElo-g/90s.jpg", "name": "Dixon Graphics", "price_rating": "", "url": "http://www.yelp.com/biz/dixon-graphics-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/nNxSvu9asdr8Rs6alJiSgg/30s.jpg", "fav_comment_content": "I designed my own Save the Dates, Wedding Invitations, and other printed materials for my wedding on 9/21/13, using Dixon Graphics to print them. \u00a0They are AMAZING. So responsive and SO FAST!\u2026", "phone": "(217) 351-6100", "fav_comment_user": "Christina M.", "address_l1": "105 W John St", "address_l2": "Champaign, IL 61820"},
{"category": ["Art Galleries"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Larry Kanfer Photography Gallery", "price_rating": "3", "url": "http://www.yelp.com/biz/larry-kanfer-photography-gallery-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wxsjBRqinaZrAaac9w92IQ/30s.jpg", "fav_comment_content": "you GOTTA see this!! \u00a0internationally-known photo-artiste, larry kanfer is an artist with a camera. he's been shooting gorgeous photos of the illinois prairie for years. add to that his\u2026", "phone": "(217) 398-2000", "fav_comment_user": "Nancy P.", "address_l1": "2503 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "First United Methodist Child Care Center", "price_rating": "", "url": "http://www.yelp.com/biz/first-united-methodist-child-care-center-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "This is the best daycare ever. I could not speak more highly of the daycare teachers, director and staff. They've all worked there for many years, which is a testament to the healthy\u2026", "phone": "(217) 356-1247", "fav_comment_user": "Charla M.", "address_l1": "210 W Church St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/v7zdGDQp3QlFTdK8UXxbXw/90s.jpg", "name": "Men's Wearhouse", "price_rating": "", "url": "http://www.yelp.com/biz/mens-wearhouse-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vG16zF5PsGCbAwppakeoxA/30s.jpg", "fav_comment_content": "My boyfriend and I went to Men's Wearhouse specifically for him to get new suits for job interviews. \u00a0We had been here before for him to rent a tux for a wedding and had received good service,\u2026", "phone": "(217) 366-8254", "fav_comment_user": "Melissa B.", "address_l1": "726 West Town Center", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Gailey Eye Clinic", "price_rating": "", "url": "http://www.yelp.com/biz/gailey-eye-clinic-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/-QKq_ZSPgqlNk49T4Fv6BA/30s.jpg", "fav_comment_content": "My reason for 5 stars is because 1) they did a great job of handling my 5-year old son during his first eye exam and 2) the eye doctor was very friendly and explicative of his work. \u00a0First, my\u2026", "phone": "(217) 398-1700", "fav_comment_user": "Christine G.", "address_l1": "2435 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Andersen Chiropractic Health", "price_rating": "", "url": "http://www.yelp.com/biz/andersen-chiropractic-health-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I can't give enough praise to Dr. Norm Andersen. I have worked with 4 chiropractors over the past fifteen years and Dr. Andersen is by far the best. He takes his time when you visit and truly\u2026", "phone": "(217) 351-1980", "fav_comment_user": "N O.", "address_l1": "606 N Country Fair Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "American Eagle Auto Glass", "price_rating": "", "url": "http://www.yelp.com/biz/american-eagle-auto-glass-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "These guys are legit. I had a crack in my windshield and my insurance company recommended them. I set up an appointment, walked in, and they were done quicker than expected. They were also\u2026", "phone": "(217) 351-0900", "fav_comment_user": "Kurtis N.", "address_l1": "608 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["Bikes"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Zr2FiCa-M990hoYnvog4Bg/90s.jpg", "name": "Flats Fixed", "price_rating": "1", "url": "http://www.yelp.com/biz/flats-fixed-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/kMwVJccfE-Hwrdt8v43fHA/30s.jpg", "fav_comment_content": "Brent is a great guy with tons of experience. He'll tell you everything you could ever want to know About your bike for the cheapest price in town.", "phone": "(217) 365-0383", "fav_comment_user": "Dan H.", "address_l1": "911 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/S8Culk8-uDg-SYMlBegzKA/90s.jpg", "name": "217 & SMITH'S TOWING", "price_rating": "", "url": "http://www.yelp.com/biz/217-and-smiths-towing-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "good guys. \u00a0quick service. reasonable prices.", "phone": "(217) 337-4869", "fav_comment_user": "Rolando M.", "address_l1": "2708 N Neil", "address_l2": "Champaign, IL 61826"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/MnUr54CO5arO7mNNc2ZrTw/90s.jpg", "name": "The Avenue Bed & Breakfast", "price_rating": "", "url": "http://www.yelp.com/biz/the-avenue-bed-and-breakfast-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/fLXGsET-opTyIIawJveMig/30s.jpg", "fav_comment_content": "We adored the Avenue and we will definitely be back! \u00a0First, most of the other lodging options in the area are bland chain hotels, located north of central Champaign - too far to walk\u2026", "phone": "(217) 390-9830", "fav_comment_user": "Kim H.", "address_l1": "802 W University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Grocery"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Aldi Grocery", "price_rating": "1", "url": "http://www.yelp.com/biz/aldi-grocery-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/1oZxFtbHybomY1APn-Bz9g/30s.jpg", "fav_comment_content": "Very good prices. Pleasant staff. Clean environment.", "phone": "", "fav_comment_user": "Jo B.", "address_l1": "3102 E University Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Mitchem Dental", "price_rating": "", "url": "http://www.yelp.com/biz/mitchem-dental-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/iJThlPCXJjJqMotE9fKbaQ/30s.jpg", "fav_comment_content": "I had changed to 5 dentists in the Champaign county before I finally settled on Dr. Ruffatto. His dental office was referred to me by a colleague as his family dentist and the dental site for\u2026", "phone": "(217) 352-4100", "fav_comment_user": "Doreen V.", "address_l1": "1701 S Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Neighbors at The Ice House", "price_rating": "", "url": "http://www.yelp.com/biz/the-neighbors-at-the-ice-house-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Diane runs a fantastic ship here with a great staff. She really does care about the neighborhood, the community, and those that patronize her bar. It is a great place to grab an affordable\u2026", "phone": "(217) 398-5760", "fav_comment_user": "Justine B.", "address_l1": "703 N Prospect", "address_l2": "Champaign, IL 61821"},
{"category": ["Fast Food", "Ice Cream & Frozen Yogurt"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dairy Queen", "price_rating": "1", "url": "http://www.yelp.com/biz/dairy-queen-savoy", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/N_XY1YSB5m5TkbUit42oRg/30s.jpg", "fav_comment_content": "Normally only get my Blizzard fix through the drivethru but have went in on occasion.. The employees are pretty nice and quick. Only had one bad Blizzard here as I think some of the pieces had\u2026", "phone": "(217) 356-3065", "fav_comment_user": "Cameron R.", "address_l1": "1501 Lyndhurst Aly", "address_l2": "Savoy, IL 61874"},
{"category": ["Coffee & Tea"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/_r9a6ivOK0iuHHmyGV-JFw/90s.jpg", "name": "Starbucks", "price_rating": "2", "url": "http://www.yelp.com/biz/starbucks-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/MpWtmMBib8M6Ci2-ObBNpA/30s.jpg", "fav_comment_content": "I can hear you hipsters snarling now. \u00a0\"What? You're writing a review of a Starbucks? \u00a0Fight the power, man. \u00a0Go to Espresso Royale!\" \u00a0Bah, I DO go to ER (and Paradiso, Aroma, \u00a0Kopi, etc), but\u2026", "phone": "(217) 344-4502", "fav_comment_user": "Teej T.", "address_l1": "102 N Vine St", "address_l2": "Urbana, IL 61801"},
{"category": ["Department Stores"], "rating": "2.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/G0Y1yKQS6w5iTJXjt23RLg/90s.jpg", "name": "Target Stores", "price_rating": "1", "url": "http://www.yelp.com/biz/target-stores-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/aulgQqj8zlKjBShm6Ge_kA/30s.jpg", "fav_comment_content": "I love target! Everything I buy from there is good quality! It's sort of pricey, but where else can you find random things like seasonal doormats, for $3?", "phone": "(217) 355-3325", "fav_comment_user": "Robin L.", "address_l1": "2102 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Department Stores"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/VQJEriJSz940MA7pMh2J1Q/90s.jpg", "name": "Meijer", "price_rating": "2", "url": "http://www.yelp.com/biz/meijer-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ci8ybua29SokIBTy9onyJw/30s.jpg", "fav_comment_content": "I will completely agree with everyone that the store is laid out in a very odd manner-- but I think that the positives outweigh that. \u00a0It's much easier to get to than the Meijer on Prospect,\u2026", "phone": "(217) 365-5200", "fav_comment_user": "Paige D.", "address_l1": "2500 S Philo Rad", "address_l2": "Urbana, IL 61803"},
{"category": ["Bars", "Karaoke", "Music Venues"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/mgQUjNI1yzD4U7R_NgAlhA/90s.jpg", "name": "Memphis On Main", "price_rating": "1", "url": "http://www.yelp.com/biz/memphis-on-main-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wsL7pr3EGVLghKpph8TYPQ/30s.jpg", "fav_comment_content": "A group of friends and I came in here on a Friday night and there was a live band. \u00a0The place was very chill which I liked and the band was very good - everyone was dancing the night away!\u2026", "phone": "(217) 398-1097", "fav_comment_user": "Amanda K.", "address_l1": "55 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Beads N Botanicals", "price_rating": "", "url": "http://www.yelp.com/biz/beads-n-botanicals-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I've been here for products (lovely stones, excellent incense, nice candles, essential oils) and for Reiki and Reflexology treatments by Marlita. I've always been happy with my purchases \u00a0-\u2026", "phone": "(217) 365-9355", "fav_comment_user": "Helen P.", "address_l1": "117 N Broadway Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Fabric Stores"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Jo-Ann Fabrics & Crafts", "price_rating": "2", "url": "http://www.yelp.com/biz/jo-ann-fabrics-and-crafts-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/eXAw2NCNt0tpP32J9WVy1Q/30s.jpg", "fav_comment_content": "I love this store,this was my first time there on a Sunday. Happy that they are open on a Sunday. I like to knit so I got me some yarn and knitting needles for some really good price. They got\u2026", "phone": "(217) 359-4579", "fav_comment_user": "Fran A.", "address_l1": "1420 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Italian"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/-hB4ZoXAiWLKkmoTZy3dSw/90s.jpg", "name": "Buca di Beppo", "price_rating": "3", "url": "http://www.yelp.com/biz/buca-di-beppo-champaign-4", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "We love this Italian Restaurant. \u00a0Decorated with great photos, friendly staff but suffers from a poor location near the Mall food court. \u00a0My wife makes great Lasagna, but even she says Buca's\u2026", "phone": "(217) 378-8731", "fav_comment_user": "Bob L.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/PjAe2kKgiCNN5hOgfVkYHQ/90s.jpg", "name": "Papa Murphy's", "price_rating": "2", "url": "http://www.yelp.com/biz/papa-murphys-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "You can't go wrong with this place. \u00a0The pizza is ALWAYS good and at a great price. \u00a0We always prefer it over any pizza place in town and rather than buying a frozen pizza in the store. \u00a0Plus,\u2026", "phone": "(217) 356-8000", "fav_comment_user": "N L.", "address_l1": "1753 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Nail Salons"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "U & I Nails", "price_rating": "2", "url": "http://www.yelp.com/biz/u-and-i-nails-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/30z-QseocxV3A7iXbREIGQ/30s.jpg", "fav_comment_content": "Back in my glory days at U of I, I would visit U & I nails faithfully every two weeks to have my acrylics filled. Yes, I was a sorority girl, so of course I had fake nails. \u00a0 Fast forward to\u2026", "phone": "(217) 352-1846", "fav_comment_user": "Tara M.", "address_l1": "2004 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The William R and Clarice V Spurlock Museum", "price_rating": "", "url": "http://www.yelp.com/biz/the-william-r-and-clarice-v-spurlock-museum-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/JtWszsiI7jwE4wHTLFteFQ/30s.jpg", "fav_comment_content": "I know I'm kind of a presumptuous dick, but I didn't expect such a cool museum to exist outside of a major city. \u00a0I spent an inordinate amount of time in this museum because it excited the\u2026", "phone": "(217) 333-2360", "fav_comment_user": "Heather T.", "address_l1": "600 S Gregory St", "address_l2": "Urbana, IL 61801"},
{"category": ["Furniture Stores"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/44SQ-R7KWaFiWC-ez_Mc3Q/90s.jpg", "name": "Simply Amish Champaign", "price_rating": "2", "url": "http://www.yelp.com/biz/simply-amish-champaign-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "This is great furniture. Bought a coffee table today that was reasonably \u00a0priced and excellent quality. As others have said, the store owner is both helpful and not pushy at all. I recommend\u2026", "phone": "(217) 353-6700", "fav_comment_user": "Zachary H.", "address_l1": "500 N Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (Traditional)", "Sports Bars", "Chicken Wings"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/4xRiQChz3bLiRjReU5rdEQ/90s.jpg", "name": "Buffalo Wild Wings", "price_rating": "2", "url": "http://www.yelp.com/biz/buffalo-wild-wings-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "Had the appetizer platter and some chips and salsa. \u00a0The wings were good but the nachos need help. \u00a0They use a cheese sauce and cheese sauce, to me, is just gross and salty. \u00a0The Chipolte\u2026", "phone": "(217) 378-4400", "fav_comment_user": "Lisa B.", "address_l1": "907 West Marketview Drive", "address_l2": "Champaign, IL 61822"},
{"category": ["Sandwiches", "Food Delivery Services", "Delis"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/--NIG4QKryXPJPu05Nii6g/90s.jpg", "name": "Jimmy John's", "price_rating": "1", "url": "http://www.yelp.com/biz/jimmy-johns-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Turkey sandwich are great here and they make it super quickly. \u00a0Its much better than subway although that is not saying much nowadays.", "phone": "(217) 344-6200", "fav_comment_user": "Tim B.", "address_l1": "43 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Champaign County Clerk", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-county-clerk-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "Mark Sheldon has some good people working for him. \u00a0Yesterday, I got a call at 4:08 telling me that we needed to get a certain document TODAY. A cursory check of the website indicates the\u2026", "phone": "(217) 384-3720", "fav_comment_user": "Tim J.", "address_l1": "1776 East Washington St.", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/MiG03rrHy1PuJwMQhXtpdQ/90s.jpg", "name": "Carle Clinic Association", "price_rating": "", "url": "http://www.yelp.com/biz/carle-clinic-association-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Bah. HMOs are never fun. But I've gotten in to see my rheumatologist (there's only one at this hospital) practically within the week if it's an urgent issue. I usually make follow-up\u2026", "phone": "(217) 383-3202", "fav_comment_user": "Justine B.", "address_l1": "602 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Drugstores", "Cosmetics & Beauty Supply", "Convenience Stores"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/nZmhjBUGcOsAuXKsqVreBA/90s.jpg", "name": "Walgreens", "price_rating": "1", "url": "http://www.yelp.com/biz/walgreens-champaign-7", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/O0mRl9DHtZNJunGd8L8PtA/30s.jpg", "fav_comment_content": "Great selection of Christmas items (all Walgreens have really great clearance on Christmas stuff after the holidays are over) with good pricing even though it is before the holiday. A nice\u2026", "phone": "(217) 356-8237", "fav_comment_user": "Zewditu D.", "address_l1": "841 Bloomington Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Coffee & Tea"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Bevande Coffee", "price_rating": "2", "url": "http://www.yelp.com/biz/bevande-coffee-urbana-3", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/c-lGov1muAFyEqZcWgj9Ig/30s.jpg", "fav_comment_content": "Delicious coffee, reasonable prices. \u00a0They have an other location in Siebel Center.", "phone": "(217) 344-1401", "fav_comment_user": "Forrest I.", "address_l1": "105 S Mathews Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Interior Design", "Furniture Stores"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hancock Fabrics", "price_rating": "1", "url": "http://www.yelp.com/biz/hancock-fabrics-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "If you like to sew or want to learn from friendly people, then go here. \u00a0I got a little carried away with my fabric choices because their selection is amazing! \u00a0Unlike my local Hancock\u2026", "phone": "(217) 398-1598", "fav_comment_user": "Chella G.", "address_l1": "115 Convenience Ctr Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Dive Bars"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/AEJouX9QJIQk_tk7wIaZvg/90s.jpg", "name": "Rose Bowl Tavern Ltd", "price_rating": "1", "url": "http://www.yelp.com/biz/rose-bowl-tavern-ltd-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "There's almost always a live band playing country music in the evenings here and there's a dance floor for the uninhibited. Someone told me this place has the best White Russians in town.", "phone": "(217) 367-7031", "fav_comment_user": "m k.", "address_l1": "106 N Race St", "address_l2": "Champaign, IL 61801"},
{"category": ["American (Traditional)"], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/jfAxkT0jnH2VUP0epffb0Q/90s.jpg", "name": "Fat City Saloon", "price_rating": "1", "url": "http://www.yelp.com/biz/fat-city-saloon-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/y7SmbIxVZGcXLEQe7e2JKg/30s.jpg", "fav_comment_content": "Lots of memories at this dive, and a place for townies mostly. \u00a0This place has been through several owners (one being my cousins). \u00a0A long bar, some tables up front, and bar games like pool\u2026", "phone": "(217) 607-0614", "fav_comment_user": "Paul D.", "address_l1": "505 S Chestnut St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/UTnxhkZZ2xrtwWdzM2M6bg/90s.jpg", "name": "Jiffy Lube", "price_rating": "", "url": "http://www.yelp.com/biz/jiffy-lube-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/RB3ACOz2dmUgEkKnxuuiMQ/30s.jpg", "fav_comment_content": "Fastest oil change ever.", "phone": "(217) 351-4116", "fav_comment_user": "Jenna M.", "address_l1": "1901 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Tobacco Shops"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/z5r7hu_jWIXYxUQYiVRKww/90s.jpg", "name": "Bacca Cigar", "price_rating": "2", "url": "http://www.yelp.com/biz/bacca-cigar-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "I've gone here ever since I started smoking cigars and it seems pretty legit to me (I'm not quite a cigar connoisseur just yet). They have a lot of nice accessories as well.", "phone": "(217) 356-3239", "fav_comment_user": "Ashley B.", "address_l1": "1707 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Electronics"], "rating": "2.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/vsc93IkXN3tUxkRQT9AsLQ/90s.jpg", "name": "Best Buy", "price_rating": "2", "url": "http://www.yelp.com/biz/best-buy-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/eM2eEEX5QPfIYbd8h2O3oQ/30s.jpg", "fav_comment_content": "Everything about this place is mediocre. Meh.", "phone": "(217) 352-8883", "fav_comment_user": "Mark C.", "address_l1": "2117 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Women's Clothing", "Used, Vintage & Consignment"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/u5jsxrf3AY6NZZYNWYIZ-w/90s.jpg", "name": "Karen's Kloset", "price_rating": "3", "url": "http://www.yelp.com/biz/karens-kloset-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "This is my favorite place to thrift shop. They have an amazing selection and I always walk out of their with at least 3+ items. The clothes are in very good condition, they have a huge shoe\u2026", "phone": "(217) 355-9395", "fav_comment_user": "Courtney G.", "address_l1": "231 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/PdwRRVJnZoVG8snteMNUvQ/90s.jpg", "name": "Jiffy Lube", "price_rating": "", "url": "http://www.yelp.com/biz/jiffy-lube-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Went there today and had a coupon for $10 off. They were all very professional and the shop was clean and provided free coffee. \u00a0Alan, the manager or owner, was very professional and explained\u2026", "phone": "(217) 351-5823", "fav_comment_user": "N O.", "address_l1": "1201 N Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Department Stores"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/T05rsFlA-q_oMhnONa5RhQ/90s.jpg", "name": "Big Lots", "price_rating": "1", "url": "http://www.yelp.com/biz/big-lots-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/7dnK4G3lDZAm3tMlp1RmIQ/30s.jpg", "fav_comment_content": "There are 3 main reasons I go here: 1.gluten-free food that's cheaper than most other stores 2.cheap yarn (sometimes quite nice) and 3.cheap office supplies, cleaning supplies, shampoo, home\u2026", "phone": "(217) 355-1844", "fav_comment_user": "Rachel S.", "address_l1": "2002 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/c58K51qAlXpPszdYehUE-Q/90s.jpg", "name": "Thornton's Oil Company", "price_rating": "", "url": "http://www.yelp.com/biz/thorntons-oil-company-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/60W5F42AA6qVFCxKeNhzTQ/30s.jpg", "fav_comment_content": "Text alerts on rising gas are nice. Fresh coffee any size .89 with an excellent selection of additives for it. The milk shake maker is awesome. Clean bathrooms! Always friendly staff. Redbox,\u2026", "phone": "", "fav_comment_user": "Adam A.", "address_l1": "101 S Mattis", "address_l2": "Champaign, IL 61821"},
{"category": ["Sports Bars", "Mexican", "Breakfast & Brunch"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/lonN10gW6w-kdsEY7m1TJg/90s.jpg", "name": "Cabo's Cantina and Grill", "price_rating": "2", "url": "http://www.yelp.com/biz/cabos-cantina-and-grill-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/0dtDqGGSiEoncc7WYl3PVQ/30s.jpg", "fav_comment_content": "Muy bien! In a town with more Mexican restaurants per capita than Tijuana, Cabo's certainly stands out above the rest. The decor is way better than El Toro or Dos Reales and I don't get the\u2026", "phone": "(217) 355-3855", "fav_comment_user": "Brian A.", "address_l1": "2411 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": ["Hair Salons"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/jERGKaCFjmMxpTP4CyePqA/90s.jpg", "name": "Rod Sickler-Salon & Spa", "price_rating": "3", "url": "http://www.yelp.com/biz/rod-sickler-salon-and-spa-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/LpM-jXyt68yRF-tmxz8bAQ/30s.jpg", "fav_comment_content": "-his is the only place in Champaign-Urbana to get your eyebrows done. Mary Kay is amazing- she actually gets out a ruler and measures them. Plus, she uses a hard wax which is much less\u2026", "phone": "(217) 403-1790", "fav_comment_user": "Meredith B.", "address_l1": "2520 Village Green Place", "address_l2": "Champaign, IL 61822"},
{"category": ["Restaurants"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/0eo6CUsbQ0gjM-l9B_YJaA/90s.jpg", "name": "Subway", "price_rating": "1", "url": "http://www.yelp.com/biz/subway-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Hsa-VEvuHS7ydBXhiL2Eeg/30s.jpg", "fav_comment_content": "Definetely the place of choice if you're looking to eat healthy. \u00a0I always get the 6\" turkey and ham on wheat... load it up with veggies and top with a little mustard. \u00a0Don't get chips or a\u2026", "phone": "(217) 239-0108", "fav_comment_user": "Anne W.", "address_l1": "616 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Busey", "price_rating": "", "url": "http://www.yelp.com/biz/busey-champaign-9", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Tf0nbZo9a0sp0FrckiTV7A/30s.jpg", "fav_comment_content": "NOTE: This review pertains to the facilities at The Pines in Urbana and the main bank on University Ave. \u00a0I am astonished at all the negative reviews for Busey Bank. \u00a0I do not \"have tons of\u2026", "phone": "(217) 365-4800", "fav_comment_user": "Edward M.", "address_l1": "502 W Windsor Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Chicken Wings", "American (New)", "Fast Food"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Ce0PPzwl1HmYj1urhCfTSw/90s.jpg", "name": "Wingin Out", "price_rating": "2", "url": "http://www.yelp.com/biz/wingin-out-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I'm sorry, what's with the negative reviews? Can you say DRUNK FOOD? \u00a0This place is heaven at 1-2am any night of the week, its delicious and potentially nutritious. You can tell from the\u2026", "phone": "(217) 607-1864", "fav_comment_user": "Caitlin H.", "address_l1": "301 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Burgers"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hardee's", "price_rating": "1", "url": "http://www.yelp.com/biz/hardees-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/QvjGbZYLPG-4CcXPPS3gcg/30s.jpg", "fav_comment_content": "I wish there was actually a Hardee's in the Chicago city limits, but I survive because of the many other Chicago eateries. \u00a0 Hardee's is one of the places I go to when I head down south from\u2026", "phone": "(217) 355-0946", "fav_comment_user": "Jonna N.", "address_l1": "1703 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Donuts"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/8hTiRVf8VT0ihiofBnQ6MA/90s.jpg", "name": "Dunkin' Donuts", "price_rating": "1", "url": "http://www.yelp.com/biz/dunkin-donuts-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/O0mRl9DHtZNJunGd8L8PtA/30s.jpg", "fav_comment_content": "I have made a couple visits over the years (I don't live in Champaign). Located along a major thoroughfare for the city and near campustown. The donuts are pretty good. Quick service. However,\u2026", "phone": "(217) 359-7005", "fav_comment_user": "Zewditu D.", "address_l1": "515 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "2.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Igv9_8Pw32KZ49Wh9PCylQ/90s.jpg", "name": "Panchero's Mexican Grill", "price_rating": "1", "url": "http://www.yelp.com/biz/pancheros-mexican-grill-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/GM2iKEQSAG6YCU4yapX5sQ/30s.jpg", "fav_comment_content": "Unlock the power of Cilantro!! \u00a0This is a nice place to get some very fresh food- but it's like a milquetoast version of Chipotle. It's kinda like Mexican...but, really?.... No Cilantro?\u2026", "phone": "(217) 367-4000", "fav_comment_user": "Daniel W.", "address_l1": "102 E University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Coffee & Tea"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Espresso Royale", "price_rating": "3", "url": "http://www.yelp.com/biz/espresso-royale-champaign-4", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/QaQxy_WCCYmbryINKRnnNQ/30s.jpg", "fav_comment_content": "The location in the Krannert Center is nice; the granola parfaits, though, are better. \u00a0Love the parfaits and their soups - today's tomato bisque with spinach was excellent. The coffee drinks\u2026", "phone": "(217) 344-2791", "fav_comment_user": "Shellie S.", "address_l1": "500 E Peabody Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/S6xXlSiMHNALMuKpBvdzqw/90s.jpg", "name": "Enterprise Rent-A-Car", "price_rating": "", "url": "http://www.yelp.com/biz/enterprise-rent-a-car-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/HX3L1QybX1X-OsIludXoGQ/30s.jpg", "fav_comment_content": "I rented a car from this location a few days ago through my insurance and they did a great job. \u00a0I was upgraded to a nicer car because they were out of the compacts I wanted and the VW they\u2026", "phone": "(217) 355-1300", "fav_comment_user": "Benjamin U.", "address_l1": "1212 N Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Bed Bath & Beyond", "price_rating": "", "url": "http://www.yelp.com/biz/bed-bath-and-beyond-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/uu_xcyVhKC3pEPV6OypSfw/30s.jpg", "fav_comment_content": "Hey, at least it's way better than the Target! \u00a0They have a really good selection on bedding, although they could use some more brightly colored/patterned/\u00adgenerally unique sheets. \u00a0And you\u2026", "phone": "(217) 356-8490", "fav_comment_user": "Allison M.", "address_l1": "51 E Marketview Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Women's Clothing"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/mVRfs179ecucMyx_gnu5DA/90s.jpg", "name": "Paris Boutique", "price_rating": "3", "url": "http://www.yelp.com/biz/paris-boutique-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "For Champaign, this is pretty good shopping. I'm definitely a fan. They have tons of designer denim. The only gripe I really have is their new location is kind of a pain and they don't seem to\u2026", "phone": "(217) 359-3420", "fav_comment_user": "Ashley B.", "address_l1": "511 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Tobacco Shops"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Smoke Shack", "price_rating": "2", "url": "http://www.yelp.com/biz/the-smoke-shack-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/m-cwm2ddOvY5rqEOxyYdFQ/30s.jpg", "fav_comment_content": "Smoke Shack, in my opinion still the best heady shop in town. Sure they might have lower generic glass, but they know what they are doing plus they have the best staff in town. Always welcomed\u2026", "phone": "(217) 359-0850", "fav_comment_user": "Luis F.", "address_l1": "208 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Baytowne Dental Center", "price_rating": "", "url": "http://www.yelp.com/biz/baytowne-dental-center-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "Baytowne is all about the revenue, but you do get a lot of bang for the buck. They do try to upsell you on services here, and their prices seem high to me. Make sure they tell you at the desk\u2026", "phone": "(217) 355-5220", "fav_comment_user": "Tim J.", "address_l1": "907 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Kim's Alterations", "price_rating": "", "url": "http://www.yelp.com/biz/kims-alterations-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/BcUYzJurnw-qNwGuSbY9WQ/30s.jpg", "fav_comment_content": "Kim only takes cash and works alone. \u00a0She is the sweetest ever. \u00a0I walked in and she asked me, \"when do you need it back?\" \u00a0\"Whenever,\" I said. \u00a0She informed me that \"whenever\" to her\u2026", "phone": "(217) 398-5004", "fav_comment_user": "april C.", "address_l1": "1720 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/z6htKzSZBgr6O-IkfkIHfg/90s.jpg", "name": "Feldkamp Tim", "price_rating": "", "url": "http://www.yelp.com/biz/feldkamp-tim-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/8mD3BKpQ91OynphNyxBVVg/30s.jpg", "fav_comment_content": "The clutch went out on my car and needed to get it towed to a mechanic. The shop sent James from Feldkamp's Towing, he was there in less than 30 minutes. The weather was miserable, it was\u2026", "phone": "(217) 367-7888", "fav_comment_user": "Marcos O.", "address_l1": "905 Ward St", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Things Remembered", "price_rating": "", "url": "http://www.yelp.com/biz/things-remembered-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/eXAw2NCNt0tpP32J9WVy1Q/30s.jpg", "fav_comment_content": "Loved are engraved campaign glasses I got for my daughters wedding ,they did a great job . The service is very friendly and helpful. They got lots of very cute stuff . \u00a0\u2026", "phone": "(217) 359-7004", "fav_comment_user": "Fran A.", "address_l1": "Market Place Shoppin", "address_l2": "Champaign, IL 61820"},
{"category": ["Barbers"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Depot Barber Shop the", "price_rating": "3", "url": "http://www.yelp.com/biz/depot-barber-shop-the-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/gZWKqKW3YS4bjmtnJc7H6g/30s.jpg", "fav_comment_content": "I got a really fantastic haircut here. It is run by two older gentlemen, who know how to get the clientele in and out. I showed up around at 11:30 and they asked me to come back at one because\u2026", "phone": "(217) 352-3078", "fav_comment_user": "Brian A.", "address_l1": "116 N Chestnut St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Advantage Hobby", "price_rating": "", "url": "http://www.yelp.com/biz/advantage-hobby-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/jBewMuZ6djSCu-PiAyYtKw/30s.jpg", "fav_comment_content": "I live on Maui and cannot get supplies for models - particular landscaping material - so I have to order online. \u00a0I found Advantage Hobby via a web search and have placed two orders so far.\u2026", "phone": "(217) 398-2700", "fav_comment_user": "Marti W.", "address_l1": "2708 N Mattis Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Drugstores", "Cosmetics & Beauty Supply", "Convenience Stores"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/BTrZTy8fKFSUmJPu9vl9Dg/90s.jpg", "name": "Walgreens", "price_rating": "1", "url": "http://www.yelp.com/biz/walgreens-champaign-5", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/mR_mxH9FYyFRx9D7i53g-w/30s.jpg", "fav_comment_content": "Clean, generally quiet store with friendly employees. Lower prices than the on-campus Walgreens. Awesome location for those living in Cherry Hills or other nearby subdivisions.", "phone": "(217) 398-2764", "fav_comment_user": "Barack O.", "address_l1": "2402 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/BFVxKpd1G9bBbXQnUGB9Rw/90s.jpg", "name": "Murphy USA", "price_rating": "", "url": "http://www.yelp.com/biz/murphy-usa-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/vV-B5IiQj9hhyseSpffT5g/30s.jpg", "fav_comment_content": "Great gas price. \u00a0On the same exit as SBUX. \u00a0Good clean window washer fluid.", "phone": "(217) 356-2751", "fav_comment_user": "Ks K.", "address_l1": "2602 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Arby's", "price_rating": "", "url": "http://www.yelp.com/biz/arbys-champaign-3", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/cQkqRNZ-kU-khRlnZqN_zQ/30s.jpg", "fav_comment_content": "This is the best Arby's I've ever been to!", "phone": "(217) 356-0622", "fav_comment_user": "Richard Z.", "address_l1": "1913 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Jerry's Iga", "price_rating": "", "url": "http://www.yelp.com/biz/jerrys-iga-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/9HB3lVghWkOBjuU3fcXIEg/30s.jpg", "fav_comment_content": "Very convenient parking and close to campus. \u00a0During many football games, they grill out in the parking lot. It's good fun.", "phone": "(217) 352-0019", "fav_comment_user": "Sam E.", "address_l1": "312 W Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Nurseries & Gardening"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/AT4SvfRUKzSMObqnSIzwcg/90s.jpg", "name": "Country Arbors Nursery", "price_rating": "2", "url": "http://www.yelp.com/biz/country-arbors-nursery-urbana-3", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Tf0nbZo9a0sp0FrckiTV7A/30s.jpg", "fav_comment_content": "You get what you pay for and with Country Arbors, you may have to spend a bit more but the results are well worth it. \u00a0I had a front yard that was a mess of weeds, mulberry bushes, mystery\u2026", "phone": "(217) 367-1072", "fav_comment_user": "Edward M.", "address_l1": "1742 County Rd 1400 N", "address_l2": "Urbana, IL 61820"},
{"category": ["Grocery"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "County Market", "price_rating": "3", "url": "http://www.yelp.com/biz/county-market-champaign-3", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/UHC4kWqvMPLx2jBbtrG4ww/30s.jpg", "fav_comment_content": "I like this place, it's convenient, and there's a large parking lot behind the building (the front of the store is actually not on Springfield but around the corner on Stoughton). They have\u2026", "phone": "(217) 351-8600", "fav_comment_user": "Bailey B.", "address_l1": "2901 W Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Advanced Home Inspections", "price_rating": "", "url": "http://www.yelp.com/biz/advanced-home-inspections-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "The home inspection was really a nail biter for us. We thought long and hard about who to hire and stressed about how many \"problems\" we might discover if we didn't hire the right person. \u00a0Jim\u2026", "phone": "(217) 778-4017", "fav_comment_user": "Justine B.", "address_l1": "2503 Grange Dr", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/zmhsn35D2j3Zg1SiWfgcGQ/90s.jpg", "name": "Roger Ebert's Overlooked Film Festival", "price_rating": "", "url": "http://www.yelp.com/biz/roger-eberts-overlooked-film-festival-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "No one was sure if Roger Ebert was going to recover in time to host this year's festival. But alas - the show must go on. And it did. \u00a0It is held right here in Champaign in April - tickets go\u2026", "phone": "(217) 244-0522", "fav_comment_user": "Justine B.", "address_l1": "203 West Park Avenue", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/OM1L92rNVY2c58Bj1wvYjg/90s.jpg", "name": "White Horse Inn", "price_rating": "", "url": "http://www.yelp.com/biz/white-horse-inn-champaign-3", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/0giu7IEm9fgES_qnx1rFEQ/30s.jpg", "fav_comment_content": "I love sausage. \u00a0German sausage. You find 15 varieties to choose from sourced from a place in California that's the real deal (continental sausage Glendale CA) and the house made sauerkraut\u2026", "phone": "(217) 328-2865", "fav_comment_user": "Pete E.", "address_l1": "510 E John St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Little Caesars Pizza", "price_rating": "", "url": "http://www.yelp.com/biz/little-caesars-pizza-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "Grab a $5 pizza to go when I'm not sure if I want to cook or not. I only had one instance to where they gave me a sausage pizza instead of a pepperoni. I now check to make sure I get the right\u2026", "phone": "(217) 328-9360", "fav_comment_user": "Jenny S.", "address_l1": "1901 S Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Sports Wear"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Old Navy", "price_rating": "3", "url": "http://www.yelp.com/biz/old-navy-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "Yet another place where you have to dig forever to find one item you like. When it's good, it's pretty good, and when it's bad, it's terrible. I'll admit I found some cute stuff in there that\u2026", "phone": "(217) 398-6403", "fav_comment_user": "Ashley B.", "address_l1": "716 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Z-tBspQfOvN3GXe1dA3FgQ/90s.jpg", "name": "Law Offices of Harvey C Welch", "price_rating": "", "url": "http://www.yelp.com/biz/law-offices-of-harvey-c-welch-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Best lawyer around. And ever. \u00a0 Saved my fiancee's ass in 1995, 1996 and 1998. He's very thankful. Word.", "phone": "(217) 367-3200", "fav_comment_user": "Justine B.", "address_l1": "401 W Elm St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/CUuYGx7HmYJ8EdoTXj_v6g/90s.jpg", "name": "Pygmalion Music Festival", "price_rating": "", "url": "http://www.yelp.com/biz/pygmalion-music-festival-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "I have gone to Pygmalion 2 out of the last 3 years. I didn't go to every show, and had only heard of a few of the bands before seeing them. I enjoyed everything I heard. I am a certified fan\u2026", "phone": "", "fav_comment_user": "Tim J.", "address_l1": "Champaign, IL 61820", "address_l2": ""},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/eLuciVp8ZZl8_02pqAmw5w/90s.jpg", "name": "Champaign Studio One Photography", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-studio-one-photography-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/IaINCKvyKp605QlTimrO7Q/30s.jpg", "fav_comment_content": "Bill took the pictures for our wedding and rehearsal dinner in May of this year and I couldn't have been happier! \u00a0We met Bill at his home office in Champaign and all of my worries instantly\u2026", "phone": "(217) 352-3923", "fav_comment_user": "Jessica W.", "address_l1": "3304 Summerview Ln", "address_l2": "Champaign, IL 61822"},
{"category": ["Appliances & Repair", "Appliances"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dick Van Dyke Appliance World", "price_rating": "3", "url": "http://www.yelp.com/biz/dick-van-dyke-appliance-world-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/cyJcFX4bHvF99yp3hliIGg/30s.jpg", "fav_comment_content": "We purchased a dishwasher here about 2 years ago and last week we purchased a GE range. \u00a0 What I really appreciate about shopping here is that you can walk in, browse and not be pounced on by\u2026", "phone": "(217) 398-7867", "fav_comment_user": "Heather J.", "address_l1": "1510 North Neil Street", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Meadows Animal Hospital", "price_rating": "", "url": "http://www.yelp.com/biz/meadows-animal-hospital-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "My family has taken all of our dogs and cats here since I was little and Dr. Siwe has been amazing through all of it, and they all lived really long and happy lives. I remember when our\u2026", "phone": "(217) 352-1446", "fav_comment_user": "Ashley B.", "address_l1": "2610 W Bloomington Rd", "address_l2": "Champaign, IL 61822"},
{"category": ["Pizza"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/sllr59ketcDNEfgAv4f-3Q/90s.jpg", "name": "Pizza Hut", "price_rating": "2", "url": "http://www.yelp.com/biz/pizza-hut-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/QY9TJtsQNCLEJmxu-RHSsQ/30s.jpg", "fav_comment_content": "One of the best fast food experiences I've had. My roommate and I were made a cheesy bites pizza the day after they stopped selling them because the manager realized how devastated we were\u2026", "phone": "(217) 344-2218", "fav_comment_user": "Jessica M.", "address_l1": "411 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Allen Hall", "price_rating": "", "url": "http://www.yelp.com/biz/allen-hall-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/NVwNNeDt8__szR0ZcGwqyA/30s.jpg", "fav_comment_content": "Alien Hall was the best thing I could've asked for as a freshman at U of I. Lots of GDI's (goddamn independents), a decent dining hall (clean and comfy - booths - very restauranty) and close\u2026", "phone": "(217) 333-1100", "fav_comment_user": "Jess S.", "address_l1": "1005 W Gregory Dr", "address_l2": "Urbana, IL 61803"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Lex-Lincolnland Express", "price_rating": "", "url": "http://www.yelp.com/biz/lex-lincolnland-express-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/bB_Oia2VOmge3SiMa_cFww/30s.jpg", "fav_comment_content": "I have never taken lex express to the airport but my church group did use them as a charter bus to Medieval \u00a0Times up in Schaumburg and they were awesome. They arrived right on time and the\u2026", "phone": "(217) 352-6682", "fav_comment_user": "John G.", "address_l1": "310 Tiffany Ct", "address_l2": "Champaign, IL 61822"},
{"category": ["Drugstores"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ISRjs_LzChe0G3WjqAwZvg/90s.jpg", "name": "CVS", "price_rating": "2", "url": "http://www.yelp.com/biz/cvs-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/5diOWebL5VPtunmetXvqvQ/30s.jpg", "fav_comment_content": "This might be the largest CVS I have ever been in. \u00a0Otherwise, it's a standard CVS.", "phone": "(217) 355-8123", "fav_comment_user": "Liz P.", "address_l1": "107 W Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/QOX-sqHthOddilXpZ1sjlQ/90s.jpg", "name": "U-Haul Moving & Storage at University Ave", "price_rating": "", "url": "http://www.yelp.com/biz/u-haul-moving-and-storage-at-university-ave-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/uP6ito06YWYYkK6n-iUxRg/30s.jpg", "fav_comment_content": "Recently moved from Champaign to Wyoming. \u00a0The folks at this place were really helpful and I appreciate it. \u00a0Got some good supplies and some great help at getting a U Box loaded up. \u00a0(Now if\u2026", "phone": "(217) 351-7040", "fav_comment_user": "Keith H.", "address_l1": "306 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Christie Clinic", "price_rating": "", "url": "http://www.yelp.com/biz/christie-clinic-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "This is just a review of the facility. Healthgrades is probably way more helpful in determining if any given doctor is all that and bag of pills. You can also Google them or even go to \u2026", "phone": "(217) 337-2094", "fav_comment_user": "Tim J.", "address_l1": "101 W University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Chinese"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "China King", "price_rating": "1", "url": "http://www.yelp.com/biz/china-king-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/o26xoQXnwiWU0Ynexc5Bvg/30s.jpg", "fav_comment_content": "This is my go-to cheap Chinese place. Great chicken, delicious crab rangoons, and fast service. I've never dined in, but it looks like an alright dine-in space. It's super close to where I\u2026", "phone": "(217) 351-8885", "fav_comment_user": "Hannah D.", "address_l1": "2145 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Pacific Tailoring & Alterations", "price_rating": "", "url": "http://www.yelp.com/biz/pacific-tailoring-and-alterations-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I disagree with the other commenters. \u00a0 This seamstress' work is excellent and inexpensive! I have been bringing clothes to her to alter for at least three years now. She does take extended\u2026", "phone": "(217) 344-5176", "fav_comment_user": "Carol R.", "address_l1": "909 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/cV14acm_MCnkoiroU9YZFg/90s.jpg", "name": "Cardinal Fitness of Urbana", "price_rating": "", "url": "http://www.yelp.com/biz/cardinal-fitness-of-urbana-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wU5ZrRBMK3SZCQd7sRrBlw/30s.jpg", "fav_comment_content": "I've been really happy with Cardinal Fitness. \u00a0It's very no frills, but I'm looking to get in shape, not go tanning or sit in a sauna, so Cardinal fits the bill. \u00a0It's VERY inexpensive, has\u2026", "phone": "(217) 328-2900", "fav_comment_user": "N A.", "address_l1": "300 S Broadway", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/DiS8OwSB-dNzH-d8TRJhLA/90s.jpg", "name": "Bromley Hall", "price_rating": "", "url": "http://www.yelp.com/biz/bromley-hall-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/1fhAeUKTTv4H54URHbF24Q/30s.jpg", "fav_comment_content": "I lived at Bromley Hall my freshman and sophomore years. Made some great friends, many of which I still hangout with... \u00a0I'm not sure where Chella G. was really staying, but the food at\u2026", "phone": "(217) 384-6100", "fav_comment_user": "Bill E.", "address_l1": "910 S 3rd St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Meijer Co Inc", "price_rating": "", "url": "http://www.yelp.com/biz/meijer-co-inc-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/VCRIbBtmL6LdkWQoTPDckg/30s.jpg", "fav_comment_content": "Wow. \u00a0I am from the south and have never heard of this chain. \u00a0 \u00a0Super Walmart has nothing on these guys. \u00a0The store was ENORMOUS and items seemed better in every way. \u00a0 \u00a0Not the place to go\u2026", "phone": "(217) 355-3810", "fav_comment_user": "Cara O.", "address_l1": "2401 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Lounges"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Fubar Lounge", "price_rating": "2", "url": "http://www.yelp.com/biz/the-fubar-lounge-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/3It37lAWY1RmwSRlQs9GGA/30s.jpg", "fav_comment_content": "Asian? \u00a0Welcome! \u00a0Not Asian? \u00a0Awkward. \u00a0Seeing as how I'm Asian, I love it here (not racist here, honest)! =P \u00a0Ever since Joe's became Slut Central, the Asian community elected Fubar as the\u2026", "phone": "(217) 384-0500", "fav_comment_user": "Deanna C.", "address_l1": "306 1/2 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Women's Clothing"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/GfLnwsa2TnvqJ4kHGuBewQ/90s.jpg", "name": "Pitaya", "price_rating": "2", "url": "http://www.yelp.com/biz/pitaya-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Hsa-VEvuHS7ydBXhiL2Eeg/30s.jpg", "fav_comment_content": "At first I thought this place sold pitas... only when I saw they were displaying clothes and tons of people in there, I stepped inside. \u00a0This place is busy and they change their inventory once\u2026", "phone": "(217) 365-6666", "fav_comment_user": "Anne W.", "address_l1": "625 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (Traditional)"], "rating": "2.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/zbp0gOEUN-dLDedm5PkmlQ/90s.jpg", "name": "Applebee's", "price_rating": "2", "url": "http://www.yelp.com/biz/applebees-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/tTUJ0Sbeh41mK4eLEoHB-Q/30s.jpg", "fav_comment_content": "This gets 3 stars, like all mediocre down-home, corporate, American bar & grills. \u00a0The chicken strips, like those at Friday's and Cheddar's and Chili's and Bennigan's and whatever the hell\u2026", "phone": "(217) 359-8178", "fav_comment_user": "Kyle W.", "address_l1": "2121 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Thrift Stores"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Salvation Army", "price_rating": "1", "url": "http://www.yelp.com/biz/salvation-army-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/o4DnCx7assY71oVkb02PWQ/30s.jpg", "fav_comment_content": "While some clothes are still sold at the original Salvation Army on Market Street, much of the clothing sales have transferred to this new location on John Street. \u00a0The store itself might be\u2026", "phone": "(217) 351-0952", "fav_comment_user": "Katherine C.", "address_l1": "109 W John St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (Traditional)"], "rating": "2.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/BNZbLTXHpAvu258kOuqpLw/90s.jpg", "name": "Applebee's", "price_rating": "2", "url": "http://www.yelp.com/biz/applebees-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "Now, I am giving Applebees an additional star because I really enjoyed the meal I had. \u00a0The service still lacked and my waitress only showed up twice and did not refill my water glass. \u00a0She\u2026", "phone": "(217) 359-1894", "fav_comment_user": "Lisa B.", "address_l1": "1201 N Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/cNaj1KZZ8x0ePXdph7m6mA/90s.jpg", "name": "Tires Plus", "price_rating": "", "url": "http://www.yelp.com/biz/tires-plus-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/rIBD_RXElRUZKbDh4K-noQ/30s.jpg", "fav_comment_content": "We had a slow leak in one of our tires and although we are close to needing new ones, my husband insisted it could be fixed and that new tires could still wait a few months. \u00a0We tried taking\u2026", "phone": "(217) 366-3201", "fav_comment_user": "Rachael C.", "address_l1": "807 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Lykins Todd DVM", "price_rating": "", "url": "http://www.yelp.com/biz/lykins-todd-dvm-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fSD8AHQsWAw4XU31NNKH_w/30s.jpg", "fav_comment_content": "i have taken my dogs to doctor todd for several years. \u00a0i have always found him to be compassionate, friendly, and knowledgeable. \u00a0recently, my older dog developed diabetes, and dr. todd\u2026", "phone": "(217) 355-5051", "fav_comment_user": "RJ D.", "address_l1": "1815 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/w8L9F0Dj5LCguCvsKg5jFg/90s.jpg", "name": "Carle Hospital", "price_rating": "", "url": "http://www.yelp.com/biz/carle-hospital-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "our second trip this month to the ER i believe makes us experts. \u00a0boy #2 decided to run full speed into our new fence and chose the worst possible spot to make contact; the gate handle. \u00a0in\u2026", "phone": "(217) 344-9262", "fav_comment_user": "Tammy N.", "address_l1": "813 W Church St", "address_l2": "Urbana, IL 61801"},
{"category": ["Hair Salons"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Coco Ash Champaign Hair Salon", "price_rating": "2", "url": "http://www.yelp.com/biz/coco-ash-champaign-hair-salon-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Coco is an experienced stylist and runs her own salon out of her home. The salon is a nice add-on with it's own entrance, attached to her house. She was very nice and easy to talk to. Best of\u2026", "phone": "(217) 202-1587", "fav_comment_user": "Kate R.", "address_l1": "2908 Valleybrook S Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Woodforest National Bank", "price_rating": "", "url": "http://www.yelp.com/biz/woodforest-national-bank-urbana-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/yHyaKkJiaNVf6PSrRnyY1A/30s.jpg", "fav_comment_content": "very nice. excited to bank with them.", "phone": "(217) 344-2437", "fav_comment_user": "tee s.", "address_l1": "100 S High Cross Rd", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Polyvinyl Record Co", "price_rating": "", "url": "http://www.yelp.com/biz/polyvinyl-record-co-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BzUpdeAiNZi56SptmY9spQ/30s.jpg", "fav_comment_content": "First and foremost and ultimately important is the fact that Polyvinyl has a handful of my favourite bands signed to its roster. \u00a0 But the obvious love for this record company that sprouts\u2026", "phone": "(217) 403-1752", "fav_comment_user": "Natalye R.", "address_l1": "206 N Randolph St", "address_l2": "Champaign, IL 61820"},
{"category": ["Art Galleries"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Heartland Gallery", "price_rating": "2", "url": "http://www.yelp.com/biz/heartland-gallery-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/o4DnCx7assY71oVkb02PWQ/30s.jpg", "fav_comment_content": "Although I've passed by this modest storefront several times, I was never really tempted to check it out until they left their door open on a warm autumn day. \u00a0 \u00a0One of the owners sells her\u2026", "phone": "(217) 337-4767", "fav_comment_user": "Katherine C.", "address_l1": "112 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "TK Service Center", "price_rating": "", "url": "http://www.yelp.com/biz/tk-service-center-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/k44o7cNxqKMCA5bl36-Czg/30s.jpg", "fav_comment_content": "I was extremely impressed with the professionalism and quality of work these guys did for me-- I had a tricky repair question that I had already unsuccessfully taken to another area mechanic,\u2026", "phone": "(217) 344-0800", "fav_comment_user": "Maire P.", "address_l1": "806 Perkins Road", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/h6fNQ1QD3BI11DjzilPr6w/90s.jpg", "name": "Education America Ltd", "price_rating": "", "url": "http://www.yelp.com/biz/education-america-ltd-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/hG3yg_BtrsRql-17s83nkA/30s.jpg", "fav_comment_content": "As a travel professional I spent more than 38 years with an incredible worldwide client base, serving folks who visited my country and those I sent away. I've enjoyed the opportunities I've\u2026", "phone": "(217) 373-5030", "fav_comment_user": "Dennis P.", "address_l1": "2007 Round Barn Rd # A", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Town and Country Agri-Tours Ltd", "price_rating": "", "url": "http://www.yelp.com/biz/town-and-country-agri-tours-ltd-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/hG3yg_BtrsRql-17s83nkA/30s.jpg", "fav_comment_content": "Closed in 1998 but was tops in its day!", "phone": "(217) 351-8665", "fav_comment_user": "Dennis P.", "address_l1": "2007 Round Barn Rd # A", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/SB0pvDgbkwoFmUlTpjtpFw/90s.jpg", "name": "Waldhoff Gard & Associates", "price_rating": "", "url": "http://www.yelp.com/biz/waldhoff-gard-and-associates-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Joni Hinton is an amazing realtor - she truly cares about you and your family as you look for your new home! \u00a0She is easy to get a hold of, it was easy to schedule times to look at possible\u2026", "phone": "(217) 239-7114", "fav_comment_user": "Molly W.", "address_l1": "821 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/OROZtBUaUiQ9KIQKzaPzzQ/90s.jpg", "name": "Korean New Life Church", "price_rating": "", "url": "http://www.yelp.com/biz/korean-new-life-church-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Although this church is not the biggest Korean church in Urbana-Champaign, I would say that the Korean New Life church is the friendliest church in this town. And this church is only Korean\u2026", "phone": "(217) 367-0045", "fav_comment_user": "Y K.", "address_l1": "202 W Illinois St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Club 806", "price_rating": "", "url": "http://www.yelp.com/biz/club-806-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "This gym is awesome! \u00a0It can basically be what you make it. Great community of other gym members, trainers are extremely helpful and knowledgeable. Basically you come into the gym at a\u2026", "phone": "(618) 527-0386", "fav_comment_user": "Pete D.", "address_l1": "806 Pioneer St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "University of Illinois School of Library and Information Science", "price_rating": "", "url": "http://www.yelp.com/biz/university-of-illinois-school-of-library-and-information-science-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/EUpV6JJmC_9FQgpSJjpx0A/30s.jpg", "fav_comment_content": "If you want to be a librarian, you will want to go here. \u00a0The University of Illinois Graduate School of Library and Information Science is the #1 program of its kind in the country. The\u2026", "phone": "(217) 333-3280", "fav_comment_user": "Elliot R.", "address_l1": "501 E Daniel St Mc-493", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Kyrouac Jeffrey MD", "price_rating": "", "url": "http://www.yelp.com/biz/kyrouac-jeffrey-md-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/zb7h0u78xk8O3X8tqysoBA/30s.jpg", "fav_comment_content": "He started treating my 91 year old mother and I was super impressed. After 25 years with my own doctor, I made the switch to him as well. He is new to Indianapolis but certainly not new to\u2026", "phone": "(217) 383-3120", "fav_comment_user": "Janis L.", "address_l1": "602 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/O0nzg4CmyCUBnVHLNILEbQ/90s.jpg", "name": "Amanda Overmyer Photography", "price_rating": "", "url": "http://www.yelp.com/biz/amanda-overmyer-photography-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/ipV8XYhJ6NougNI-ZuUIKA/30s.jpg", "fav_comment_content": "Amanda is one of the most talented photographers in the area. She does such a great job working with newborns and families patients of a saint!", "phone": "(217) 649-0677", "fav_comment_user": "Sara M.", "address_l1": "41 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/jbynkgWfMAEgwHyq2zV7Pg/90s.jpg", "name": "University of Illinois College of Law", "price_rating": "", "url": "http://www.yelp.com/biz/university-of-illinois-college-of-law-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Qa6s4dYtNA7W9WmnIUn4Fg/30s.jpg", "fav_comment_content": "My decision to study at this College rests entirely on its professional staff and hard working professors. \u00a0Those here with few exception encouraged me and offered thought provoking insight\u2026", "phone": "(217) 333-0931", "fav_comment_user": "Scott S.", "address_l1": "504 East Pennsylvania Ave.", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/qq6ViZ2fLxDv3HvLWqMXew/90s.jpg", "name": "University of Illinois Alma Mater Sculpture", "price_rating": "", "url": "http://www.yelp.com/biz/university-of-illinois-alma-mater-sculpture-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/XoYnaQZ7QC_dKSY6TfWvNA/30s.jpg", "fav_comment_content": "The Alma Mater is getting a bath and a facelift! It's about time! \u00a0I was driving along memory lane this morning when I hit the brakes in astonishment because there was a crowd, some news\u2026", "phone": "", "fav_comment_user": "Cherie O.", "address_l1": "Corner of Green St and South Wright St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Armory Free Theatre", "price_rating": "", "url": "http://www.yelp.com/biz/armory-free-theatre-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "most \"cool\" uiuc students leave here without ever having been to the armory free theatre...in which case they might want to do some serious self-evaluation and reconsider calling themselves\u2026", "phone": "(217) 333-1000", "fav_comment_user": "Tammy N.", "address_l1": "505 E. Armory room 160", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Russ Appliances-Service", "price_rating": "", "url": "http://www.yelp.com/biz/russ-appliances-service-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "We have used Russ Appliance for nine years and couldn't be happier. \u00a0Case in point. \u00a0Today at 11:30 our dryer stopped working (drum wouldn't spin). \u00a0I called and left a message. \u00a0Roy called\u2026", "phone": "(217) 344-0116", "fav_comment_user": "mix w.", "address_l1": "2608 Brownfield Rd", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/4eWYIPDMXm0YuZtBH7Y7xg/90s.jpg", "name": "Hillel Foundation", "price_rating": "", "url": "http://www.yelp.com/biz/hillel-foundation-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/ZcU0wGzwyKRkCHLgc8D2FQ/30s.jpg", "fav_comment_content": "The best Jewish student and community organization everrrr!", "phone": "(217) 344-1328", "fav_comment_user": "A W.", "address_l1": "503 E John St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Champaign-Urbana Tenant Union", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-urbana-tenant-union-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "Fantastic watchdog organization. \u00a0There are about a bagillion rentals in Champaign-Urbana, many of a lower price, and the owners sometimes can be just a teeny bit abusive. \u00a0Not all landlords\u2026", "phone": "(217) 352-6220", "fav_comment_user": "Ellen M.", "address_l1": "44 E Main St Ste 208", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Awards Ltd", "price_rating": "", "url": "http://www.yelp.com/biz/awards-ltd-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vYYx4qDn4yPeayvIwJyUUg/30s.jpg", "fav_comment_content": "Sent this guy Adobe Illustrator artwork at 4:15pm on a Friday to make a rubber stamp I needed in a hurry. They normally close at 5:30pm, but he stayed until 6:00pm to get it done and in my\u2026", "phone": "(217) 352-6378", "fav_comment_user": "Tony B.", "address_l1": "1 Henson Pl Ste B", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Herriott's Party Rental", "price_rating": "", "url": "http://www.yelp.com/biz/herriotts-party-rental-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Herriotts was very easy to work with. \u00a0We rented some items for our wedding. \u00a0They were in place and on time. \u00a0The website is extensive so you can browse when you have the time (which is great\u2026", "phone": "(217) 356-9713", "fav_comment_user": "A J.", "address_l1": "2100 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Bark Avenue Canine Coiffures", "price_rating": "", "url": "http://www.yelp.com/biz/bark-avenue-canine-coiffures-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/_nCw4c7FxTWlIMWx4xXiDw/30s.jpg", "fav_comment_content": "Jan and team are amazing! \u00a0We have 2 bichons and each time she took great care with them. \u00a0Learned how they responded better to grooming (i.e. nail clippers vs electronic file, hand clippers\u2026", "phone": "(217) 398-9150", "fav_comment_user": "Lindsay S.", "address_l1": "2909 Crestridge Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/yjfS9llojmYlrZCIDt6Ibg/90s.jpg", "name": "Mas Amigos Inc.", "price_rating": "", "url": "http://www.yelp.com/biz/mas-amigos-inc-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Mas Amigos has a good selection of Mexican groceries. Their produce section is small but fairly well stocked. They always have limes, avocados, onions, and fresh chiles. I have seen epazote\u2026", "phone": "(217) 384-1315", "fav_comment_user": "Lydia M.", "address_l1": "607 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Illini Studio", "price_rating": "", "url": "http://www.yelp.com/biz/illini-studio-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "After the college appointed professional photographers (two mind you) were unable to capture acceptable professional photos of me, i struck out on my own, wallet open. \u00a0 One of these\u2026", "phone": "(217) 351-5151", "fav_comment_user": "Tammy N.", "address_l1": "319 S Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/aZPZqU4F0BgByU1RxMJV9w/90s.jpg", "name": "MasterCuts", "price_rating": "", "url": "http://www.yelp.com/biz/mastercuts-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "Very nice ladies here. My husband comes here to get his hair cut. No complaints here!", "phone": "(217) 356-1700", "fav_comment_user": "Jenny S.", "address_l1": "2000 N Neil St Ste 425", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Ward-Joel Ward Homes", "price_rating": "", "url": "http://www.yelp.com/biz/ward-joel-ward-homes-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/ZcU0wGzwyKRkCHLgc8D2FQ/30s.jpg", "fav_comment_content": "Re: Mary Beth Ward of Joel Ward Homes \u00a0It has been a little over a year since my husband and I moved in to our first home together. This is an exciting anniversary for us that we might not be\u2026", "phone": "(217) 355-4999", "fav_comment_user": "A W.", "address_l1": "3115 Village Office Pl", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hemann Vickie DDS", "price_rating": "", "url": "http://www.yelp.com/biz/hemann-vickie-dds-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I brought my 2.5 year old to see Dr. Hemann and she was very friendly and got right to the point. \u00a0Even though my little girl didn't cooperate, Dr. Hemann was able to get a good look at her\u2026", "phone": "(217) 337-6000", "fav_comment_user": "Noelle M.", "address_l1": "1209 E Colorado Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Musselman Mark S MD", "price_rating": "", "url": "http://www.yelp.com/biz/musselman-mark-s-md-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "We just moved away from C-U and I am trying to find another like Dr Musselman. He's like Mister Rogers as a doctor: gentle and kind, relaxed, clearly loves babies and kids, knowledgeable, and\u2026", "phone": "(217) 383-3030", "fav_comment_user": "Dannette D.", "address_l1": "1701 W. Curtis Road", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Gillespie Management Inc", "price_rating": "", "url": "http://www.yelp.com/biz/gillespie-management-inc-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/NB3Cg8GfbKiXzsqO2rYDtw/30s.jpg", "fav_comment_content": "I spent two years at their Carriage Way property at Green & Busey (2006-2008), and still rave about this landlord. \u00a0Yes, the apartments are a bit old -- though we got new kitchen cabinets,\u2026", "phone": "(217) 384-9444", "fav_comment_user": "Dan N.", "address_l1": "705 E Colorado Ave Apt 104", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Yang Yang's Taiji & Qigong Center", "price_rating": "", "url": "http://www.yelp.com/biz/yang-yangs-taiji-and-qigong-center-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I don't recognize the Mayfair address, but I am assuming that this entry is supposed to be for the Center for Taiji Studies that currently meets in the Independent Media Center in Urbana (the\u2026", "phone": "(217) 351-9388", "fav_comment_user": "Joan C.", "address_l1": "1408 Mayfair Rd", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Basic Student Ministries", "price_rating": "", "url": "http://www.yelp.com/biz/basic-student-ministries-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "My brother was a part of this group when he was in college, and it was a great experience for him. They have weekly meetings as well as Bible studies and fun activities to invite your friends\u2026", "phone": "(217) 384-0316", "fav_comment_user": "Michelle F.", "address_l1": "1008 S Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "John Smith Property Management", "price_rating": "", "url": "http://www.yelp.com/biz/john-smith-property-management-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "The best apartment management in Champaign-Urbana. \u00a0And with ads as hilarious and entertaining as these, you've gotta love it! \u00a0Never, ever slumlords who prey upon inexperienced students -\u2026", "phone": "(217) 384-6930", "fav_comment_user": "Ellen M.", "address_l1": "607 E Washington St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "interlude", "price_rating": "", "url": "http://www.yelp.com/biz/interlude-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "This is a relatively new space at Krannert Center where you can get a smooth drink, a tasty snack, and sometimes listen to music (free), sometimes participate in a discussion about a\u2026", "phone": "(217) 333-6700", "fav_comment_user": "Tammy N.", "address_l1": "500 S Goodwin", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Class Act Interactive Education", "price_rating": "", "url": "http://www.yelp.com/biz/class-act-interactive-education-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/16CWYIfbCydJQ5mkiG2jmw/30s.jpg", "fav_comment_content": "Class Act is in downtown Champaign. \u00a0I am not familiar with the class part, but on Saturday nights, they have Improv. \u00a0Yep improv...in Champaign/Urbana. \u00a0It is top notch too. \u00a0I would only\u2026", "phone": "(217) 378-2942", "fav_comment_user": "Chris S.", "address_l1": "114 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/qrISY05OAFBd8vYFEByyhA/90s.jpg", "name": "Illini Union Bowling Lanes", "price_rating": "", "url": "http://www.yelp.com/biz/illini-union-bowling-lanes-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/q0nC7--yBSQGOE3Te1jY4Q/30s.jpg", "fav_comment_content": "Awesome games-Relaxing atmosphere-Great friendly Manager-Nice layout-Ample Room-Variety of eats-Seating-Snacks-No liquor-And civilized people-Come join the adventure! \u00a05Star Recreation\u2026", "phone": "(217) 333-2415", "fav_comment_user": "Madonna B.", "address_l1": "1401 W Green St Rm 115", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Community Laundry", "price_rating": "", "url": "http://www.yelp.com/biz/community-laundry-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/IV5LkCIz2ev37lbXoA0MxA/30s.jpg", "fav_comment_content": "This place is my little secret. After our apartment company made a wash and dry $2 each, my roommate and I went on a quest to find something a bit cheaper. We first went to Starcrest, but were\u2026", "phone": "(217) 954-0272", "fav_comment_user": "Daniel G.", "address_l1": "519 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Precision Painting", "price_rating": "", "url": "http://www.yelp.com/biz/precision-painting-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/VZ3_VimCfj8xTiLDHFgQSg/30s.jpg", "fav_comment_content": "Precision Painting is amazing! I'm a painting perfectionist \u00a0and I couldn't finish my projects now that I'm pregnant. \u00a0Chad and his staff did a suburb job that exceeded my standards and\u2026", "phone": "(217) 384-7590", "fav_comment_user": "Valerie J.", "address_l1": "304 W Elm St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/UGQVYTCZazV4XpoN7kmjKg/90s.jpg", "name": "Kevin Elliott Counseling", "price_rating": "", "url": "http://www.yelp.com/biz/kevin-elliott-counseling-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Stacie their office manager is really good at helping you get through all the insurance and billing. I liked that they had so many therapist to choose from. Kids can see one person while\u2026", "phone": "(217) 398-9066", "fav_comment_user": "Sandra A.", "address_l1": "44 Main Street", "address_l2": "Champaign, IL 61820"},
{"category": ["Bookstores"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/xt3BJ8E3HjVj60CseMpriA/90s.jpg", "name": "Priceless Books", "price_rating": "1", "url": "http://www.yelp.com/biz/priceless-books-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/o4DnCx7assY71oVkb02PWQ/30s.jpg", "fav_comment_content": "As there is only one other book store of this sort in Champaign, I suppose the comparisons with Jane Addams (in downtown Champaign) can't be helped. \u00a0While I appreciate the organization and\u2026", "phone": "(217) 344-4037", "fav_comment_user": "Katherine C.", "address_l1": "108 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "All Creatures Animal Hospital", "price_rating": "", "url": "http://www.yelp.com/biz/all-creatures-animal-hospital-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "Excellent animal clinic. \u00a0The two veterinarians who worked here took fine care of our cats, and my former roommate's cat. \u00a0Ours needed an overnight stay for dental work, and they even called\u2026", "phone": "(217) 328-4143", "fav_comment_user": "Ellen M.", "address_l1": "2001 N Linview Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Cajun/Creole"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ZAsLNFwciCqG20tiUvkD7w/90s.jpg", "name": "Kato's Cajun", "price_rating": "2", "url": "http://www.yelp.com/biz/katos-cajun-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/TJw16DYv1zbvIBCXqprLuA/30s.jpg", "fav_comment_content": "I was walking around the mall Christmas shopping when I was struck with a sudden hunger. \u00a0While walking around trying to decide where to eat a nice gentleman with a sample tray walked up to me\u2026", "phone": "(217) 378-8028", "fav_comment_user": "Drake M.", "address_l1": "Champaign, IL 61820", "address_l2": ""},
{"category": ["Ice Cream & Frozen Yogurt", "Do-It-Yourself Food", "Desserts"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/x7lYDLS9IqRTN4yn8OIXag/90s.jpg", "name": "TCBY", "price_rating": "1", "url": "http://www.yelp.com/biz/tcby-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Gpatt-w9hHhq7CsdfEPrvw/30s.jpg", "fav_comment_content": "Awesomeness. \u00a0I love fro-yo, and I especially love TCBY - lots of non-fat options, and the fresh fruit toppings are great and really fresh - turns a potentially naughty treat into a\u2026", "phone": "(217) 607-5090", "fav_comment_user": "Matthew L.", "address_l1": "1731 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Bowling", "Food"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/8Ozzxnn-s1NicjqpYYrJ4Q/90s.jpg", "name": "Old Orchard Lanes", "price_rating": "2", "url": "http://www.yelp.com/biz/old-orchard-lanes-savoy", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/WAmTAED-Vr3b49kJYD-Ovw/30s.jpg", "fav_comment_content": "Stopped in after attending the Home Show. Excellent 'Monical's' 8\" pizza, crisp salad, soda, and a beer special, $9.01. Cant' beat it. Sat near the bar in a sunroom, was quiet, warmer than\u2026", "phone": "(217) 359-5281", "fav_comment_user": "Kay M.", "address_l1": "901 N Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": ["Buffets"], "rating": "2.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/WyTpsqtWT7Ccw8RqRUZILA/90s.jpg", "name": "HomeTown Buffet", "price_rating": "2", "url": "http://www.yelp.com/biz/hometown-buffet-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/oIvggwKrcN7lusQZaFw2iA/30s.jpg", "fav_comment_content": "The only thing i liked was the waffle fries and ranch. Overpriced gutbusting dreck. I convince myself to come back every year or so and always regret it a few bites in. Cleaner than Ryans\u2026", "phone": "(217) 355-9429", "fav_comment_user": "Jay B.", "address_l1": "2306 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Restaurants"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/wdkn0zuXDzxgNW3RkZ5sFA/90s.jpg", "name": "Taffies Restaurant", "price_rating": "1", "url": "http://www.yelp.com/biz/taffies-restaurant-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/GFqqGFtsyTC4J0ufDc5PrQ/30s.jpg", "fav_comment_content": "If you go into Taffies knowing that you won't be getting a gourmet meal from a Michelin star chef, you'll like it. \u00a0We go there at least once a month, when we don't feel like cooking, because\u2026", "phone": "(217) 359-4201", "fav_comment_user": "Gretchen C.", "address_l1": "301 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Fast Food"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Wienerschnitzel", "price_rating": "1", "url": "http://www.yelp.com/biz/wienerschnitzel-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/RB3ACOz2dmUgEkKnxuuiMQ/30s.jpg", "fav_comment_content": "Cheap, yes. Clean, no. Chili is the kind that looks the same coming out as going in. Only for the hardest of stomachs. Not the best neighborhood, but for Country Fair folks who live there,\u2026", "phone": "(217) 352-9403", "fav_comment_user": "Jenna M.", "address_l1": "3214 Kimberly Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Hotels"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/D3PcU0lbJYSpIsTcza7wvg/90s.jpg", "name": "Super 8 Motel Champaign", "price_rating": "1", "url": "http://www.yelp.com/biz/super-8-motel-champaign-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/aM_red5rWKvU-JhZQs4C-g/30s.jpg", "fav_comment_content": "I have stayed here twice now! I must say the service was great. The 2nd time even though it was within a weeks time, the woman at the front desk remembered me and was very pleasant. No\u2026", "phone": "(800) 536-9326", "fav_comment_user": "Heather K.", "address_l1": "202 Marketview Drive", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Glidden Nancy J Atty", "price_rating": "", "url": "http://www.yelp.com/biz/glidden-nancy-j-atty-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "This attorney came highly recommended by a friend, and she graciously granted a pro bono 15-minute phone consultation that wound up leading to a solution to my problem. \u00a0She was cordial and\u2026", "phone": "(217) 337-1400", "fav_comment_user": "Ellen M.", "address_l1": "136 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/-BXh8qkUcJSRymw8WQExUw/90s.jpg", "name": "cfisherphotography", "price_rating": "", "url": "http://www.yelp.com/biz/cfisherphotography-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "An amazing photographer providing an amazing service. She's talented, accessible, FAST, and with very reasonable prices. She puts you completely at ease and yet somehow produces the sorts of\u2026", "phone": "(217) 259-5861", "fav_comment_user": "Virginia R.", "address_l1": "", "address_l2": ""},
{"category": ["Mattresses"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Sweet Dreams", "price_rating": "2", "url": "http://www.yelp.com/biz/sweet-dreams-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/s_Yu_BuNBwa1CkX32yQe8w/30s.jpg", "fav_comment_content": "These guys are great. We had just moved into a new apartment and went to Sweet Dreams to find a mattress. They had a wide variety of models at different price points. We got a great deal on a\u2026", "phone": "(217) 356-3500", "fav_comment_user": "Erica V.", "address_l1": "1808 Round Barn Rd", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Anna's Nail Salon", "price_rating": "", "url": "http://www.yelp.com/biz/annas-nail-salon-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/56IuuFOtXH_yKGIYvPCMpg/30s.jpg", "fav_comment_content": "Best in town n I have been coming here for long time.", "phone": "(217) 355-6135", "fav_comment_user": "Andy W.", "address_l1": "905 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Easy Pay", "price_rating": "", "url": "http://www.yelp.com/biz/easy-pay-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Nice place with lots of services, no real wait time. \u00a0If your paying bills there they go straight through to the company. \u00a0Its also family owned, which is great.", "phone": "(217) 398-9729", "fav_comment_user": "Jennifer G.", "address_l1": "902 N Country Fair Dr Unit 3", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/voXVKzAmgagFPCfQsFFK8g/90s.jpg", "name": "Smith Apartments", "price_rating": "", "url": "http://www.yelp.com/biz/smith-apartments-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/nJEkvU1INndGJ6JlC60JlA/30s.jpg", "fav_comment_content": "I'll break this review in two sections: \u00a0management, and the apartment itself, since I can only really comment on the building I lived in. \u00a0Smith Apartments is family owned, so you don't have\u2026", "phone": "(217) 384-1925", "fav_comment_user": "Paige M.", "address_l1": "604 W Stoughton", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Party City", "price_rating": "", "url": "http://www.yelp.com/biz/party-city-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/r2CpS14uYUFSCdbCB0M79Q/30s.jpg", "fav_comment_content": "Great place to pick up stuff for parties, especially for kids. I went here with my 3-year-old nephew because we were throwing a party for him and it had EVERYTHING he liked. It has a bunch of\u2026", "phone": "(217) 355-6837", "fav_comment_user": "Carmen M.", "address_l1": "2019 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/Br9dneWWcBmk3Hkyex5oRQ/90s.jpg", "name": "Studio H at Salon House", "price_rating": "", "url": "http://www.yelp.com/biz/studio-h-at-salon-house-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/W2097es6nEp9aXINZ5L5sg/30s.jpg", "fav_comment_content": "I followed Susan to studio H at the salon house. I love her. She does an amazing job and is extremely helpful. She always does an amazing job on myself and my boyfriend. I highly recommend her\u2026", "phone": "(217) 552-0202", "fav_comment_user": "Emily H.", "address_l1": "2918 Crossing Ct Robeson Crossing", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/04NA-z5_UG-Fg0u8TeC2iQ/90s.jpg", "name": "Noel Park", "price_rating": "", "url": "http://www.yelp.com/biz/noel-park-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "I love this park, probably because I grew up across the street from it. It's huge, open, and it's never too packed so you can basically have the whole thing to yourself. The playground is also\u2026", "phone": "(217) 398-2550", "fav_comment_user": "Ashley B.", "address_l1": "1134 Sterling Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/KV7Wz8wHKdbGHPV6Z8O5Bw/90s.jpg", "name": "Cat Clinic of Central Illinois", "price_rating": "", "url": "http://www.yelp.com/biz/cat-clinic-of-central-illinois-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/JQokyEAE3F4d7T8fivsqNQ/30s.jpg", "fav_comment_content": "I have known this clinic since June2012 when my kitty was diagnosed with FIP. I have been very satisfied with their services. Dr.Carlson and her assistant Lorianne, \u00a0provide the best service\u2026", "phone": "(217) 359-8400", "fav_comment_user": "Zoe G.", "address_l1": "2917 W Springfield Ave", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/jLa4YSCitI2EaSu2KMqpWw/90s.jpg", "name": "Safelite AutoGlass", "price_rating": "", "url": "http://www.yelp.com/biz/safelite-autoglass-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/5diOWebL5VPtunmetXvqvQ/30s.jpg", "fav_comment_content": "Somehow my windshield got cracked in March, and I took it to a Safelite location in Chicago to be repaired. \u00a0Three months later, the \"repaired\" 3-inch crack hatched a new crack that extended\u2026", "phone": "(217) 351-1533", "fav_comment_user": "Liz P.", "address_l1": "719 S Neil Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/L3hQ5fs5ts1kzrYUGU-XFA/90s.jpg", "name": "Story To Tell Productions", "price_rating": "", "url": "http://www.yelp.com/biz/story-to-tell-productions-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/Cod5v2ysAg2k-4qEl57Ukw/30s.jpg", "fav_comment_content": "Jennifer and her team did our wedding and engagement pictures, and let me just say: wow! \u00a0I cannot speak highly enough of how amazing our pictures turned out. \u00a0Much better than photographers\u2026", "phone": "(217) 355-9664", "fav_comment_user": "Seth B.", "address_l1": "Savoy, IL 61874", "address_l2": ""},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/5a6moVjC2uM1-SzVQZXKNw/90s.jpg", "name": "Human Kinetics Publishers", "price_rating": "", "url": "http://www.yelp.com/biz/human-kinetics-publishers-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/TlVBQfEc8Mqn9QsoHGRAZw/30s.jpg", "fav_comment_content": "Great workplace with inspired mission. Most locals know this sports and fitness publisher practices what it preaches by offering employees an onsite fitness club, tennis courts, and basketball\u2026", "phone": "(217) 351-5076", "fav_comment_user": "Bill J.", "address_l1": "1607 N Market St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Brunson Jeffrey T DDS", "price_rating": "", "url": "http://www.yelp.com/biz/brunson-jeffrey-t-dds-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/r-9ctjuEtfcsUCTNejW53A/30s.jpg", "fav_comment_content": "I made an emergency appointment to go to this place (Dankle, Brunson and Lee) and was able to get in the same day within a few hours. Dr. Brunson easily replaced my porcelain inlay that had\u2026", "phone": "(217) 352-9688", "fav_comment_user": "Zoe V.", "address_l1": "102 W Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Champaign Country Club", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-country-club-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/ACgyI6kMXnXga_LEOTW3kg/30s.jpg", "fav_comment_content": "I will admit I haven't golfed here. Sadly, I am not a man who swings the clubs around. Why can I write a review? My friends got married here and it was simply a wonderful wedding. I missed the\u2026", "phone": "(217) 356-1391", "fav_comment_user": "Rob L.", "address_l1": "1211 S Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dean's Superior Blueprint Inc", "price_rating": "", "url": "http://www.yelp.com/biz/deans-superior-blueprint-inc-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ydsXA6ihMezdORzPpe8pfg/30s.jpg", "fav_comment_content": "So. \u00a0I've been on a self-imposed Yelp hiatus for a variety of unimportant reasons, but I'm going to give myself a brief reprieve to sing some well-deserved praises for Dean's Blueprint. \u00a0See,\u2026", "phone": "(217) 359-3261", "fav_comment_user": "Christine Y.", "address_l1": "404 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Weft", "price_rating": "", "url": "http://www.yelp.com/biz/weft-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/fJjZxM6c3RxPjbqjlo6-oQ/30s.jpg", "fav_comment_content": "Community radio is such a wonderful thing - forget the commercial crap elsewhere on the dial. \u00a0Here, the local folks run everything. \u00a0You'll hear stuff on WEFT that other stations are afraid\u2026", "phone": "(217) 359-5483", "fav_comment_user": "Shannon N.", "address_l1": "113 N Market St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Seno Formal Wear Inc", "price_rating": "", "url": "http://www.yelp.com/biz/seno-formal-wear-inc-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HOFz5eGrwjt80Xobx3tfHQ/30s.jpg", "fav_comment_content": "It's easy to give these formal wear places grief. \u00a0Half the time, you don't get the right size. \u00a0When you point it out, they then accuse you of having gained weight since your fitting. \u00a0It's\u2026", "phone": "(217) 359-6060", "fav_comment_user": "Phil P.", "address_l1": "53 E Marketview Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/NQb0fp0blYlCtxR5ifz1ew/90s.jpg", "name": "Office Depot", "price_rating": "", "url": "http://www.yelp.com/biz/office-depot-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/HX3L1QybX1X-OsIludXoGQ/30s.jpg", "fav_comment_content": "Called to see if they had a k-cup holder and the lady who answered the phone was very friendly and even offered to put one behind the service desk to make sure they didn't run out before I\u2026", "phone": "(217) 373-5202", "fav_comment_user": "Benjamin U.", "address_l1": "111 Convenience Ctr Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Hair Stylists"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Shear Impressions", "price_rating": "1", "url": "http://www.yelp.com/biz/shear-impressions-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I'm the sort of person that typically goes to a discount chain hair salon for his haircut: Borics, Supercuts, cost cutters, etc. I decided to give this local shop a try this time, and I'm not\u2026", "phone": "(217) 344-6263", "fav_comment_user": "Reza F.", "address_l1": "1604 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Scully Robert M MD", "price_rating": "", "url": "http://www.yelp.com/biz/scully-robert-m-md-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "Dr. Scully is a very competent internist, and since he's an older guy (he'd probably hit me for saying so) he's seen it all. \u00a0You can hardly argue with the second sense that comes with\u2026", "phone": "(217) 383-3120", "fav_comment_user": "Ellen M.", "address_l1": "602 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Illinois Student Environmental Network", "price_rating": "", "url": "http://www.yelp.com/biz/illinois-student-environmental-network-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "My review is based on my friend's account of his participation on their Board. \u00a0We loved the sound of it, so we donated a new wine rack to sell as a silent auction item at their fundraiser.\u2026", "phone": "(217) 384-0830", "fav_comment_user": "Ellen M.", "address_l1": "110 S Race St Ste 202", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/7Ky3DrynHRFbiID7PHQXzA/90s.jpg", "name": "Stringer Chiropractic", "price_rating": "", "url": "http://www.yelp.com/biz/stringer-chiropractic-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/300eCd0Ve6a9L_8fz1mkjA/30s.jpg", "fav_comment_content": "Always felt welcomed here. It's always a good vibe. Dr. Stringer is knowledgeable and a professional!", "phone": "(217) 355-8800", "fav_comment_user": "Valerie O.", "address_l1": "2905 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Kay's Team", "price_rating": "", "url": "http://www.yelp.com/biz/kays-team-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Our first home was just purchased yesterday with the help of Kyle from Keller Williams Realty - Kay's Team. \u00a0 I highly recommend their services for anyone interested in purchasing a home in\u2026", "phone": "(217) 356-6100", "fav_comment_user": "Justine B.", "address_l1": "41 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Schuh William K MD", "price_rating": "", "url": "http://www.yelp.com/biz/schuh-william-k-md-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "Dr. Schuh was my husband's primary care physician until we moved from Champaign, and he was always great. \u00a0A nice guy with a good sense of humor, but also a highly competent clinician with a\u2026", "phone": "(217) 326-2586", "fav_comment_user": "Ellen M.", "address_l1": "602 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/uapIU-NbSpOQTXICwh7x_w/90s.jpg", "name": "St Patrick's Church", "price_rating": "", "url": "http://www.yelp.com/biz/st-patricks-church-urbana-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/q0nC7--yBSQGOE3Te1jY4Q/30s.jpg", "fav_comment_content": "Clean-Helpful-Friendly staff-Wonderful location-They treat people like human beings and with dignity regardless to race, \u00a0culture or religious choice or lack there of!-Highly recommend them!", "phone": "(217) 383-1002", "fav_comment_user": "Madonna B.", "address_l1": "708 W Main St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Singleton Deborah S MD", "price_rating": "", "url": "http://www.yelp.com/biz/singleton-deborah-s-md-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "Outstanding family practitioner, and has a sunny disposition. \u00a0Takes the time to listen to what you have to say and acts like your her only patient of the day. \u00a0She's in her late thirties, if\u2026", "phone": "(217) 383-3170", "fav_comment_user": "Ellen M.", "address_l1": "602 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/4UbIOFJxU2Gh5qdH4v7qNw/90s.jpg", "name": "Melody Music", "price_rating": "", "url": "http://www.yelp.com/biz/melody-music-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "I'll admit right off the bat, I'm a bit biased because my Dad is one of the owners here. But it really is the best spot to go if you're looking for a jukebox, pool table, or any kind of arcade\u2026", "phone": "(217) 356-8662", "fav_comment_user": "Ashley B.", "address_l1": "602 N Country Fair Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/uRHMy4A1-l0iZ5iObW-9Pg/90s.jpg", "name": "Unit One", "price_rating": "", "url": "http://www.yelp.com/biz/unit-one-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "If you're considering a degree in the Liberal Arts & Sciences college at U of I, definitely consider enrolling early to get a coveted spot in Allen Hall. \u00a0The Unit One program give this large\u2026", "phone": "(217) 333-8351", "fav_comment_user": "Ellen M.", "address_l1": "1005 W. Gregory Drive", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Saturday Art School", "price_rating": "", "url": "http://www.yelp.com/biz/saturday-art-school-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "awesome opportunity for children (1st grade-highschool) to work with graduate students in Art + Design. \u00a0variety of media are used with a final presentation of works presented by students.\u2026", "phone": "(217) 333-0855", "fav_comment_user": "Tammy N.", "address_l1": "408 E. Peabody Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "New Image Tanning", "price_rating": "", "url": "http://www.yelp.com/biz/new-image-tanning-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "This is one of the nicer tanning salons I've been to on campus. \u00a0They have pretty good deals. \u00a0I got one month of unlimited tanning for $20 and there's no registration/membership fee. \u00a0 The\u2026", "phone": "(217) 328-3275", "fav_comment_user": "Emily M.", "address_l1": "502 E John St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Transitions", "price_rating": "", "url": "http://www.yelp.com/biz/transitions-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/MpWtmMBib8M6Ci2-ObBNpA/30s.jpg", "fav_comment_content": "Tonight I stopped by with some friends to volunteer and help set up Transitions before its opening day tomorrow. \u00a0Transitions is a resale shop, one that is a direct extension of the Center for\u2026", "phone": "(217) 384-2158", "fav_comment_user": "Teej T.", "address_l1": "201 Lincoln Sq", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/zwwIgTrmAxuAydkU1zHU4w/90s.jpg", "name": "Joan Cole - Massage at Studio Helix", "price_rating": "", "url": "http://www.yelp.com/biz/joan-cole-massage-at-studio-helix-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Awesome. We are riding our bicycles across the USA \u00a0rest day massage by Joan was great.", "phone": "(217) 356-7475", "fav_comment_user": "Vincent S.", "address_l1": "324 N Neil St", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Champaign Dental Care", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-dental-care-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/3fEPQ8ET5QMVNl4wXgD9jA/30s.jpg", "fav_comment_content": "Very nice dentist and staff. \u00a0Took me \u00a0last minute because I was in pain. \u00a0Dentist was super sweet. Gave me meds and \u00a0referral. \u00a0Thanks for helping me !!!!", "phone": "(217) 351-2667", "fav_comment_user": "Cathy C.", "address_l1": "2102 N Market St", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Wickness David DMD", "price_rating": "", "url": "http://www.yelp.com/biz/wickness-david-dmd-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/8FSYNKBpHtNhcPMoHLQ6og/30s.jpg", "fav_comment_content": "Early AM hours, competent staff, reasonable prices, efficient service.. \u00a0I highly recommend Dr. Wickness and his team.", "phone": "(217) 359-5050", "fav_comment_user": "Krista B.", "address_l1": "1701 S Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Blager Concrete Company", "price_rating": "", "url": "http://www.yelp.com/biz/blager-concrete-company-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/9mjHIvAOD0ALZ98_LZKvPw/30s.jpg", "fav_comment_content": "We had these guys out to pour our front sidewalk, and they did a great job! The truck was on time, the concrete was perfect, and the driver even helped us with the job. The best concrete\u2026", "phone": "(217) 365-9111", "fav_comment_user": "Meta S.", "address_l1": "1001 W Somer Dr", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Math Program", "price_rating": "", "url": "http://www.yelp.com/biz/the-math-program-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "small group setting where children are challenged beyond any math curriculum that any school in CU is capable of presenting. \u00a0jerry removes the fear and boredom from traditional math\u2026", "phone": "(217) 328-1640", "fav_comment_user": "Tammy N.", "address_l1": "604 E Mumford Dr", "address_l2": "Urbana, IL 61801"},
{"category": ["Chocolatiers & Shops"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Flatlander Chocolate", "price_rating": "2", "url": "http://www.yelp.com/biz/flatlander-chocolate-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/JtWszsiI7jwE4wHTLFteFQ/30s.jpg", "fav_comment_content": "My fiance and I discovered Daniel Schreiber of Flatlander Chocolate at the farmer's market. \u00a0We're both major suckers for super-dark chocolate, and Daniel's chocolate delivers. \u00a0I'm pretty\u2026", "phone": "", "fav_comment_user": "Heather T.", "address_l1": "Urbana, IL", "address_l2": ""},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Casual Male Big & Tall", "price_rating": "", "url": "http://www.yelp.com/biz/casual-male-big-and-tall-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/a0W3TK1gmtuCNmIe07k78A/30s.jpg", "fav_comment_content": "Big guys don't have many choices where they can buy clothes and Casual Male is one of the best. What I particularly like about this one is that there is lots of U of I clothing here. Go\u2026", "phone": "(217) 359-1462", "fav_comment_user": "Clifford S.", "address_l1": "1006 W Anthony Dr Ste A", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Chiefs Chariot Pedicab Company", "price_rating": "", "url": "http://www.yelp.com/biz/chiefs-chariot-pedicab-company-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/bbwurnkB1OQ6o-IUflwcSg/30s.jpg", "fav_comment_content": "Riding the rickshaw made the night for my friend and I! Chris is awesome and polite! He runs on cash tips only between Thursdays and Saturdays (9pm to 2:30am). \u00a0This guy is awesome and super\u2026", "phone": "(217) 550-6971", "fav_comment_user": "Anna K.", "address_l1": "Champaign, IL", "address_l2": ""},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Midas Auto Service Experts", "price_rating": "", "url": "http://www.yelp.com/biz/midas-auto-service-experts-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/cErkDX3Upa1VEqv2WxMJLA/30s.jpg", "fav_comment_content": "I came in to have my brakes checked out, as they were making a rumbling noise, and also to get an oil change. \u00a0I expected to be told that I would need to purchase new brakes. \u00a0Instead, the\u2026", "phone": "(217) 367-0300", "fav_comment_user": "Max E.", "address_l1": "304 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/R_fEbhe9k9oys-rTy4Sj4g/90s.jpg", "name": "Kenney Davenport Agency", "price_rating": "", "url": "http://www.yelp.com/biz/kenney-davenport-agency-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/7bPg69ZWo3fzjeVgr6VIsA/30s.jpg", "fav_comment_content": "Kenney is a great insurance agent. \u00a0His rates were very competitive and his service has been excellent. \u00a0He's easy to reach and quick to answer any questions I've had.", "phone": "(217) 356-8920", "fav_comment_user": "Mark W.", "address_l1": "305 W Clark St", "address_l2": "Champaign, IL 61820"},
{"category": ["Gas & Service Stations", "Convenience Stores"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/UQlJZ5bSGytOhn9soHk4Rg/90s.jpg", "name": "Circle K", "price_rating": "2", "url": "http://www.yelp.com/biz/circle-k-urbana-4", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/X0Oum31jnhtdpMaI_KY-OA/30s.jpg", "fav_comment_content": "Awesome friendly staff and very clean. Will go back again if in the area.", "phone": "(217) 367-5336", "fav_comment_user": "Frank T.", "address_l1": "1809 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["Furniture Stores"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Classic Home Consignment", "price_rating": "2", "url": "http://www.yelp.com/biz/classic-home-consignment-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/gP7HMPGKZMuSDiHHuYPmtw/30s.jpg", "fav_comment_content": "One of my favorite places to thrift. \u00a0 I love that they tag all their items with the day it was added to inventory. They give discounts if the item isn't sold by a certain time (you need to\u2026", "phone": "(217) 239-1169", "fav_comment_user": "Anastasia T.", "address_l1": "1912 Round Barn Rd", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Amasong", "price_rating": "", "url": "http://www.yelp.com/biz/amasong-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "Kristina Boerger founded this chorus several years ago, and she has since left to become a music professor at another university. \u00a0Kristina is an inspirational musician, as well as powerful\u2026", "phone": "(217) 328-6828", "fav_comment_user": "Ellen M.", "address_l1": "1300 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/IKcl7iDACtQDUDpxW6Hu6A/90s.jpg", "name": "Community United Church of Christ", "price_rating": "", "url": "http://www.yelp.com/biz/community-united-church-of-christ-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/GUGHuP2mgu9yLzojEcLHxQ/30s.jpg", "fav_comment_content": "If, like me, you're a progressive thinking liberal stuck here in the conservative midwest, then this is the church for you! CUCC is forward thinking, has good progressive theology, and is\u2026", "phone": "(217) 344-5091", "fav_comment_user": "Ryan N.", "address_l1": "805 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Junior League of Champaign-Urbana", "price_rating": "", "url": "http://www.yelp.com/biz/junior-league-of-champaign-urbana-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "This Junior League has been around since the 60s, I believe, and has a good-sized membership. \u00a0It was the first Junior League I belonged to, and they gave me great provisional member training\u2026", "phone": "(217) 356-5880", "fav_comment_user": "Ellen M.", "address_l1": "45 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Lincolnshire Fields Country Club Dining Room", "price_rating": "", "url": "http://www.yelp.com/biz/lincolnshire-fields-country-club-dining-room-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/P9igA7FOLCzhz9azeb6UEA/30s.jpg", "fav_comment_content": "New Chef here, Chris, \u00a0who I actually worked under years back when he was at Timpone's. \u00a0Menu is pretty standard with a few surprises like Kona Kompachi. \u00a0The standards are done solid and\u2026", "phone": "(217) 352-9425", "fav_comment_user": "Taylor K.", "address_l1": "2000 Byrnebruk Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Flooring Surfaces", "price_rating": "", "url": "http://www.yelp.com/biz/flooring-surfaces-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Tf0nbZo9a0sp0FrckiTV7A/30s.jpg", "fav_comment_content": "Had new carpet and wood floors put in my house. \u00a0The sales rep was very helpful. \u00a0I chose my wood floor and she showed me another from a different company that was exactly like it that was on\u2026", "phone": "(217) 398-1990", "fav_comment_user": "Edward M.", "address_l1": "401 Mercury Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "A Woman's Place", "price_rating": "", "url": "http://www.yelp.com/biz/a-womans-place-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "This organization provides shelter to abused women, and they do support groups and workshops for women who are getting out of their violent relationships. \u00a0They also work with clinics and\u2026", "phone": "(217) 384-4462", "fav_comment_user": "Ellen M.", "address_l1": "1304 E Main St", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Keen Tile", "price_rating": "", "url": "http://www.yelp.com/biz/keen-tile-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/q4I2CfXmu5KI6_SBNihrDg/30s.jpg", "fav_comment_content": "Received outstanding help from a young woman. Plus, their tile selection is far superior to want you'll find at the big stores. They have so many more interesting choices that we never even\u2026", "phone": "(217) 239-5550", "fav_comment_user": "Katie A.", "address_l1": "715 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/m_HkVxEu1irkrHFwHyKSvA/90s.jpg", "name": "Michaels' Catering", "price_rating": "", "url": "http://www.yelp.com/biz/michaels-catering-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/Qciq-Q6plqk218d_rWdydQ/30s.jpg", "fav_comment_content": "I attended a luncheon on July 14, 2011, at KCPA catered by Michaels. \u00a0There were about 50 people there. \u00a0The lunch served was excellent and unique. \u00a0Rather than trying to serve hot food and\u2026", "phone": "(217) 351-2500", "fav_comment_user": "Thomas B.", "address_l1": "720 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Lincolnshire Fields Country Club Golf Course Main", "price_rating": "", "url": "http://www.yelp.com/biz/lincolnshire-fields-country-club-golf-course-main-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/P9igA7FOLCzhz9azeb6UEA/30s.jpg", "fav_comment_content": "I'm gonna pull the \"hairclub\" line here...not only did I work here I'm also a member. \u00a0Got to see both sides of this place. \u00a0Well manicured course with excellent pros. \u00a0Working here was one of\u2026", "phone": "(217) 352-0370", "fav_comment_user": "Taylor K.", "address_l1": "2000 Byrnebruk Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Shoe Stores"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Red Wing Shoe Store", "price_rating": "1", "url": "http://www.yelp.com/biz/red-wing-shoe-store-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/VTLrlgVxaENdde5mZX-zbA/30s.jpg", "fav_comment_content": "My five-star rating applies to Red Wing as a shoe repair store, since I've never purchased shoes from them. \u00a0For repair, though, these guys are TOP NOTCH. \u00a0After reading how awful some of the\u2026", "phone": "(217) 352-5589", "fav_comment_user": "Annie W.", "address_l1": "907 W Marketview Dr Ste 3", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hill Martin E", "price_rating": "", "url": "http://www.yelp.com/biz/hill-martin-e-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/pspbBshXjAHG0rcDl00IIg/30s.jpg", "fav_comment_content": "The place to go to get your teeth cleaned in Champaign-Urbana! The staff is friendly and courteous, and they don't talk your ear off while you have 5 pieces of metal in your mouth! Both Dr.\u2026", "phone": "(217) 356-5260", "fav_comment_user": "Ted F.", "address_l1": "2917 Crossing Ct", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Nantucket Cove Apartments", "price_rating": "", "url": "http://www.yelp.com/biz/nantucket-cove-apartments-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/bHBkIvb0tPeJ8SRYPYt19A/30s.jpg", "fav_comment_content": "This community has amazing amenities (pool, game room, gym, study lounge, business center, bark park, indoor basketball, etc) and the apartments are very spacious. \u00a0I just moved here in\u2026", "phone": "", "fav_comment_user": "Scarlett P.", "address_l1": "2001 Moreland Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Florists"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Edible Arrangements", "price_rating": "3", "url": "http://www.yelp.com/biz/edible-arrangements-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/9iKhlwl65I-hESYnPTw-vQ/30s.jpg", "fav_comment_content": "I came to arrange a delivery for my daughter's birthday. \u00a0They were great. \u00a0They answered my questions and helped me pick out an arrangement that my daughter would love. \u00a0They have things you\u2026", "phone": "(217) 355-1711", "fav_comment_user": "Crystal M.", "address_l1": "49 E Marketview Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/-fWu9Rj7DmzYkF4zxQ0gfQ/90s.jpg", "name": "33rd BDE", "price_rating": "", "url": "http://www.yelp.com/biz/33rd-bde-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/oOEmUFCjKXsC0uyVLHaqaw/30s.jpg", "fav_comment_content": "Be in the right place, at the right time, in the right uniform.", "phone": "(217) 255-4906", "fav_comment_user": "Kevin D.", "address_l1": "600 E University", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Clark Park", "price_rating": "", "url": "http://www.yelp.com/biz/clark-park-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "would you like to go back in time and see the glee on children's faces when they have nothing to do but play? \u00a0Clark Park has somehow preserved this experience. \u00a0This is an awesome\u2026", "phone": "(217) 555-1212", "fav_comment_user": "Tammy N.", "address_l1": "Daniels St and McKinley Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Faith United Methodist Church", "price_rating": "", "url": "http://www.yelp.com/biz/faith-united-methodist-church-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/V9o72vN7Mv4TJmUiAdAujg/30s.jpg", "fav_comment_content": "", "phone": "(217) 359-3631", "fav_comment_user": "Jeannette B.", "address_l1": "1719 S Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Nancy Schaub - Coldwell Banker", "price_rating": "", "url": "http://www.yelp.com/biz/nancy-schaub-coldwell-banker-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/T63tkM7YmLFawcqe-W8SjA/30s.jpg", "fav_comment_content": "Dude, let me tell you about nancy schaub: \u00a0She sold my condo in five days and got my asking price, despite the current economic **circumstances.** If that wasn't enough for me to be ecstatic\u2026", "phone": "(217) 351-1988", "fav_comment_user": "Sarah L.", "address_l1": "2506 Galen Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Scrubs Plus", "price_rating": "", "url": "http://www.yelp.com/biz/scrubs-plus-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Need some scrubs for your professional attire? I don't think you'll find more helpful service than what you can get at this store. The selection was decent even in the male selections, and the\u2026", "phone": "(217) 355-2545", "fav_comment_user": "Dustin L.", "address_l1": "901B S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/573rl85MkgFJyXUj9NVvkA/90s.jpg", "name": "Illini Janitorial", "price_rating": "", "url": "http://www.yelp.com/biz/illini-janitorial-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "These guys do a good job on windows & cleaning in general. \u00a0They have been in the Champaign area for many years. \u00a0I would recommend them for office cleaning too.", "phone": "(217) 359-8150", "fav_comment_user": "Lisa B.", "address_l1": "PO Box 6483", "address_l2": "Champaign, IL 61826"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Massey Karen E, DDS", "price_rating": "", "url": "http://www.yelp.com/biz/massey-karen-e-dds-savoy", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/JtWszsiI7jwE4wHTLFteFQ/30s.jpg", "fav_comment_content": "Dr. Massey is friendly, professional, and down to earth. \u00a0I had a great first visit with her. \u00a0Her assistant was chatty and professional, her front desk people were equally great. \u00a0The\u2026", "phone": "(217) 356-1017", "fav_comment_user": "Heather T.", "address_l1": "1810 Woodfield Dr", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "American Electrical Services Inc", "price_rating": "", "url": "http://www.yelp.com/biz/american-electrical-services-inc-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/8FSYNKBpHtNhcPMoHLQ6og/30s.jpg", "fav_comment_content": "In my book, Dave is a pro. Highly recommend him. Won't cut corners.", "phone": "(217) 344-8773", "fav_comment_user": "Krista B.", "address_l1": "1602 E University Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Roof Doctors", "price_rating": "", "url": "http://www.yelp.com/biz/roof-doctors-urbana-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/cyJcFX4bHvF99yp3hliIGg/30s.jpg", "fav_comment_content": "I was \"fortunate\" enough to spring a leak in my bedroom this winter. \u00a0I called for multiple estimates. \u00a0My house is almost 100 years old and one company refused to work on it because it still\u2026", "phone": "(217) 328-7529", "fav_comment_user": "Heather J.", "address_l1": "Urbana, IL 61803", "address_l2": ""},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Ford City", "price_rating": "", "url": "http://www.yelp.com/biz/ford-city-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/5diOWebL5VPtunmetXvqvQ/30s.jpg", "fav_comment_content": "My Ford Fusion was overdue for maintenance, so I made an appointment on the Ford City website for a routine inspection and oil change. \u00a0I came by in the late morning, and they were able to\u2026", "phone": "(217) 352-0462", "fav_comment_user": "Liz P.", "address_l1": "300 Carriage Center Ct", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Glassworks", "price_rating": "", "url": "http://www.yelp.com/biz/glassworks-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/grI8ZQ-7qVR6e9EYAw6C9A/30s.jpg", "fav_comment_content": "I selected Glassworks for a quick windshield chip fix initially because I was greeted on the phone by a courteous employee and because the repair was affordable compared to other shops in the\u2026", "phone": "(217) 398-5999", "fav_comment_user": "Amber Y.", "address_l1": "812 Pioneer St.", "address_l2": "Champaign, IL 61820"},
{"category": ["Nail Salons"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/wHx-CxJHPY10Uy1rizS7Fg/90s.jpg", "name": "All Star Nails", "price_rating": "2", "url": "http://www.yelp.com/biz/all-star-nails-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vG16zF5PsGCbAwppakeoxA/30s.jpg", "fav_comment_content": "I love All Star Nails! \u00a0I have been to a lot of the nail places in the C-U and I think the thing that sets this salon above the others is the girls who work here. \u00a0The prices are competitive\u2026", "phone": "(217) 359-9797", "fav_comment_user": "Melissa B.", "address_l1": "907 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/4vh-1UYEyTW2UdYXKHXuCw/90s.jpg", "name": "New York Alterations", "price_rating": "", "url": "http://www.yelp.com/biz/new-york-alterations-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vYYx4qDn4yPeayvIwJyUUg/30s.jpg", "fav_comment_content": "I stopped in here today on my way to the Habitat for Humanity ReStore, right next door. \u00a0I had a great conversation with the Chinese couple who owns the place and the woman even offered to hem\u2026", "phone": "(217) 355-3181", "fav_comment_user": "Tony B.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Anderson Automotive", "price_rating": "", "url": "http://www.yelp.com/biz/anderson-automotive-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/VwUQIE3JCU0uJ3kMaj_8Cg/30s.jpg", "fav_comment_content": "Anderson's is a small, unimpressive looking auto repair business on Country Fair in Champaign, between Springfield and John Streets. But they have earned my trust and become my go-to repair\u2026", "phone": "(217) 352-1621", "fav_comment_user": "Michael K.", "address_l1": "608 S Country Fair Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/-87ZmW_fKIve4Na6R8GCIQ/90s.jpg", "name": "T.M.S. Auto Care", "price_rating": "", "url": "http://www.yelp.com/biz/t-m-s-auto-care-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Bf2T1yljkS44yb00Hnr4PA/30s.jpg", "fav_comment_content": "Not bad at all. \u00a0I have been to them twice. Once for a perceived muffler problem. Turns out it was some gasket and they just rigged it up to stop the noise and charged 50$. That fix has held\u2026", "phone": "(217) 398-4073", "fav_comment_user": "Matt S.", "address_l1": "1605 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dr. James Shepherd", "price_rating": "", "url": "http://www.yelp.com/biz/dr-james-shepherd-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "james has some special tricks that i should not type here...but trust me, if you're planning to have a baby, you will want him to deliver it.. \u00a0he is a very forward thinking physician who will\u2026", "phone": "(217) 383-1000", "fav_comment_user": "Tammy N.", "address_l1": "602 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Nick Smith, Tutor King", "price_rating": "", "url": "http://www.yelp.com/biz/nick-smith-tutor-king-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "Nick is the cat's pajamas when it comes to tutoring. \u00a0How many college kids do you know that will spend time with middle school children teaching them how to program in python? \u00a0ok, yes, we\u2026", "phone": "", "fav_comment_user": "Tammy N.", "address_l1": "201 N Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Elizabeth Solava, PT", "price_rating": "", "url": "http://www.yelp.com/biz/elizabeth-solava-pt-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/T63tkM7YmLFawcqe-W8SjA/30s.jpg", "fav_comment_content": "Due to major clumsiness and unluckiness on my part, I have been unfortunate enough to have to visit many physical therapists in my life. \u00a0Elizabeth Solava is definitely definitely in the top\u2026", "phone": "(217) 383-6555", "fav_comment_user": "Sarah L.", "address_l1": "610 N Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Furniture Stores", "Home Decor"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Domus Home Furnishing", "price_rating": "3", "url": "http://www.yelp.com/biz/domus-home-furnishing-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/Gpatt-w9hHhq7CsdfEPrvw/30s.jpg", "fav_comment_content": "Awesome stylish furniture. Very European in styling. Most larger pieces are expensive, but really, not too much more than your average home store, and the quality and style of the merchandise\u2026", "phone": "", "fav_comment_user": "Matthew L.", "address_l1": "211 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Illini Book Exchange", "price_rating": "", "url": "http://www.yelp.com/biz/illini-book-exchange-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/3It37lAWY1RmwSRlQs9GGA/30s.jpg", "fav_comment_content": "This is a great alternative to the bookstores on campus. \u00a0It's a forum to buy and sell textbook much like one would on Craigslist. \u00a0What makes this system so unique, is that it's run by the\u2026", "phone": "", "fav_comment_user": "Deanna C.", "address_l1": "Champaign, IL 61820", "address_l2": ""},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Quencher Smoothie's", "price_rating": "", "url": "http://www.yelp.com/biz/quencher-smoothies-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "Great Smoothies! Every time I go to the mall I get a smoothie from here. They also sell ice cream and other sorts of beverages. I enjoy the raspberry and pineapple smoothie. Yum!", "phone": "(217) 531-5352", "fav_comment_user": "Jenny S.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "O'reilly Auto Parts", "price_rating": "", "url": "http://www.yelp.com/biz/o-reilly-auto-parts-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/1oZxFtbHybomY1APn-Bz9g/30s.jpg", "fav_comment_content": "Went into the store today to buy brake shoes for my car. Found the desk clerk(s) to be very helpful and courteous - and even had a sense of humor. As a woman, I appreciate the fair treatment\u2026", "phone": "(217) 352-1671", "fav_comment_user": "Jo B.", "address_l1": "1009 N Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "William M Staerkel Planetarium", "price_rating": "", "url": "http://www.yelp.com/biz/william-m-staerkel-planetarium-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "This is a very special place hidden in the cornfields. \u00a0As the second largest planetarium in Illinois after the Adler Planetarium in Chicago, we are able to see some amazing shows. \u00a0There is\u2026", "phone": "(217) 351-2446", "fav_comment_user": "Tammy N.", "address_l1": "2400 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "P K Jewelry Repair", "price_rating": "", "url": "http://www.yelp.com/biz/p-k-jewelry-repair-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/zVUVTQ7b4wHJQ_TrUWeaUQ/30s.jpg", "fav_comment_content": "On a friend's recommendation, I recently used P K Jewelry Repair to 'remodel' my wedding set and upgrade the size of the center diamond. \u00a0The results were stunning and at a very reasonable\u2026", "phone": "(217) 351-3515", "fav_comment_user": "Kelly W.", "address_l1": "35 E Marketview Dr", "address_l2": "Champaign, IL 61820"},
{"category": ["Bookstores"], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/xB3loY7xKNe-ASJnAR7y2A/90s.jpg", "name": "Human Kinetics, Inc.", "price_rating": "1", "url": "http://www.yelp.com/biz/human-kinetics-inc-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/TlVBQfEc8Mqn9QsoHGRAZw/30s.jpg", "fav_comment_content": "Great workplace with inspired mission. Most locals know this sports and fitness publisher practices what it preaches by offering employees an onsite fitness club, tennis courts, and basketball\u2026", "phone": "(217) 351-5076", "fav_comment_user": "Bill J.", "address_l1": "1607 N Market St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/ogq4SzTK8-9_Ok8lAtn-9w/90s.jpg", "name": "Five Guys Burgers and Fries", "price_rating": "", "url": "http://www.yelp.com/biz/five-guys-burgers-and-fries-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/yHyaKkJiaNVf6PSrRnyY1A/30s.jpg", "fav_comment_content": "always good!", "phone": "(217) 398-0869", "fav_comment_user": "tee s.", "address_l1": "901 B West Anthony Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/bIEMzHTXX_D8n8gTnuvfLw/90s.jpg", "name": "Beyler Builders", "price_rating": "", "url": "http://www.yelp.com/biz/beyler-builders-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/0H3BbcsyExN0jP1DXAYBcA/30s.jpg", "fav_comment_content": "Over the years Pete Beyler has finished our basement, replaced our railing on the front porch, fixed a broken attic access ladder, added a utility sink in our garage and has upgraded our\u2026", "phone": "(217) 351-7436", "fav_comment_user": "Bruce B.", "address_l1": "", "address_l2": ""},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ZmrP4mxTaT8hJC_tGCf8WQ/90s.jpg", "name": "Chesterbrook Academy Preschool", "price_rating": "", "url": "http://www.yelp.com/biz/chesterbrook-academy-preschool-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/QqGqVyD8k3xhmfk6xGkRWQ/30s.jpg", "fav_comment_content": "I cannot say how pleased I am that both my children are enrolled at Chesterbrook. \u00a0They continually surprise me with what they have taught my children. \u00a0One day on the way home, my son starts\u2026", "phone": "(217) 344-4863", "fav_comment_user": "Sarah P.", "address_l1": "2001 S. Oak St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/jgIgjM9AHDy4rE13yZItBA/90s.jpg", "name": "Shatterglass Studios", "price_rating": "", "url": "http://www.yelp.com/biz/shatterglass-studios-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "", "phone": "(217) 402-9117", "fav_comment_user": "David F.", "address_l1": "309 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Block Electric", "price_rating": "", "url": "http://www.yelp.com/biz/block-electric-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/pJzB7YFHQtAdnAXgirk-Yw/30s.jpg", "fav_comment_content": "I recently had Block Electric do a pretty major job for me on an older house. \u00a0They were recommended by my realtor after purchasing the house. \u00a0 \u00a0The job was a re-wiring of the place - most of\u2026", "phone": "(217) 344-8393", "fav_comment_user": "Ken R.", "address_l1": "1149 County Road 1350 E", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Collins Oil Co", "price_rating": "", "url": "http://www.yelp.com/biz/collins-oil-co-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Support local gas stations. \u00a0Dorothy Collins is the owner of three Collins Oil Co. stations in Champaign-Urbana. \u00a0 Support women who own their own local companies. \u00a0Hell if you can't manage\u2026", "phone": "(217) 367-2448", "fav_comment_user": "Justine B.", "address_l1": "808 E Main St", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Champaign County Chamber of Commerce", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-county-chamber-of-commerce-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/56IuuFOtXH_yKGIYvPCMpg/30s.jpg", "fav_comment_content": "Awesome class today presented by FlipSwitch", "phone": "(217) 359-1791", "fav_comment_user": "Andy W.", "address_l1": "303 W Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Dave's Collision Repair", "price_rating": "", "url": "http://www.yelp.com/biz/daves-collision-repair-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/Q14edIywyshn8LPB1YKPKw/30s.jpg", "fav_comment_content": "After an unfortunate run-in with my parking garage, I needed some body work done. I went to several shops in town and ended up deciding on Dave's. The first thing I noticed about his shop was\u2026", "phone": "(217) 398-5001", "fav_comment_user": "Michael P.", "address_l1": "1402 Hagan St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/sBL4y-S4AKtU_ziDlZYJXg/90s.jpg", "name": "O'Brien Chiropractic, \u00a0Peter J O'Brien DC", "price_rating": "", "url": "http://www.yelp.com/biz/o-brien-chiropractic-peter-j-o-brien-dc-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/qWRYv8wMHrT77iGh5NIdNQ/30s.jpg", "fav_comment_content": "I was aching even after I had been previously adjusted by a chiropractor in Los Angeles California the month before I met Dr OBrien. After 12 minutes on his heated massage water table, he\u2026", "phone": "(217) 649-7816", "fav_comment_user": "Grace C.", "address_l1": "4910 W. Windsor Rd", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/1RV6C2f09orwsbylTjBGwg/90s.jpg", "name": "FedEx Office Print & Ship Center", "price_rating": "", "url": "http://www.yelp.com/biz/fedex-office-print-and-ship-center-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/laePBnPkKCyX3AHoY3_FZw/30s.jpg", "fav_comment_content": "Mike provided great service tonight. I walked in and needed a large amount of documents scanned and put into files. He was working on a huge project due the next morning (they were also\u2026", "phone": "(217) 355-3400", "fav_comment_user": "Alexandra S.", "address_l1": "505 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/RLrfoB2eCXCN3BUzwrDoeg/90s.jpg", "name": "University iPhone Repair", "price_rating": "", "url": "http://www.yelp.com/biz/university-iphone-repair-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/SHmxV5hAQ43W3JO9yBYavw/30s.jpg", "fav_comment_content": "Expert. \u00a0 Guy does the repair right in front of you and truly is a professional at what he does. \u00a0 Fixed my iPhone 5 in 30 minutes and my phone looks brand new again. \u00a0 Highly recommend this\u2026", "phone": "(217) 416-7774", "fav_comment_user": "Zach W.", "address_l1": "112 E Daniel St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Record Service", "price_rating": "", "url": "http://www.yelp.com/biz/record-service-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/uRREReAUwVmymHN7ODhBDQ/30s.jpg", "fav_comment_content": "I used to go here at least once a week to check out new music. As I'd climb the stairs from Green Street, they'd always have something cool playing, with the jacket displayed at the counter.\u2026", "phone": "(217) 344-6222", "fav_comment_user": "Mark B.", "address_l1": "621 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/DnqRXGidupfRhletKYSkvw/90s.jpg", "name": "United States Government", "price_rating": "", "url": "http://www.yelp.com/biz/united-states-government-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/eM2eEEX5QPfIYbd8h2O3oQ/30s.jpg", "fav_comment_content": "The people who work here are pretty darn friendly the few times I visited this place, the service was done swiftly and with a smile. One of the packages I received got wrong postage because\u2026", "phone": "(800) 275-8777", "fav_comment_user": "Mark C.", "address_l1": "3100 E Tatman Ct", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Park 150 Mini Warehouses", "price_rating": "", "url": "http://www.yelp.com/biz/park-150-mini-warehouses-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "Small storage space only $52 a month. Gated with your own code to get into the storage facility and into the building itself.", "phone": "(217) 384-5265", "fav_comment_user": "Jenny S.", "address_l1": "1602 E University Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Martin Hood Friese & Associates Llc", "price_rating": "", "url": "http://www.yelp.com/biz/martin-hood-friese-and-associates-llc-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Working with Doug and Mitch at MHFA has been a pleasant, professional experience. They're knowledgeable and good at articulating concepts to the less informed such as I. \u00a0They also worked hard\u2026", "phone": "(217) 351-2000", "fav_comment_user": "David F.", "address_l1": "2507 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Mattex Service Company Inc", "price_rating": "", "url": "http://www.yelp.com/biz/mattex-service-company-inc-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I've had Mattex come out twice to do plumbing work. \u00a0The first was a job that was supposed to be done under our home warranty (useless things it is, but that's a story for another post) and\u2026", "phone": "(217) 355-9700", "fav_comment_user": "J. G.", "address_l1": "402 S Staley Rd", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Meijer Pharmacy", "price_rating": "", "url": "http://www.yelp.com/biz/meijer-pharmacy-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/71I2-07bDmFTtf_t4x8jzQ/30s.jpg", "fav_comment_content": "Emergency scripts...due to Snow Event 2013...fast, professional and friendly service with out of state insurance and complex drugs to boot. \u00a0Win!!!", "phone": "(217) 365-5200", "fav_comment_user": "Draft M.", "address_l1": "2500 S Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Round Barn Manor", "price_rating": "", "url": "http://www.yelp.com/biz/round-barn-manor-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/kENsrPrQDqUFkS7tacgUpQ/30s.jpg", "fav_comment_content": "So, we recently discovered that my mother's house was full of black mold due to a negligent landlord. \u00a0On a number of inspection visits my siblings and I consequently paid, we learned that my\u2026", "phone": "(217) 351-9090", "fav_comment_user": "Jenny z.", "address_l1": "2000 W John St", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/AIg3ZVF6bkhiq-fMOZQVuw/90s.jpg", "name": "Rueck Insurance Agency", "price_rating": "", "url": "http://www.yelp.com/biz/rueck-insurance-agency-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/zD2AWER5_XW0WrEwl36xtQ/30s.jpg", "fav_comment_content": "When our big insurance company notified us they were increasing our auto rates, we went to another big agency. Then they increased our homeowners insurance, too and we decided to see what else\u2026", "phone": "(217) 355-9075", "fav_comment_user": "Rebecca M.", "address_l1": "702 Bloomington Rd", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "CU Woodshop Supply", "price_rating": "", "url": "http://www.yelp.com/biz/cu-woodshop-supply-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/43Q4Adpu-w3dvny-6OCV6A/30s.jpg", "fav_comment_content": "I just took my first-ever woodworking class at the DreamShop, an extension of the very new CU \u00a0Woodshop Supply. \u00a0What a blast! \u00a0I got to play with some power tools and learn how to turn wood\u2026", "phone": "(217) 355-1244", "fav_comment_user": "Kali M.", "address_l1": "1401 Parkland Ct", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Gregg Rose, DDS", "price_rating": "", "url": "http://www.yelp.com/biz/gregg-rose-dds-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "Dr. Rose is a pediatric dentist and good one at that. \u00a0He has a way of making a dentist appointment fun for kids. \u00a0His staff is very pleasant too. \u00a0So far, so good. \u00a0We haven't had a bad\u2026", "phone": "(217) 352-7337", "fav_comment_user": "Lisa B.", "address_l1": "1715 Broadmore Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/VLqXIXMDjq5GlECnrWK7qQ/90s.jpg", "name": "Ven Te Chow Hydrosystems Lab @ The University of Illinois", "price_rating": "", "url": "http://www.yelp.com/biz/ven-te-chow-hydrosystems-lab-the-university-of-illinois-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/GQujitahi-18jIaCkaMnDg/30s.jpg", "fav_comment_content": "The Ven Te Chow Hydrosystems Lab is one of the leading institutes of hydrology and hydraulics. Home of one of the biggest and more active hydraulics lab provides basic and apply research in\u2026", "phone": "", "fav_comment_user": "Mauricio P.", "address_l1": "205 North Mathews Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/7kixIh4x6CyEVYs3_NUYcw/90s.jpg", "name": "Gene's Barber Shop", "price_rating": "", "url": "http://www.yelp.com/biz/genes-barber-shop-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/hG3yg_BtrsRql-17s83nkA/30s.jpg", "fav_comment_content": "Not only a great barber but also a wonderful person. Give him a try, you won't regret it. Also, his prices are lower than many barbers in town. Great service.", "phone": "(217) 356-7007", "fav_comment_user": "Dennis P.", "address_l1": "229 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/a1AtfV0wg8rYHBMM17_GIw/90s.jpg", "name": "Rehab Professionals, Chiropractic & Physical Therapy", "price_rating": "", "url": "http://www.yelp.com/biz/rehab-professionals-chiropractic-and-physical-therapy-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/qWRYv8wMHrT77iGh5NIdNQ/30s.jpg", "fav_comment_content": "My chiropractor was out of town I guess since he did not answer the phone, and I looked up several, but settled on this one because it has the word physical therapy in the title. Although I do\u2026", "phone": "(217) 355-5650", "fav_comment_user": "Grace C.", "address_l1": "1713 S State St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/FJFeAjDYLsaSsIMVTX0KPw/90s.jpg", "name": "Cakes By Lori", "price_rating": "", "url": "http://www.yelp.com/biz/cakes-by-lori-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ygBHgfFmwfoDuW4akShf_Q/30s.jpg", "fav_comment_content": "Lori makes the best wedding cakes! They are super moist and the frosting is perfect. Not so sweet that it over powers the cake. She has lots of examples of cakes and works with you to get\u2026", "phone": "(217) 531-9127", "fav_comment_user": "Lindsey W.", "address_l1": "101 Trade Centre Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Motorcycle Rider Program", "price_rating": "", "url": "http://www.yelp.com/biz/motorcycle-rider-program-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/TfGof2TeWznXsY8zVMe4EQ/30s.jpg", "fav_comment_content": "Hey guys! \u00a0Guess what? \u00a0I got my motorcycle endorsement!! \u00a0Yep, that's right. \u00a0I, Damian C., can now trade up my Toyota for a lean, mean, 2-wheeled cruising machine! \u00a0BADASS. \u00a03 weeks ago my\u2026", "phone": "(217) 333-7856", "fav_comment_user": "Damian C.", "address_l1": "4 Gerty Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Inskip Realty Team", "price_rating": "", "url": "http://www.yelp.com/biz/inskip-realty-team-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I used these guys to buy my house and they were GREAT. Professional, extremely knowledgeable, very easy to get hold of, and with a no-hype and low-pressure approach.", "phone": "(217) 239-7203", "fav_comment_user": "Katherine N.", "address_l1": "821 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/xHFTQxQijf6ZgNTrUJmPuA/90s.jpg", "name": "Judys Merchandise", "price_rating": "", "url": "http://www.yelp.com/biz/judys-merchandise-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/QAYbVkditj1YcIFo8hZ9aw/30s.jpg", "fav_comment_content": "Looking for some great deals? \u00a0Judy's is where they are! \u00a0The things I like most about this discount store would be \u00a01. \u00a0Easy to find location with lots of parking 2. \u00a0Open 6 days a week,\u2026", "phone": "", "fav_comment_user": "Terra H.", "address_l1": "3515-3709 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["Massage"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Health In Hand", "price_rating": "2", "url": "http://www.yelp.com/biz/health-in-hand-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fSD8AHQsWAw4XU31NNKH_w/30s.jpg", "fav_comment_content": "these guys are the real deal. \u00a0run by a husband and wife team, health in hand takes care of you. \u00a0i came to their new location on prospect, and had a massage done that concentrated on my legs.\u2026", "phone": "(217) 356-7890", "fav_comment_user": "RJ D.", "address_l1": "2500 Galen Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/p0tpINKxK1gmQ1qU0KDUPQ/90s.jpg", "name": "Krispy Krunchy Chicken", "price_rating": "", "url": "http://www.yelp.com/biz/krispy-krunchy-chicken-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/V5i8_LvAVdyVVR7sWA-Q5g/30s.jpg", "fav_comment_content": "I LOVE KK Chicken. Their corn on the cob. DELICIOUS! \u00a0 If you haven't. You're missing out. \u00a0 Would have given them 5 stars. But one day their corn tasted off. Caught me off guard. \u00a0So I don't\u2026", "phone": "(217) 378-2803", "fav_comment_user": "Daphne L.", "address_l1": "922 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/RvWwxR8CbaTYMmJ98u8gLg/90s.jpg", "name": "Piato Catering", "price_rating": "", "url": "http://www.yelp.com/biz/piato-catering-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/q0nC7--yBSQGOE3Te1jY4Q/30s.jpg", "fav_comment_content": "Most popular lunch spots in town-Great dedicated staff-Customer oriented-Good food", "phone": "(217) 344-9015", "fav_comment_user": "Madonna B.", "address_l1": "300 S Broadway Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/96Y5FSbgGOZm654Rv0xgEA/90s.jpg", "name": "YMCA", "price_rating": "", "url": "http://www.yelp.com/biz/ymca-champaign-3", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I absolutely love this gym. It's clean, it's big, and they offer a ton of classes and options for kids. \u00a0Members get two free hours of child care each day, and the child watch area is\u2026", "phone": "(217) 359-9622", "fav_comment_user": "Holly M.", "address_l1": "2501 Fields S Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Saturn of Champaign County", "price_rating": "", "url": "http://www.yelp.com/biz/saturn-of-champaign-county-savoy", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I wasn't thrilled with the service I received when I took my Saturn L200 in. This was the second time I have taken it in and have been underwhelmed with their customer service skills. \u00a0 I was\u2026", "phone": "(217) 352-4700", "fav_comment_user": "Sara A.", "address_l1": "1402 N Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/1o1LGJod7BlMgxuWlYxSVA/90s.jpg", "name": "I Wok", "price_rating": "", "url": "http://www.yelp.com/biz/i-wok-savoy", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/NJEUDYjrCHGuD_XxdM14bw/30s.jpg", "fav_comment_content": "My son (Rick S) has already written a review for I Wok. We differed in our opinions, however. \u00a0I was surprised that the restaurant was empty at 12:30 pm on a Thursday afternoon. I would have\u2026", "phone": "(217) 351-9888", "fav_comment_user": "John S.", "address_l1": "113 Calvin St", "address_l2": "Savoy, IL 61874"},
{"category": ["Coffee & Tea"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Teavana Tea Store", "price_rating": "3", "url": "http://www.yelp.com/biz/teavana-tea-store-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/TJw16DYv1zbvIBCXqprLuA/30s.jpg", "fav_comment_content": "I love shopping at Teavana and trying all their new and interesting teas. \u00a0They always have the most knowledgeable associates who can answer any tea related questions you have and always have\u2026", "phone": "(217) 352-4281", "fav_comment_user": "Drake M.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Allied Van Lines Agent", "price_rating": "", "url": "http://www.yelp.com/biz/allied-van-lines-agent-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "If you are affiliated with the University you get a 63% discount. I used their moving service for my move to South Carolina. \u00a0They were professional, helpful and punctual. They wrapped all my\u2026", "phone": "(217) 352-5123", "fav_comment_user": "Michelle B.", "address_l1": "401 W Kenyon Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Beer, Wine & Spirits"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Piccadilly Beverage Shops", "price_rating": "2", "url": "http://www.yelp.com/biz/piccadilly-beverage-shops-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/bzXgSzAoSlmp2mWAftG6Uw/30s.jpg", "fav_comment_content": "What can I say about this place other than it is a staple of Champaign County's alcoholism. \u00a0They have a large variety of booze and it is all inexpensively priced. \u00a0On top of that, their\u2026", "phone": "(217) 356-3733", "fav_comment_user": "George K.", "address_l1": "1215 N Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Office Equipment", "Printing Services"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/VUFfZimA5A4w_C7KLQXI2w/90s.jpg", "name": "Staples", "price_rating": "2", "url": "http://www.yelp.com/biz/staples-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/wF4Pw0P9KsoLt281aA08ow/30s.jpg", "fav_comment_content": "Amber is amazing!!! After realizing we needed more color copies for our payroll presentation we ran over to Staples. Amber helped us pick out the right paper and did our copies right on the\u2026", "phone": "(217) 373-8490", "fav_comment_user": "Rahshonda K.", "address_l1": "2005 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Comic Books", "Hobby Shops"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Other Realm", "price_rating": "1", "url": "http://www.yelp.com/biz/other-realm-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/MpWtmMBib8M6Ci2-ObBNpA/30s.jpg", "fav_comment_content": "I really liked Other \u00a0Realm. \u00a0The owner was funny and gregarious. \u00a0 \u00a0You see, I have a comic addiction, and I hadn't gotten my fix since I left San Diego, over a month and a half ago. \u00a0So I\u2026", "phone": "(217) 344-5514", "fav_comment_user": "Teej T.", "address_l1": "506 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Bob & Brad's Auto Mart", "price_rating": "", "url": "http://www.yelp.com/biz/bob-and-brads-auto-mart-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wU5ZrRBMK3SZCQd7sRrBlw/30s.jpg", "fav_comment_content": "The antithesis of what one expects from a used car dealership to the point that it's almost surreal. \u00a0The owner, Bob, is the only salesperson and is a really great guy. \u00a0Both of my current\u2026", "phone": "(217) 352-2000", "fav_comment_user": "N A.", "address_l1": "1904 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Nail Salons"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Pretty Nails", "price_rating": "1", "url": "http://www.yelp.com/biz/pretty-nails-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/eFgDh5E9DxNME4eDPI4uoA/30s.jpg", "fav_comment_content": "Absolutely thrilled with the manicure I received here! \u00a0They seemed short staffed at first, but remedied that with a phone call. \u00a0My friend and I just walked in. \u00a0The manicure was so\u2026", "phone": "(217) 384-5721", "fav_comment_user": "Rachel W.", "address_l1": "115 Lincoln Sq", "address_l2": "Urbana, IL 61801"},
{"category": ["Burgers", "Fast Food"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/LLBOjiw3Eg11o_8sBj6RzA/90s.jpg", "name": "McDonald's", "price_rating": "1", "url": "http://www.yelp.com/biz/mcdonalds-champaign-4", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/Wiq7R_kvCkYso1i-R9D56w/30s.jpg", "fav_comment_content": "It's McDonald's. Enough said. Service can range time to time, but that's expected with fast food. Always make sure you have everything in your bag after ordering, and just go back and ask if\u2026", "phone": "(217) 356-6679", "fav_comment_user": "Nelson K.", "address_l1": "1605 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Chinese"], "rating": "2.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/4t13_e5pHTJid6A8kbOA4Q/90s.jpg", "name": "Bo Bo China", "price_rating": "1", "url": "http://www.yelp.com/biz/bo-bo-china-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wyfsyMwmy58MJJbi_9NB2A/30s.jpg", "fav_comment_content": "Let me start by saying that, for the first 24 years of my life, I had zero experience with Chinese food. \u00a0My parents are meat-and-potatoes people, and Chinese carryout was simply not a part of\u2026", "phone": "(217) 352-2272", "fav_comment_user": "Amanda W.", "address_l1": "404 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/OkkAeHEZsu-_eIJAmIMwHg/90s.jpg", "name": "Red Roof Inn", "price_rating": "1", "url": "http://www.yelp.com/biz/red-roof-inn-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/2WMdsjM77UqCXztHTc6Kww/30s.jpg", "fav_comment_content": "For 52 bucks a night I wasn't expecting much soooooooo let's just say this was a no frills place to rest our heads for Unofficial Weekend at U of I. \u00a0 Staff was helpful the first night we came\u2026", "phone": "(217) 352-0101", "fav_comment_user": "Beatriz T.", "address_l1": "212 W Anthony Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/TVnnM4c9xiNL5i50KaiKTw/90s.jpg", "name": "Simplified Computers", "price_rating": "", "url": "http://www.yelp.com/biz/simplified-computers-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/fSD8AHQsWAw4XU31NNKH_w/30s.jpg", "fav_comment_content": "these guys are pretty awesome. \u00a0my laptop mysteriously would not turn on one day. \u00a0i brought it in to them. \u00a0they messed around with it for a couple of minutes and it worked. \u00a0they sent me on\u2026", "phone": "(217) 352-5000", "fav_comment_user": "RJ D.", "address_l1": "901 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Village Inn Pizza", "price_rating": "1", "url": "http://www.yelp.com/biz/village-inn-pizza-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "We ordered the XL Village Inn Special with a side of garlic bread. \u00a0This is the best pizza we have had since we moved here in July,2008. \u00a0 \u00a0We tried and didn't care for Papa Del's, Monical's,\u2026", "phone": "(217) 359-1736", "fav_comment_user": "Gamblin G.", "address_l1": "1901 S High Cross Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Food Stands", "Sandwiches"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Beckman Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/beckman-cafe-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LWjEeqJHqfT483T43-Y59g/30s.jpg", "fav_comment_content": "I tried the pecan-cranberry chicken salad and it had the perfect amount of mayo! yay! It was verrrry chunky though.. prepare yourself by grabbing a fork too! I've also now tried the tomato\u2026", "phone": "(217) 244-1792", "fav_comment_user": "Sarah H.", "address_l1": "405 N Mathews Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Tanning", "Skin Care"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/JIEPi8DSqNkr3EyHDXUmbA/90s.jpg", "name": "Rush Tan", "price_rating": "2", "url": "http://www.yelp.com/biz/rush-tan-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/5VrPAHMxYaITeArrS12ETA/30s.jpg", "fav_comment_content": "awesome beds....and really cool salon. \u00a0feel like i'm at a hip club or something. \u00a0the beds rock....you know you're getting bronzed and not burned here. \u00a0it's my fav salon in town...", "phone": "(217) 351-7874", "fav_comment_user": "Maria K.", "address_l1": "505 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/3oHiGFsQH6o9Sm3fRff7_g/90s.jpg", "name": "Town & Country Apartments", "price_rating": "", "url": "http://www.yelp.com/biz/town-and-country-apartments-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/PB0H7JBlk8ecNIRqhEfqkQ/30s.jpg", "fav_comment_content": "I viewed Town & Country Apartments in April of 2012. My mom and I arrived from Arkansas, tired and just ready to see a few places, sign a lease, and head back home. \u00a0The leasing agents at Town\u2026", "phone": "(217) 866-0659", "fav_comment_user": "Courtney C.", "address_l1": "1032 E Kerr Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["Hotels"], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/X0U4YE-TWKeokfz9GSIh9Q/90s.jpg", "name": "Fairfield Inn & Suites Champaign", "price_rating": "2", "url": "http://www.yelp.com/biz/fairfield-inn-and-suites-champaign-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/1NvsKnXWS-FgYm4UmwvPKw/30s.jpg", "fav_comment_content": "It is just nice to be out of the car. \u00a0 Friendly front desk staff. Small, but adequate pool (we used this and it made us very happy to exercise after driving upteen hours from MI). Excellent\u2026", "phone": "(217) 355-0604", "fav_comment_user": "Mari C.", "address_l1": "1807 Moreland Blvd", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels", "Bed & Breakfast"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Senators Inn & Pub", "price_rating": "2", "url": "http://www.yelp.com/biz/senators-inn-and-pub-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/hstl4PmCnBqirL8rLsXPkw/30s.jpg", "fav_comment_content": "Townie Chic. \u00a0 \u00a0Weird on Saturday but likely better other nights. \u00a0Best served with a few drinks.", "phone": "(217) 352-0002", "fav_comment_user": "Steven R.", "address_l1": "1001 N Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": ["Hair Salons"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hair Cuttery", "price_rating": "1", "url": "http://www.yelp.com/biz/hair-cuttery-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Always go here to get my hair done and get the same person. Sarah knows how to work with my thick curly hair. I always leave happy and that's why I keep returning. The prices aren't bad\u2026", "phone": "(217) 398-9127", "fav_comment_user": "Donna P.", "address_l1": "24 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/Vt8x_eWgxn251giwiEOYXQ/90s.jpg", "name": "Regency Beauty Institute", "price_rating": "", "url": "http://www.yelp.com/biz/regency-beauty-institute-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/mR_mxH9FYyFRx9D7i53g-w/30s.jpg", "fav_comment_content": "Came here once after hearing of $9 haircuts (including shampoo). Everything is done by supervised students; an instructor stops by to check every so often. Quality was fine, but my simple trim\u2026", "phone": "(217) 531-9937", "fav_comment_user": "Barack O.", "address_l1": "517 West Town Center Boulevard", "address_l2": "Champaign, IL 61822"},
{"category": ["Shoe Stores", "Children's Clothing"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Andy's Shoes", "price_rating": "3", "url": "http://www.yelp.com/biz/andys-shoes-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/IMxBGEjDQqNWoaFX-3BVtw/30s.jpg", "fav_comment_content": "Updated to say that Andy's is going out of business. Andy passed away earlier this year and the family has decided to close up the shop. We were there today and the really nice lady helped us\u2026", "phone": "(217) 359-7500", "fav_comment_user": "GiGi G.", "address_l1": "115 W Kirby Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Beer, Wine & Spirits"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/g471Sypw2OWYkguHUnLpgQ/90s.jpg", "name": "Den Liquors", "price_rating": "1", "url": "http://www.yelp.com/biz/den-liquors-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/IV5LkCIz2ev37lbXoA0MxA/30s.jpg", "fav_comment_content": "This review is dedicated to the guy that works the closing shift who always plays hardcore rap and wears sunglasses at night. What more is there to say? It's a liquor store on Green Street, so\u2026", "phone": "(217) 344-5475", "fav_comment_user": "Daniel G.", "address_l1": "606 S Sixth St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Burger King", "price_rating": "", "url": "http://www.yelp.com/biz/burger-king-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "I am not a fast food lover let alone one who likes Burger King. \u00a0Especially with the poor service and food from the other locations in the Champaign-Urbana area. \u00a0In fact, I have avoided those\u2026", "phone": "(217) 954-1442", "fav_comment_user": "Lisa B.", "address_l1": "1325 N Dunlap St", "address_l2": "Savoy, IL 61874"},
{"category": ["Furniture Stores", "Mattresses"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Furniture Warehouse", "price_rating": "2", "url": "http://www.yelp.com/biz/furniture-warehouse-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/TIDBtIpA1wXA97i8WxMZsA/30s.jpg", "fav_comment_content": "Awesome prices from Furniture Warehouse! As their website tells you, either go look at some of the distributor's online catalogs, or go into their stores and see if you can find a piece you\u2026", "phone": "(217) 352-0080", "fav_comment_user": "David B.", "address_l1": "126 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Grocery"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/KNF7R1TfcRp7NuMYcyprhQ/90s.jpg", "name": "GFS", "price_rating": "4", "url": "http://www.yelp.com/biz/gfs-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/7dnK4G3lDZAm3tMlp1RmIQ/30s.jpg", "fav_comment_content": "I don't go here often because I live alone and don't need such big quantities of food. However, the few times I've been there, I've found the employees to be very friendly. The quantities of\u2026", "phone": "(217) 356-3056", "fav_comment_user": "Rachel S.", "address_l1": "502 W.town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Drugstores"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/OGWDEwgLMZ1zBoUY13G5UA/90s.jpg", "name": "CompleteCare Pharmacy", "price_rating": "1", "url": "http://www.yelp.com/biz/completecare-pharmacy-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Very friendly people! Prices are on each item rather than on shelf which is kinda a throwback - thought they weren't displaying prices at first.", "phone": "(217) 355-6607", "fav_comment_user": "CD J.", "address_l1": "14 E Washington", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/UFHUOCH9zdksvPhCLRxjdA/90s.jpg", "name": "Gold's Gym", "price_rating": "", "url": "http://www.yelp.com/biz/golds-gym-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "i love it here for two reasons: 1. \u00a0it's no-nonsense and thus the people who work out here are no-nonsense. 2. \u00a0they have the greatest trainers in the world. \u00a0lot's of uofi students who are\u2026", "phone": "(217) 359-3476", "fav_comment_user": "Tammy N.", "address_l1": "1914 Round Barn Rd", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/cQuxgnu5os0aYwRS4OGmOQ/90s.jpg", "name": "Arrowhead Lanes", "price_rating": "", "url": "http://www.yelp.com/biz/arrowhead-lanes-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/gXYGRKoJCS3dynV-kxevCg/30s.jpg", "fav_comment_content": "This alley is owned by the same person that owns GT Western Bowl. \u00a0They are both known in this town as the premier places to bowl, because of the careful care that they take. \u00a0The regulars\u2026", "phone": "(217) 352-5288", "fav_comment_user": "Aron F.", "address_l1": "1401 N McKinley Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Tj's Laundry & Dry Cleaning", "price_rating": "", "url": "http://www.yelp.com/biz/tjs-laundry-and-dry-cleaning-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/qY9-cX5GfsfnYmYBZ215WA/30s.jpg", "fav_comment_content": "I should add that the top loading washers are only $2. \u00a0I go to TJ's to do all my laundry now, since the prices in my apartment building went up (...for machines that don't even work); TJ's\u2026", "phone": "(217) 337-7717", "fav_comment_user": "Penelope Y.", "address_l1": "1502 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["Hair Removal", "Cosmetic Surgeons"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Advanced Aesthetics", "price_rating": "4", "url": "http://www.yelp.com/biz/advanced-aesthetics-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/r8g_rsu2rzZd8GWzAR7img/30s.jpg", "fav_comment_content": "I've had various procedures done here. \u00a0Staff & Dr Kurley are professional and knowledgeable. \u00a0I definitely recommend them.", "phone": "(217) 356-3850", "fav_comment_user": "Dawn H.", "address_l1": "2111 W Park Ct", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "AutoZone", "price_rating": "", "url": "http://www.yelp.com/biz/autozone-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/mEzOsbHdkZIfY-mhSFE_IQ/30s.jpg", "fav_comment_content": "This past weekend I was in Champaign to visit my daughter who is a student at U of I. \u00a0Sunday morning, my car would not start. \u00a0 My daughter drove me to Autozone on University Ave planning to\u2026", "phone": "(217) 352-2522", "fav_comment_user": "Kelly M.", "address_l1": "311 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Pizza", "Chicken Wings", "Sandwiches"], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/4cFPgV7wd9T9chnAdtG36Q/90s.jpg", "name": "Domino's Pizza", "price_rating": "2", "url": "http://www.yelp.com/biz/dominos-pizza-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/ncUpXw5Ovg4xIvAT9Cdm9Q/30s.jpg", "fav_comment_content": "Good service, fast delivery, hot food.", "phone": "(217) 328-6800", "fav_comment_user": "Jenny S.", "address_l1": "1108 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hammond Fireplace & Chimney Service", "price_rating": "", "url": "http://www.yelp.com/biz/hammond-fireplace-and-chimney-service-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Our home inspector warned us to get a chimney cover, but we didn't act fast enough and a raccoon moved in... with her three babies. \u00a0Rob and Brian made a few visits, evicted them without harm,\u2026", "phone": "(217) 384-5001", "fav_comment_user": "Heidi H.", "address_l1": "805 S Urbana Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Auntie Anne's", "price_rating": "", "url": "http://www.yelp.com/biz/auntie-annes-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "After reading my review on Yelp I was contacted by corporate and offered an apology and 3 free pretzels so I could try them again. \u00a0I did try them again and they were the same original recipe.\u2026", "phone": "(217) 378-4070", "fav_comment_user": "Lisa B.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bikes"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Kohlmann's Bike Shop", "price_rating": "1", "url": "http://www.yelp.com/biz/kohlmanns-bike-shop-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/IBZrPezpVyQj5MExZg9W2A/30s.jpg", "fav_comment_content": "This is a bicycle shop in the garage of a house in a small residential neighborhood. \u00a0It even has a very small sign: \"bike shop\". \u00a0The owner/operator is named Peter and I recommend him to you\u2026", "phone": "(217) 352-6348", "fav_comment_user": "Christian S.", "address_l1": "802 Westfield Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Coffee & Tea"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Espresso Royale", "price_rating": "1", "url": "http://www.yelp.com/biz/espresso-royale-champaign-3", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/lGXGQuxSVZO7YKQGqHyGtg/30s.jpg", "fav_comment_content": "Located in the atrium of the Business Instructional Facility (BIF) and open til 11pm Sunday-Thursday, this place is a lifesaver for the hundreds of sleepless business students looking for a\u2026", "phone": "(217) 333-7074", "fav_comment_user": "Megan M.", "address_l1": "515 E Gregory Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Campus Nails", "price_rating": "", "url": "http://www.yelp.com/biz/campus-nails-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "They did a really great job!", "phone": "(217) 954-1460", "fav_comment_user": "Jackie C.", "address_l1": "509 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/oDhWSdIJwbX92BqSG51OZQ/90s.jpg", "name": "JSM Management", "price_rating": "", "url": "http://www.yelp.com/biz/jsm-management-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/xWNmLDZI2GRdpYuLKvSNmA/30s.jpg", "fav_comment_content": "Lived in a JSM managed apartment for the 2009-2010 school year at the recommendation of the Tennant Union. \u00a0I didn't have any major problems. They had a quick and friendly maintenance staff.\u2026", "phone": "(217) 359-6108", "fav_comment_user": "Anshu A.", "address_l1": "505 S Fifth St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Jesse Heating & Air Conditioning", "price_rating": "", "url": "http://www.yelp.com/biz/jesse-heating-and-air-conditioning-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/8FSYNKBpHtNhcPMoHLQ6og/30s.jpg", "fav_comment_content": "competent, polite, efficient service. \u00a0I have used them for air, heat and fireplace upkeep and been very happy with the service. \u00a0Early morning service slots helps keep them in the running -\u2026", "phone": "(217) 352-8511", "fav_comment_user": "Krista B.", "address_l1": "3702 W Old Church Rd", "address_l2": "Champaign, IL 61822"},
{"category": ["American (New)"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/ivJqCgf4ipNVm98OyuJIyg/90s.jpg", "name": "Super Wok", "price_rating": "2", "url": "http://www.yelp.com/biz/super-wok-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/VytfnIZXU3Z1z7NRoFKnnw/30s.jpg", "fav_comment_content": "They serve really yummy House Special Angel Hair Noodles! If you haven't tried this family run short order Chinese restaurant you should definitely give it a shot. The service is fast and they\u2026", "phone": "(217) 398-0111", "fav_comment_user": "Shoshanna B.", "address_l1": "1737 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/58Yq0icyMzSiaexFvx-IMg/90s.jpg", "name": "Talecris Plasma Resources", "price_rating": "", "url": "http://www.yelp.com/biz/talecris-plasma-resources-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/GFqqGFtsyTC4J0ufDc5PrQ/30s.jpg", "fav_comment_content": "I've been donating at Talecris since August 2011. \u00a0My first appointment took about 3 hours and I got lucky because I was a walk-in and they made room for me. \u00a0Since then, they have changed the\u2026", "phone": "(217) 355-9703", "fav_comment_user": "Gretchen C.", "address_l1": "24 East Green St.", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/UlOUGM3fLgf503YAJ8xs-A/90s.jpg", "name": "Cutting Edge Painting and Decorating", "price_rating": "", "url": "http://www.yelp.com/biz/cutting-edge-painting-and-decorating-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/vYYx4qDn4yPeayvIwJyUUg/30s.jpg", "fav_comment_content": "I had Cutting Edge paint the majority of the interior of my office building in December 2010. Three guys worked from 5pm to 2am over four nights to get the job done. \u00a0The owner, Dustin, has a\u2026", "phone": "(217) 355-9878", "fav_comment_user": "Tony B.", "address_l1": "", "address_l2": ""},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/VL-XZwqlLBNBDwhofT1Y_A/90s.jpg", "name": "Fannie May Fine Chocolates", "price_rating": "", "url": "http://www.yelp.com/biz/fannie-may-fine-chocolates-champaign-3", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "the women who work here are extremely nice and helpful. \u00a0adjusting for the extra special care they give me due to the frequency of my visits, i'd still say they are particularly swell. \u00a0i ran\u2026", "phone": "(217) 355-5628", "fav_comment_user": "Tammy N.", "address_l1": "402 South Neil Street", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/FZELvY7R5KrKwm-m8nIEIw/90s.jpg", "name": "Champaign-Urbana Public Health District", "price_rating": "", "url": "http://www.yelp.com/biz/champaign-urbana-public-health-district-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/UzWkt3HRNr0bQ_FMkw5xRw/30s.jpg", "fav_comment_content": "The Champaign-Urbana Public Health District offers all kinds of health related services, from general health promotion to maternal and child health. This review is really for their adult\u2026", "phone": "(217) 352-7961", "fav_comment_user": "David S.", "address_l1": "201 W Kenyon Rd", "address_l2": "Champaign, IL 61820"},
{"category": ["Electronics"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Gamestop", "price_rating": "2", "url": "http://www.yelp.com/biz/gamestop-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/bB_Oia2VOmge3SiMa_cFww/30s.jpg", "fav_comment_content": "The campus Gamestop is the only place i go to buy my games. Here is why: knowledgeable and friendly staff. I have to admitt, I am a bit of a video game nerd and could talk your head off about\u2026", "phone": "(217) 384-7890", "fav_comment_user": "John G.", "address_l1": "616 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Prairie Farm", "price_rating": "", "url": "http://www.yelp.com/biz/prairie-farm-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/lN0sjwSmZHNPdPAVEoO3gA/30s.jpg", "fav_comment_content": "I really have no idea what category to put this in. It's kind of like a zoo but in farm form. As far as I know, this used to be an actual farm but got changed into a farm zoo of sorts when the\u2026", "phone": "(217) 398-2583", "fav_comment_user": "Lauren C.", "address_l1": "2202 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Espresso Royale", "price_rating": "", "url": "http://www.yelp.com/biz/espresso-royale-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/ATKHZ2xMCA0nI_YU7-zimg/30s.jpg", "fav_comment_content": "with my internet on the fritz, i desperately needed a place to finish up my grad school app's that had free wi-fi, wasn't crowded with undergrads, and had good, strong coffee. this particular\u2026", "phone": "(217) 352-1998", "fav_comment_user": "Kate F.", "address_l1": "2409 Village Green Pl", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/dcFGJ1I4lRXmruSA4-CPzw/90s.jpg", "name": "Mobil Super Pantry", "price_rating": "", "url": "http://www.yelp.com/biz/mobil-super-pantry-champaign-3", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/_cu7K1DE_brwAZzm7qzSSA/30s.jpg", "fav_comment_content": "Clean bathrooms, gas, snacks, and a Dairy Queen. \u00a0All makes for a good stop.", "phone": "(217) 356-1846", "fav_comment_user": "Nicole S.", "address_l1": "3604 N Mattis Ave", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Promenade Gift Shop At Krannert Center", "price_rating": "", "url": "http://www.yelp.com/biz/promenade-gift-shop-at-krannert-center-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/o4DnCx7assY71oVkb02PWQ/30s.jpg", "fav_comment_content": "Cute gift boutiques are rare in Champaign, which sometimes means necessary trips to Chicago when I need to shop for a friend's birthday. \u00a0When I've got to pick up something on short notice,\u2026", "phone": "(217) 333-8300", "fav_comment_user": "Katherine C.", "address_l1": "500 S Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Bridal"], "rating": "2.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/MSbNCZahURzfcNqow4fmmA/90s.jpg", "name": "David's Bridal", "price_rating": "3", "url": "http://www.yelp.com/biz/davids-bridal-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/CV8QqLjE8RAkDGyJjbY37A/30s.jpg", "fav_comment_content": "Based on the reviews here, I considered not coming to this DB location and going to the next closest one, which is about a 2 hour drive away. But then I thought, what the heck, that's a long\u2026", "phone": "(217) 359-2677", "fav_comment_user": "Sandy W.", "address_l1": "2022 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "1.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "The Village at Colbert Park", "price_rating": "", "url": "http://www.yelp.com/biz/the-village-at-colbert-park-savoy", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/GqTiD_a6BK-9NWySAu264Q/30s.jpg", "fav_comment_content": "I just copied this review (MY review) over from ", "phone": "(217) 353-6800", "fav_comment_user": "Andy F.", "address_l1": "100 Village Park Way", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Women's Health Practice", "price_rating": "", "url": "http://www.yelp.com/biz/womens-health-practice-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "I have to say, I was nervous going into my appointment due to the negative reviews. I cannot say which is more typical, my experience or those of the others commenting here. I can only speak\u2026", "phone": "(217) 356-3736", "fav_comment_user": "Julie L.", "address_l1": "2125 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hair Extensions", "Wigs", "Hair Stylists"], "rating": "5.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/hMmlhdjfCYFApB5Kl-YZzA/90s.jpg", "name": "Fuad's Creative Hair Design", "price_rating": "2", "url": "http://www.yelp.com/biz/fuads-creative-hair-design-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/BvL4W4WFhrUPpjSQgGXSrQ/30s.jpg", "fav_comment_content": "I'm shocked this place hasn't been reviewed yet- it's been around for a while! I went a few times a year over the last four years and always left happy (except the first time when I walked\u2026", "phone": "(217) 356-0400", "fav_comment_user": "Lisa D.", "address_l1": "503 S 1st St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/y3jz6YHJ2xRR6oCwp9A_ww/90s.jpg", "name": "Fiesta Ranchero", "price_rating": "", "url": "http://www.yelp.com/biz/fiesta-ranchero-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/3eHGxsPJVj7JSzCu8h9nww/30s.jpg", "fav_comment_content": "This opened up in place of El Toro. I liked it SOOOOO much more. The tortilla chips were tastier. Salsa was much better. The manager himself brought out this super-awesome hot salsa. None of\u2026", "phone": "(217) 356-6300", "fav_comment_user": "Ravi P.", "address_l1": "1805 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bars", "American (New)"], "rating": "2.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/HQvOB1GMqq-biJE26IgEgg/90s.jpg", "name": "Orange & Brew", "price_rating": "2", "url": "http://www.yelp.com/biz/orange-and-brew-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/rIBD_RXElRUZKbDh4K-noQ/30s.jpg", "fav_comment_content": "I'm giving this place a good review mainly based on service and atmosphere. \u00a0We have been here twice to watch games which is what this place is perfect for. \u00a0It's big enough that you don't\u2026", "phone": "(217) 359-1201", "fav_comment_user": "Rachael C.", "address_l1": "1201 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bars"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "C O Daniel's", "price_rating": "1", "url": "http://www.yelp.com/biz/c-o-daniels-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/0aJTnQoqob8KnLuJ3tWK2g/30s.jpg", "fav_comment_content": "Name should be C.O. Daniel's. \u00a0Not that I would ever be comfortable in a bar like this again...but damn did I have fun here in college! \u00a0Competitor of KAM'S, which is right next door. \u00a0Oh, and\u2026", "phone": "(217) 337-7411", "fav_comment_user": "Matthew R.", "address_l1": "608 E Daniel St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (New)", "Fast Food"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/9HHB0xRqSjcArBeVCgkpDg/90s.jpg", "name": "Dairy Queen", "price_rating": "1", "url": "http://www.yelp.com/biz/dairy-queen-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Gotta love dairy queen \u00a0- glad this one has a drive through!", "phone": "(217) 344-4108", "fav_comment_user": "Mariana J.", "address_l1": "911 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Fast Food"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/RuVGC1G1tkveeCZqkouhgQ/90s.jpg", "name": "Wendys", "price_rating": "1", "url": "http://www.yelp.com/biz/wendys-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/TJw16DYv1zbvIBCXqprLuA/30s.jpg", "fav_comment_content": "Wendy's is a great place to a cheap meal. \u00a0it's greasy and delicious and mildly addicting like most fast food is. \u00a0 \u00a0the service was fast and efficient and the servers were friendly.", "phone": "(217) 359-4350", "fav_comment_user": "Drake M.", "address_l1": "2033 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Department Stores", "Men's Clothing", "Women's Clothing"], "rating": "2.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/ZK3IkNRymz5rDIQ5ayHB7A/90s.jpg", "name": "Macy's", "price_rating": "2", "url": "http://www.yelp.com/biz/macys-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/43Q4Adpu-w3dvny-6OCV6A/30s.jpg", "fav_comment_content": "Macy's stock varies greatly by region -- they cater to the local demographic. \u00a0 So think about the local demographic before going to this location, and you'll get what you expect. The Macy's\u2026", "phone": "(217) 363-5600", "fav_comment_user": "Kali M.", "address_l1": "2000 North Neil Street", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Culver's", "price_rating": "", "url": "http://www.yelp.com/biz/culvers-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "I go to Culver's once in a while but not too often. \u00a0They usually have good soups. \u00a0Today I went through the drive through and ordered George's Chili (although I don't know who George is) and\u2026", "phone": "(217) 352-1699", "fav_comment_user": "Lisa B.", "address_l1": "2302 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "C-U Taxi", "price_rating": "", "url": "http://www.yelp.com/biz/c-u-taxi-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/c-lGov1muAFyEqZcWgj9Ig/30s.jpg", "fav_comment_content": "I went to the Savoy 16 theater last night with a bunch of friends, and our movie was scheduled to end after the buses stop running. \u00a0So, I gave C-U Taxi a call while we were walking into the\u2026", "phone": "(217) 359-8634", "fav_comment_user": "Forrest I.", "address_l1": "Champaign, IL 61820", "address_l2": ""},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Tatman's Collision Repair", "price_rating": "", "url": "http://www.yelp.com/biz/tatmans-collision-repair-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/N_XY1YSB5m5TkbUit42oRg/30s.jpg", "fav_comment_content": "Took my car here for a rather minor repair. Neighbor backed into my bumber causing some paint chipping. They replaced the entire bumper with a reconditioned bumper. \u00a0 When I picked it up after\u2026", "phone": "(217) 328-0991", "fav_comment_user": "Cameron R.", "address_l1": "1101 N Country Fair Dr", "address_l2": "Champaign, IL 61821"},
{"category": ["Sports Wear"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/JFV1rCYqOERnFRudok2hTw/90s.jpg", "name": "Gameday Spirit", "price_rating": "2", "url": "http://www.yelp.com/biz/gameday-spirit-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Can't go wrong with their buy one, get one free t-shirt section! Always a lot to choose from and a great atmosphere in the heart of campus.", "phone": "(217) 328-7722", "fav_comment_user": "Nicole H.", "address_l1": "519 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Fast Food"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/tAf98zwKkRuyLuoj3P9Zqw/90s.jpg", "name": "Chick-fil-A", "price_rating": "1", "url": "http://www.yelp.com/biz/chick-fil-a-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/btwkM32GfKOnZCSTHRvLOw/30s.jpg", "fav_comment_content": "Good quality food and great service.", "phone": "(217) 328-0032", "fav_comment_user": "Les P.", "address_l1": "1401 W Green St", "address_l2": "Urbana, IL 61801"},
{"category": ["Hotels"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/hm2gLNmNTyomZWtPnbvR4g/90s.jpg", "name": "Ramada Champaign Area/Urbana", "price_rating": "2", "url": "http://www.yelp.com/biz/ramada-champaign-area-urbana-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/yPQtvm0CeamnI309uNzeWQ/30s.jpg", "fav_comment_content": "Nice rooms, and very friendly staff.", "phone": "(800) 252-1709", "fav_comment_user": "Jimmy C.", "address_l1": "902 W. Killarney St.", "address_l2": "Urbana, IL 61801"},
{"category": ["Hair Salons", "Skin Care", "Nail Salons"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/9-OYgZIsqHCImARFQr8tgQ/90s.jpg", "name": "Studio 9 Hair Design", "price_rating": "2", "url": "http://www.yelp.com/biz/studio-9-hair-design-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/tXVCSISKBNHSFmL5Y1LAnQ/30s.jpg", "fav_comment_content": "I have been going here for about 2 years now and I love it! I go to judy. She does great color and a cut. Everyone is very sweet and professional. Prices are also reasonable.", "phone": "(217) 351-9198", "fav_comment_user": "Lauren H.", "address_l1": "701 Devonshire Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "1.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/4gnbLvKCOhJGnvZ3-Qz8Dw/90s.jpg", "name": "Suburban Express", "price_rating": "", "url": "http://www.yelp.com/biz/suburban-express-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/j_Pqpp01BAxfm79iR2rZXA/30s.jpg", "fav_comment_content": "I first rode Suburban a little over 10 years ago. Back then, tickets were pricier, and you couldn't do this fancy online ordering stuff. I rode a few more times, especially when they started\u2026", "phone": "(217) 344-5500", "fav_comment_user": "Chris S.", "address_l1": "714 S 6th St", "address_l2": "Champaign, IL 61820"},
{"category": ["Chicken Wings"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/dL5kvcktx3S9H6QN034ZPg/90s.jpg", "name": "Wingstop", "price_rating": "2", "url": "http://www.yelp.com/biz/wingstop-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/eJ7SLIWYAaL4UJU5BxdEfg/30s.jpg", "fav_comment_content": "My favorite wing place finally came back to CU! \u00a0I got hooked on these guys when they were in urbana, when they left i had to go to Decatur for these wings, now i'm very pleased to see they\u2026", "phone": "(217) 690-9464", "fav_comment_user": "Eric B.", "address_l1": "512 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hair Stylists", "Men's Hair Salons"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/k4ydUawlt6tlKu68n-V3xw/90s.jpg", "name": "Supercuts", "price_rating": "1", "url": "http://www.yelp.com/biz/supercuts-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/y9ujvuw2bzS65WYj3c795A/30s.jpg", "fav_comment_content": "I want to say this is a good, cheap place to get a haircut because everyone is very nice and friendly here. But this is easily one of the worst haircuts I have ever gotten.", "phone": "(217) 356-6500", "fav_comment_user": "Ron I.", "address_l1": "918 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": ["Bridal"], "rating": "2.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/RLVEd1K2PCfRE07Fx2UdRA/90s.jpg", "name": "Bridals by Ducky's", "price_rating": "1", "url": "http://www.yelp.com/biz/bridals-by-duckys-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wyfsyMwmy58MJJbi_9NB2A/30s.jpg", "fav_comment_content": "I bought my wedding gown from Ducky's, and I just want to thank all of them for helping me have such a wonderful day! \u00a0The sales associate who helped me was extremely friendly and\u2026", "phone": "(217) 356-5822", "fav_comment_user": "Amanda W.", "address_l1": "134 E University Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Shoe Stores"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/1zfD9KTngaVTC_27tQhdNA/90s.jpg", "name": "Mosser's Shoes", "price_rating": "4", "url": "http://www.yelp.com/biz/mossers-shoes-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/2nTWY98fEGZvXTLCZ5DLFg/30s.jpg", "fav_comment_content": "Very nice store. \u00a0A little pricey, but had great selection of quality shoes--many hard to find stuff, too. \u00a0Very helpful staff. \u00a0I felt bad for them because they are a stand-alone shop, so you\u2026", "phone": "(217) 351-1022", "fav_comment_user": "Sarah E.", "address_l1": "6 Convenience Center Rd", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Daily Illini", "price_rating": "", "url": "http://www.yelp.com/biz/daily-illini-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/AxDmrsYIifsdkpJxN_h4cQ/30s.jpg", "fav_comment_content": "If you are on campus, it is a great paper to learn about the happening. Sure,there are articles that could be written slightly better, use some fact-checking, or be less opinionated, but\u2026", "phone": "(217) 333-3730", "fav_comment_user": "Mark B.", "address_l1": "512 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "ATLAS Cab", "price_rating": "", "url": "http://www.yelp.com/biz/atlas-cab-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/c_y1KZT8djN2CXvzBqcN4w/30s.jpg", "fav_comment_content": "The driver was very kind and had a calming influence on an otherwise stressful morning. They do good business. $12 airport pickup/dropoff.", "phone": "(217) 419-1333", "fav_comment_user": "Robin D.", "address_l1": "1319 Frederick St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "English Building", "price_rating": "", "url": "http://www.yelp.com/biz/english-building-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/9mjHIvAOD0ALZ98_LZKvPw/30s.jpg", "fav_comment_content": "As Jerry V. has written about the English Building, \"some rooms on the third floor are quite oddly positioned.\" A lot of people who work in the building are oddly positioned as well, but what\u2026", "phone": "", "fav_comment_user": "Meta S.", "address_l1": "608 S Wright St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "News-Gazette", "price_rating": "", "url": "http://www.yelp.com/biz/news-gazette-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/mR_mxH9FYyFRx9D7i53g-w/30s.jpg", "fav_comment_content": "A fine local paper. It's been a while since I've read the print edition, but online keeps me up to date on plenty of stuff around town. Their mobile site works very well, too.", "phone": "(217) 351-5252", "fav_comment_user": "Barack O.", "address_l1": "15 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": ["Optometrists", "Eyewear & Opticians"], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/noM31F7_8a4m-KviB0xwcg/90s.jpg", "name": "Jones Optical Co", "price_rating": "2", "url": "http://www.yelp.com/biz/jones-optical-co-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HS3p_nPftj2YsjthhuF7XQ/30s.jpg", "fav_comment_content": "Dr. Burgwald was able to find a contact prescription for my very bad eyes. \u00a0I am very grateful for that.", "phone": "(217) 359-2390", "fav_comment_user": "Lisa B.", "address_l1": "1711 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/s0ijDqUz757iAMqqAYPmDw/90s.jpg", "name": "Supercuts", "price_rating": "", "url": "http://www.yelp.com/biz/supercuts-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LhP_qTynDcovb3aajSeOzA/30s.jpg", "fav_comment_content": "I have come here on multiple occasions since moving to Champaign to get my boys' hair cut. \u00a0Each time they have gotten haircuts, the girls did a great job and were very friendly. \u00a0My husband\u2026", "phone": "(217) 352-9106", "fav_comment_user": "Jamie L.", "address_l1": "1807 W Kirby Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/vjH_CikJ--z9Vb7QN3dZfw/90s.jpg", "name": "BoRics Hair Care", "price_rating": "", "url": "http://www.yelp.com/biz/borics-hair-care-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/QjDeGudhNPDyW9h60GPeRg/30s.jpg", "fav_comment_content": "This is the best saloon in the vicinity where I live. I usually ask for kelli for my haircuts but they are all nice otherwise! One more point to note is that, if you sign up for their monthly\u2026", "phone": "(217) 367-1426", "fav_comment_user": "Rakesh K.", "address_l1": "114 N Vine St Ste P", "address_l2": "Urbana, IL 61802"},
{"category": ["Hotels"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Quality Inn of Champaign", "price_rating": "3", "url": "http://www.yelp.com/biz/quality-inn-of-champaign-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/E9FmgA-eCT-5XdYEGm78Bg/30s.jpg", "fav_comment_content": "For as many hotels that are in Champaign it was difficult for us to find a room on a Friday night. Granted there was the Science Olympiad State Finals going on it proved to be a costly\u2026", "phone": "(217) 352-4055", "fav_comment_user": "Lydia Z.", "address_l1": "305 W Marketview Dr", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/UWUvETcXqCVufJX995cZTA/90s.jpg", "name": "Orange Taxi", "price_rating": "", "url": "http://www.yelp.com/biz/orange-taxi-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/o4DnCx7assY71oVkb02PWQ/30s.jpg", "fav_comment_content": "Last summer, my date made a reservation to have someone from Orange Taxi pick us up for a wedding. Although it arrived a few minutes late, we still managed to make it to the wedding without an\u2026", "phone": "(217) 363-1500", "fav_comment_user": "Katherine C.", "address_l1": "809 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "2.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/OU0A7wS5Z-DOUeGbfCpA0Q/90s.jpg", "name": "Super Taco", "price_rating": "1", "url": "http://www.yelp.com/biz/super-taco-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/VwUQIE3JCU0uJ3kMaj_8Cg/30s.jpg", "fav_comment_content": "This was a surprise. A taqueria with the look and feel of a McDonald's. The place is very clean and service quick. The menus are in both English and Spanish, so no worries there, but some of\u2026", "phone": "(217) 355-8226", "fav_comment_user": "Michael K.", "address_l1": "501 W Town Center Blvd", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/y4NSzhtIB3SbKnVuLQ-C2w/90s.jpg", "name": "Panda Express", "price_rating": "", "url": "http://www.yelp.com/biz/panda-express-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/3k9fgyIRjkfPxycm4VavsA/30s.jpg", "fav_comment_content": "Solid, delivers everytime. I recommend the orange chicken. Its great while you get your holiday shopping done to visit Asia.", "phone": "(217) 355-0774", "fav_comment_user": "Jason M.", "address_l1": "2521 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Hotels"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/vhrbpbpeTwjnEd2KHpVpag/90s.jpg", "name": "Baymont Inn And Suites Champaign", "price_rating": "2", "url": "http://www.yelp.com/biz/baymont-inn-and-suites-champaign-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/8ixtUkS5gGmALnatNuasTw/30s.jpg", "fav_comment_content": "I spent two nights here, and honestly, my only complaints were directly related to how I had booked my reservation. \u00a0I had planned to only spend one night, which I booked in August, then added\u2026", "phone": "(800) 337-0400", "fav_comment_user": "Elizabeth E.", "address_l1": "302 West Anthony Drive", "address_l2": "Champaign, IL 61822"},
{"category": ["Children's Clothing"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "All Things Kids", "price_rating": "2", "url": "http://www.yelp.com/biz/all-things-kids-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/43Q4Adpu-w3dvny-6OCV6A/30s.jpg", "fav_comment_content": "I'm surprised to read that others thought things were overpriced for being used, but maybe I've just been ruined by LA pricing scales! \u00a0Most of the baby clothes seemed to be in the $1-3 range,\u2026", "phone": "(217) 359-5300", "fav_comment_user": "Kali M.", "address_l1": "2710 N Mattis Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Juice Bars & Smoothies"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Smoothie King", "price_rating": "2", "url": "http://www.yelp.com/biz/smoothie-king-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "I personally love smoothie king. I always get either the slim-n-trim with chocolate or the angel food... with diet down. So there are less calories and sugar than in a regular one. AND they\u2026", "phone": "(217) 337-5555", "fav_comment_user": "Ashley B.", "address_l1": "616 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/U9GndG7qImWSxvYwSvefIw/90s.jpg", "name": "La Quinta Inn Champaign", "price_rating": "2", "url": "http://www.yelp.com/biz/la-quinta-inn-champaign-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Clean as a whistle. Good beds. Good shower. Carpet seemed very new and clean. Breakfast was good. Nothin fancy. Coffee was very good. Friendly people at the desk. Good price. I will be back!!!", "phone": "(217) 356-4000", "fav_comment_user": "jim s.", "address_l1": "1900 Center Dr", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Hall Guy C Atty", "price_rating": "", "url": "http://www.yelp.com/biz/hall-guy-c-atty-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "Guy was our attorney when we sold our house - it was the first time we were on the selling side of the table, and he took good care of us. \u00a0There were unexpected requests at the closing which\u2026", "phone": "(217) 356-7233", "fav_comment_user": "Ellen M.", "address_l1": "215 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Property Management People Inc.", "price_rating": "", "url": "http://www.yelp.com/biz/property-management-people-inc-champaign-2", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/IBvhS2B_WOrx45z104wddQ/30s.jpg", "fav_comment_content": "I am an owner and we use the Property Management People to manage our property. \u00a0We have had a very good experience with them. \u00a0We previously had a different prop manager and they did NOT do\u2026", "phone": "(217) 355-6000", "fav_comment_user": "stacie M.", "address_l1": "", "address_l2": ""},
{"category": ["Fast Food"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Niro's Gyros", "price_rating": "1", "url": "http://www.yelp.com/biz/niros-gyros-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/cXX5DIYGb0Q8TacX21KIpQ/30s.jpg", "fav_comment_content": "New location, more space, quick service - fresh, salty, well sauced gyros \u00a0You will need to drink a gallon of water after but it hits the spot.", "phone": "", "fav_comment_user": "Jessica Y.", "address_l1": "905 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "ABC Heating & \u00a0Air Conditioning Services", "price_rating": "", "url": "http://www.yelp.com/biz/abc-heating-and-air-conditioning-services-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Good, Fast, Cheap (Pick two) \u00a0I'd say good and fast is how I'd describe recent \u00a0$8,600 furnace and AC install. \u00a0Amana brand is quality, and this is the second time I've had ABC do an install\u2026", "phone": "(217) 352-5400", "fav_comment_user": "Jeffrey E.", "address_l1": "1528 Windsor Rd", "address_l2": "Champaign, IL 61826"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Reynolds Towing Service Inc", "price_rating": "", "url": "http://www.yelp.com/biz/reynolds-towing-service-inc-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/PsHyuG6Ividy3uMwVeSWZg/30s.jpg", "fav_comment_content": "Had a great experience, all things considered. Timely, organized, and polite. After all the reviews here and on google seems that if you call them you, and I enjoy the service. If they tow\u2026", "phone": "(217) 337-0913", "fav_comment_user": "Justin K.", "address_l1": "1417 W Kenyon Rd", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Illini Pest Control Inc", "price_rating": "", "url": "http://www.yelp.com/biz/illini-pest-control-inc-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/T63tkM7YmLFawcqe-W8SjA/30s.jpg", "fav_comment_content": "My heroes. \u00a0The pest control guy showed up right on time only 2 days after I reported my problem. \u00a0I had a wasp's nest outside, and I had the sense that had it been in a more dangerous place\u2026", "phone": "(217) 356-1317", "fav_comment_user": "Sarah L.", "address_l1": "1430 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/bv2478K-jWxP8i3LhYahIQ/90s.jpg", "name": "Collision Revision", "price_rating": "", "url": "http://www.yelp.com/biz/collision-revision-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/HX3L1QybX1X-OsIludXoGQ/30s.jpg", "fav_comment_content": "I came here to fix my bumper in spite of being nervous because of the other review on here. \u00a0not trying to disrespect anyone, but my experience was great! \u00a0Rob the manager came out and looked\u2026", "phone": "(217) 359-5886", "fav_comment_user": "Benjamin U.", "address_l1": "1110 W Bloomington Rd", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Legends Golf Course", "price_rating": "", "url": "http://www.yelp.com/biz/legends-golf-course-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/N_XY1YSB5m5TkbUit42oRg/30s.jpg", "fav_comment_content": "I'm definitely what you would consider an occasional golfer, and do so for fun, I'm not great but have the occasional par. \u00a0Just found this course a couple weeks ago and it's been lots of fun.\u2026", "phone": "(217) 863-2145", "fav_comment_user": "Cameron R.", "address_l1": "4551 Nicklaus Dr", "address_l2": "Champaign, IL 61822"},
{"category": ["Coffee & Tea"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Espresso Royale", "price_rating": "2", "url": "http://www.yelp.com/biz/espresso-royale-champaign-5", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "by default, i went to espresso since it is so close to my school building. \u00a0the drinks in general were too strong for me in the beginning but it grew on me. \u00a0my favorite drink to order is the\u2026", "phone": "(217) 351-0928", "fav_comment_user": "Nancy H.", "address_l1": "1411 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "2.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/-huqp0GIS_v6s2lX1mAVdw/90s.jpg", "name": "Lincoln Square Shopping Center", "price_rating": "", "url": "http://www.yelp.com/biz/lincoln-square-shopping-center-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/7dnK4G3lDZAm3tMlp1RmIQ/30s.jpg", "fav_comment_content": "Since I last wrote, a few new stores have come in and the Transitions used clothing shop has expanded. It also seems a bit more lively, but perhaps it was just because I was there during the\u2026", "phone": "(217) 367-0333", "fav_comment_user": "Rachel S.", "address_l1": "300 S Broadway Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/zgRaEQ0cuNNrGAZZ3kNPlg/90s.jpg", "name": "Gamestop Prospect Commons", "price_rating": "", "url": "http://www.yelp.com/biz/gamestop-prospect-commons-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/wjHrJtXbpCc329TyreBwbA/30s.jpg", "fav_comment_content": "I just had to review this location, particularly in light of there only being one other review here, and a bad one at that. I've been shopping at this location for three years, and the service\u2026", "phone": "(217) 355-0939", "fav_comment_user": "Lisa C.", "address_l1": "2517 N Prospect Ave", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Maligaya's Store Inc", "price_rating": "", "url": "http://www.yelp.com/biz/maligayas-store-inc-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/qUyxifQxvxW-mg2DiOeYUw/30s.jpg", "fav_comment_content": "Look, its the only Filipino store around. It's not great but oh well! UBE ICE CREAM FTW!!!!!!!!!!", "phone": "(217) 352-2606", "fav_comment_user": "DJ J.", "address_l1": "2410 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Hair Salons"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/GGjAoO_lzZjmus825cUVUQ/90s.jpg", "name": "Innu Hair Salon", "price_rating": "2", "url": "http://www.yelp.com/biz/innu-hair-salon-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/LWjEeqJHqfT483T43-Y59g/30s.jpg", "fav_comment_content": "I have been going to Jennifer as long as I've been in grad school (~4 yrs, depending on what kind of mood I'm in when you ask me). Jennifer has always been a consummate professional and\u2026", "phone": "(217) 637-7245", "fav_comment_user": "Sarah H.", "address_l1": "206 N Randolph St", "address_l2": "Champaign, IL 61820"},
{"category": ["Sports Bars", "Barbeque"], "rating": "2.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/B7ZOk3nvnTXxYIc-J7m5RQ/90s.jpg", "name": "Boneyard Bar & Bbq", "price_rating": "2", "url": "http://www.yelp.com/biz/boneyard-bar-and-bbq-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "A good Saturday night bar. \u00a0Smiling service, good beer selection. \u00a0 But if the women's bathroom is any indication of overall cleanliness, I would not go near anything from the kitchen.", "phone": "(217) 239-7625", "fav_comment_user": "lady a.", "address_l1": "25 E Springfield", "address_l2": "Champaign, IL 61820"},
{"category": ["Food"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/OXbohkkr2GAUuGqqYnhAUw/90s.jpg", "name": "Windy City Express", "price_rating": "1", "url": "http://www.yelp.com/biz/windy-city-express-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/O6Z9UYHiY5ZE8v2r-sjlpQ/30s.jpg", "fav_comment_content": "Love the Wings. \u00a0They're delicious.", "phone": "(217) 355-9334", "fav_comment_user": "Chas B.", "address_l1": "1806 W Bradley Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Convenience Stores"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Circle K", "price_rating": "1", "url": "http://www.yelp.com/biz/circle-k-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Stumbled in to get a coffee on the way to work ... they have one of the best coffee setup I have ever seen in a gas station. \u00a0 5 kinds of regular coffee along with decaf, chilled cream, neatly\u2026", "phone": "(217) 344-6109", "fav_comment_user": "bayrox K.", "address_l1": "1501 N Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "AT&T", "price_rating": "", "url": "http://www.yelp.com/biz/at-and-t-savoy", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/mR_mxH9FYyFRx9D7i53g-w/30s.jpg", "fav_comment_content": "Nice helpful store. \u00a0As for AT&T's cell service itself, it's great in Champaign---much better than in Chicago and Manhattan, two places where I've frequently struggled to maintain good\u2026", "phone": "(217) 351-8180", "fav_comment_user": "Barack O.", "address_l1": "1327 Savoy Plaza Ln", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/A6F9l3dtzdpptJl3RKpawg/90s.jpg", "name": "Taco Bell", "price_rating": "", "url": "http://www.yelp.com/biz/taco-bell-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/Ld2YH0amyL0lALXCpyC74A/30s.jpg", "fav_comment_content": "This is one of the nicer Taco Bells that I've ever been to. \u00a0It's dimly lit and doesn't have the dirty/gross feel that I associate with most Taco Bells. \u00a0They also make a nice triple steak\u2026", "phone": "(217) 378-5054", "fav_comment_user": "Luke S.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "3.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/UADp6lMykBIqBw8iZ2ZOiA/90s.jpg", "name": "Hunsinger Enterprises, Inc", "price_rating": "", "url": "http://www.yelp.com/biz/hunsinger-enterprises-inc-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Probably the best on campus. They spray A LOT for bugs, which is awesome. They take care of almost everything right away. It's a family owned business and they do a great job. \u00a0 The only thing\u2026", "phone": "(217) 337-1565", "fav_comment_user": "Heather M.", "address_l1": "2004 N Linview Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Barbeque"], "rating": "3.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Famous Dave's", "price_rating": "2", "url": "http://www.yelp.com/biz/famous-daves-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/T63tkM7YmLFawcqe-W8SjA/30s.jpg", "fav_comment_content": "I think this is my favorite Famous Dave's in the whole world because it is inside a refurbished barn. \u00a0Eating ribs on the second floor of the round barn is awesome! \u00a0You go to this Famous\u2026", "phone": "(217) 403-1166", "fav_comment_user": "Sarah L.", "address_l1": "1900 Round Barn Rd", "address_l2": "Champaign, IL 61821"},
{"category": ["Bakeries", "Grocery", "Florists"], "rating": "2.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "County Market Discount Foods", "price_rating": "2", "url": "http://www.yelp.com/biz/county-market-discount-foods-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M9KrF0R1q9RVu7-fEgB8Og/30s.jpg", "fav_comment_content": "This is a completely serviceable grocery store. It is not a supermarket. Thus, it does not have an extensive beauty/pharmacy section or a shitlload of greeting cards, seasonal decorations, or\u2026", "phone": "(217) 337-0210", "fav_comment_user": "Tim J.", "address_l1": "1819 Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "2.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/St_MJGJb2NkjbHwrYH35Yw/90s.jpg", "name": "Orpheum Children's Science Museum", "price_rating": "", "url": "http://www.yelp.com/biz/orpheum-childrens-science-museum-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/SmGDprL9FY3ONqrTuAZ7TQ/30s.jpg", "fav_comment_content": "Do you have bored children on your hands? The Orpheum can quickly take care of that! \u00a0 It's a hands on children's science museum in downtown Champaign with exhibits and activities appropriate\u2026", "phone": "(217) 352-5895", "fav_comment_user": "Justine B.", "address_l1": "346 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Coffee & Tea"], "rating": "1.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/_PNMnG9CycVmWsyhLQghHg/90s.jpg", "name": "Bevande Coffee", "price_rating": "2", "url": "http://www.yelp.com/biz/bevande-coffee-urbana-4", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/QrIoYS2w_DrYotF7rPvSqw/30s.jpg", "fav_comment_content": "Nice staff and convenient location but too sweet the Chai Latte, and it is with Earl Grey tea.", "phone": "(217) 344-3296", "fav_comment_user": "Nanxi L.", "address_l1": "201 N Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Department Stores"], "rating": "2.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Bergners Department Store", "price_rating": "2", "url": "http://www.yelp.com/biz/bergners-department-store-champaign-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/O0mRl9DHtZNJunGd8L8PtA/30s.jpg", "fav_comment_content": "I shop here most of the time I go to the mall since it is one of the anchor stores. I find at least something to buy there most of the time. It can be very tough to use their big coupons....so\u2026", "phone": "(217) 351-3500", "fav_comment_user": "Zewditu D.", "address_l1": "2000 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Lincoln Place Apartments", "price_rating": "", "url": "http://www.yelp.com/biz/lincoln-place-apartments-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/RpWqMz3DLHliqfITOFyj9A/30s.jpg", "fav_comment_content": "After leaving the dorms (w00t Allen Hall) and moving out into what I then thought was \"real life,\" Lincoln Place seemed like the best choice. \u00a0The prices for 3-bedrooms were decent and hey,\u2026", "phone": "(217) 328-0136", "fav_comment_user": "Alex H.", "address_l1": "904 W Clark St", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Will Tv Channel 12", "price_rating": "", "url": "http://www.yelp.com/biz/will-tv-channel-12-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "The television counterpart to WILL radio. \u00a0It's the PBS station too, so the good quality programming you rely on is right here. \u00a0They show interesting material about the university as part of\u2026", "phone": "(217) 333-1070", "fav_comment_user": "Ellen M.", "address_l1": "300 N Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Green View Garden Center", "price_rating": "", "url": "http://www.yelp.com/biz/green-view-garden-center-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/BZHhTJo1BIdUTqpF0DgQNg/30s.jpg", "fav_comment_content": "This is by far the nicest garden center in Champaign. \u00a0You will find the best quality trees and shrubs which may cost you slightly more than other places...but it's worth it. \u00a0We did a major\u2026", "phone": "(217) 356-2020", "fav_comment_user": "Tammy N.", "address_l1": "2616 N Mattis Ave", "address_l2": "Champaign, IL 61822"},
{"category": ["Bookstores"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Say3 Books", "price_rating": "1", "url": "http://www.yelp.com/biz/say3-books-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/j1VAazqWha9xhwc47rHPJA/30s.jpg", "fav_comment_content": "Super sweet little shop. Cozy atmosphere, with a digging-for-treasure set-up. Books are stacked, packed, and piled around the store by topic. Don't go here if you are on a tight schedule, this\u2026", "phone": "(217) 352-9150", "fav_comment_user": "Laura B.", "address_l1": "900 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Angel Paws Pet Sitting", "price_rating": "", "url": "http://www.yelp.com/biz/angel-paws-pet-sitting-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/W2097es6nEp9aXINZ5L5sg/30s.jpg", "fav_comment_content": "I have used angel paws 4 times in the last three months for my cat, Napoleon. I love it. He loves it too. I wanted to find a place that would have my cat stuck in a cage all day but out\u2026", "phone": "(217) 359-1159", "fav_comment_user": "Emily H.", "address_l1": "1618 W Park Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "RP Lumber", "price_rating": "", "url": "http://www.yelp.com/biz/rp-lumber-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/0MrroqQjAlKmmy_I-loUvg/30s.jpg", "fav_comment_content": "I dropped in here looking for a small piece of sheetrock to repair a larger-than-usual hole in the drywall in my house. I had been to a number of home improvement stores and hardware stores\u2026", "phone": "(217) 351-4851", "fav_comment_user": "Jason C.", "address_l1": "403 N Country Fair Dr", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Tiny Greens", "price_rating": "", "url": "http://www.yelp.com/biz/tiny-greens-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/bHy2W1CJhfCpTV0011JpDA/30s.jpg", "fav_comment_content": "Tiny Greens sells their wonderful organic produce through Wal-Mart, and at some area farmers markets, and probably more places I don't know about yet. \u00a0This is a wonderful company. \u00a0The main\u2026", "phone": "(217) 328-9367", "fav_comment_user": "Erin Y.", "address_l1": "2314 N High Cross Rd", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Thornton's", "price_rating": "", "url": "http://www.yelp.com/biz/thorntons-savoy", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "Love this station. Very easy in and out, has all the basics, cheap fountain drinks, and usually the cheapest gas in the area.", "phone": "(217) 352-0252", "fav_comment_user": "Andy W.", "address_l1": "101 Burwash Ave", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Sourcegear Corp", "price_rating": "", "url": "http://www.yelp.com/biz/sourcegear-corp-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/JtjW7rSTTz3z57Iq6mUWhA/30s.jpg", "fav_comment_content": "This company has great marketing ideas (comic books) and a solid product. \u00a0I got a chance to speak with some of the developers and they are extremely knowledgeable and passionate about their\u2026", "phone": "(217) 356-0105", "fav_comment_user": "Peter W.", "address_l1": "115 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Department Stores"], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/FhRxQTLmpBS7TZ87ElzKkw/90s.jpg", "name": "Gordmans", "price_rating": "2", "url": "http://www.yelp.com/biz/gordmans-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/sgFx-RaLx-l3i4EOAhUkhw/30s.jpg", "fav_comment_content": "Great prices!! Love it! \u00a0You have to sift through a lot of stuff but it is worth the money you save!", "phone": "(217) 403-1434", "fav_comment_user": "Kristina H.", "address_l1": "1901 N Market St", "address_l2": "Champaign, IL 61822"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Savoy Post Office", "price_rating": "", "url": "http://www.yelp.com/biz/savoy-post-office-savoy", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/mR_mxH9FYyFRx9D7i53g-w/30s.jpg", "fav_comment_content": "Something the government gets right! This post office is newer and nicer than all the others in C-U. Employees are friendlier, more competent, and more efficient, too.", "phone": "(217) 355-8298", "fav_comment_user": "Barack O.", "address_l1": "415 N Dunlap Ave", "address_l2": "Savoy, IL 61874"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Urbana Free Library Foundation", "price_rating": "", "url": "http://www.yelp.com/biz/urbana-free-library-foundation-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/64bwZhByk_-bVVpDlOe_FQ/30s.jpg", "fav_comment_content": "The group that scores donations and major gifts for the very cool Urbana Free Library. \u00a0If they call you, don't hang up, just act flattered and offer whatever you can. \u00a0The institution relies\u2026", "phone": "(217) 337-1601", "fav_comment_user": "Ellen M.", "address_l1": "300 S Broadway Ave", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/8JEMBAGxu_BRcCFaHZw-VA/90s.jpg", "name": "Ojc Pixo", "price_rating": "", "url": "http://www.yelp.com/biz/ojc-pixo-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/43r2NEB9BN1DKrwjx3q7Vg/30s.jpg", "fav_comment_content": "OJC Tech is not only the kind of company you want to work for if you are socially conscious and a triple Type-A perfectionist personality, but absolutely one of the most interesting groups of\u2026", "phone": "(217) 344-0444", "fav_comment_user": "Safiya N.", "address_l1": "121 W Goose Alley", "address_l2": "Urbana, IL 61801"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Lighting Center of Springfield Electric", "price_rating": "", "url": "http://www.yelp.com/biz/lighting-center-of-springfield-electric-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/tvcaEp99gIh_CiM6dWspiA/30s.jpg", "fav_comment_content": "Great customer service, detail-oriented, and extensive selection of all kinds of home lighting. Yes, we paid more for under cabinet lighting than if we had bought it at Lowes, but we couldn't\u2026", "phone": "(217) 351-7600", "fav_comment_user": "Katie A.", "address_l1": "901 N Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Next Generation", "price_rating": "", "url": "http://www.yelp.com/biz/next-generation-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/oFCwsGnMoJ7vfdOolT3WEA/30s.jpg", "fav_comment_content": "I can't recommend this pre-school highly enough. My son has been going to Next Gen since he was 6 months old and we have had nothing but positive experiences from a caring staff. \u00a0The focus on\u2026", "phone": "(217) 356-6398", "fav_comment_user": "Heather T.", "address_l1": "1201 Windsor Ct", "address_l2": "Champaign, IL 61821"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Seventh-Day Adventist Church", "price_rating": "", "url": "http://www.yelp.com/biz/seventh-day-adventist-church-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/KUsiU_9iWBYzi2DlJk84MA/30s.jpg", "fav_comment_content": "I am a member of this church and attending it is the high point of my week. We keep a seventh-day Sabbath (sundown Friday to sundown Saturday, as taught in the Scriptures,) Church begins at\u2026", "phone": "(217) 356-1013", "fav_comment_user": "L H.", "address_l1": "308 S Mattis Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Meat Shops"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/qRT2S0lAclFBDwxLpzrDRg/90s.jpg", "name": "Old Time Meat & Deli Shop", "price_rating": "2", "url": "http://www.yelp.com/biz/old-time-meat-and-deli-shop-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/A8kXgp7zg2heETVNDddPMw/30s.jpg", "fav_comment_content": "All top quality meats \u00a0along with Amish chicken (it is delicious and...", "phone": "(217) 351-9123", "fav_comment_user": "Tony S.", "address_l1": "2018 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Skin Care", "Hair Removal"], "rating": "5.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Perfect Arch Salon", "price_rating": "1", "url": "http://www.yelp.com/biz/perfect-arch-salon-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/18k9ItgD7czMPvMxCUxwUQ/30s.jpg", "fav_comment_content": "This is the best place to get waxing and threading in the Champaign area. I went here for a brazilian and felt very comfortable. It was so incredibly painless and quick, I could not believe\u2026", "phone": "(217) 298-0107", "fav_comment_user": "Caitie S.", "address_l1": "313 N Mattis Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Indian"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/KPN9w4GMOSXCQ9L4QP9isw/90s.jpg", "name": "Bombay Indian Grill", "price_rating": "2", "url": "http://www.yelp.com/biz/bombay-indian-grill-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/IcGdC18W69Nlg7WniF_m0w/30s.jpg", "fav_comment_content": "Saag paneer is phenomenal for those interested in vegetarian options.", "phone": "(217) 344-3380", "fav_comment_user": "Janish D.", "address_l1": "401 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Indian", "Vegetarian"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/dlxwSYdktrOeDXRNN34rGA/90s.jpg", "name": "Sitara", "price_rating": "2", "url": "http://www.yelp.com/biz/sitara-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/-8bEstrlBOy4apbDSorcEQ/30s.jpg", "fav_comment_content": "I was overjoyed that an Indian restaurant opening up in downtown Urbana! And I was right to be excited - this place is wonderful. The service is quick and the food was great. I was dining in\u2026", "phone": "(217) 344-6440", "fav_comment_user": "Kara B.", "address_l1": "114 S Race St", "address_l2": "Urbana, IL 61801"},
{"category": ["Vegetarian", "Cafes"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/JnJRe4klxBMpGxEXSlUPkg/90s.jpg", "name": "The Red Herring", "price_rating": "1", "url": "http://www.yelp.com/biz/the-red-herring-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/bYiZbDqSnaG3aNDx1wlloQ/30s.jpg", "fav_comment_content": "Fantastic bbq seitan sandwich.", "phone": "(217) 367-2340", "fav_comment_user": "Marge S.", "address_l1": "1209 W Oregon St", "address_l2": "Urbana, IL 61801"},
{"category": ["Pubs"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/jnZjkOD95UU-ZW-q4dMNsQ/90s.jpg", "name": "Blind Pig Brewery", "price_rating": "2", "url": "http://www.yelp.com/biz/blind-pig-brewery-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/VVrqInKN2-DWxwKs4Q0XuA/30s.jpg", "fav_comment_content": "The Piglet is a nice intimate bar with a great bar and some amazing...", "phone": "(217) 398-1532", "fav_comment_user": "Nate G.", "address_l1": "120 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Farmers Market"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/CyGzTyzLvcoiAbvQVxo3Tw/90s.jpg", "name": "Market at the Square", "price_rating": "2", "url": "http://www.yelp.com/biz/market-at-the-square-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wU5ZrRBMK3SZCQd7sRrBlw/30s.jpg", "fav_comment_content": "And let's not forget the kettle corn.", "phone": "(217) 384-2319", "fav_comment_user": "N A.", "address_l1": "300 S Broadway Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Barbeque"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Lub3oVWvmLCjsnKDwCMgzg/90s.jpg", "name": "Lil Porgy's Bar-B-Que", "price_rating": "1", "url": "http://www.yelp.com/biz/lil-porgys-bar-b-que-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/QfBl7rFkeXPx8nFBLpEgSA/30s.jpg", "fav_comment_content": "I love their extra hot sauce on the side.", "phone": "(217) 367-1018", "fav_comment_user": "Sherry Y.", "address_l1": "101 W University Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Coffee & Tea"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/tjGl9ZIyosioFz85SCAkrA/90s.jpg", "name": "Caffe Paradiso", "price_rating": "2", "url": "http://www.yelp.com/biz/caffe-paradiso-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/4UbnQYBNnInkVt9pbLYqtA/30s.jpg", "fav_comment_content": "Intelligentsia coffee, Mirabelle pastries and breads.", "phone": "(217) 384-6066", "fav_comment_user": "Michael R.", "address_l1": "801 S Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Coffee & Tea"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/geIZtHJKUcU35sDAUSe5BA/90s.jpg", "name": "Espresso Royale", "price_rating": "2", "url": "http://www.yelp.com/biz/espresso-royale-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/vrnkDvfWVDdzBW7NoSDezw/30s.jpg", "fav_comment_content": "pumpkin spice / pumpkin pie latte - this is the stuff.", "phone": "(217) 337-6160", "fav_comment_user": "Sarah A.", "address_l1": "1117 W Oregon St", "address_l2": "Urbana, IL 61801"},
{"category": ["Irish"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/L-mSvnQxPl66g0D901666w/90s.jpg", "name": "Dublin O'Neil's", "price_rating": "2", "url": "http://www.yelp.com/biz/dublin-o-neils-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/xmUhYo2yMl4Z0VqQH6GLVg/30s.jpg", "fav_comment_content": "The curry sweet potato chips are wonderful.", "phone": "(217) 531-1152", "fav_comment_user": "Beth W.", "address_l1": "301 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/GTC3fS1cg4IqMPfNeTwgRA/90s.jpg", "name": "Huaraches Moroleon", "price_rating": "1", "url": "http://www.yelp.com/biz/huaraches-moroleon-urbana", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/sEmSMx2scCQXqfeM6riHwg/30s.jpg", "fav_comment_content": "The carnitas huarache was fantastic.", "phone": "(217) 344-6772", "fav_comment_user": "Jenn L.", "address_l1": "805 Philo Rd", "address_l2": "Urbana, IL 61801"},
{"category": ["Hotels"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/0R1WujQFCSPUr7tdhHf8zQ/90s.jpg", "name": "Homewood Suites By Hilton Champaign-Urbana", "price_rating": "2", "url": "http://www.yelp.com/biz/homewood-suites-by-hilton-champaign-urbana-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/vLDYh5tb6cQPHtw8ibVmFg/30s.jpg", "fav_comment_content": "Also, M-Th they have a free dinner--including, get ready for it, free...", "phone": "(217) 352-9960", "fav_comment_user": "Kimberly N.", "address_l1": "1417 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Bakeries", "American (New)", "Sandwiches"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/pDibYIZhKAp7UNL-PIvQ5Q/90s.jpg", "name": "The Bread Company", "price_rating": "2", "url": "http://www.yelp.com/biz/the-bread-company-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/wyfsyMwmy58MJJbi_9NB2A/30s.jpg", "fav_comment_content": "The specialty, of course, is the fondue, which is magnifique.", "phone": "(217) 383-1007", "fav_comment_user": "Amanda W.", "address_l1": "706 S Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Pubs"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/FRHbcagDM6rbdltlMOVCxA/90s.jpg", "name": "Mike N Molly's", "price_rating": "1", "url": "http://www.yelp.com/biz/mike-n-mollys-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "The beer garden is hands-down the best.", "phone": "(217) 355-1236", "fav_comment_user": "Ashley B.", "address_l1": "105 N Market St", "address_l2": "Champaign, IL 61820"},
{"category": ["Barbeque", "American (Traditional)"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/qiYaYMMP8J-VpjlHhZCHmA/90s.jpg", "name": "Hickory River Smokehouse", "price_rating": "1", "url": "http://www.yelp.com/biz/hickory-river-smokehouse-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/EgWO2pTUIGh2T_vJeIdmaA/30s.jpg", "fav_comment_content": "Hickory River works magic with a beef brisket.", "phone": "(217) 337-1656", "fav_comment_user": "Ed T.", "address_l1": "1706 N Cunningham Ave", "address_l2": "Urbana, IL 61802"},
{"category": ["American (New)", "Breakfast & Brunch", "Bakeries"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/qPhRg1dBFl_rsLjId2L1fQ/90s.jpg", "name": "Silvercreek", "price_rating": "2", "url": "http://www.yelp.com/biz/silvercreek-urbana", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/oDMxi33M9_iZVrVuHWiOng/30s.jpg", "fav_comment_content": "I would suggest the lobster Mac-n-cheese though.", "phone": "(217) 328-3402", "fav_comment_user": "Mike B.", "address_l1": "402 N Race St", "address_l2": "Urbana, IL 61801"},
{"category": ["Sandwiches"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/kdVy5cPr4S9fM_Qo6dDx4Q/90s.jpg", "name": "Potbelly Sandwich Shop", "price_rating": "1", "url": "http://www.yelp.com/biz/potbelly-sandwich-shop-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/iXO_sLyaLVoo1gWe1p6Pfg/30s.jpg", "fav_comment_content": "...great toppings, in particular the hot peppers and their mustard set...", "phone": "(217) 344-5601", "fav_comment_user": "Alice M.", "address_l1": "501 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Street Vendors"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/1CaFps1Fu5mfhV57DSNYNg/90s.jpg", "name": "Cracked the Egg Came First", "price_rating": "1", "url": "http://www.yelp.com/biz/cracked-the-egg-came-first-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/PmqaknP-mPR_FccHcd6WSQ/30s.jpg", "fav_comment_content": "Hands down the best food truck at University of Illinois.", "phone": "(567) 303-3447", "fav_comment_user": "Matthew M.", "address_l1": "Urbana, IL", "address_l2": ""},
{"category": ["Pizza", "Italian", "Cafes"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/elyl0u6LSYzl7xW3-VE3CQ/90s.jpg", "name": "Mia Za's Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/mia-zas-cafe-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/R-tu-j-8Qu5Vw747VEqlGA/30s.jpg", "fav_comment_content": "Love the ambiance here too - especially the upstairs.", "phone": "(217) 352-2697", "fav_comment_user": "Shelly A.", "address_l1": "629 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "5.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ye9Ogx0oJJmtCmUXD-fvqw/90s.jpg", "name": "Thomas M. Siebel Center for Computer Science", "price_rating": "", "url": "http://www.yelp.com/biz/thomas-m-siebel-center-for-computer-science-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/ZSya1NSAYHE4F81B3seZtQ/30s.jpg", "fav_comment_content": "It's a great place to meet some of the brightest dudes on campus.", "phone": "(217) 244-7949", "fav_comment_user": "Jay C.", "address_l1": "201 N. Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Burgers"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ENXIfuMY4_Pxzt8gQ_cyUQ/90s.jpg", "name": "Meatheads", "price_rating": "2", "url": "http://www.yelp.com/biz/meatheads-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/docgkJZLoAbTpYhz5xSwNA/30s.jpg", "fav_comment_content": "I always get a 1/2 lbs burger with cajun fries.", "phone": "(217) 352-5555", "fav_comment_user": "Ye joo P.", "address_l1": "1305 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Sandwiches", "Food Delivery Services", "Delis"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/assets/2/www/img/5f69f303f17c/default_avatars/business_medium_square.png", "name": "Jimmy John's", "price_rating": "1", "url": "http://www.yelp.com/biz/jimmy-johns-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/Aw8QXfmTm352BEgSCj4uKg/30s.jpg", "fav_comment_content": "What makes these subs so good is the bread.", "phone": "(217) 328-3100", "fav_comment_user": "Matthew F.", "address_l1": "807 S Lincoln Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Greek"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/Bmr18qJ2XIF3Nd0Hv7sJcg/90s.jpg", "name": "Niro's Gyros", "price_rating": "1", "url": "http://www.yelp.com/biz/niros-gyros-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/UkBRQU7BPCQssMljnRuCgA/30s.jpg", "fav_comment_content": "Best Gyro platter I've had in a long time.", "phone": "(217) 355-6760", "fav_comment_user": "Amy D.", "address_l1": "2001 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Korean"], "rating": "3.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/TPRpk6uZ6ViKyy82Fc0Tog/90s.jpg", "name": "B Won", "price_rating": "2", "url": "http://www.yelp.com/biz/b-won-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/P7ArNBDs3XWDduHYCWs0LA/30s.jpg", "fav_comment_content": "They made my dolsot bi bim bap correctly.", "phone": "(217) 352-2966", "fav_comment_user": "Helen H.", "address_l1": "2006 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "3.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/-mkFB2XmCJ-hNQtNnaI62g/90s.jpg", "name": "El Toro", "price_rating": "1", "url": "http://www.yelp.com/biz/el-toro-champaign-2", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/6XpZ3fmth5pcEXAjbHk4sw/30s.jpg", "fav_comment_content": "Next time, I'm trying that Fajita Quesadilla, that Heather T.", "phone": "(217) 378-7807", "fav_comment_user": "Kelly R.", "address_l1": "723 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Kitchen & Bath"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/57bX-hU5pSEBtpgM-mFjFA/90s.jpg", "name": "ArtMart", "price_rating": "2", "url": "http://www.yelp.com/biz/artmart-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/3It37lAWY1RmwSRlQs9GGA/30s.jpg", "fav_comment_content": "When venturing around Lincoln Square Mall, we came upon this neat...", "phone": "(217) 344-7979", "fav_comment_user": "Deanna C.", "address_l1": "127 Lincoln Sq", "address_l2": "Urbana, IL 61801"},
{"category": ["Bars"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/er2s1npHvplFmvWNd5Eveg/90s.jpg", "name": "Quality", "price_rating": "1", "url": "http://www.yelp.com/biz/quality-champaign-2", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/y7SmbIxVZGcXLEQe7e2JKg/30s.jpg", "fav_comment_content": "The downtown area is becoming quite a beer hub.", "phone": "(217) 359-3425", "fav_comment_user": "Paul D.", "address_l1": "110 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Barbers", "Hair Salons"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/6_CqbC-1b81w5k-HKw81Qg/90s.jpg", "name": "Yuko Hair Salon", "price_rating": "2", "url": "http://www.yelp.com/biz/yuko-hair-salon-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/M0yVnIKd_XyGT-V5bQSn9w/30s.jpg", "fav_comment_content": "My previous experiences with hair-cutting professionals in this area has been quite abysmal; it came to the point where I would avoid cutting my hair until I would go back to California and\u2026", "phone": "(217) 363-1771", "fav_comment_user": "Chris C.", "address_l1": "2911 W Springfield Ave", "address_l2": "Champaign, IL 61821"},
{"category": ["Korean"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/_n7a-jaBwUW5LRyH_lmdPQ/90s.jpg", "name": "A-Ri-Rang", "price_rating": "1", "url": "http://www.yelp.com/biz/a-ri-rang-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/74ZOGcr3tf2l5pgNM1sOfw/30s.jpg", "fav_comment_content": "I had the spicy pork bulgogi and I felt it was pretty good for the price. The serving size was relatively large. However I don't think it is nearly as good as it's competitor Woorijib.\u2026", "phone": "(217) 355-5569", "fav_comment_user": "Shantanu D.", "address_l1": "607 S Wright St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (New)", "Cafes"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/TxJuwdwnNgNr8z4N_mJzVQ/90s.jpg", "name": "Bevier Cafe", "price_rating": "1", "url": "http://www.yelp.com/biz/bevier-cafe-urbana", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/assets/2/www/img/0288f46ccbae/default_avatars/user_30_square.png", "fav_comment_content": "...I love supporting the University of Illinois Food Science students.", "phone": "(217) 333-8469", "fav_comment_user": "Susan C.", "address_l1": "905 S Goodwin Ave", "address_l2": "Urbana, IL 61801"},
{"category": ["Barbers"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/6d7VwrCtCrKB7L7K1a6eQg/90s.jpg", "name": "Andy's Barber Shop", "price_rating": "2", "url": "http://www.yelp.com/biz/andys-barber-shop-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/BPNcuKrrfb71CY9m3WrXyQ/30s.jpg", "fav_comment_content": "Jason is my guy. \u00a0My first time here I told him that my clipper guard was #2, then as I was trying to explain how I wanted the rest of it done, he suggested... \"Then just make the rest look\u2026", "phone": "(217) 355-3668", "fav_comment_user": "Tim B.", "address_l1": "2036 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": [], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/kwTTepE4wgyWZLWsPNvs-A/90s.jpg", "name": "Memorial Stadium", "price_rating": "", "url": "http://www.yelp.com/biz/memorial-stadium-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/yhXUI4tEnLMECOGcoUGBGw/30s.jpg", "fav_comment_content": "This is our fifth year with season tickets. \u00a0We love going to all of the games. \u00a0The staff is always helpful and friendly, the seats are easy to find and the concessions are pretty good too. \u00a0\u2026", "phone": "", "fav_comment_user": "Emily B.", "address_l1": "1402 S 1st St", "address_l2": "Champaign, IL 61820"},
{"category": ["Coffee & Tea"], "rating": "4.5", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/ozK_6zb1F6tLvcfEZkZ-8w/90s.jpg", "name": "Cafe Zojo", "price_rating": "2", "url": "http://www.yelp.com/biz/cafe-zojo-urbana", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/IUs14SidZBm8tAtFNxYFRw/30s.jpg", "fav_comment_content": "I've also taken to buying my Intelligentsia beans from them as a form...", "phone": "(217) 328-9656", "fav_comment_user": "Matt B.", "address_l1": "2740 S Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": ["Street Vendors", "Mexican"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/i45Cj9YdNIO6QA2RRiE2sw/90s.jpg", "name": "Taco Motorizado", "price_rating": "1", "url": "http://www.yelp.com/biz/taco-motorizado-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/qXytN9nfBm3eeIsqhWjqkw/30s.jpg", "fav_comment_content": "I always pass this place on my way home from work. \u00a0I had one chicken taco, mexican style (onions and cilantro). It was good, had a lot of flavor. \u00a0The gentleman packaged the food nicely and\u2026", "phone": "(217) 372-0129", "fav_comment_user": "Alexander B.", "address_l1": "Bradley and Prospect", "address_l2": "Champaign, IL 61820"},
{"category": ["Bookstores"], "rating": "4.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/7xL9O3nIw-9gFGt5XVD_GQ/90s.jpg", "name": "Jane Addams Book Shop", "price_rating": "3", "url": "http://www.yelp.com/biz/jane-addams-book-shop-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/V_77EgGdQRXXGiRT0RBsDA/30s.jpg", "fav_comment_content": "There are three floors full of every kind of book you'd want.", "phone": "(217) 356-2555", "fav_comment_user": "Jon H.", "address_l1": "208 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Chinese"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/4Hr_mAY_V0UgjzXNzu6JxA/90s.jpg", "name": "Rainbow Garden", "price_rating": "1", "url": "http://www.yelp.com/biz/rainbow-garden-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/cheb5Cp7phr6T054kBDx8g/30s.jpg", "fav_comment_content": "We always order the General's Chicken and Barbecued Pork Fried Rice.", "phone": "(217) 398-2670", "fav_comment_user": "Ernie T.", "address_l1": "1402 S Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Creperies", "Sandwiches", "Gelato"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/5mi58CoVKYgQwvAnSJTAow/90s.jpg", "name": "Pekara Bakery and Bistro", "price_rating": "1", "url": "http://www.yelp.com/biz/pekara-bakery-and-bistro-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/_Wa6qaJoelp7uJBWpO-S2Q/30s.jpg", "fav_comment_content": "This place has delicious lunch and baked goods.", "phone": "(217) 359-4500", "fav_comment_user": "Melissa K.", "address_l1": "116 N Neil St", "address_l2": "Champaign, IL 61821"},
{"category": ["Steakhouses", "Barbeque", "American (Traditional)"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/W-fiyWgEFJdp-y1_bXK_yA/90s.jpg", "name": "Texas Roadhouse", "price_rating": "2", "url": "http://www.yelp.com/biz/texas-roadhouse-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/eJ7SLIWYAaL4UJU5BxdEfg/30s.jpg", "fav_comment_content": "Their Ribs, T-bone, Ribeye, prime rib are all top drawer.", "phone": "(217) 355-9901", "fav_comment_user": "Eric B.", "address_l1": "204 N. Country Fair Drive", "address_l2": "Champaign, IL 61821"},
{"category": ["American (New)"], "rating": "3.5", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/eW9q3qD0kOQ0Owx_utxC9A/90s.jpg", "name": "Milo's Restaurant", "price_rating": "2", "url": "http://www.yelp.com/biz/milos-restaurant-urbana-2", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/qHPX9lZaRvZF1aPvBR0qaQ/30s.jpg", "fav_comment_content": "mushroom Duxelle Upside Down Pizza: \u00a0This is just awesome.", "phone": "(217) 344-8946", "fav_comment_user": "Allan C.", "address_l1": "2870 S Philo Rd", "address_l2": "Urbana, IL 61802"},
{"category": [], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/rBzLykqfMWTW6Xk1ineB1Q/90s.jpg", "name": "University of Illinois", "price_rating": "", "url": "http://www.yelp.com/biz/university-of-illinois-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/cBeTGm5xUKWu85u3Dl2Y-A/30s.jpg", "fav_comment_content": "Maybe my review is a little different than the reviews you have read about UIUC. \u00a0You see, I was a student there from 1962 to 1966. \u00a0I graduated when dinosaurs roamed the quadrangle and women\u2026", "phone": "(217) 244-0072", "fav_comment_user": "Richard B.", "address_l1": "605 E Springfield Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["American (New)", "Gluten-Free", "Breakfast & Brunch"], "rating": "3.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/fvu-P1w7dPYvxu7sJ0XKtg/90s.jpg", "name": "Destihl Restaurant & Brew Works", "price_rating": "2", "url": "http://www.yelp.com/biz/destihl-restaurant-and-brew-works-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/I4kkGVrFaTPwiVM-cjuYAw/30s.jpg", "fav_comment_content": "We started with the Beer Battered Asparagus which was delicious.", "phone": "(217) 356-0301", "fav_comment_user": "Andrea T.", "address_l1": "301 N Neil St", "address_l2": "Champaign, IL 61820"},
{"category": ["Pool Halls", "Pizza", "Lounges"], "rating": "4.0", "thumbUrl": "http://s3-media1.ak.yelpcdn.com/bphoto/XDXCdDc1EB3bSHGLN9ZdUA/90s.jpg", "name": "Jupiter's Pizzeria & Billiards", "price_rating": "2", "url": "http://www.yelp.com/biz/jupiters-pizzeria-and-billiards-champaign", "fav_comment_user_face": "http://s3-media3.ak.yelpcdn.com/photo/W8xnw6Uga2vM1GZSwazf0w/30s.jpg", "fav_comment_content": "Some of the best in town, and probably my favorite thin-crust.", "phone": "(217) 398-5988", "fav_comment_user": "Ashley B.", "address_l1": "39 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (New)", "Pubs", "Breakfast & Brunch"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/zvSUVpwDo_-98aAnbODzjg/90s.jpg", "name": "Big Grove Tavern", "price_rating": "2", "url": "http://www.yelp.com/biz/big-grove-tavern-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/HDfGkj9dAC1j5QgL1M53Fg/30s.jpg", "fav_comment_content": "The deviled eggs were awesome and so fun to order one at a time.", "phone": "(217) 239-3505", "fav_comment_user": "Betheny H.", "address_l1": "1 E Main St", "address_l2": "Champaign, IL 61820"},
{"category": ["American (New)", "Italian", "Lounges"], "rating": "4.0", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/IAscPs6NDvEupLarUDGCbg/90s.jpg", "name": "Bacaro", "price_rating": "3", "url": "http://www.yelp.com/biz/bacaro-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/xzriow0KTyXHteIGhQHQ2Q/30s.jpg", "fav_comment_content": "The wine list was excellent and extensive, probably has the best wine...", "phone": "(217) 398-6982", "fav_comment_user": "S. P.", "address_l1": "113 N Walnut St", "address_l2": "Champaign, IL 61820"},
{"category": ["Chinese"], "rating": "4.0", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/ESjIHp2joDD9B86tP2KtXw/90s.jpg", "name": "Lai Lai Wok", "price_rating": "2", "url": "http://www.yelp.com/biz/lai-lai-wok-champaign", "fav_comment_user_face": "http://s3-media4.ak.yelpcdn.com/photo/iG-DWijkYXslg9_wMSUaLw/30s.jpg", "fav_comment_content": "Every time I go back to campus, I always go straight for the Lai Lai.", "phone": "(217) 328-1888", "fav_comment_user": "Joseph G.", "address_l1": "402 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Mexican"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/QCUgopV0FP8fsZGkcJgNjA/90s.jpg", "name": "DOS Reales", "price_rating": "1", "url": "http://www.yelp.com/biz/dos-reales-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/3V3PDLe5NvID2M-C8Arl3g/30s.jpg", "fav_comment_content": "I also highly recommend their sweet tea and mango margaritas.", "phone": "(217) 351-6879", "fav_comment_user": "Amanda D.", "address_l1": "1407 N Prospect Ave", "address_l2": "Champaign, IL 61820"},
{"category": ["Thai"], "rating": "4.5", "thumbUrl": "http://s3-media3.ak.yelpcdn.com/bphoto/5Z_KrsEQsPE0ibKwhYn3ZQ/90s.jpg", "name": "Bangkok Thai and Pho 911", "price_rating": "1", "url": "http://www.yelp.com/biz/bangkok-thai-and-pho-911-champaign", "fav_comment_user_face": "http://s3-media1.ak.yelpcdn.com/photo/QOKOarbjTrNsIPUArtSR_A/30s.jpg", "fav_comment_content": "Their pad thai is great, and it can feed two for around $8.", "phone": "(217) 954-1641", "fav_comment_user": "Aaron O.", "address_l1": "410 E Green St", "address_l2": "Champaign, IL 61820"},
{"category": ["Hotels", "Venues & Event Spaces"], "rating": "4.5", "thumbUrl": "http://s3-media4.ak.yelpcdn.com/bphoto/kae6hZaE656UArMhnVvGtQ/90s.jpg", "name": "I Hotel & Conference Center", "price_rating": "2", "url": "http://www.yelp.com/biz/i-hotel-and-conference-center-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/-CHBkfXSikkaZD70tKDVzQ/30s.jpg", "fav_comment_content": "Definitely recommended for anyone visiting the campus.", "phone": "(217) 819-5000", "fav_comment_user": "Kevin L.", "address_l1": "1900 S 1st St", "address_l2": "Champaign, IL 61820"},
{"category": ["Lounges", "Gastropubs"], "rating": "4.0", "thumbUrl": "http://s3-media2.ak.yelpcdn.com/bphoto/Bbs-ABSWZP_EvOiORwDtgA/90s.jpg", "name": "Boltini Lounge", "price_rating": "2", "url": "http://www.yelp.com/biz/boltini-lounge-champaign", "fav_comment_user_face": "http://s3-media2.ak.yelpcdn.com/photo/KNztTEZtQmvYGURr0TPvSg/30s.jpg", "fav_comment_content": "Chic, chill atmosphere to have some of the best martinis in town.", "phone": "(217) 378-8001", "fav_comment_user": "Jason C.", "address_l1": "211 N Neil St", "address_l2": "Champaign, IL 61820"}]