forked from mwaskom/seaborn-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
taxis.csv
We can't make this file beautiful and searchable because it's too large.
6434 lines (6434 loc) · 849 KB
/
taxis.csv
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
pickup,dropoff,passengers,distance,fare,tip,tolls,total,color,payment,pickup_zone,dropoff_zone,pickup_borough,dropoff_borough
2019-03-23 20:21:09,2019-03-23 20:27:24,1,1.6,7.0,2.15,0.0,12.95,yellow,credit card,Lenox Hill West,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-04 16:11:55,2019-03-04 16:19:00,1,0.79,5.0,0.0,0.0,9.3,yellow,cash,Upper West Side South,Upper West Side South,Manhattan,Manhattan
2019-03-27 17:53:01,2019-03-27 18:00:25,1,1.37,7.5,2.36,0.0,14.16,yellow,credit card,Alphabet City,West Village,Manhattan,Manhattan
2019-03-10 01:23:59,2019-03-10 01:49:51,1,7.7,27.0,6.15,0.0,36.95,yellow,credit card,Hudson Sq,Yorkville West,Manhattan,Manhattan
2019-03-30 13:27:42,2019-03-30 13:37:14,3,2.16,9.0,1.1,0.0,13.4,yellow,credit card,Midtown East,Yorkville West,Manhattan,Manhattan
2019-03-11 10:37:23,2019-03-11 10:47:31,1,0.49,7.5,2.16,0.0,12.96,yellow,credit card,Times Sq/Theatre District,Midtown East,Manhattan,Manhattan
2019-03-26 21:07:31,2019-03-26 21:17:29,1,3.65,13.0,2.0,0.0,18.8,yellow,credit card,Battery Park City,Two Bridges/Seward Park,Manhattan,Manhattan
2019-03-22 12:47:13,2019-03-22 12:58:17,0,1.4,8.5,0.0,0.0,11.8,yellow,,Murray Hill,Flatiron,Manhattan,Manhattan
2019-03-23 11:48:50,2019-03-23 12:06:14,1,3.63,15.0,1.0,0.0,19.3,yellow,credit card,East Harlem South,Midtown Center,Manhattan,Manhattan
2019-03-08 16:18:37,2019-03-08 16:26:57,1,1.52,8.0,1.0,0.0,13.3,yellow,credit card,Lincoln Square East,Central Park,Manhattan,Manhattan
2019-03-16 10:02:25,2019-03-16 10:22:29,1,3.9,17.0,0.0,0.0,17.8,yellow,cash,LaGuardia Airport,Astoria,Queens,Queens
2019-03-20 19:39:42,2019-03-20 19:45:36,1,1.53,6.5,2.16,0.0,12.96,yellow,credit card,Upper West Side South,Manhattan Valley,Manhattan,Manhattan
2019-03-18 21:27:14,2019-03-18 21:34:16,1,1.05,6.5,1.0,0.0,11.3,yellow,credit card,Murray Hill,Midtown Center,Manhattan,Manhattan
2019-03-19 07:55:25,2019-03-19 08:09:17,1,1.75,10.5,0.0,0.0,13.8,yellow,cash,Lincoln Square West,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-27 12:13:34,2019-03-27 12:25:48,0,2.9,11.5,0.0,0.0,14.8,yellow,cash,Financial District North,Two Bridges/Seward Park,Manhattan,Manhattan
2019-03-16 17:53:34,2019-03-16 18:13:57,3,2.09,13.5,0.0,0.0,16.8,yellow,cash,Upper West Side North,Clinton East,Manhattan,Manhattan
2019-03-15 12:36:05,2019-03-15 12:54:28,1,2.12,13.0,0.0,0.0,16.3,yellow,cash,East Chelsea,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-23 20:50:49,2019-03-23 21:02:07,1,2.6,10.5,2.0,0.0,16.3,yellow,credit card,Midtown Center,East Harlem South,Manhattan,Manhattan
2019-03-27 06:28:36,2019-03-27 06:38:10,1,2.18,9.5,1.92,0.0,14.72,yellow,credit card,Gramercy,Midtown Center,Manhattan,Manhattan
2019-03-25 22:04:25,2019-03-25 22:11:30,6,1.08,6.5,1.08,0.0,11.38,yellow,credit card,East Chelsea,East Chelsea,Manhattan,Manhattan
2019-03-21 03:37:34,2019-03-21 03:44:13,1,1.07,6.5,1.54,0.0,11.84,yellow,credit card,Penn Station/Madison Sq West,Kips Bay,Manhattan,Manhattan
2019-03-25 23:05:54,2019-03-25 23:11:13,1,0.8,5.5,2.3,0.0,11.6,yellow,credit card,Penn Station/Madison Sq West,Murray Hill,Manhattan,Manhattan
2019-03-28 17:20:54,2019-03-28 17:55:57,1,9.82,31.5,8.31,5.76,49.87,yellow,credit card,LaGuardia Airport,Sutton Place/Turtle Bay North,Queens,Manhattan
2019-03-04 12:15:39,2019-03-04 12:26:53,5,1.09,8.5,2.36,0.0,14.16,yellow,credit card,Sutton Place/Turtle Bay North,Midtown North,Manhattan,Manhattan
2019-03-24 09:53:28,2019-03-24 10:01:22,5,2.89,9.5,3.84,0.0,16.64,yellow,credit card,Lenox Hill West,Gramercy,Manhattan,Manhattan
2019-03-25 08:01:01,2019-03-25 08:13:27,1,1.9,10.0,3.0,0.0,16.3,yellow,credit card,Lincoln Square East,Midtown South,Manhattan,Manhattan
2019-03-03 02:45:36,2019-03-03 03:02:14,1,3.35,13.5,0.0,0.0,17.3,yellow,cash,West Chelsea/Hudson Yards,Seaport,Manhattan,Manhattan
2019-03-16 20:30:36,2019-03-16 20:46:22,1,2.6,12.5,3.26,0.0,19.56,yellow,credit card,Clinton East,Lenox Hill West,Manhattan,Manhattan
2019-03-20 12:25:31,2019-03-20 12:45:02,1,4.71,17.5,0.0,0.0,18.3,yellow,credit card,Clinton West,East Harlem North,Manhattan,Manhattan
2019-03-06 08:09:03,2019-03-06 08:27:11,1,0.92,12.0,0.0,0.0,15.3,yellow,cash,UN/Turtle Bay South,Garment District,Manhattan,Manhattan
2019-03-10 15:14:20,2019-03-10 15:20:17,1,1.84,7.0,2.06,0.0,12.36,yellow,credit card,Lenox Hill West,East Harlem South,Manhattan,Manhattan
2019-03-01 02:55:55,2019-03-01 02:57:59,3,0.74,4.0,0.0,0.0,7.8,yellow,cash,Clinton East,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-17 19:24:50,2019-03-17 19:29:58,1,0.62,5.5,1.0,0.0,9.8,yellow,credit card,Midtown Center,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-20 22:29:32,2019-03-20 22:32:24,2,0.65,4.5,2.49,0.0,10.79,yellow,credit card,Midtown South,Midtown Center,Manhattan,Manhattan
2019-03-21 10:48:02,2019-03-21 10:57:45,2,0.87,7.5,2.16,0.0,12.96,yellow,credit card,Midtown North,Clinton West,Manhattan,Manhattan
2019-03-01 17:39:58,2019-03-01 18:04:46,1,3.06,17.0,4.26,0.0,25.56,yellow,credit card,West Chelsea/Hudson Yards,Lenox Hill East,Manhattan,Manhattan
2019-03-22 17:28:51,2019-03-22 17:33:51,1,1.1,5.5,0.0,0.0,9.8,yellow,cash,Garment District,Flatiron,Manhattan,Manhattan
2019-03-21 18:41:58,2019-03-21 19:15:25,1,3.13,20.5,0.0,0.0,24.8,yellow,cash,Lenox Hill East,Garment District,Manhattan,Manhattan
2019-03-18 16:03:14,2019-03-18 16:10:36,2,1.13,6.5,2.16,0.0,12.96,yellow,credit card,Gramercy,Murray Hill,Manhattan,Manhattan
2019-03-25 22:50:56,2019-03-25 22:59:51,1,2.47,10.0,2.76,0.0,16.56,yellow,credit card,Garment District,Upper West Side South,Manhattan,Manhattan
2019-03-07 15:15:46,2019-03-07 15:50:14,1,7.51,27.0,6.06,0.0,36.36,yellow,credit card,Flatiron,Carroll Gardens,Manhattan,Brooklyn
2019-03-24 18:42:56,2019-03-24 19:09:00,0,4.5,20.0,0.0,0.0,23.3,yellow,cash,TriBeCa/Civic Center,Kips Bay,Manhattan,Manhattan
2019-03-30 23:59:14,2019-03-30 23:59:17,1,0.0,80.0,20.08,0.0,100.38,yellow,credit card,,,,
2019-03-27 19:39:16,2019-03-27 20:00:26,1,9.5,28.0,0.0,5.76,35.06,yellow,cash,LaGuardia Airport,Washington Heights South,Queens,Manhattan
2019-03-14 07:19:29,2019-03-14 07:45:51,1,9.37,29.5,1.0,0.0,33.8,yellow,credit card,East Harlem South,Battery Park City,Manhattan,Manhattan
2019-03-07 11:19:21,2019-03-07 11:39:09,1,0.8,12.5,3.15,0.0,18.95,yellow,credit card,Lincoln Square East,Midtown East,Manhattan,Manhattan
2019-03-20 11:40:59,2019-03-20 12:06:41,2,4.7,20.0,0.0,0.0,23.3,yellow,cash,Times Sq/Theatre District,Battery Park City,Manhattan,Manhattan
2019-03-13 06:17:45,2019-03-13 06:21:54,2,1.15,5.5,2.64,0.0,11.44,yellow,credit card,Upper East Side North,Lenox Hill West,Manhattan,Manhattan
2019-03-07 16:49:01,2019-03-07 16:57:07,1,1.3,7.0,0.0,0.0,11.3,yellow,cash,Lincoln Square East,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-04 21:35:00,2019-03-04 21:53:42,1,4.87,17.5,0.0,0.0,21.3,yellow,cash,West Village,Upper West Side South,Manhattan,Manhattan
2019-03-16 16:36:34,2019-03-16 16:54:50,2,1.0,11.5,0.0,0.0,14.8,yellow,cash,Clinton East,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-16 17:38:47,2019-03-16 17:56:04,4,1.89,12.0,0.0,0.0,15.3,yellow,cash,Midtown North,Union Sq,Manhattan,Manhattan
2019-03-21 21:30:05,2019-03-21 21:39:03,2,0.9,7.0,2.15,0.0,12.95,yellow,credit card,Greenwich Village South,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-20 18:49:24,2019-03-20 19:12:40,1,13.45,36.0,0.0,0.0,37.8,yellow,cash,JFK Airport,Sunnyside,Queens,Queens
2019-03-24 01:13:51,2019-03-24 01:24:00,1,2.8,10.5,2.85,0.0,17.15,yellow,credit card,East Village,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-14 12:11:52,2019-03-14 12:40:54,1,3.43,19.0,4.46,0.0,26.76,yellow,credit card,Union Sq,Lincoln Square West,Manhattan,Manhattan
2019-03-05 17:57:00,2019-03-05 18:45:25,2,19.59,52.0,0.0,5.76,65.56,yellow,credit card,JFK Airport,Upper East Side North,Queens,Manhattan
2019-03-17 13:55:43,2019-03-17 14:01:39,4,0.71,5.5,1.76,0.0,10.56,yellow,credit card,UN/Turtle Bay South,Midtown Center,Manhattan,Manhattan
2019-03-01 23:21:01,2019-03-01 23:46:28,1,4.5,18.5,4.46,0.0,26.76,yellow,credit card,Garment District,Financial District North,Manhattan,Manhattan
2019-03-09 19:24:01,2019-03-09 19:33:32,3,0.82,7.0,2.0,0.0,12.3,yellow,credit card,TriBeCa/Civic Center,Lower East Side,Manhattan,Manhattan
2019-03-01 22:49:54,2019-03-01 22:53:32,1,0.9,5.0,0.0,0.0,6.3,yellow,credit card,East Harlem South,East Harlem North,Manhattan,Manhattan
2019-03-13 10:55:10,2019-03-13 11:23:25,2,2.4,17.5,0.0,0.0,20.8,yellow,cash,Times Sq/Theatre District,Lenox Hill East,Manhattan,Manhattan
2019-03-21 23:33:55,2019-03-21 23:36:39,1,0.44,4.0,0.0,0.0,7.8,yellow,cash,Flatiron,East Chelsea,Manhattan,Manhattan
2019-03-28 21:59:44,2019-03-28 22:04:04,4,1.02,5.5,0.0,0.0,9.3,yellow,cash,Penn Station/Madison Sq West,Garment District,Manhattan,Manhattan
2019-03-26 10:14:55,2019-03-26 10:26:58,6,1.38,9.0,3.08,0.0,15.38,yellow,credit card,Midtown South,Midtown Center,Manhattan,Manhattan
2019-03-02 19:08:25,2019-03-02 19:31:42,1,2.42,15.5,3.76,0.0,22.56,yellow,credit card,Hudson Sq,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-15 13:42:03,2019-03-15 13:49:00,1,0.66,6.0,2.79,0.0,12.09,yellow,credit card,Lenox Hill West,Lenox Hill West,Manhattan,Manhattan
2019-03-04 13:39:06,2019-03-04 13:58:52,1,3.3,15.5,0.0,0.0,18.8,yellow,cash,Garment District,Yorkville East,Manhattan,Manhattan
2019-03-22 02:22:01,2019-03-22 02:30:21,3,1.22,7.5,0.0,0.0,11.3,yellow,cash,Clinton East,Midtown North,Manhattan,Manhattan
2019-03-31 15:43:37,2019-03-31 15:53:39,1,0.55,7.5,1.5,0.0,12.3,yellow,credit card,Clinton East,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-27 19:27:17,2019-03-27 19:48:47,1,3.51,16.5,1.0,0.0,21.8,yellow,credit card,Union Sq,Upper East Side North,Manhattan,Manhattan
2019-03-13 07:34:09,2019-03-13 07:38:18,1,1.07,5.5,1.76,0.0,10.56,yellow,credit card,East Chelsea,Garment District,Manhattan,Manhattan
2019-03-12 15:44:53,2019-03-12 16:02:05,1,1.98,11.5,2.96,0.0,17.76,yellow,credit card,Yorkville West,Upper West Side North,Manhattan,Manhattan
2019-03-29 08:48:46,2019-03-29 08:56:07,1,1.0,6.5,1.95,0.0,11.75,yellow,credit card,Murray Hill,Union Sq,Manhattan,Manhattan
2019-03-02 23:05:12,2019-03-02 23:17:34,1,1.85,10.0,0.0,0.0,13.8,yellow,cash,Clinton East,Lenox Hill West,Manhattan,Manhattan
2019-03-17 01:28:28,2019-03-17 02:04:54,1,7.95,30.0,0.0,0.0,33.8,yellow,cash,Flatiron,Jackson Heights,Manhattan,Queens
2019-03-09 13:42:08,2019-03-09 13:48:46,1,1.0,6.5,0.0,0.0,9.8,yellow,cash,Upper East Side North,Midtown East,Manhattan,Manhattan
2019-03-05 15:41:23,2019-03-05 15:46:30,1,0.6,5.0,1.65,0.0,9.95,yellow,credit card,Midtown Center,Midtown Center,Manhattan,Manhattan
2019-03-18 19:57:00,2019-03-18 20:06:22,2,1.57,8.5,1.8,0.0,14.6,yellow,credit card,Central Park,Midtown North,Manhattan,Manhattan
2019-03-17 22:47:36,2019-03-17 22:55:32,1,1.3,7.5,2.25,0.0,13.55,yellow,credit card,West Chelsea/Hudson Yards,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-15 23:46:05,2019-03-15 23:59:52,1,1.47,9.5,0.0,0.0,13.3,yellow,cash,Midtown East,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-16 18:57:19,2019-03-16 19:00:16,2,0.4,4.0,0.0,0.0,7.3,yellow,cash,Upper East Side North,Upper East Side North,Manhattan,Manhattan
2019-03-14 11:55:26,2019-03-14 12:08:32,6,1.84,10.0,2.66,0.0,15.96,yellow,credit card,East Harlem South,Upper East Side South,Manhattan,Manhattan
2019-03-16 21:03:35,2019-03-16 21:21:58,1,2.5,12.5,1.5,0.0,17.8,yellow,credit card,Meatpacking/West Village West,Chinatown,Manhattan,Manhattan
2019-03-09 19:54:40,2019-03-09 20:07:27,2,1.5,9.5,0.0,0.0,12.8,yellow,cash,Gramercy,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-03 16:44:20,2019-03-03 16:48:36,1,1.02,5.0,2.08,0.0,10.38,yellow,credit card,Kips Bay,Stuy Town/Peter Cooper Village,Manhattan,Manhattan
2019-03-04 20:20:15,2019-03-04 20:24:14,1,0.6,5.0,0.0,0.0,6.3,yellow,cash,Morningside Heights,Morningside Heights,Manhattan,Manhattan
2019-03-28 22:57:05,2019-03-28 23:16:56,1,4.1,16.0,0.0,0.0,19.8,yellow,cash,Hudson Sq,Lincoln Square East,Manhattan,Manhattan
2019-03-16 05:08:02,2019-03-16 05:08:20,1,0.07,2.5,0.0,0.0,3.8,yellow,cash,Astoria,Astoria,Queens,Queens
2019-03-27 22:22:30,2019-03-27 22:41:40,1,5.99,20.0,5.95,0.0,29.75,yellow,credit card,Greenwich Village South,Yorkville West,Manhattan,Manhattan
2019-03-07 10:39:25,2019-03-07 11:05:01,5,2.55,16.5,0.0,0.0,19.8,yellow,cash,Midtown Center,Little Italy/NoLiTa,Manhattan,Manhattan
2019-03-11 08:46:09,2019-03-11 08:47:21,1,0.3,3.0,0.95,0.0,7.25,yellow,credit card,Upper East Side North,Upper East Side North,Manhattan,Manhattan
2019-03-28 07:05:19,2019-03-28 07:41:14,0,10.6,33.5,0.0,5.76,40.06,yellow,credit card,East Tremont,Midtown East,Bronx,Manhattan
2019-03-12 12:02:26,2019-03-12 12:17:00,3,0.66,9.5,1.2,0.0,14.0,yellow,credit card,Sutton Place/Turtle Bay North,Midtown Center,Manhattan,Manhattan
2019-03-06 20:00:28,2019-03-06 20:11:50,3,2.6,11.0,4.4,0.0,19.2,yellow,credit card,Upper East Side South,Upper West Side North,Manhattan,Manhattan
2019-03-28 21:30:43,2019-03-28 21:42:10,1,1.6,9.0,2.55,0.0,15.35,yellow,credit card,Penn Station/Madison Sq West,Stuy Town/Peter Cooper Village,Manhattan,Manhattan
2019-03-13 16:11:26,2019-03-13 16:28:42,1,3.21,13.5,0.0,0.0,17.8,yellow,cash,Financial District South,Downtown Brooklyn/MetroTech,Manhattan,Brooklyn
2019-03-04 22:34:00,2019-03-04 22:41:34,1,1.3,7.5,0.5,0.0,11.8,yellow,credit card,Midtown Center,Upper East Side South,Manhattan,Manhattan
2019-03-08 19:10:16,2019-03-08 19:18:32,2,0.9,7.0,0.0,0.0,11.3,yellow,cash,Midtown North,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-02 10:47:45,2019-03-02 10:56:08,3,0.95,7.5,2.16,0.0,12.96,yellow,credit card,West Village,Flatiron,Manhattan,Manhattan
2019-03-28 11:28:29,2019-03-28 11:49:30,1,1.79,13.5,3.36,0.0,20.16,yellow,credit card,Lincoln Square East,Midtown South,Manhattan,Manhattan
2019-03-29 14:24:32,2019-03-29 14:31:52,1,1.15,7.0,2.06,0.0,12.36,yellow,credit card,Midtown Center,Lenox Hill West,Manhattan,Manhattan
2019-03-01 07:34:30,2019-03-01 07:40:58,1,1.2,6.5,0.0,0.0,9.8,yellow,cash,Bloomingdale,Upper West Side North,Manhattan,Manhattan
2019-03-31 11:50:36,2019-03-31 11:54:00,4,0.43,4.0,0.0,0.0,7.3,yellow,cash,Union Sq,Union Sq,Manhattan,Manhattan
2019-03-28 13:29:48,2019-03-28 13:56:36,3,9.5,30.0,0.0,5.76,39.06,yellow,cash,Queensboro Hill,Midtown South,Queens,Manhattan
2019-03-12 17:05:47,2019-03-12 17:12:12,1,1.1,6.5,2.15,0.0,12.95,yellow,credit card,Central Park,Upper West Side North,Manhattan,Manhattan
2019-03-08 18:43:42,2019-03-08 18:57:17,1,2.06,10.0,2.86,0.0,17.16,yellow,credit card,Gramercy,Midtown Center,Manhattan,Manhattan
2019-03-04 17:49:31,2019-03-04 17:55:25,1,0.78,5.5,1.47,0.0,11.27,yellow,credit card,Union Sq,Midtown South,Manhattan,Manhattan
2019-03-22 13:23:05,2019-03-22 13:43:15,4,2.42,13.5,2.0,0.0,18.8,yellow,credit card,Midtown South,Clinton West,Manhattan,Manhattan
2019-03-09 23:57:28,2019-03-10 00:16:04,1,2.73,13.0,1.0,0.0,17.8,yellow,credit card,SoHo,DUMBO/Vinegar Hill,Manhattan,Brooklyn
2019-03-20 10:12:24,2019-03-20 10:31:36,1,5.7,20.0,4.65,0.0,27.95,yellow,credit card,Yorkville West,Greenwich Village South,Manhattan,Manhattan
2019-03-15 10:56:56,2019-03-15 11:37:02,1,11.93,39.5,9.71,5.76,58.27,yellow,credit card,Times Sq/Theatre District,LaGuardia Airport,Manhattan,Queens
2019-03-22 23:19:12,2019-03-22 23:31:20,1,1.7,10.0,2.75,0.0,16.55,yellow,credit card,Midtown Center,Upper West Side South,Manhattan,Manhattan
2019-03-30 12:28:42,2019-03-30 12:49:34,1,2.9,15.0,0.0,0.0,18.3,yellow,cash,Penn Station/Madison Sq West,Upper West Side South,Manhattan,Manhattan
2019-03-05 12:17:49,2019-03-05 12:36:12,1,5.98,19.0,5.58,0.0,27.88,yellow,credit card,Brooklyn Heights,Murray Hill,Brooklyn,Manhattan
2019-03-01 16:10:56,2019-03-01 16:15:58,1,0.65,5.0,1.86,0.0,11.16,yellow,credit card,Midtown Center,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-25 15:43:32,2019-03-25 15:58:23,1,1.76,10.5,0.0,0.0,13.8,yellow,cash,Times Sq/Theatre District,Flatiron,Manhattan,Manhattan
2019-03-23 09:39:25,2019-03-23 09:56:45,0,3.6,15.5,3.75,0.0,22.55,yellow,credit card,Yorkville East,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-11 10:00:32,2019-03-11 10:04:24,2,0.58,4.5,0.78,0.0,8.58,yellow,credit card,Upper East Side South,Upper East Side North,Manhattan,Manhattan
2019-03-14 23:29:02,2019-03-14 23:37:17,1,1.22,7.0,0.0,0.0,10.8,yellow,cash,Alphabet City,East Village,Manhattan,Manhattan
2019-03-21 17:21:44,2019-03-21 17:21:49,1,0.0,2.5,0.0,0.0,4.3,yellow,cash,JFK Airport,JFK Airport,Queens,Queens
2019-03-13 20:00:10,2019-03-13 20:14:34,1,2.1,11.0,3.05,0.0,18.35,yellow,credit card,East Chelsea,East Village,Manhattan,Manhattan
2019-03-10 20:36:47,2019-03-10 20:47:33,2,2.0,9.5,1.62,0.0,12.42,yellow,credit card,Manhattan Valley,East Harlem South,Manhattan,Manhattan
2019-03-20 21:17:25,2019-03-20 21:22:39,1,0.83,5.5,0.0,0.0,9.3,yellow,cash,Clinton East,Midtown Center,Manhattan,Manhattan
2019-03-04 13:06:09,2019-03-04 13:16:31,1,1.79,9.5,1.0,0.0,13.8,yellow,credit card,Midtown Center,Upper East Side North,Manhattan,Manhattan
2019-03-31 17:17:53,2019-03-31 17:29:00,1,2.07,10.0,2.7,0.0,13.5,yellow,credit card,East Harlem South,Manhattan Valley,Manhattan,Manhattan
2019-03-13 08:46:04,2019-03-13 08:58:57,1,1.53,10.0,2.66,0.0,15.96,yellow,credit card,Lincoln Square West,Upper West Side North,Manhattan,Manhattan
2019-03-21 18:44:03,2019-03-21 19:30:50,1,10.21,37.61,0.0,0.0,38.41,yellow,credit card,East Chelsea,Marble Hill,Manhattan,Manhattan
2019-03-06 19:29:56,2019-03-06 20:08:36,1,10.8,36.0,11.5,5.76,57.56,yellow,credit card,LaGuardia Airport,Clinton East,Queens,Manhattan
2019-03-17 22:46:35,2019-03-17 23:04:07,1,3.43,14.5,3.66,0.0,21.96,yellow,credit card,Times Sq/Theatre District,East Village,Manhattan,Manhattan
2019-03-10 00:20:33,2019-03-10 00:27:13,3,0.57,6.0,0.0,0.0,9.8,yellow,cash,East Village,East Village,Manhattan,Manhattan
2019-03-28 18:06:43,2019-03-28 18:11:26,1,0.9,5.5,0.0,0.0,9.8,yellow,cash,Lincoln Square West,Lincoln Square East,Manhattan,Manhattan
2019-03-12 13:01:22,2019-03-12 13:04:25,1,0.6,4.0,0.0,0.0,7.3,yellow,cash,Kips Bay,Murray Hill,Manhattan,Manhattan
2019-03-28 21:09:58,2019-03-28 21:15:31,1,1.06,6.0,2.94,0.0,12.74,yellow,credit card,East Chelsea,Clinton East,Manhattan,Manhattan
2019-03-11 10:37:05,2019-03-11 10:50:41,5,1.56,10.0,1.0,0.0,14.3,yellow,credit card,Union Sq,Midtown Center,Manhattan,Manhattan
2019-03-06 18:59:05,2019-03-06 19:11:27,1,0.9,8.5,2.5,0.0,15.3,yellow,credit card,Gramercy,Union Sq,Manhattan,Manhattan
2019-03-11 11:56:04,2019-03-11 12:06:03,1,1.7,9.0,0.0,0.0,12.3,yellow,cash,Lincoln Square West,Upper West Side North,Manhattan,Manhattan
2019-03-09 19:07:27,2019-03-09 19:10:45,1,0.55,4.5,1.56,0.0,9.36,yellow,credit card,Yorkville East,Yorkville West,Manhattan,Manhattan
2019-03-07 19:26:16,2019-03-07 19:44:20,4,3.0,14.0,3.65,0.0,21.95,yellow,credit card,Clinton West,Greenwich Village North,Manhattan,Manhattan
2019-03-19 15:08:45,2019-03-19 15:34:24,6,6.4,23.0,5.26,0.0,31.56,yellow,credit card,Yorkville West,Greenwich Village South,Manhattan,Manhattan
2019-03-29 08:55:37,2019-03-29 09:13:36,2,4.14,16.0,3.86,0.0,23.16,yellow,credit card,Yorkville East,Kips Bay,Manhattan,Manhattan
2019-03-31 08:55:25,2019-03-31 09:00:23,1,1.1,6.0,0.0,0.0,9.3,yellow,cash,Clinton East,Central Park,Manhattan,Manhattan
2019-03-30 20:45:00,2019-03-30 21:06:11,1,2.61,14.0,2.67,0.0,20.47,yellow,credit card,Sutton Place/Turtle Bay North,Lower East Side,Manhattan,Manhattan
2019-03-03 12:37:17,2019-03-03 12:43:53,1,1.18,6.5,0.0,0.0,9.8,yellow,cash,Union Sq,East Village,Manhattan,Manhattan
2019-03-23 18:35:01,2019-03-23 18:47:39,1,3.2,12.5,2.0,0.0,17.8,yellow,credit card,UN/Turtle Bay South,East Village,Manhattan,Manhattan
2019-03-26 23:30:48,2019-03-26 23:40:09,1,2.8,10.5,2.85,0.0,17.15,yellow,credit card,East Chelsea,Lincoln Square West,Manhattan,Manhattan
2019-03-11 11:36:07,2019-03-11 11:57:43,2,5.09,19.0,5.58,0.0,27.88,yellow,credit card,Financial District North,Stuy Town/Peter Cooper Village,Manhattan,Manhattan
2019-03-25 15:51:14,2019-03-25 16:01:50,1,1.16,8.0,2.26,0.0,13.56,yellow,credit card,Flatiron,Greenwich Village North,Manhattan,Manhattan
2019-03-27 23:10:02,2019-03-27 23:22:11,3,2.77,11.0,3.7,0.0,18.5,yellow,credit card,East Chelsea,Seaport,Manhattan,Manhattan
2019-03-28 07:54:06,2019-03-28 08:01:42,1,1.72,7.5,0.0,0.0,8.3,yellow,cash,Manhattan Valley,East Harlem South,Manhattan,Manhattan
2019-03-19 06:22:29,2019-03-19 06:37:12,1,3.5,13.5,0.0,0.0,16.8,yellow,cash,Lenox Hill East,Manhattan Valley,Manhattan,Manhattan
2019-03-29 10:25:21,2019-03-29 11:14:27,3,6.71,34.0,7.46,0.0,44.76,yellow,credit card,Times Sq/Theatre District,Williamsburg (North Side),Manhattan,Brooklyn
2019-03-28 05:39:40,2019-03-28 05:47:07,1,2.2,8.5,2.45,0.0,14.75,yellow,credit card,Lenox Hill West,Garment District,Manhattan,Manhattan
2019-03-13 18:32:01,2019-03-13 18:45:07,1,2.0,10.0,0.0,0.0,14.3,yellow,cash,Clinton East,Gramercy,Manhattan,Manhattan
2019-03-05 17:58:42,2019-03-05 18:19:23,2,2.7,14.5,0.0,0.0,18.8,yellow,cash,Murray Hill,Upper East Side North,Manhattan,Manhattan
2019-03-21 22:49:32,2019-03-21 22:55:11,1,1.03,6.0,1.46,0.0,8.76,yellow,credit card,DUMBO/Vinegar Hill,Brooklyn Heights,Brooklyn,Brooklyn
2019-03-07 19:57:32,2019-03-07 20:10:59,1,0.9,9.5,2.0,0.0,15.8,yellow,credit card,Lenox Hill West,Yorkville East,Manhattan,Manhattan
2019-03-02 12:25:56,2019-03-02 12:45:44,5,10.18,29.5,0.06,5.76,38.62,yellow,credit card,LaGuardia Airport,Midtown East,Queens,Manhattan
2019-03-05 15:39:52,2019-03-05 15:44:51,3,0.92,5.5,0.0,0.0,8.8,yellow,cash,Clinton East,Midtown North,Manhattan,Manhattan
2019-03-13 16:40:50,2019-03-13 16:51:55,1,2.0,9.5,1.0,0.0,14.8,yellow,credit card,Central Park,Upper East Side North,Manhattan,Manhattan
2019-03-14 11:36:47,2019-03-14 11:46:26,1,1.43,8.5,2.36,0.0,14.16,yellow,credit card,Central Park,Upper West Side North,Manhattan,Manhattan
2019-03-22 07:46:43,2019-03-22 07:49:36,3,0.74,4.5,1.95,0.0,9.75,yellow,credit card,Times Sq/Theatre District,Garment District,Manhattan,Manhattan
2019-03-06 17:36:48,2019-03-06 18:43:39,2,17.1,52.0,13.1,5.76,78.66,yellow,credit card,Midtown South,JFK Airport,Manhattan,Queens
2019-03-08 04:17:26,2019-03-08 04:21:46,1,1.2,5.5,1.0,0.0,10.3,yellow,credit card,Garment District,Garment District,Manhattan,Manhattan
2019-03-31 15:21:11,2019-03-31 15:37:28,2,1.8,11.0,1.0,0.0,15.3,yellow,credit card,East Village,West Village,Manhattan,Manhattan
2019-03-21 21:31:56,2019-03-21 21:49:14,1,2.13,12.0,0.0,0.0,15.8,yellow,cash,Meatpacking/West Village West,East Village,Manhattan,Manhattan
2019-03-06 12:43:50,2019-03-06 12:59:59,1,1.4,11.0,2.85,0.0,17.15,yellow,credit card,Gramercy,Flatiron,Manhattan,Manhattan
2019-03-18 14:30:31,2019-03-18 14:36:40,1,0.6,5.5,0.0,0.0,8.8,yellow,cash,Upper East Side North,Yorkville West,Manhattan,Manhattan
2019-03-28 22:33:16,2019-03-28 22:45:37,2,1.56,9.5,0.0,0.0,13.3,yellow,cash,Midtown Center,Murray Hill,Manhattan,Manhattan
2019-03-13 12:33:55,2019-03-13 12:40:20,6,0.95,6.0,2.32,0.0,11.62,yellow,credit card,Lincoln Square East,Clinton East,Manhattan,Manhattan
2019-03-14 04:46:52,2019-03-14 04:49:50,2,0.56,4.0,1.56,0.0,9.36,yellow,credit card,Times Sq/Theatre District,Midtown Center,Manhattan,Manhattan
2019-03-13 19:21:03,2019-03-13 19:28:35,1,1.0,6.5,0.0,0.0,10.8,yellow,cash,Little Italy/NoLiTa,Greenwich Village North,Manhattan,Manhattan
2019-03-01 11:25:31,2019-03-01 11:34:24,1,1.24,8.0,0.0,0.0,11.3,yellow,cash,Upper West Side South,Upper East Side North,Manhattan,Manhattan
2019-03-05 22:07:42,2019-03-05 22:18:17,6,2.16,9.5,3.32,0.0,16.62,yellow,credit card,Midtown East,East Village,Manhattan,Manhattan
2019-03-04 20:56:26,2019-03-04 21:13:36,1,9.97,28.5,0.0,0.0,29.8,yellow,credit card,Mott Haven/Port Morris,Riverdale/North Riverdale/Fieldston,Bronx,Bronx
2019-03-04 20:40:56,2019-03-04 20:44:27,1,1.1,5.5,1.86,0.0,11.16,yellow,credit card,Clinton East,Clinton East,Manhattan,Manhattan
2019-03-05 17:58:10,2019-03-05 18:00:25,1,0.44,3.5,1.11,0.0,8.91,yellow,credit card,East Village,Gramercy,Manhattan,Manhattan
2019-03-29 19:21:12,2019-03-29 19:35:34,1,5.19,17.5,4.0,0.0,25.8,yellow,credit card,Financial District North,Murray Hill,Manhattan,Manhattan
2019-03-16 17:27:17,2019-03-16 17:41:03,0,3.5,14.5,0.0,0.0,15.3,yellow,cash,Manhattan Valley,Washington Heights South,Manhattan,Manhattan
2019-03-01 10:25:50,2019-03-01 10:32:29,1,0.84,6.0,0.0,0.0,9.3,yellow,cash,Upper West Side South,Lincoln Square West,Manhattan,Manhattan
2019-03-08 00:51:39,2019-03-08 00:56:54,5,0.93,5.5,1.86,0.0,11.16,yellow,credit card,East Village,Lower East Side,Manhattan,Manhattan
2019-03-15 09:20:34,2019-03-15 09:27:03,2,0.71,6.0,0.0,0.0,9.3,yellow,cash,Midtown East,Murray Hill,Manhattan,Manhattan
2019-03-07 00:09:28,2019-03-07 00:38:46,1,6.08,24.0,0.0,0.0,27.8,yellow,cash,Midtown South,Steinway,Manhattan,Queens
2019-03-11 20:45:26,2019-03-11 20:50:27,1,1.09,6.0,1.96,0.0,11.76,yellow,credit card,East Village,Gramercy,Manhattan,Manhattan
2019-03-26 12:52:27,2019-03-26 13:07:01,1,1.9,10.5,0.0,0.0,13.8,yellow,cash,Sutton Place/Turtle Bay North,Midtown South,Manhattan,Manhattan
2019-03-13 08:34:03,2019-03-13 08:51:10,1,1.8,11.5,0.0,0.0,14.8,yellow,cash,Penn Station/Madison Sq West,Lincoln Square West,Manhattan,Manhattan
2019-03-14 19:38:22,2019-03-14 19:43:09,1,1.5,6.5,2.7,0.0,13.5,yellow,credit card,Midtown East,Yorkville West,Manhattan,Manhattan
2019-03-17 00:48:21,2019-03-17 00:59:36,2,2.17,10.0,0.0,0.0,13.8,yellow,cash,Little Italy/NoLiTa,Stuy Town/Peter Cooper Village,Manhattan,Manhattan
2019-03-26 15:06:47,2019-03-26 15:59:52,1,18.41,52.0,0.02,5.76,61.08,yellow,credit card,JFK Airport,Midtown Center,Queens,Manhattan
2019-03-17 00:50:05,2019-03-17 01:01:47,4,2.0,10.0,2.75,0.0,16.55,yellow,credit card,East Village,East Chelsea,Manhattan,Manhattan
2019-03-30 09:39:06,2019-03-30 09:45:23,1,1.2,6.5,1.95,0.0,11.75,yellow,credit card,Hudson Sq,Greenwich Village North,Manhattan,Manhattan
2019-03-31 14:28:46,2019-03-31 14:34:24,1,1.46,6.5,1.96,0.0,11.76,yellow,credit card,Sutton Place/Turtle Bay North,Lenox Hill East,Manhattan,Manhattan
2019-03-19 09:28:34,2019-03-19 10:01:34,1,14.1,39.5,6.0,0.0,46.3,yellow,credit card,JFK Airport,Astoria,Queens,Queens
2019-03-18 21:28:55,2019-03-18 21:52:22,1,14.3,40.0,0.0,0.0,41.3,yellow,cash,JFK Airport,Sheepshead Bay,Queens,Brooklyn
2019-03-10 06:32:41,2019-03-10 06:36:23,1,0.66,4.5,0.0,0.0,7.8,yellow,cash,Garment District,Murray Hill,Manhattan,Manhattan
2019-03-20 18:51:16,2019-03-20 19:03:10,1,3.13,11.5,3.16,0.0,18.96,yellow,credit card,Lenox Hill East,East Harlem South,Manhattan,Manhattan
2019-03-12 14:39:59,2019-03-12 15:06:34,1,6.5,23.5,0.0,5.76,32.56,yellow,cash,Times Sq/Theatre District,Williamsburg (North Side),Manhattan,Brooklyn
2019-03-19 14:05:07,2019-03-19 14:11:25,1,1.3,6.5,2.45,0.0,12.25,yellow,credit card,Penn Station/Madison Sq West,Clinton West,Manhattan,Manhattan
2019-03-19 16:13:05,2019-03-19 16:14:39,1,0.2,3.0,0.0,0.0,7.3,yellow,cash,Greenwich Village North,Greenwich Village North,Manhattan,Manhattan
2019-03-16 13:18:43,2019-03-16 13:33:44,1,1.8,11.0,0.0,0.0,14.3,yellow,cash,West Chelsea/Hudson Yards,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-14 07:59:57,2019-03-14 08:09:42,1,1.4,8.5,2.35,0.0,14.15,yellow,credit card,Upper East Side South,Upper East Side North,Manhattan,Manhattan
2019-03-31 14:28:05,2019-03-31 14:41:07,1,1.1,9.0,0.0,0.0,12.3,yellow,cash,Sutton Place/Turtle Bay North,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-15 21:25:04,2019-03-15 21:31:55,1,0.88,6.0,0.0,0.0,9.8,yellow,cash,Upper East Side South,Midtown Center,Manhattan,Manhattan
2019-03-02 22:42:20,2019-03-02 22:56:52,1,2.3,11.5,3.8,0.0,19.1,yellow,credit card,Times Sq/Theatre District,Upper West Side South,Manhattan,Manhattan
2019-03-25 18:47:22,2019-03-25 18:57:06,3,1.21,7.5,0.0,0.0,11.8,yellow,cash,Clinton West,Clinton East,Manhattan,Manhattan
2019-03-15 14:19:05,2019-03-15 14:20:39,5,0.47,3.5,0.0,0.0,6.8,yellow,credit card,Lenox Hill West,Yorkville West,Manhattan,Manhattan
2019-03-06 09:48:13,2019-03-06 09:58:40,1,1.6,8.5,2.35,0.0,14.15,yellow,credit card,Little Italy/NoLiTa,Flatiron,Manhattan,Manhattan
2019-03-08 18:04:40,2019-03-08 18:11:10,1,1.5,7.0,4.0,0.0,15.3,yellow,credit card,Manhattan Valley,Lincoln Square East,Manhattan,Manhattan
2019-03-07 17:15:41,2019-03-07 17:18:41,1,0.4,4.5,0.0,0.0,8.8,yellow,cash,Upper West Side South,Upper West Side North,Manhattan,Manhattan
2019-03-30 23:38:33,2019-03-30 23:48:10,1,1.1,7.5,1.0,0.0,12.3,yellow,credit card,SoHo,Lower East Side,Manhattan,Manhattan
2019-03-13 07:15:24,2019-03-13 07:25:50,1,2.27,9.5,0.0,0.0,12.8,yellow,cash,Gramercy,Midtown Center,Manhattan,Manhattan
2019-03-30 23:53:24,2019-03-30 23:56:29,1,0.6,4.5,0.0,0.0,8.3,yellow,credit card,Greenwich Village South,Greenwich Village North,Manhattan,Manhattan
2019-03-25 21:36:30,2019-03-25 21:44:52,1,0.9,7.0,2.16,0.0,12.96,yellow,credit card,Midtown Center,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-30 11:31:52,2019-03-30 11:35:10,1,0.3,4.0,3.0,0.0,10.3,yellow,credit card,Greenwich Village South,East Village,Manhattan,Manhattan
2019-03-22 22:40:19,2019-03-22 22:55:26,1,2.75,12.5,0.0,0.0,13.8,yellow,cash,Stuyvesant Heights,Crown Heights North,Brooklyn,Brooklyn
2019-03-10 10:32:26,2019-03-10 10:35:20,1,0.6,4.5,1.06,0.0,6.36,yellow,credit card,Morningside Heights,Manhattan Valley,Manhattan,Manhattan
2019-03-05 22:00:00,2019-03-05 22:17:27,2,3.6,14.5,3.65,0.0,21.95,yellow,credit card,Sutton Place/Turtle Bay North,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-15 22:59:38,2019-03-15 23:04:56,6,1.16,6.0,0.0,0.0,9.8,yellow,cash,Upper West Side South,Upper West Side North,Manhattan,Manhattan
2019-03-20 11:15:24,2019-03-20 11:59:38,1,15.01,46.5,0.0,5.76,53.06,yellow,credit card,Lenox Hill East,Midwood,Manhattan,Brooklyn
2019-03-08 18:08:03,2019-03-08 18:15:42,1,1.4,7.0,2.25,0.0,13.55,yellow,credit card,Kips Bay,Alphabet City,Manhattan,Manhattan
2019-03-20 22:27:45,2019-03-20 22:49:14,2,3.69,16.0,0.0,0.0,19.8,yellow,cash,Lower East Side,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-14 12:43:06,2019-03-14 13:06:58,1,8.81,27.5,7.31,5.76,43.87,yellow,credit card,LaGuardia Airport,Lenox Hill East,Queens,Manhattan
2019-03-22 21:39:15,2019-03-22 21:45:25,1,0.84,6.0,2.0,0.0,11.8,yellow,credit card,Upper East Side South,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-13 21:57:25,2019-03-13 22:15:34,1,9.61,27.5,5.56,5.76,42.62,yellow,credit card,LaGuardia Airport,Lenox Hill East,Queens,Manhattan
2019-03-19 23:41:10,2019-03-19 23:43:55,1,0.4,4.0,0.0,0.0,7.8,yellow,cash,Upper East Side South,Lenox Hill East,Manhattan,Manhattan
2019-03-22 15:36:34,2019-03-22 16:34:48,2,12.07,48.5,11.51,5.76,69.07,yellow,credit card,Manhattan Valley,Boerum Hill,Manhattan,Brooklyn
2019-03-01 20:28:26,2019-03-01 20:36:21,1,1.31,7.5,0.0,0.0,11.3,yellow,cash,Garment District,Midtown East,Manhattan,Manhattan
2019-03-14 14:28:42,2019-03-14 14:56:54,1,3.79,19.5,4.56,0.0,29.31,yellow,credit card,Midtown Center,Lenox Hill East,Manhattan,Manhattan
2019-03-03 21:02:46,2019-03-03 21:22:46,1,9.9,28.0,7.51,5.76,45.07,yellow,credit card,LaGuardia Airport,Upper East Side South,Queens,Manhattan
2019-03-19 23:32:01,2019-03-19 23:40:05,1,1.86,8.0,2.36,0.0,14.16,yellow,credit card,Times Sq/Theatre District,Union Sq,Manhattan,Manhattan
2019-03-17 02:22:11,2019-03-17 02:31:02,2,0.66,7.0,1.94,0.0,12.74,yellow,credit card,East Village,East Village,Manhattan,Manhattan
2019-03-04 15:30:13,2019-03-04 15:41:03,1,0.62,7.5,2.16,0.0,12.96,yellow,credit card,Midtown Center,Midtown Center,Manhattan,Manhattan
2019-03-14 11:45:08,2019-03-14 11:48:55,1,0.7,4.5,0.0,0.0,7.8,yellow,cash,Yorkville West,Yorkville West,Manhattan,Manhattan
2019-03-07 23:46:25,2019-03-07 23:51:55,1,1.09,6.0,1.96,0.0,11.76,yellow,credit card,Penn Station/Madison Sq West,Midtown Center,Manhattan,Manhattan
2019-03-06 21:56:51,2019-03-06 22:03:35,1,1.1,6.5,1.54,0.0,11.84,yellow,credit card,Gramercy,West Village,Manhattan,Manhattan
2019-03-20 23:19:55,2019-03-20 23:46:00,1,4.82,19.5,4.66,0.0,27.96,yellow,credit card,Union Sq,Financial District South,Manhattan,Manhattan
2019-03-15 19:33:40,2019-03-15 19:54:59,1,3.3,15.5,2.96,0.0,22.76,yellow,credit card,Upper East Side South,Gramercy,Manhattan,Manhattan
2019-03-26 12:11:08,2019-03-26 12:23:55,1,1.0,8.5,0.0,0.0,11.8,yellow,cash,Clinton East,Garment District,Manhattan,Manhattan
2019-03-09 01:49:19,2019-03-09 01:54:17,1,1.5,6.5,2.55,0.0,12.85,yellow,credit card,SoHo,Flatiron,Manhattan,Manhattan
2019-03-14 08:51:47,2019-03-14 09:00:44,2,1.0,7.5,2.15,0.0,12.95,yellow,credit card,Midtown South,Midtown North,Manhattan,Manhattan
2019-03-20 20:17:19,2019-03-20 20:46:58,1,10.1,32.0,5.5,5.76,47.06,yellow,credit card,LaGuardia Airport,Times Sq/Theatre District,Queens,Manhattan
2019-03-29 13:30:12,2019-03-29 13:36:35,1,1.23,6.5,2.45,0.0,12.25,yellow,credit card,Manhattan Valley,Upper West Side North,Manhattan,Manhattan
2019-03-10 12:44:26,2019-03-10 12:48:27,4,1.1,5.5,0.44,0.0,9.24,yellow,credit card,Lenox Hill West,Yorkville East,Manhattan,Manhattan
2019-03-01 12:14:41,2019-03-01 12:18:39,2,0.5,4.5,1.05,0.0,6.35,yellow,credit card,East Harlem North,East Harlem North,Manhattan,Manhattan
2019-03-22 10:35:22,2019-03-22 10:41:18,1,0.75,5.5,1.5,0.0,10.3,yellow,credit card,Lincoln Square East,Midtown North,Manhattan,Manhattan
2019-03-31 18:09:31,2019-03-31 18:25:30,1,2.62,12.0,3.06,0.0,18.36,yellow,credit card,Midtown Center,East Village,Manhattan,Manhattan
2019-03-14 19:36:16,2019-03-14 19:52:41,1,1.65,11.5,3.95,0.0,19.75,yellow,credit card,UN/Turtle Bay South,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-07 18:49:41,2019-03-07 19:07:05,1,2.75,13.0,3.46,0.0,20.76,yellow,credit card,Yorkville West,Lincoln Square East,Manhattan,Manhattan
2019-03-02 23:13:33,2019-03-02 23:28:52,1,2.32,12.0,0.0,0.0,15.8,yellow,cash,Little Italy/NoLiTa,Midtown South,Manhattan,Manhattan
2019-03-10 01:44:58,2019-03-10 01:51:17,6,1.44,6.5,3.09,0.0,13.39,yellow,credit card,West Village,Midtown South,Manhattan,Manhattan
2019-03-21 10:07:48,2019-03-21 10:52:02,2,16.74,52.0,15.26,5.76,76.32,yellow,credit card,East Chelsea,JFK Airport,Manhattan,Queens
2019-03-07 13:07:41,2019-03-07 13:22:19,6,1.7,10.5,2.75,0.0,16.55,yellow,credit card,Midtown Center,Union Sq,Manhattan,Manhattan
2019-03-09 02:17:59,2019-03-09 02:28:16,1,1.46,8.5,1.0,0.0,13.3,yellow,credit card,Lower East Side,Union Sq,Manhattan,Manhattan
2019-03-03 13:38:18,2019-03-03 13:49:14,5,1.78,9.5,2.56,0.0,15.36,yellow,credit card,Upper West Side South,Lenox Hill West,Manhattan,Manhattan
2019-03-16 12:17:09,2019-03-16 12:34:47,1,2.7,13.5,0.0,0.0,16.8,yellow,cash,Bloomingdale,Lincoln Square East,Manhattan,Manhattan
2019-03-12 07:31:29,2019-03-12 07:34:04,1,0.5,4.0,2.15,0.0,9.45,yellow,credit card,Upper West Side South,Upper West Side South,Manhattan,Manhattan
2019-03-22 01:12:31,2019-03-22 01:26:25,2,2.77,12.0,1.0,0.0,16.8,yellow,credit card,Lower East Side,Flatiron,Manhattan,Manhattan
2019-03-11 18:18:44,2019-03-11 18:26:55,1,1.13,7.0,1.7,0.0,13.0,yellow,credit card,Lenox Hill West,Midtown Center,Manhattan,Manhattan
2019-03-03 20:28:29,2019-03-03 20:33:11,2,0.9,5.5,0.0,0.0,9.3,yellow,cash,Times Sq/Theatre District,Midtown North,Manhattan,Manhattan
2019-03-20 03:41:49,2019-03-20 03:58:06,6,5.53,17.5,2.5,0.0,23.8,yellow,credit card,Chinatown,Yorkville West,Manhattan,Manhattan
2019-03-05 22:16:23,2019-03-05 22:24:14,1,1.06,7.0,1.08,0.0,11.88,yellow,credit card,Penn Station/Madison Sq West,Murray Hill,Manhattan,Manhattan
2019-03-21 16:19:53,2019-03-21 16:24:46,1,0.8,5.5,0.0,0.0,9.8,yellow,cash,Garment District,Union Sq,Manhattan,Manhattan
2019-03-03 14:34:00,2019-03-03 14:42:34,2,1.35,7.5,1.0,0.0,11.8,yellow,credit card,Union Sq,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-07 02:07:02,2019-03-07 02:13:15,1,0.85,6.0,1.96,0.0,11.76,yellow,credit card,Greenwich Village South,East Village,Manhattan,Manhattan
2019-03-28 10:50:01,2019-03-28 10:55:52,1,1.47,6.5,2.45,0.0,12.25,yellow,credit card,Lenox Hill East,East Harlem South,Manhattan,Manhattan
2019-03-03 20:32:34,2019-03-03 20:39:11,1,0.77,6.0,1.2,0.0,11.0,yellow,credit card,East Village,Little Italy/NoLiTa,Manhattan,Manhattan
2019-03-26 21:42:29,2019-03-26 22:05:23,2,4.4,17.5,3.76,0.0,22.56,yellow,credit card,Fort Greene,Cypress Hills,Brooklyn,Brooklyn
2019-03-27 00:09:57,2019-03-27 00:37:20,1,9.39,29.5,0.0,0.0,33.3,yellow,cash,Garment District,Park Slope,Manhattan,Brooklyn
2019-03-03 11:16:14,2019-03-03 11:20:53,1,1.3,6.0,0.0,0.0,9.3,yellow,cash,Clinton West,Lincoln Square West,Manhattan,Manhattan
2019-03-03 21:34:24,2019-03-03 22:08:25,2,7.8,28.0,6.35,0.0,38.15,yellow,credit card,Greenwich Village North,Central Harlem,Manhattan,Manhattan
2019-03-09 02:35:34,2019-03-09 03:10:06,1,10.82,36.0,7.96,0.0,47.76,yellow,credit card,Gramercy,Washington Heights South,Manhattan,Manhattan
2019-03-18 19:41:36,2019-03-18 19:51:29,1,1.33,8.5,2.56,0.0,15.36,yellow,credit card,Midtown North,Lincoln Square West,Manhattan,Manhattan
2019-03-27 14:41:53,2019-03-27 15:20:49,4,3.03,23.0,5.26,0.0,31.56,yellow,credit card,Central Park,Greenwich Village North,Manhattan,Manhattan
2019-03-15 09:56:40,2019-03-15 10:31:18,1,13.4,38.5,0.0,0.0,39.3,yellow,cash,JFK Airport,North Corona,Queens,Queens
2019-03-26 23:54:47,2019-03-27 00:03:12,1,2.24,9.0,3.2,0.0,16.0,yellow,credit card,TriBeCa/Civic Center,Flatiron,Manhattan,Manhattan
2019-03-09 10:51:40,2019-03-09 10:55:43,1,0.74,5.0,1.66,0.0,9.96,yellow,credit card,Lincoln Square West,Lincoln Square East,Manhattan,Manhattan
2019-03-27 23:16:20,2019-03-27 23:34:32,1,4.91,17.5,4.26,0.0,25.56,yellow,credit card,East Village,Greenpoint,Manhattan,Brooklyn
2019-03-14 19:56:56,2019-03-14 20:07:03,1,1.24,8.0,3.69,0.0,15.99,yellow,credit card,Midtown Center,Upper East Side South,Manhattan,Manhattan
2019-03-25 16:23:11,2019-03-25 17:12:18,0,11.8,40.5,10.55,0.0,52.85,yellow,credit card,LaGuardia Airport,Boerum Hill,Queens,Brooklyn
2019-03-14 17:52:20,2019-03-14 18:08:32,1,2.1,12.0,3.25,0.0,19.55,yellow,credit card,Midtown Center,Kips Bay,Manhattan,Manhattan
2019-03-26 22:40:00,2019-03-26 22:56:19,1,4.1,15.0,3.75,0.0,22.55,yellow,credit card,Midtown East,Greenpoint,Manhattan,Brooklyn
2019-03-25 12:44:45,2019-03-25 12:57:31,1,1.7,10.0,2.65,0.0,15.95,yellow,credit card,Murray Hill,Greenwich Village North,Manhattan,Manhattan
2019-03-04 20:45:32,2019-03-04 20:52:24,2,0.9,6.5,1.0,0.0,11.3,yellow,credit card,Murray Hill,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-22 11:55:00,2019-03-22 12:36:56,2,16.6,52.0,6.0,5.76,67.06,yellow,credit card,Midtown Center,JFK Airport,Manhattan,Queens
2019-03-14 13:51:46,2019-03-14 13:59:11,1,1.1,7.0,3.05,0.0,13.35,yellow,credit card,Garment District,Midtown North,Manhattan,Manhattan
2019-03-05 07:01:12,2019-03-05 07:10:34,1,1.5,8.5,0.0,0.0,11.8,yellow,cash,Financial District North,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-30 21:43:33,2019-03-30 21:56:42,1,1.5,9.5,0.0,0.0,13.3,yellow,cash,West Chelsea/Hudson Yards,Garment District,Manhattan,Manhattan
2019-03-04 22:21:05,2019-03-04 22:30:40,2,2.41,9.5,3.32,0.0,16.62,yellow,credit card,Midtown Center,Yorkville West,Manhattan,Manhattan
2019-03-28 19:44:08,2019-03-28 19:55:11,1,1.5,9.0,1.0,0.0,13.8,yellow,credit card,Union Sq,Lower East Side,Manhattan,Manhattan
2019-03-27 08:38:24,2019-03-27 08:43:49,1,0.9,5.5,0.0,0.0,8.8,yellow,cash,Upper East Side South,Upper East Side North,Manhattan,Manhattan
2019-03-06 15:09:42,2019-03-06 15:19:00,1,0.77,7.0,2.06,0.0,12.36,yellow,credit card,Lincoln Square East,Clinton West,Manhattan,Manhattan
2019-03-02 12:19:18,2019-03-02 12:25:02,1,1.21,6.5,1.96,0.0,11.76,yellow,credit card,Union Sq,Greenwich Village South,Manhattan,Manhattan
2019-03-10 17:32:43,2019-03-10 17:51:17,1,2.9,15.0,3.65,0.0,21.95,yellow,credit card,Midtown North,Long Island City/Hunters Point,Manhattan,Queens
2019-03-15 23:31:29,2019-03-15 23:48:39,1,2.3,12.5,3.0,0.0,19.3,yellow,credit card,Greenwich Village South,Murray Hill,Manhattan,Manhattan
2019-03-15 10:19:19,2019-03-15 10:25:22,1,1.24,6.5,0.88,0.0,8.18,yellow,credit card,Upper West Side North,Morningside Heights,Manhattan,Manhattan
2019-03-04 15:55:01,2019-03-04 16:14:40,1,3.81,16.0,0.0,0.0,19.3,yellow,cash,Battery Park City,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-21 09:48:17,2019-03-21 10:05:14,1,0.9,11.0,2.85,0.0,17.15,yellow,credit card,Murray Hill,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-05 14:57:54,2019-03-05 15:08:35,2,1.07,8.0,2.26,0.0,13.56,yellow,credit card,Lenox Hill West,Upper East Side South,Manhattan,Manhattan
2019-03-18 15:10:01,2019-03-18 15:30:21,2,8.55,26.0,7.01,5.76,42.07,yellow,credit card,Upper East Side North,LaGuardia Airport,Manhattan,Queens
2019-03-15 15:11:55,2019-03-15 15:25:37,1,2.27,11.0,2.86,0.0,17.16,yellow,credit card,Flatiron,Lincoln Square East,Manhattan,Manhattan
2019-03-15 02:02:17,2019-03-15 02:16:41,2,8.02,23.0,0.0,0.0,24.3,yellow,cash,Steinway,Hillcrest/Pomonok,Queens,Queens
2019-03-05 14:55:55,2019-03-05 15:02:29,2,1.0,6.5,0.0,0.0,9.8,yellow,cash,Lincoln Square East,Upper West Side South,Manhattan,Manhattan
2019-03-20 17:22:33,2019-03-20 18:07:19,1,17.01,52.0,0.0,5.76,65.56,yellow,cash,JFK Airport,Midtown East,Queens,Manhattan
2019-03-06 01:29:16,2019-03-06 01:47:35,1,5.6,19.0,0.0,0.0,22.8,yellow,credit card,Garment District,East Harlem South,Manhattan,Manhattan
2019-03-25 22:43:54,2019-03-25 22:51:42,1,1.4,7.5,0.0,0.0,11.3,yellow,cash,Upper East Side South,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-13 11:29:40,2019-03-13 11:39:38,2,1.4,8.0,0.0,0.0,11.3,yellow,cash,SoHo,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-02 01:05:09,2019-03-02 01:25:21,1,6.25,20.0,4.0,0.0,27.8,yellow,credit card,East Village,Bloomingdale,Manhattan,Manhattan
2019-03-27 16:25:43,2019-03-27 16:35:23,1,0.68,7.5,0.0,0.0,11.8,yellow,cash,Upper East Side South,Upper East Side South,Manhattan,Manhattan
2019-03-18 12:54:42,2019-03-18 13:32:35,5,18.76,52.0,11.71,5.76,70.27,yellow,credit card,Central Harlem,JFK Airport,Manhattan,Queens
2019-03-08 00:42:58,2019-03-08 00:53:48,2,3.67,12.0,3.16,0.0,18.96,yellow,credit card,East Village,Yorkville West,Manhattan,Manhattan
2019-03-16 14:02:05,2019-03-16 14:10:07,3,1.2,7.5,2.16,0.0,12.96,yellow,credit card,Upper East Side South,Lenox Hill West,Manhattan,Manhattan
2019-03-22 19:16:34,2019-03-22 19:21:02,2,0.95,5.5,2.45,0.0,12.25,yellow,credit card,Lincoln Square East,Midtown North,Manhattan,Manhattan
2019-03-20 08:47:11,2019-03-20 09:07:33,1,1.3,13.0,3.26,0.0,19.56,yellow,credit card,Lincoln Square West,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-20 14:15:30,2019-03-20 14:26:48,1,4.0,14.0,0.0,0.0,14.8,yellow,credit card,JFK Airport,Baisley Park,Queens,Queens
2019-03-24 06:21:12,2019-03-24 06:46:32,1,18.99,50.5,10.26,0.0,61.56,yellow,credit card,JFK Airport,Brooklyn Heights,Queens,Brooklyn
2019-03-12 23:55:59,2019-03-13 00:06:04,1,1.2,8.0,1.5,0.0,13.3,yellow,credit card,Hudson Sq,Lower East Side,Manhattan,Manhattan
2019-03-07 19:05:47,2019-03-07 19:17:30,6,2.04,10.0,2.86,0.0,17.16,yellow,credit card,Midtown East,East Village,Manhattan,Manhattan
2019-03-12 17:55:27,2019-03-12 18:04:31,1,1.4,8.5,3.2,0.0,16.0,yellow,credit card,TriBeCa/Civic Center,Financial District South,Manhattan,Manhattan
2019-03-16 13:17:21,2019-03-16 13:25:58,1,0.66,7.0,0.0,0.0,10.3,yellow,cash,Midtown East,Midtown East,Manhattan,Manhattan
2019-03-01 21:38:07,2019-03-01 21:44:45,2,0.7,6.0,1.95,0.0,11.75,yellow,credit card,Lower East Side,Little Italy/NoLiTa,Manhattan,Manhattan
2019-03-28 23:05:10,2019-03-28 23:14:57,1,1.5,8.0,0.0,0.0,11.8,yellow,cash,Little Italy/NoLiTa,Gramercy,Manhattan,Manhattan
2019-03-23 14:00:52,2019-03-23 14:08:51,2,1.1,7.0,1.75,0.0,12.05,yellow,credit card,Midtown South,Greenwich Village North,Manhattan,Manhattan
2019-03-07 09:18:22,2019-03-07 09:26:40,1,0.81,7.0,2.06,0.0,12.36,yellow,credit card,Midtown North,Lincoln Square East,Manhattan,Manhattan
2019-03-19 09:38:21,2019-03-19 09:58:34,5,3.27,15.0,0.92,0.0,19.22,yellow,credit card,Kips Bay,East Chelsea,Manhattan,Manhattan
2019-03-13 22:40:21,2019-03-13 22:53:10,1,1.9,10.0,0.0,0.0,13.8,yellow,cash,Union Sq,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-02 16:27:34,2019-03-02 16:41:30,2,1.7,10.5,0.0,0.0,13.8,yellow,cash,Greenwich Village South,Midtown South,Manhattan,Manhattan
2019-03-05 15:01:34,2019-03-05 15:11:01,1,0.83,7.5,1.2,0.0,12.0,yellow,credit card,SoHo,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-24 08:12:47,2019-03-24 08:23:19,1,3.17,11.0,2.86,0.0,17.16,yellow,credit card,Sutton Place/Turtle Bay North,Union Sq,Manhattan,Manhattan
2019-03-28 13:18:44,2019-03-28 13:27:20,3,1.34,7.5,2.16,0.0,12.96,yellow,credit card,Lenox Hill East,Upper East Side North,Manhattan,Manhattan
2019-03-24 00:27:46,2019-03-24 00:35:12,1,1.6,7.5,2.25,0.0,13.55,yellow,credit card,West Village,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-12 21:26:25,2019-03-12 21:37:04,1,2.0,9.5,2.65,0.0,15.95,yellow,credit card,Murray Hill,Stuy Town/Peter Cooper Village,Manhattan,Manhattan
2019-03-06 14:39:34,2019-03-06 14:46:56,1,0.5,6.5,1.95,0.0,11.75,yellow,credit card,Murray Hill,Garment District,Manhattan,Manhattan
2019-03-16 01:14:24,2019-03-16 01:26:45,1,2.6,11.0,0.0,0.0,12.3,yellow,cash,Crown Heights North,Crown Heights South,Brooklyn,Brooklyn
2019-03-26 01:14:52,2019-03-26 01:20:27,1,2.14,8.0,0.0,0.0,11.8,yellow,cash,Seaport,DUMBO/Vinegar Hill,Manhattan,Brooklyn
2019-03-12 02:58:34,2019-03-12 03:04:48,2,1.5,7.0,2.15,0.0,12.95,yellow,credit card,Union Sq,Murray Hill,Manhattan,Manhattan
2019-03-26 21:07:17,2019-03-26 21:29:20,1,3.97,18.0,4.36,0.0,26.16,yellow,credit card,Union Sq,East Harlem South,Manhattan,Manhattan
2019-03-20 20:52:57,2019-03-20 21:08:21,1,4.08,14.5,3.66,0.0,21.96,yellow,credit card,East Village,Yorkville East,Manhattan,Manhattan
2019-03-01 17:51:29,2019-03-01 18:02:41,1,1.75,9.0,3.99,0.0,17.29,yellow,credit card,Penn Station/Madison Sq West,Greenwich Village North,Manhattan,Manhattan
2019-03-31 19:48:55,2019-03-31 20:00:50,1,1.22,8.5,0.0,0.0,11.8,yellow,cash,Greenwich Village North,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-11 17:55:58,2019-03-11 18:04:46,1,2.48,10.0,2.86,0.0,17.16,yellow,credit card,Battery Park City,East Chelsea,Manhattan,Manhattan
2019-03-24 12:32:26,2019-03-24 12:43:25,3,2.7,11.0,3.55,0.0,17.85,yellow,credit card,Yorkville East,East Harlem North,Manhattan,Manhattan
2019-03-12 18:34:33,2019-03-12 18:43:13,1,0.37,6.5,0.0,0.0,10.8,yellow,cash,Midtown North,Midtown North,Manhattan,Manhattan
2019-03-27 20:09:15,2019-03-27 20:13:09,1,1.29,5.5,0.0,0.0,9.3,yellow,cash,Upper West Side South,Bloomingdale,Manhattan,Manhattan
2019-03-06 23:32:10,2019-03-06 23:38:21,2,1.25,6.5,1.54,0.0,11.84,yellow,credit card,Greenwich Village South,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-21 06:12:16,2019-03-21 06:16:45,5,1.2,5.5,1.76,0.0,10.56,yellow,credit card,Penn Station/Madison Sq West,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-08 22:03:27,2019-03-08 22:16:13,1,6.35,19.0,0.0,0.0,22.8,yellow,cash,Lincoln Square West,Washington Heights South,Manhattan,Manhattan
2019-03-29 19:24:36,2019-03-29 19:33:39,1,2.23,9.5,3.45,0.0,17.25,yellow,credit card,Upper East Side South,Long Island City/Hunters Point,Manhattan,Queens
2019-03-24 00:12:23,2019-03-24 00:27:21,3,7.2,22.0,6.3,5.76,37.86,yellow,credit card,LaGuardia Airport,Yorkville East,Queens,Manhattan
2019-03-24 16:49:27,2019-03-24 16:56:46,3,1.3,6.5,1.0,0.0,10.8,yellow,credit card,Penn Station/Madison Sq West,Union Sq,Manhattan,Manhattan
2019-03-18 22:07:21,2019-03-18 22:13:35,1,1.33,6.5,2.06,0.0,12.36,yellow,credit card,Midtown South,Gramercy,Manhattan,Manhattan
2019-03-01 11:56:33,2019-03-01 12:24:09,1,12.05,35.5,0.0,0.0,36.3,yellow,credit card,Clinton East,Soundview/Castle Hill,Manhattan,Bronx
2019-03-03 00:53:01,2019-03-03 01:08:24,1,2.8,12.5,3.25,0.0,19.55,yellow,credit card,Lower East Side,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-08 17:25:38,2019-03-08 17:32:08,1,0.6,6.0,0.0,0.0,10.3,yellow,credit card,Midtown Center,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-10 03:41:47,2019-03-10 03:47:49,1,1.21,6.5,1.0,0.0,11.3,yellow,credit card,Murray Hill,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-05 12:34:42,2019-03-05 13:23:51,5,13.57,45.0,13.52,5.76,67.58,yellow,credit card,LaGuardia Airport,Lower East Side,Queens,Manhattan
2019-03-30 09:25:34,2019-03-30 09:28:42,1,0.9,5.0,0.0,0.0,8.3,yellow,cash,Times Sq/Theatre District,Garment District,Manhattan,Manhattan
2019-03-25 18:42:25,2019-03-25 18:54:54,1,1.8,9.5,2.0,0.0,15.8,yellow,credit card,Midtown Center,Union Sq,Manhattan,Manhattan
2019-03-23 04:21:32,2019-03-23 04:27:31,1,1.2,6.5,1.0,0.0,11.3,yellow,credit card,Clinton East,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-03 13:41:18,2019-03-03 13:46:47,1,0.68,5.0,2.0,0.0,10.3,yellow,credit card,Greenwich Village North,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-19 11:00:45,2019-03-19 11:07:21,1,1.3,6.5,2.45,0.0,12.25,yellow,credit card,Lincoln Square East,Upper West Side North,Manhattan,Manhattan
2019-03-30 23:50:23,2019-03-31 00:00:01,1,1.3,8.0,1.0,0.0,12.8,yellow,credit card,Lower East Side,West Village,Manhattan,Manhattan
2019-03-23 19:22:48,2019-03-23 19:28:28,2,1.4,7.0,0.0,0.0,7.8,yellow,cash,Upper West Side North,Morningside Heights,Manhattan,Manhattan
2019-03-17 17:25:09,2019-03-17 17:32:05,3,0.8,6.0,0.0,0.0,9.3,yellow,cash,Midtown Center,Clinton East,Manhattan,Manhattan
2019-03-08 22:06:50,2019-03-08 22:22:07,1,3.8,15.0,3.75,0.0,22.55,yellow,credit card,Lenox Hill West,East Village,Manhattan,Manhattan
2019-03-08 13:17:30,2019-03-08 13:26:21,1,1.64,8.0,2.26,0.0,13.56,yellow,credit card,Lenox Hill West,Upper East Side North,Manhattan,Manhattan
2019-03-23 23:17:57,2019-03-23 23:21:40,2,0.87,5.0,0.88,0.0,9.68,yellow,credit card,Lincoln Square East,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-21 08:08:23,2019-03-21 08:16:12,1,0.9,7.0,1.8,0.0,12.1,yellow,credit card,Penn Station/Madison Sq West,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-17 15:31:50,2019-03-17 15:50:33,1,5.63,18.5,0.0,0.0,21.8,yellow,cash,Kips Bay,Brooklyn Heights,Manhattan,Brooklyn
2019-03-03 22:42:09,2019-03-03 22:47:36,1,0.33,5.0,1.76,0.0,10.56,yellow,credit card,Lincoln Square East,Lincoln Square West,Manhattan,Manhattan
2019-03-04 21:46:08,2019-03-04 21:53:15,1,1.9,8.0,2.35,0.0,14.15,yellow,credit card,Sutton Place/Turtle Bay North,Yorkville East,Manhattan,Manhattan
2019-03-07 19:16:18,2019-03-07 19:44:37,1,4.4,20.5,0.0,0.0,22.3,yellow,credit card,East Chelsea,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-01 14:11:37,2019-03-01 14:17:25,1,1.04,6.0,0.0,0.0,9.3,yellow,cash,Greenwich Village North,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-31 06:51:54,2019-03-31 07:02:42,1,3.9,12.5,4.0,0.0,19.8,yellow,credit card,Clinton East,East Harlem South,Manhattan,Manhattan
2019-03-19 12:40:08,2019-03-19 13:03:40,1,3.59,17.0,1.0,0.0,21.3,yellow,credit card,Flatiron,World Trade Center,Manhattan,Manhattan
2019-03-28 22:18:16,2019-03-28 22:21:53,5,0.89,5.0,1.76,0.0,10.56,yellow,credit card,Upper East Side North,Yorkville West,Manhattan,Manhattan
2019-03-27 21:02:16,2019-03-27 21:07:33,2,1.3,6.5,2.05,0.0,12.35,yellow,credit card,Union Sq,Garment District,Manhattan,Manhattan
2019-03-17 06:49:50,2019-03-17 06:59:38,1,2.4,9.5,5.0,0.0,17.8,yellow,credit card,East Village,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-28 17:52:19,2019-03-28 18:09:37,1,1.8,12.0,0.0,0.0,16.3,yellow,cash,Midtown North,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-24 08:53:31,2019-03-24 08:57:29,3,1.03,5.5,1.76,0.0,10.56,yellow,credit card,Chinatown,Greenwich Village South,Manhattan,Manhattan
2019-03-09 14:41:28,2019-03-09 14:56:03,1,2.04,11.0,0.0,0.0,14.3,yellow,cash,Midtown South,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-06 13:16:44,2019-03-06 13:23:56,1,1.1,7.0,3.05,0.0,13.35,yellow,credit card,Upper East Side North,East Harlem South,Manhattan,Manhattan
2019-03-16 19:26:25,2019-03-16 19:46:40,1,3.66,15.0,3.66,0.0,21.96,yellow,credit card,Yorkville East,Gramercy,Manhattan,Manhattan
2019-03-17 16:09:20,2019-03-17 16:27:25,4,2.6,13.5,0.0,0.0,16.8,yellow,cash,East Chelsea,Upper East Side South,Manhattan,Manhattan
2019-03-08 13:52:36,2019-03-08 13:59:15,1,0.68,6.0,1.86,0.0,11.16,yellow,credit card,Upper East Side South,Upper East Side South,Manhattan,Manhattan
2019-03-28 19:48:23,2019-03-28 20:04:37,1,1.7,11.0,3.05,0.0,18.35,yellow,credit card,Times Sq/Theatre District,Union Sq,Manhattan,Manhattan
2019-03-01 09:33:42,2019-03-01 09:48:36,1,1.11,10.0,2.66,0.0,15.96,yellow,credit card,Clinton East,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-18 10:37:34,2019-03-18 10:49:36,1,1.3,9.0,2.45,0.0,14.75,yellow,credit card,Murray Hill,Clinton West,Manhattan,Manhattan
2019-03-18 18:47:11,2019-03-18 19:05:14,1,2.1,13.0,3.45,0.0,20.75,yellow,credit card,East Village,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-19 23:23:12,2019-03-19 23:38:38,1,3.37,13.5,2.0,0.0,19.3,yellow,credit card,Clinton East,Alphabet City,Manhattan,Manhattan
2019-03-20 20:38:18,2019-03-20 20:45:26,0,1.1,6.5,1.56,0.0,9.36,yellow,credit card,Midtown Center,Midtown Center,Manhattan,Manhattan
2019-03-15 22:38:47,2019-03-15 22:41:19,1,0.6,4.0,1.0,0.0,8.8,yellow,credit card,Clinton East,Lincoln Square West,Manhattan,Manhattan
2019-03-02 03:22:04,2019-03-02 03:32:37,1,1.47,8.5,2.0,0.0,14.3,yellow,credit card,Lower East Side,Greenwich Village North,Manhattan,Manhattan
2019-03-15 18:51:54,2019-03-15 19:46:20,2,17.28,52.0,13.11,5.76,78.67,yellow,credit card,JFK Airport,Midtown Center,Queens,Manhattan
2019-03-22 04:46:14,2019-03-22 05:16:28,5,18.94,52.0,12.21,5.76,73.27,yellow,credit card,Upper East Side North,JFK Airport,Manhattan,Queens
2019-03-12 18:23:06,2019-03-12 18:31:25,1,0.53,6.5,2.16,0.0,12.96,yellow,credit card,Midtown Center,Midtown South,Manhattan,Manhattan
2019-03-28 13:20:19,2019-03-28 13:36:52,1,1.08,11.0,0.0,0.0,14.3,yellow,cash,Times Sq/Theatre District,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-23 18:49:13,2019-03-23 19:01:58,2,2.33,10.5,2.76,0.0,16.56,yellow,credit card,East Village,Kips Bay,Manhattan,Manhattan
2019-03-23 02:42:30,2019-03-23 02:46:36,1,0.75,5.0,1.76,0.0,10.56,yellow,credit card,Gramercy,Union Sq,Manhattan,Manhattan
2019-03-23 22:06:31,2019-03-23 22:12:32,1,0.6,5.5,0.0,0.0,9.3,yellow,cash,Union Sq,Midtown South,Manhattan,Manhattan
2019-03-23 02:12:39,2019-03-23 02:19:07,1,1.55,7.0,1.0,0.0,11.8,yellow,credit card,Midtown South,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-09 17:26:02,2019-03-09 17:26:10,1,0.9,2.5,0.0,0.0,5.8,yellow,cash,Murray Hill,Murray Hill,Manhattan,Manhattan
2019-03-02 12:12:02,2019-03-02 12:17:06,2,0.64,5.0,2.08,0.0,10.38,yellow,credit card,UN/Turtle Bay South,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-01 21:29:24,2019-03-01 21:42:30,1,2.8,12.0,3.16,0.0,18.96,yellow,credit card,Midtown Center,Upper West Side North,Manhattan,Manhattan
2019-03-12 09:24:13,2019-03-12 09:40:30,6,2.11,12.0,0.0,0.0,15.3,yellow,cash,Hudson Sq,East Chelsea,Manhattan,Manhattan
2019-03-12 18:14:47,2019-03-12 18:31:07,1,1.1,11.0,1.0,0.0,16.3,yellow,credit card,Midtown East,Midtown Center,Manhattan,Manhattan
2019-03-21 21:41:31,2019-03-21 21:52:49,2,1.4,8.5,2.0,0.0,14.3,yellow,credit card,East Village,Kips Bay,Manhattan,Manhattan
2019-03-05 14:54:04,2019-03-05 15:00:50,1,0.88,6.5,2.94,0.0,12.74,yellow,credit card,Upper West Side South,Upper West Side South,Manhattan,Manhattan
2019-03-13 07:37:38,2019-03-13 07:53:49,2,5.9,19.0,0.0,0.0,22.3,yellow,cash,Two Bridges/Seward Park,East Harlem South,Manhattan,Manhattan
2019-03-11 17:20:38,2019-03-11 17:32:30,2,0.83,8.5,3.2,0.0,16.0,yellow,credit card,Midtown East,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-14 19:06:21,2019-03-14 19:28:14,1,1.05,13.5,0.0,0.0,17.8,yellow,cash,East Chelsea,Garment District,Manhattan,Manhattan
2019-03-07 09:07:26,2019-03-07 09:22:20,1,1.39,10.5,1.0,0.0,14.8,yellow,credit card,Upper West Side South,Central Park,Manhattan,Manhattan
2019-03-31 11:37:47,2019-03-31 11:47:12,2,1.1,7.5,2.15,0.0,12.95,yellow,credit card,Gramercy,Flatiron,Manhattan,Manhattan
2019-03-26 08:44:47,2019-03-26 08:51:36,1,1.2,6.5,2.45,0.0,12.25,yellow,credit card,Clinton East,Clinton West,Manhattan,Manhattan
2019-03-05 07:39:37,2019-03-05 07:47:22,1,1.2,7.0,2.05,0.0,12.35,yellow,credit card,Upper West Side North,Upper East Side North,Manhattan,Manhattan
2019-03-28 18:21:43,2019-03-28 18:23:48,3,0.49,3.5,0.0,0.0,7.8,yellow,cash,Flatiron,East Chelsea,Manhattan,Manhattan
2019-03-14 20:33:35,2019-03-14 20:47:52,1,2.58,12.0,3.16,0.0,18.96,yellow,credit card,Clinton East,Yorkville East,Manhattan,Manhattan
2019-03-28 20:25:20,2019-03-28 20:47:14,1,8.24,25.5,6.51,5.76,39.07,yellow,credit card,East Harlem North,Randalls Island,Manhattan,Manhattan
2019-03-04 06:44:01,2019-03-04 06:54:26,0,2.1,10.0,0.7,0.0,14.0,yellow,credit card,Greenwich Village North,Midtown East,Manhattan,Manhattan
2019-03-15 08:17:30,2019-03-15 08:25:03,1,1.4,7.0,2.05,0.0,12.35,yellow,credit card,Upper East Side South,Midtown North,Manhattan,Manhattan
2019-03-10 14:16:39,2019-03-10 14:18:12,1,0.55,3.5,0.0,0.0,4.3,yellow,cash,East Harlem North,East Harlem South,Manhattan,Manhattan
2019-03-13 14:37:14,2019-03-13 14:43:12,0,0.7,5.5,1.75,0.0,10.55,yellow,credit card,Little Italy/NoLiTa,West Village,Manhattan,Manhattan
2019-03-24 15:12:59,2019-03-24 15:24:49,2,0.9,8.5,0.0,0.0,11.8,yellow,cash,Times Sq/Theatre District,East Chelsea,Manhattan,Manhattan
2019-03-01 18:33:04,2019-03-01 18:39:32,2,0.8,6.0,2.05,0.0,12.35,yellow,credit card,Clinton West,Garment District,Manhattan,Manhattan
2019-03-01 08:32:53,2019-03-01 08:47:18,1,3.09,12.0,3.06,0.0,18.36,yellow,credit card,Hudson Sq,Alphabet City,Manhattan,Manhattan
2019-03-31 00:14:24,2019-03-31 00:29:29,1,1.9,11.5,1.0,0.0,16.3,yellow,credit card,East Village,Two Bridges/Seward Park,Manhattan,Manhattan
2019-03-24 04:54:14,2019-03-24 05:04:44,1,2.07,9.5,1.0,0.0,14.3,yellow,credit card,Union Sq,Alphabet City,Manhattan,Manhattan
2019-03-06 22:16:22,2019-03-06 22:28:48,4,3.04,12.0,3.16,0.0,18.96,yellow,credit card,Times Sq/Theatre District,Upper East Side North,Manhattan,Manhattan
2019-03-02 12:18:08,2019-03-02 12:32:38,1,1.65,10.5,2.76,0.0,16.56,yellow,credit card,East Chelsea,Midtown East,Manhattan,Manhattan
2019-03-30 19:51:47,2019-03-30 20:16:37,1,8.44,26.0,7.01,5.76,42.07,yellow,credit card,LaGuardia Airport,Upper East Side North,Queens,Manhattan
2019-03-22 07:46:12,2019-03-22 08:07:15,5,1.43,13.5,0.0,0.0,16.8,yellow,cash,Murray Hill,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-30 01:04:32,2019-03-30 01:20:04,3,3.95,15.5,1.93,0.0,21.23,yellow,credit card,Lower East Side,Murray Hill,Manhattan,Manhattan
2019-03-02 07:28:47,2019-03-02 07:35:25,1,1.5,7.0,0.0,0.0,10.3,yellow,cash,Upper East Side South,Murray Hill,Manhattan,Manhattan
2019-03-14 23:53:10,2019-03-15 00:04:00,1,2.5,10.0,2.76,0.0,16.56,yellow,credit card,Midtown East,East Village,Manhattan,Manhattan
2019-03-18 19:48:37,2019-03-18 19:51:15,1,0.69,4.0,1.24,0.0,9.54,yellow,credit card,Midtown Center,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-27 17:59:17,2019-03-27 18:27:22,1,2.75,18.0,4.46,0.0,26.76,yellow,credit card,Midtown Center,Kips Bay,Manhattan,Manhattan
2019-03-26 18:05:04,2019-03-26 18:31:31,1,2.04,16.5,0.0,0.0,20.8,yellow,cash,Times Sq/Theatre District,East Village,Manhattan,Manhattan
2019-03-07 12:27:10,2019-03-07 12:48:31,1,3.39,16.5,3.96,0.0,23.76,yellow,credit card,East Chelsea,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-17 15:49:14,2019-03-17 15:58:56,2,1.33,8.0,2.26,0.0,13.56,yellow,credit card,Midtown North,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-18 08:01:22,2019-03-18 08:09:14,2,1.15,7.0,2.06,0.0,12.36,yellow,credit card,Little Italy/NoLiTa,Greenwich Village North,Manhattan,Manhattan
2019-03-21 22:07:10,2019-03-21 22:17:36,1,1.94,9.5,2.2,0.0,15.5,yellow,credit card,Upper West Side South,Lenox Hill West,Manhattan,Manhattan
2019-03-28 10:09:23,2019-03-28 10:24:41,2,1.62,11.0,2.0,0.0,16.3,yellow,credit card,Central Park,Midtown Center,Manhattan,Manhattan
2019-03-25 22:38:58,2019-03-25 22:43:42,2,0.81,5.5,0.0,0.0,9.3,yellow,cash,Clinton East,Midtown North,Manhattan,Manhattan
2019-03-20 12:49:35,2019-03-20 12:58:37,3,0.37,7.0,0.0,0.0,10.3,yellow,cash,Penn Station/Madison Sq West,Garment District,Manhattan,Manhattan
2019-03-14 12:30:56,2019-03-14 13:03:15,1,11.79,36.5,0.0,0.0,39.8,yellow,cash,West Chelsea/Hudson Yards,Melrose South,Manhattan,Bronx
2019-03-14 00:59:00,2019-03-14 01:04:01,1,1.4,6.5,2.05,0.0,12.35,yellow,credit card,East Village,Murray Hill,Manhattan,Manhattan
2019-03-19 06:57:14,2019-03-19 07:00:08,1,1.3,5.5,0.0,0.0,6.3,yellow,,Boerum Hill,Columbia Street,Brooklyn,Brooklyn
2019-03-30 12:01:56,2019-03-30 12:16:46,1,3.42,14.0,2.0,0.0,19.3,yellow,credit card,Midtown East,Central Park,Manhattan,Manhattan
2019-03-09 20:25:17,2019-03-09 20:40:18,2,2.6,12.0,3.15,0.0,18.95,yellow,credit card,Penn Station/Madison Sq West,Battery Park City,Manhattan,Manhattan
2019-03-12 21:15:09,2019-03-12 21:31:47,2,2.1,12.0,3.15,0.0,18.95,yellow,credit card,TriBeCa/Civic Center,East Village,Manhattan,Manhattan
2019-03-23 14:33:01,2019-03-23 14:51:41,5,1.63,12.5,0.0,0.0,15.8,yellow,cash,Battery Park City,Chinatown,Manhattan,Manhattan
2019-03-01 21:02:27,2019-03-01 21:07:03,1,1.2,6.0,1.95,0.0,11.75,yellow,credit card,Midtown East,Upper East Side South,Manhattan,Manhattan
2019-03-06 08:38:24,2019-03-06 08:57:53,1,1.26,12.5,0.0,0.0,15.8,yellow,cash,Garment District,Murray Hill,Manhattan,Manhattan
2019-03-11 22:41:38,2019-03-11 22:50:06,2,1.32,7.5,0.0,0.0,11.3,yellow,cash,Clinton East,Midtown South,Manhattan,Manhattan
2019-03-13 19:00:14,2019-03-13 19:49:44,1,9.0,35.5,7.95,0.0,47.75,yellow,credit card,Midtown North,Park Slope,Manhattan,Brooklyn
2019-03-08 18:37:06,2019-03-08 18:44:08,1,1.2,7.0,1.75,0.0,10.55,yellow,credit card,Morningside Heights,Upper West Side North,Manhattan,Manhattan
2019-03-03 09:25:55,2019-03-03 09:34:53,1,1.78,8.5,1.5,0.0,13.3,yellow,credit card,Midtown North,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-18 13:28:31,2019-03-18 13:39:03,3,0.9,8.0,0.0,0.0,11.3,yellow,cash,Midtown North,Midtown East,Manhattan,Manhattan
2019-03-25 16:02:33,2019-03-25 16:09:38,1,1.1,6.5,1.0,0.0,11.8,yellow,credit card,West Village,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-24 01:08:20,2019-03-24 01:08:34,1,0.02,2.5,0.0,0.0,6.3,yellow,cash,Meatpacking/West Village West,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-26 14:18:55,2019-03-26 14:27:01,5,0.99,6.5,0.0,0.0,9.8,yellow,cash,East Village,Gramercy,Manhattan,Manhattan
2019-03-22 18:00:02,2019-03-22 18:13:31,1,1.8,10.0,0.0,0.0,14.3,yellow,cash,Union Sq,East Village,Manhattan,Manhattan
2019-03-31 10:54:31,2019-03-31 10:57:34,1,0.2,4.0,0.0,0.0,7.3,yellow,cash,Williamsburg (South Side),Williamsburg (South Side),Brooklyn,Brooklyn
2019-03-07 16:31:21,2019-03-07 16:40:50,1,1.15,7.5,1.0,0.0,12.8,yellow,credit card,TriBeCa/Civic Center,SoHo,Manhattan,Manhattan
2019-03-25 18:58:26,2019-03-25 19:10:36,1,2.45,11.5,2.37,0.0,18.17,yellow,credit card,Hudson Sq,Financial District South,Manhattan,Manhattan
2019-03-14 23:00:54,2019-03-14 23:19:05,1,3.53,15.0,4.7,0.0,23.5,yellow,credit card,Lower East Side,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-11 16:55:41,2019-03-11 17:06:13,5,2.03,9.5,0.0,0.0,13.8,yellow,cash,Lenox Hill East,Lincoln Square East,Manhattan,Manhattan
2019-03-07 09:09:24,2019-03-07 09:48:44,3,8.19,30.5,0.0,5.76,39.56,yellow,cash,East Chelsea,Park Slope,Manhattan,Brooklyn
2019-03-29 03:34:59,2019-03-29 03:50:49,1,6.18,19.5,4.66,0.0,27.96,yellow,credit card,Clinton East,Washington Heights South,Manhattan,Manhattan
2019-03-10 18:37:52,2019-03-10 18:58:09,1,4.0,16.5,4.15,0.0,24.95,yellow,credit card,Union Sq,Upper West Side North,Manhattan,Manhattan
2019-03-08 21:34:20,2019-03-08 21:49:01,2,3.3,13.0,5.0,0.0,21.8,yellow,credit card,Financial District South,Brooklyn Heights,Manhattan,Brooklyn
2019-03-02 16:29:57,2019-03-02 16:34:41,1,0.86,5.5,1.76,0.0,10.56,yellow,credit card,Penn Station/Madison Sq West,Flatiron,Manhattan,Manhattan
2019-03-29 18:35:28,2019-03-29 18:54:37,1,2.1,13.0,3.46,0.0,20.76,yellow,credit card,Midtown South,SoHo,Manhattan,Manhattan
2019-03-30 22:50:12,2019-03-30 22:52:22,5,0.58,4.0,2.34,0.0,10.14,yellow,credit card,Central Park,Central Park,Manhattan,Manhattan
2019-03-31 13:36:49,2019-03-31 14:00:43,2,2.46,15.5,3.76,0.0,22.56,yellow,credit card,Midtown East,East Chelsea,Manhattan,Manhattan
2019-03-17 18:57:44,2019-03-17 19:03:18,1,1.6,7.0,2.06,0.0,12.36,yellow,credit card,Yorkville West,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-18 11:33:18,2019-03-18 11:43:03,2,0.93,7.5,1.1,0.0,11.9,yellow,credit card,Murray Hill,Midtown Center,Manhattan,Manhattan
2019-03-23 11:12:10,2019-03-23 11:21:10,4,1.77,8.0,0.0,0.0,11.3,yellow,cash,Greenwich Village South,World Trade Center,Manhattan,Manhattan
2019-03-13 07:55:53,2019-03-13 07:59:35,1,0.88,5.0,2.08,0.0,10.38,yellow,credit card,Upper East Side South,Midtown East,Manhattan,Manhattan
2019-03-09 13:24:54,2019-03-09 13:28:50,1,0.57,4.5,1.56,0.0,9.36,yellow,credit card,Upper East Side South,Midtown East,Manhattan,Manhattan
2019-03-17 03:42:53,2019-03-17 03:50:53,5,2.54,9.5,2.66,0.0,15.96,yellow,credit card,Union Sq,Financial District North,Manhattan,Manhattan
2019-03-01 19:51:23,2019-03-01 20:00:07,1,1.47,7.5,2.36,0.0,14.16,yellow,credit card,Midtown East,Kips Bay,Manhattan,Manhattan
2019-03-31 09:52:21,2019-03-31 09:57:46,6,1.19,6.0,1.86,0.0,11.16,yellow,credit card,Penn Station/Madison Sq West,Union Sq,Manhattan,Manhattan
2019-03-29 18:32:29,2019-03-29 18:45:32,1,2.79,12.5,3.36,0.0,20.16,yellow,credit card,Murray Hill,Two Bridges/Seward Park,Manhattan,Manhattan
2019-03-20 14:05:34,2019-03-20 14:12:28,2,1.02,6.5,0.0,0.0,9.8,yellow,cash,Lenox Hill West,Upper East Side North,Manhattan,Manhattan
2019-03-30 18:52:10,2019-03-30 19:04:46,2,3.48,13.0,3.26,0.0,19.56,yellow,credit card,Midtown South,Upper East Side North,Manhattan,Manhattan
2019-03-30 15:08:38,2019-03-30 15:19:44,1,1.73,9.5,1.0,0.0,13.8,yellow,credit card,Lincoln Square East,Upper East Side South,Manhattan,Manhattan
2019-03-06 22:04:19,2019-03-06 22:12:56,4,1.11,7.0,2.16,0.0,12.96,yellow,credit card,Battery Park City,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-16 03:09:49,2019-03-16 03:17:49,1,1.6,7.5,1.0,0.0,12.3,yellow,credit card,West Village,East Village,Manhattan,Manhattan
2019-03-25 09:07:29,2019-03-25 09:30:47,1,2.92,16.0,4.82,0.0,24.12,yellow,credit card,Midtown Center,Hudson Sq,Manhattan,Manhattan
2019-03-08 16:26:52,2019-03-08 16:32:17,1,0.6,5.5,2.45,0.0,12.25,yellow,credit card,Midtown Center,Midtown South,Manhattan,Manhattan
2019-03-16 00:01:32,2019-03-16 00:27:06,1,5.24,21.0,3.5,0.0,28.3,yellow,credit card,Lincoln Square East,Steinway,Manhattan,Queens
2019-03-07 07:11:33,2019-03-07 07:11:39,1,1.6,2.5,0.0,0.0,5.8,yellow,,Murray Hill,Murray Hill,Manhattan,Manhattan
2019-03-25 18:49:11,2019-03-25 18:55:59,1,1.64,7.0,3.39,0.0,14.69,yellow,credit card,Meatpacking/West Village West,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-28 21:26:12,2019-03-28 21:33:37,1,1.0,6.5,2.05,0.0,12.35,yellow,credit card,Midtown North,Garment District,Manhattan,Manhattan
2019-03-25 07:55:58,2019-03-25 08:03:50,1,1.6,7.5,2.16,0.0,12.96,yellow,credit card,Upper West Side North,Lincoln Square East,Manhattan,Manhattan
2019-03-29 09:44:36,2019-03-29 10:07:13,1,2.17,14.5,1.0,0.0,18.8,yellow,credit card,Upper East Side South,Garment District,Manhattan,Manhattan
2019-03-31 12:48:27,2019-03-31 12:58:46,1,1.56,8.0,1.7,0.0,13.0,yellow,credit card,Upper East Side South,Murray Hill,Manhattan,Manhattan
2019-03-12 15:04:51,2019-03-12 15:12:22,1,0.6,6.0,0.0,0.0,9.3,yellow,cash,Upper East Side South,Midtown East,Manhattan,Manhattan
2019-03-24 21:50:26,2019-03-24 22:04:53,1,4.39,15.5,0.0,0.0,19.3,yellow,cash,Yorkville West,Alphabet City,Manhattan,Manhattan
2019-03-15 13:06:10,2019-03-15 13:30:26,1,8.4,27.5,6.15,0.0,36.95,yellow,credit card,Lenox Hill East,Fort Greene,Manhattan,Brooklyn
2019-03-05 22:01:02,2019-03-05 22:22:52,1,4.36,18.0,4.36,0.0,26.16,yellow,credit card,Penn Station/Madison Sq West,Long Island City/Hunters Point,Manhattan,Queens
2019-03-21 16:33:14,2019-03-21 17:17:49,1,9.65,33.0,10.76,5.76,53.82,yellow,credit card,Midtown Center,LaGuardia Airport,Manhattan,Queens
2019-03-27 18:07:50,2019-03-27 18:17:00,1,2.7,10.0,2.0,0.0,16.3,yellow,credit card,Financial District North,Two Bridges/Seward Park,Manhattan,Manhattan
2019-03-30 21:45:17,2019-03-30 21:53:10,2,1.49,7.5,2.26,0.0,13.56,yellow,credit card,Upper West Side South,Morningside Heights,Manhattan,Manhattan
2019-03-10 05:10:07,2019-03-10 05:25:27,1,4.2,15.5,4.8,0.0,24.1,yellow,credit card,Meatpacking/West Village West,Lincoln Square West,Manhattan,Manhattan
2019-03-23 18:46:09,2019-03-23 18:59:54,1,2.8,11.5,2.0,0.0,16.8,yellow,credit card,Central Harlem,Lincoln Square East,Manhattan,Manhattan
2019-03-05 09:12:13,2019-03-05 09:19:59,1,0.5,6.5,1.0,0.0,10.8,yellow,credit card,Murray Hill,Midtown South,Manhattan,Manhattan
2019-03-24 17:06:49,2019-03-24 17:13:39,1,1.14,7.0,0.0,0.0,10.3,yellow,cash,Times Sq/Theatre District,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-07 08:37:32,2019-03-07 09:02:32,1,9.4,28.5,1.59,0.0,33.39,yellow,credit card,Alphabet City,Melrose South,Manhattan,Bronx
2019-03-05 08:17:41,2019-03-05 08:29:39,1,0.91,8.5,2.36,0.0,14.16,yellow,credit card,Penn Station/Madison Sq West,Kips Bay,Manhattan,Manhattan
2019-03-20 13:02:55,2019-03-20 13:42:30,1,6.93,29.5,0.0,0.0,32.8,yellow,cash,Penn Station/Madison Sq West,Williamsburg (South Side),Manhattan,Brooklyn
2019-03-08 02:41:09,2019-03-08 03:03:39,1,6.5,21.5,2.0,0.0,27.3,yellow,credit card,Clinton East,Cobble Hill,Manhattan,Brooklyn
2019-03-02 00:50:31,2019-03-02 00:58:26,1,1.5,7.5,1.7,0.0,13.0,yellow,credit card,Kips Bay,West Village,Manhattan,Manhattan
2019-03-19 15:20:37,2019-03-19 15:35:12,1,2.0,11.5,1.48,0.0,16.28,yellow,credit card,Lenox Hill West,Upper West Side North,Manhattan,Manhattan
2019-03-07 06:16:11,2019-03-07 06:57:59,1,13.04,37.58,0.0,0.0,38.38,yellow,credit card,Rosedale,Clinton Hill,Queens,Brooklyn
2019-03-25 16:09:19,2019-03-25 16:49:22,1,10.88,36.0,7.56,0.0,45.36,yellow,credit card,LaGuardia Airport,Brooklyn Heights,Queens,Brooklyn
2019-03-08 08:25:31,2019-03-08 08:43:19,2,1.7,12.0,1.0,0.0,16.3,yellow,credit card,Murray Hill,Midtown East,Manhattan,Manhattan
2019-03-30 00:55:22,2019-03-30 01:06:17,2,1.96,9.0,0.0,0.0,12.8,yellow,cash,West Chelsea/Hudson Yards,Midtown South,Manhattan,Manhattan
2019-03-08 02:37:35,2019-03-08 02:51:51,1,5.3,16.5,2.0,0.0,22.3,yellow,credit card,Midtown South,Central Harlem North,Manhattan,Manhattan
2019-03-01 08:25:43,2019-03-01 08:36:41,1,0.83,8.0,2.26,0.0,13.56,yellow,credit card,Upper East Side North,Midtown North,Manhattan,Manhattan
2019-03-17 01:02:45,2019-03-17 01:18:03,1,3.47,13.5,2.6,0.0,19.9,yellow,credit card,SoHo,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-02 18:20:08,2019-03-02 18:44:15,1,6.0,22.5,0.0,0.0,25.8,yellow,cash,Midtown Center,Financial District South,Manhattan,Manhattan
2019-03-07 03:00:20,2019-03-07 03:08:01,5,2.32,8.5,2.46,0.0,14.76,yellow,credit card,Greenwich Village North,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-02 15:08:49,2019-03-02 15:30:27,2,3.5,15.5,3.76,0.0,22.56,yellow,credit card,Flatiron,Financial District South,Manhattan,Manhattan
2019-03-26 17:03:17,2019-03-26 17:39:56,1,8.84,32.0,0.0,5.76,42.06,yellow,cash,LaGuardia Airport,Garment District,Queens,Manhattan
2019-03-28 14:07:41,2019-03-28 14:23:58,1,2.39,12.0,0.0,0.0,15.3,yellow,cash,Clinton East,West Village,Manhattan,Manhattan
2019-03-12 22:44:58,2019-03-12 22:56:40,2,2.0,10.0,0.0,0.0,13.8,yellow,cash,Lincoln Square East,Midtown Center,Manhattan,Manhattan
2019-03-06 17:26:44,2019-03-06 17:36:41,1,1.3,8.0,3.65,0.0,15.95,yellow,credit card,Lincoln Square West,Clinton East,Manhattan,Manhattan
2019-03-11 12:25:53,2019-03-11 12:30:36,1,0.89,5.5,0.0,0.0,6.3,yellow,credit card,Flushing,East Flushing,Queens,Queens
2019-03-10 12:16:52,2019-03-10 12:21:22,0,1.5,6.5,1.95,0.0,11.75,yellow,credit card,Lenox Hill West,Upper East Side North,Manhattan,Manhattan
2019-03-16 15:37:34,2019-03-16 15:46:58,2,1.46,8.0,1.2,0.0,12.5,yellow,credit card,West Village,Gramercy,Manhattan,Manhattan
2019-03-13 20:24:03,2019-03-13 20:33:10,1,1.42,8.0,2.36,0.0,14.16,yellow,credit card,Midtown South,East Village,Manhattan,Manhattan
2019-03-20 21:25:03,2019-03-20 21:31:02,1,1.0,6.0,1.47,0.0,11.27,yellow,credit card,Times Sq/Theatre District,Midtown Center,Manhattan,Manhattan
2019-03-14 13:28:00,2019-03-14 14:01:57,1,2.8,21.0,6.05,0.0,30.35,yellow,credit card,Upper West Side South,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-12 09:17:12,2019-03-12 09:55:52,1,4.4,24.5,2.5,0.0,30.3,yellow,credit card,Upper West Side North,Midtown South,Manhattan,Manhattan
2019-03-24 14:49:15,2019-03-24 14:54:21,1,0.78,5.5,0.0,0.0,8.8,yellow,cash,Bloomingdale,Upper West Side South,Manhattan,Manhattan
2019-03-22 15:59:29,2019-03-22 16:10:08,1,0.52,8.0,2.26,0.0,13.56,yellow,credit card,Clinton East,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-26 05:48:16,2019-03-26 05:52:29,1,1.03,5.5,0.0,0.0,6.8,yellow,cash,Old Astoria,Old Astoria,Queens,Queens
2019-03-08 19:09:50,2019-03-08 19:46:58,1,9.28,34.0,6.61,5.76,50.67,yellow,credit card,LaGuardia Airport,Gramercy,Queens,Manhattan
2019-03-29 14:36:11,2019-03-29 15:04:43,1,9.1,28.0,5.56,5.76,42.62,yellow,credit card,Midtown South,LaGuardia Airport,Manhattan,Queens
2019-03-14 22:01:03,2019-03-14 22:24:33,2,3.58,17.0,4.16,0.0,24.96,yellow,credit card,Clinton East,Little Italy/NoLiTa,Manhattan,Manhattan
2019-03-21 22:40:43,2019-03-21 22:57:27,1,3.2,13.5,3.46,0.0,20.76,yellow,credit card,Midtown East,West Village,Manhattan,Manhattan
2019-03-31 22:51:53,2019-03-31 22:55:10,1,0.67,4.5,1.66,0.0,9.96,yellow,credit card,West Village,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-07 09:17:26,2019-03-07 09:22:40,1,0.98,6.0,1.86,0.0,11.16,yellow,credit card,Battery Park City,Hudson Sq,Manhattan,Manhattan
2019-03-26 08:08:05,2019-03-26 08:25:58,2,0.7,11.5,2.95,0.0,17.75,yellow,credit card,Midtown East,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-27 11:03:43,2019-03-27 11:14:34,1,4.2,15.0,0.0,0.0,15.8,yellow,,LaGuardia Airport,Forest Hills,Queens,Queens
2019-03-23 11:35:30,2019-03-23 11:42:47,6,0.73,6.0,2.32,0.0,11.62,yellow,credit card,Murray Hill,Garment District,Manhattan,Manhattan
2019-03-19 11:44:37,2019-03-19 12:05:39,1,2.52,14.5,0.0,0.0,17.8,yellow,cash,Times Sq/Theatre District,West Village,Manhattan,Manhattan
2019-03-26 21:03:37,2019-03-26 21:09:02,6,0.87,5.5,0.0,0.0,9.3,yellow,cash,Upper East Side North,Yorkville West,Manhattan,Manhattan
2019-03-16 22:51:55,2019-03-16 23:17:51,1,3.29,17.5,5.32,0.0,26.62,yellow,credit card,Lower East Side,East Chelsea,Manhattan,Manhattan
2019-03-11 18:51:46,2019-03-11 18:57:50,1,0.9,6.0,2.55,0.0,12.85,yellow,credit card,Midtown Center,Midtown East,Manhattan,Manhattan
2019-03-30 12:56:34,2019-03-30 13:12:56,1,3.07,13.5,1.0,0.0,17.8,yellow,credit card,Bloomingdale,Lenox Hill West,Manhattan,Manhattan
2019-03-19 08:15:41,2019-03-19 08:21:25,1,0.7,5.5,0.0,0.0,8.8,yellow,cash,Upper East Side North,Lenox Hill West,Manhattan,Manhattan
2019-03-01 17:20:40,2019-03-01 17:24:49,1,0.83,5.0,1.86,0.0,11.16,yellow,credit card,Upper East Side North,Upper East Side South,Manhattan,Manhattan
2019-03-31 17:36:23,2019-03-31 17:49:11,1,4.7,15.5,3.26,0.0,19.56,yellow,credit card,LaGuardia Airport,Sunnyside,Queens,Queens
2019-03-27 07:52:03,2019-03-27 08:00:51,1,1.2,7.5,2.15,0.0,12.95,yellow,credit card,Murray Hill,Midtown Center,Manhattan,Manhattan
2019-03-12 08:17:33,2019-03-12 08:38:51,1,4.7,18.5,4.35,0.0,26.15,yellow,credit card,Clinton East,Battery Park City,Manhattan,Manhattan
2019-03-11 00:27:49,2019-03-11 00:31:23,1,1.5,6.0,1.95,0.0,11.75,yellow,credit card,UN/Turtle Bay South,Gramercy,Manhattan,Manhattan
2019-03-27 18:12:36,2019-03-27 18:21:23,1,2.16,9.0,2.66,0.0,15.96,yellow,credit card,East Chelsea,Clinton West,Manhattan,Manhattan
2019-03-06 14:58:30,2019-03-06 15:16:31,1,1.67,12.5,0.0,0.0,15.8,yellow,cash,UN/Turtle Bay South,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-10 10:35:21,2019-03-10 10:39:16,2,0.8,5.0,0.0,0.0,8.3,yellow,cash,Times Sq/Theatre District,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-19 06:33:59,2019-03-19 06:39:50,1,1.48,7.0,2.06,0.0,12.36,yellow,credit card,Upper West Side North,Upper East Side North,Manhattan,Manhattan
2019-03-19 19:25:14,2019-03-19 19:29:10,2,0.61,4.5,1.76,0.0,10.56,yellow,credit card,Lenox Hill West,Lenox Hill West,Manhattan,Manhattan
2019-03-16 01:44:25,2019-03-16 01:49:36,1,1.42,6.5,2.06,0.0,12.36,yellow,credit card,East Village,Kips Bay,Manhattan,Manhattan
2019-03-06 13:33:16,2019-03-06 13:44:52,1,1.04,8.5,3.54,0.0,15.34,yellow,credit card,West Village,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-15 21:39:33,2019-03-15 21:57:41,1,1.47,11.5,1.0,0.0,16.3,yellow,credit card,Midtown Center,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-30 22:57:52,2019-03-30 23:15:38,5,2.32,12.5,2.44,0.0,18.74,yellow,credit card,Greenwich Village South,Murray Hill,Manhattan,Manhattan
2019-03-29 21:49:47,2019-03-29 22:13:52,2,2.9,16.5,0.0,0.0,20.3,yellow,cash,Penn Station/Madison Sq West,Lower East Side,Manhattan,Manhattan
2019-03-11 16:55:42,2019-03-11 17:12:36,1,1.9,11.5,3.15,0.0,18.95,yellow,credit card,TriBeCa/Civic Center,Gramercy,Manhattan,Manhattan
2019-03-02 20:58:52,2019-03-02 21:25:51,1,3.76,19.0,4.56,0.0,27.36,yellow,credit card,West Village,Upper East Side South,Manhattan,Manhattan
2019-03-06 17:11:20,2019-03-06 17:42:51,1,4.2,22.0,2.0,0.0,28.3,yellow,credit card,TriBeCa/Civic Center,Murray Hill,Manhattan,Manhattan
2019-03-15 16:13:07,2019-03-15 16:17:32,1,0.6,5.0,0.0,0.0,9.3,yellow,cash,Upper East Side South,Upper East Side South,Manhattan,Manhattan
2019-03-02 17:36:56,2019-03-02 17:46:32,1,1.7,8.5,1.0,0.0,12.8,yellow,credit card,Clinton East,East Chelsea,Manhattan,Manhattan
2019-03-13 14:26:22,2019-03-13 14:33:08,1,1.2,6.5,1.0,0.0,10.8,yellow,credit card,Midtown Center,Union Sq,Manhattan,Manhattan
2019-03-17 12:37:47,2019-03-17 12:59:21,1,1.7,14.0,1.73,0.0,19.03,yellow,credit card,Lincoln Square East,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-21 04:38:06,2019-03-21 04:56:45,2,7.4,23.5,5.45,0.0,32.75,yellow,credit card,Lower East Side,Manhattan Valley,Manhattan,Manhattan
2019-03-09 23:05:14,2019-03-09 23:28:52,3,3.48,16.5,4.06,0.0,24.36,yellow,credit card,Lincoln Square East,Greenwich Village North,Manhattan,Manhattan
2019-03-17 12:10:05,2019-03-17 12:15:28,4,1.3,6.0,1.0,0.0,10.3,yellow,credit card,Upper East Side South,Yorkville West,Manhattan,Manhattan
2019-03-30 22:16:03,2019-03-30 22:43:13,5,2.47,17.5,4.26,0.0,25.56,yellow,credit card,West Village,Midtown North,Manhattan,Manhattan
2019-03-07 17:56:52,2019-03-07 18:05:20,1,1.2,7.5,1.0,0.0,12.8,yellow,credit card,Upper East Side North,East Harlem South,Manhattan,Manhattan
2019-03-01 14:04:20,2019-03-01 14:23:09,2,1.73,12.5,0.0,0.0,15.8,yellow,cash,Midtown South,Central Park,Manhattan,Manhattan
2019-03-23 13:53:38,2019-03-23 14:04:13,5,0.88,8.0,2.82,0.0,14.12,yellow,credit card,Midtown South,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-15 09:40:55,2019-03-15 10:07:14,1,1.86,16.0,1.25,0.0,20.55,yellow,credit card,Flatiron,Midtown Center,Manhattan,Manhattan
2019-03-22 20:20:21,2019-03-22 20:24:58,2,0.58,5.0,1.76,0.0,10.56,yellow,credit card,Gramercy,East Village,Manhattan,Manhattan
2019-03-05 23:51:34,2019-03-06 00:07:55,1,4.2,15.0,3.75,0.0,22.55,yellow,credit card,Flatiron,Upper East Side North,Manhattan,Manhattan
2019-03-13 08:33:37,2019-03-13 08:43:10,4,2.1,9.5,2.05,0.0,12.35,yellow,credit card,East Harlem South,Morningside Heights,Manhattan,Manhattan
2019-03-14 08:56:08,2019-03-14 09:23:15,1,3.2,18.5,0.0,0.0,21.8,yellow,cash,Garment District,Upper West Side North,Manhattan,Manhattan
2019-03-10 06:37:49,2019-03-10 06:47:42,6,4.44,14.5,3.56,0.0,21.36,yellow,credit card,Yorkville West,Gramercy,Manhattan,Manhattan
2019-03-19 06:28:02,2019-03-19 06:29:04,1,0.17,3.0,0.0,0.0,7.3,yellow,cash,Lincoln Square West,Lincoln Square West,Manhattan,Manhattan
2019-03-10 22:07:06,2019-03-10 22:28:45,1,3.5,16.0,2.0,0.0,21.8,yellow,credit card,Upper West Side North,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-14 16:22:50,2019-03-14 16:30:33,2,1.04,6.5,1.5,0.0,12.3,yellow,credit card,Central Park,Upper East Side North,Manhattan,Manhattan
2019-03-31 23:43:45,2019-04-01 00:13:58,5,12.25,37.0,0.0,0.0,40.8,yellow,cash,LaGuardia Airport,Williamsburg (South Side),Queens,Brooklyn
2019-03-06 08:12:52,2019-03-06 08:53:04,1,16.43,47.5,6.0,0.0,56.8,yellow,credit card,Battery Park City,Briarwood/Jamaica Hills,Manhattan,Queens
2019-03-11 17:44:52,2019-03-11 18:03:27,1,2.15,13.0,3.46,0.0,20.76,yellow,credit card,Greenwich Village North,World Trade Center,Manhattan,Manhattan
2019-03-27 02:08:11,2019-03-27 02:38:39,1,9.6,31.0,0.0,0.0,32.3,yellow,cash,JFK Airport,East New York,Queens,Brooklyn
2019-03-22 19:25:34,2019-03-22 19:39:24,1,1.45,9.5,1.0,0.0,14.8,yellow,credit card,Midtown Center,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-14 07:19:23,2019-03-14 07:27:28,1,1.8,8.0,2.25,0.0,13.55,yellow,credit card,Penn Station/Madison Sq West,Greenwich Village South,Manhattan,Manhattan
2019-03-04 07:43:37,2019-03-04 07:51:11,1,2.06,8.5,1.0,0.0,12.8,yellow,credit card,Upper East Side North,Midtown East,Manhattan,Manhattan
2019-03-05 14:20:23,2019-03-05 14:28:41,1,0.82,7.0,0.0,0.0,10.3,yellow,cash,Midtown North,Lincoln Square East,Manhattan,Manhattan
2019-03-14 08:22:13,2019-03-14 08:32:32,1,1.86,9.5,0.0,0.0,12.8,yellow,cash,Upper East Side South,Upper West Side North,Manhattan,Manhattan
2019-03-24 16:19:28,2019-03-24 16:27:01,3,0.9,6.5,1.0,0.0,10.8,yellow,credit card,Midtown North,Lenox Hill West,Manhattan,Manhattan
2019-03-05 19:50:23,2019-03-05 20:19:31,6,8.37,28.0,3.81,5.76,41.87,yellow,credit card,SoHo,Midwood,Manhattan,Brooklyn
2019-03-14 17:33:46,2019-03-14 17:41:50,5,1.7,8.0,0.0,0.0,12.3,yellow,cash,Two Bridges/Seward Park,Gramercy,Manhattan,Manhattan
2019-03-03 01:38:40,2019-03-03 01:49:06,5,2.07,9.5,2.66,0.0,15.96,yellow,credit card,SoHo,Kips Bay,Manhattan,Manhattan
2019-03-24 12:24:59,2019-03-24 12:33:26,1,1.72,8.0,3.39,0.0,14.69,yellow,credit card,Lenox Hill East,Midtown East,Manhattan,Manhattan
2019-03-04 17:17:37,2019-03-04 17:31:42,1,1.96,10.5,0.0,0.0,14.8,yellow,credit card,Midtown South,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-19 15:04:40,2019-03-19 15:06:15,1,0.4,3.5,1.35,0.0,8.15,yellow,credit card,,Upper East Side South,,Manhattan
2019-03-29 14:08:30,2019-03-29 14:13:20,1,0.81,5.5,0.0,0.0,8.8,yellow,cash,East Chelsea,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-26 14:26:40,2019-03-26 14:41:31,2,1.85,10.5,0.0,0.0,13.8,yellow,cash,East Village,Financial District South,Manhattan,Manhattan
2019-03-07 15:10:00,2019-03-07 15:17:50,1,1.18,7.0,3.09,0.0,13.39,yellow,credit card,Greenwich Village South,Union Sq,Manhattan,Manhattan
2019-03-22 08:18:14,2019-03-22 08:35:44,5,1.41,11.5,2.96,0.0,17.76,yellow,credit card,Midtown South,East Chelsea,Manhattan,Manhattan
2019-03-29 23:02:19,2019-03-29 23:36:01,1,4.7,22.5,0.0,0.0,26.3,yellow,cash,Lincoln Square West,Lower East Side,Manhattan,Manhattan
2019-03-25 06:31:26,2019-03-25 07:09:53,1,14.74,41.53,0.0,5.76,48.09,yellow,credit card,Soundview/Castle Hill,Financial District South,Bronx,Manhattan
2019-03-23 16:19:54,2019-03-23 16:22:52,1,0.73,4.5,1.95,0.0,9.75,yellow,credit card,Hudson Sq,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-15 17:33:10,2019-03-15 17:48:38,1,1.66,11.0,0.0,0.0,15.3,yellow,cash,Lincoln Square East,Midtown East,Manhattan,Manhattan
2019-03-17 21:50:08,2019-03-17 21:53:53,1,0.41,4.5,1.66,0.0,9.96,yellow,credit card,West Village,Greenwich Village North,Manhattan,Manhattan
2019-03-05 13:20:19,2019-03-05 13:36:33,2,1.26,10.5,1.38,0.0,15.18,yellow,credit card,Upper East Side North,Lenox Hill West,Manhattan,Manhattan
2019-03-04 06:47:08,2019-03-04 06:49:48,2,0.82,4.5,1.56,0.0,9.36,yellow,credit card,Upper East Side South,Midtown East,Manhattan,Manhattan
2019-03-12 19:21:21,2019-03-12 19:31:36,2,1.74,9.0,2.16,0.0,12.96,yellow,credit card,Bloomingdale,Central Harlem North,Manhattan,Manhattan
2019-03-06 14:20:54,2019-03-06 14:26:36,2,1.23,6.0,1.86,0.0,11.16,yellow,credit card,Upper East Side South,Upper West Side North,Manhattan,Manhattan
2019-03-09 13:19:46,2019-03-09 13:29:10,5,0.96,7.5,0.0,0.0,10.8,yellow,cash,East Chelsea,Clinton East,Manhattan,Manhattan
2019-03-15 17:16:35,2019-03-15 17:25:01,1,1.3,7.5,0.0,0.0,11.8,yellow,,Upper East Side North,Upper East Side South,Manhattan,Manhattan
2019-03-12 19:52:36,2019-03-12 19:52:55,3,0.0,120.0,33.2,12.5,166.0,yellow,credit card,,,,
2019-03-25 00:02:17,2019-03-25 00:25:26,1,7.8,25.5,6.0,0.0,35.3,yellow,credit card,Greenwich Village South,Ridgewood,Manhattan,Queens
2019-03-05 09:59:42,2019-03-05 10:00:34,1,0.31,3.0,1.0,0.0,7.3,yellow,credit card,Upper West Side South,Upper West Side South,Manhattan,Manhattan
2019-03-08 00:09:21,2019-03-08 00:29:04,1,4.3,17.0,3.0,0.0,23.8,yellow,credit card,East Chelsea,Brooklyn Heights,Manhattan,Brooklyn
2019-03-14 13:31:59,2019-03-14 13:51:33,1,1.3,12.5,3.16,0.0,18.96,yellow,credit card,Midtown North,Midtown South,Manhattan,Manhattan
2019-03-24 20:39:39,2019-03-24 20:59:44,3,2.35,14.0,3.56,0.0,21.36,yellow,credit card,East Chelsea,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-30 10:37:45,2019-03-30 10:53:13,1,2.11,11.5,4.44,0.0,19.24,yellow,credit card,Stuy Town/Peter Cooper Village,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-21 21:45:26,2019-03-21 21:50:08,1,0.76,5.0,1.32,0.0,10.12,yellow,credit card,Greenwich Village North,Gramercy,Manhattan,Manhattan
2019-03-14 15:30:55,2019-03-14 15:35:27,5,0.5,5.0,2.49,0.0,10.79,yellow,credit card,Upper West Side South,Lincoln Square West,Manhattan,Manhattan
2019-03-24 12:11:02,2019-03-24 12:12:54,1,0.34,3.5,0.0,0.0,6.8,yellow,cash,Lenox Hill West,Lenox Hill West,Manhattan,Manhattan
2019-03-02 20:23:12,2019-03-02 20:27:35,1,0.9,5.5,0.0,0.0,9.3,yellow,cash,West Village,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-01 14:47:03,2019-03-01 15:13:19,1,3.88,18.5,0.0,0.0,21.8,yellow,cash,World Trade Center,Clinton East,Manhattan,Manhattan
2019-03-08 00:06:51,2019-03-08 00:09:31,2,0.48,4.0,0.0,0.0,7.8,yellow,cash,East Village,Greenwich Village North,Manhattan,Manhattan
2019-03-28 11:30:22,2019-03-28 11:40:46,2,0.85,7.5,2.16,0.0,12.96,yellow,credit card,Midtown Center,Garment District,Manhattan,Manhattan
2019-03-05 23:57:47,2019-03-06 00:06:22,1,1.52,7.5,2.26,0.0,13.56,yellow,credit card,East Village,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-12 22:15:40,2019-03-12 22:41:24,5,8.04,27.0,6.16,0.0,36.96,yellow,credit card,Greenwich Village South,Central Harlem,Manhattan,Manhattan
2019-03-07 14:27:58,2019-03-07 14:45:49,1,2.25,13.0,0.0,0.0,13.8,yellow,cash,Sunnyside,Elmhurst,Queens,Queens
2019-03-19 18:22:18,2019-03-19 18:37:55,1,1.9,11.0,1.5,0.0,16.8,yellow,credit card,Penn Station/Madison Sq West,Lincoln Square East,Manhattan,Manhattan
2019-03-04 10:03:02,2019-03-04 10:16:43,1,1.8,10.5,2.76,0.0,16.56,yellow,credit card,Midtown South,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-04 13:07:08,2019-03-04 13:12:17,0,0.5,5.0,1.25,0.0,9.55,yellow,credit card,Upper East Side North,Upper East Side North,Manhattan,Manhattan
2019-03-05 18:01:11,2019-03-05 18:10:47,2,0.9,7.5,2.95,0.0,14.75,yellow,credit card,Union Sq,Murray Hill,Manhattan,Manhattan
2019-03-14 16:03:32,2019-03-14 16:24:29,1,1.6,13.5,3.56,0.0,21.36,yellow,credit card,Union Sq,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-30 21:50:51,2019-03-30 21:51:40,2,0.3,3.0,2.0,0.0,8.8,yellow,credit card,Lenox Hill East,Yorkville West,Manhattan,Manhattan
2019-03-13 10:42:22,2019-03-13 10:53:20,2,0.82,8.0,2.26,0.0,13.56,yellow,credit card,Sutton Place/Turtle Bay North,Midtown East,Manhattan,Manhattan
2019-03-19 19:21:13,2019-03-19 19:40:01,1,5.21,19.5,4.76,0.0,28.56,yellow,credit card,Gramercy,Yorkville West,Manhattan,Manhattan
2019-03-05 14:04:59,2019-03-05 14:33:05,1,2.78,18.0,0.0,0.0,21.3,yellow,cash,Lenox Hill East,Clinton East,Manhattan,Manhattan
2019-03-21 11:47:07,2019-03-21 12:00:06,2,0.88,9.0,3.08,0.0,15.38,yellow,credit card,Midtown North,Lincoln Square East,Manhattan,Manhattan
2019-03-19 20:04:44,2019-03-19 20:18:55,1,2.27,11.0,2.96,0.0,17.76,yellow,credit card,Midtown South,Lenox Hill West,Manhattan,Manhattan
2019-03-11 14:47:42,2019-03-11 15:00:34,1,0.9,9.0,1.0,0.0,13.3,yellow,credit card,Midtown Center,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-16 17:54:48,2019-03-16 18:30:32,1,6.34,27.5,6.0,0.0,36.8,yellow,credit card,Penn Station/Madison Sq West,East Williamsburg,Manhattan,Brooklyn
2019-03-29 08:35:09,2019-03-29 08:44:52,1,1.2,8.0,1.5,0.0,12.8,yellow,credit card,Lincoln Square East,Midtown North,Manhattan,Manhattan
2019-03-08 10:24:07,2019-03-08 10:31:43,1,1.23,7.0,2.06,0.0,12.36,yellow,credit card,West Village,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-02 14:55:02,2019-03-02 15:02:32,1,0.43,6.0,1.86,0.0,11.16,yellow,credit card,Penn Station/Madison Sq West,Flatiron,Manhattan,Manhattan
2019-03-20 13:17:32,2019-03-20 13:27:23,1,1.18,8.0,0.0,0.0,11.3,yellow,cash,Gramercy,Greenwich Village South,Manhattan,Manhattan
2019-03-20 17:22:19,2019-03-20 17:30:32,1,0.86,6.5,2.16,0.0,12.96,yellow,credit card,East Village,Greenwich Village North,Manhattan,Manhattan
2019-03-10 11:53:53,2019-03-10 12:01:39,0,1.0,6.5,0.0,0.0,9.8,yellow,cash,Times Sq/Theatre District,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-23 03:12:19,2019-03-23 03:18:48,1,1.5,7.0,1.62,0.0,12.42,yellow,credit card,West Village,Little Italy/NoLiTa,Manhattan,Manhattan
2019-03-15 18:55:51,2019-03-15 19:06:35,1,2.26,9.5,2.76,0.0,16.56,yellow,credit card,Garment District,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-13 12:15:18,2019-03-13 12:38:20,1,2.76,16.0,3.86,0.0,23.16,yellow,credit card,Flatiron,Upper East Side South,Manhattan,Manhattan
2019-03-01 00:29:22,2019-03-01 00:32:48,4,0.74,4.5,1.0,0.0,9.3,yellow,credit card,Meatpacking/West Village West,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-30 14:13:42,2019-03-30 14:19:13,2,0.9,6.0,0.0,0.0,9.3,yellow,cash,Midtown North,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-22 14:11:52,2019-03-22 14:19:38,1,1.31,7.0,2.06,0.0,12.36,yellow,credit card,Midtown South,Greenwich Village North,Manhattan,Manhattan
2019-03-20 13:03:59,2019-03-20 13:20:35,1,2.3,12.5,3.15,0.0,18.95,yellow,credit card,West Chelsea/Hudson Yards,Lincoln Square East,Manhattan,Manhattan
2019-03-03 10:03:38,2019-03-03 10:21:28,1,9.8,28.0,0.0,0.0,28.8,yellow,credit card,Central Harlem,Williamsbridge/Olinville,Manhattan,Bronx
2019-03-30 00:33:57,2019-03-30 00:41:35,6,1.75,8.0,1.2,0.0,13.0,yellow,credit card,Midtown North,Lenox Hill East,Manhattan,Manhattan
2019-03-20 09:31:34,2019-03-20 09:48:38,1,1.63,12.0,3.82,0.0,19.12,yellow,credit card,Lincoln Square West,Upper East Side South,Manhattan,Manhattan
2019-03-09 18:05:57,2019-03-09 18:40:11,1,4.63,23.0,5.26,0.0,31.56,yellow,credit card,Upper West Side North,Union Sq,Manhattan,Manhattan
2019-03-29 08:50:54,2019-03-29 08:57:42,1,1.09,6.0,1.2,0.0,10.5,yellow,credit card,Greenwich Village North,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-08 04:50:48,2019-03-08 04:51:07,1,0.0,2.5,0.0,0.0,6.3,yellow,cash,Lenox Hill East,Lenox Hill East,Manhattan,Manhattan
2019-03-09 22:45:46,2019-03-09 22:46:50,1,0.4,3.5,0.0,0.0,7.3,yellow,cash,,Lincoln Square East,,Manhattan
2019-03-06 15:07:11,2019-03-06 15:11:29,1,0.48,4.5,1.56,0.0,9.36,yellow,credit card,Yorkville East,Yorkville East,Manhattan,Manhattan
2019-03-12 12:07:21,2019-03-12 12:18:08,1,1.8,9.5,0.0,0.0,10.3,yellow,cash,Washington Heights South,University Heights/Morris Heights,Manhattan,Bronx
2019-03-04 23:39:52,2019-03-04 23:50:06,1,2.68,10.5,2.86,0.0,17.16,yellow,credit card,Greenwich Village North,Midtown North,Manhattan,Manhattan
2019-03-01 02:51:42,2019-03-01 03:08:25,1,5.0,17.5,4.25,0.0,25.55,yellow,credit card,West Village,Upper West Side South,Manhattan,Manhattan
2019-03-21 08:29:48,2019-03-21 09:15:43,2,17.13,52.0,12.21,5.76,73.27,yellow,credit card,Midtown South,JFK Airport,Manhattan,Queens
2019-03-26 15:08:40,2019-03-26 15:14:03,4,0.55,5.5,0.0,0.0,8.8,yellow,cash,Midtown North,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-05 20:54:43,2019-03-05 20:59:44,1,1.1,5.5,2.75,0.0,12.05,yellow,credit card,Murray Hill,Midtown East,Manhattan,Manhattan
2019-03-06 17:29:47,2019-03-06 17:40:24,1,0.91,8.0,2.46,0.0,14.76,yellow,credit card,Union Sq,Murray Hill,Manhattan,Manhattan
2019-03-27 20:21:50,2019-03-27 20:32:32,2,2.05,9.0,2.56,0.0,15.36,yellow,credit card,West Village,Financial District North,Manhattan,Manhattan
2019-03-18 17:54:03,2019-03-18 17:57:34,1,0.71,4.5,1.11,0.0,9.91,yellow,credit card,West Village,SoHo,Manhattan,Manhattan
2019-03-01 16:04:51,2019-03-01 16:16:59,1,2.0,10.0,0.0,0.0,14.3,yellow,cash,Upper East Side North,East Harlem North,Manhattan,Manhattan
2019-03-05 07:31:15,2019-03-05 07:47:00,1,6.03,19.0,4.46,0.0,26.76,yellow,credit card,Lenox Hill West,Financial District North,Manhattan,Manhattan
2019-03-11 20:48:45,2019-03-11 21:04:19,1,3.15,13.0,3.36,0.0,20.16,yellow,credit card,East Village,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-06 23:07:04,2019-03-06 23:24:10,1,6.4,19.5,0.0,5.76,26.56,yellow,cash,LaGuardia Airport,Central Harlem North,Queens,Manhattan
2019-03-27 15:02:00,2019-03-27 15:31:19,1,3.79,20.0,0.0,0.0,23.3,yellow,cash,East Chelsea,Manhattan Valley,Manhattan,Manhattan
2019-03-08 23:36:13,2019-03-08 23:59:22,1,3.6,16.5,2.0,0.0,22.3,yellow,credit card,Upper West Side South,Union Sq,Manhattan,Manhattan
2019-03-25 22:24:47,2019-03-25 22:29:33,5,0.69,5.0,0.0,0.0,8.8,yellow,cash,Flatiron,Greenwich Village North,Manhattan,Manhattan
2019-03-29 21:08:42,2019-03-29 21:11:13,2,0.26,4.0,2.34,0.0,10.14,yellow,credit card,Upper West Side South,Upper West Side South,Manhattan,Manhattan
2019-03-31 14:38:27,2019-03-31 14:57:02,1,3.35,14.0,0.0,0.0,17.3,yellow,cash,Penn Station/Madison Sq West,Financial District North,Manhattan,Manhattan
2019-03-23 21:48:43,2019-03-23 21:58:19,1,1.4,8.0,2.95,0.0,14.75,yellow,credit card,Midtown South,Midtown Center,Manhattan,Manhattan
2019-03-22 11:18:05,2019-03-22 11:27:31,1,1.43,8.0,0.0,0.0,11.3,yellow,cash,Midtown South,Kips Bay,Manhattan,Manhattan
2019-03-10 08:17:28,2019-03-10 08:21:07,1,0.64,4.5,0.0,0.0,7.8,yellow,cash,Upper West Side North,Upper West Side South,Manhattan,Manhattan
2019-03-13 11:12:11,2019-03-13 11:47:17,1,7.0,28.5,6.35,0.0,38.15,yellow,credit card,Brooklyn Heights,Midtown East,Brooklyn,Manhattan
2019-03-22 07:28:03,2019-03-22 07:34:01,0,1.5,6.5,2.94,0.0,12.74,yellow,credit card,Union Sq,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-06 11:44:21,2019-03-06 12:03:05,1,1.94,13.0,4.08,0.0,20.38,yellow,credit card,Upper East Side North,Midtown Center,Manhattan,Manhattan
2019-03-06 14:49:20,2019-03-06 15:00:14,1,1.15,8.5,2.36,0.0,14.16,yellow,credit card,Upper East Side South,Midtown East,Manhattan,Manhattan
2019-03-07 13:00:42,2019-03-07 13:26:42,2,3.21,17.5,4.16,0.0,24.96,yellow,credit card,Times Sq/Theatre District,Yorkville West,Manhattan,Manhattan
2019-03-04 09:03:11,2019-03-04 09:20:35,1,3.7,15.0,0.0,0.0,18.3,yellow,cash,Astoria,UN/Turtle Bay South,Queens,Manhattan
2019-03-12 22:10:39,2019-03-12 22:19:06,1,1.33,7.5,2.26,0.0,13.56,yellow,credit card,Clinton East,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-14 19:27:03,2019-03-14 19:30:46,1,1.0,5.0,1.85,0.0,11.15,yellow,credit card,Upper East Side South,Upper East Side North,Manhattan,Manhattan
2019-03-06 22:02:51,2019-03-06 22:12:40,1,1.6,9.0,2.55,0.0,15.35,yellow,credit card,Clinton East,Upper West Side North,Manhattan,Manhattan
2019-03-01 06:44:12,2019-03-01 06:51:23,1,1.26,6.5,0.0,0.0,7.3,yellow,cash,Sunnyside,Astoria,Queens,Queens
2019-03-02 16:26:56,2019-03-02 16:31:23,1,0.6,5.0,1.65,0.0,9.95,yellow,credit card,Union Sq,Murray Hill,Manhattan,Manhattan
2019-03-17 21:21:53,2019-03-17 21:27:29,1,0.76,6.0,1.96,0.0,11.76,yellow,credit card,Lincoln Square East,Lincoln Square East,Manhattan,Manhattan
2019-03-07 23:42:53,2019-03-07 23:53:04,1,1.81,9.0,0.0,0.0,12.8,yellow,cash,Lincoln Square East,Upper East Side South,Manhattan,Manhattan
2019-03-01 19:00:49,2019-03-01 19:11:37,3,1.73,9.0,2.66,0.0,15.96,yellow,credit card,East Village,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-07 14:44:13,2019-03-07 15:13:12,1,3.04,19.0,4.46,0.0,26.76,yellow,credit card,Manhattan Valley,Midtown Center,Manhattan,Manhattan
2019-03-30 00:02:40,2019-03-30 00:11:25,5,0.95,7.5,2.26,0.0,13.56,yellow,credit card,Midtown South,Kips Bay,Manhattan,Manhattan
2019-03-30 19:01:35,2019-03-30 19:15:02,1,1.31,9.0,0.0,0.0,12.3,yellow,cash,Midtown North,Midtown South,Manhattan,Manhattan
2019-03-21 17:39:50,2019-03-21 18:12:54,2,1.74,17.0,4.26,0.0,25.56,yellow,credit card,Midtown East,,Manhattan,
2019-03-03 01:24:45,2019-03-03 01:29:32,1,0.8,5.0,1.75,0.0,10.55,yellow,credit card,,West Chelsea/Hudson Yards,,Manhattan
2019-03-08 12:36:26,2019-03-08 12:45:12,1,1.3,7.5,1.2,0.0,12.0,yellow,credit card,West Village,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-26 17:51:56,2019-03-26 18:04:02,1,1.9,10.0,3.55,0.0,17.85,yellow,credit card,Midtown East,Upper East Side North,Manhattan,Manhattan
2019-03-16 23:59:34,2019-03-17 00:19:39,1,3.8,16.5,1.5,0.0,21.8,yellow,credit card,Lower East Side,Bushwick South,Manhattan,Brooklyn
2019-03-14 00:09:16,2019-03-14 00:14:32,1,0.67,5.0,1.76,0.0,10.56,yellow,credit card,Times Sq/Theatre District,Garment District,Manhattan,Manhattan
2019-03-09 09:22:33,2019-03-09 09:35:41,6,5.26,17.5,0.0,0.0,20.8,yellow,cash,Midtown South,Financial District South,Manhattan,Manhattan
2019-03-14 14:10:31,2019-03-14 14:29:43,1,1.53,12.5,0.0,0.0,15.8,yellow,cash,Upper West Side South,Midtown Center,Manhattan,Manhattan
2019-03-31 11:04:13,2019-03-31 11:29:35,1,10.97,33.0,10.52,5.76,52.58,yellow,credit card,Upper East Side South,LaGuardia Airport,Manhattan,Queens
2019-03-05 20:33:14,2019-03-05 20:56:57,1,7.43,24.5,5.66,0.0,33.96,yellow,credit card,TriBeCa/Civic Center,East Harlem South,Manhattan,Manhattan
2019-03-23 18:40:06,2019-03-23 18:52:52,1,1.55,9.5,2.56,0.0,15.36,yellow,credit card,East Village,East Chelsea,Manhattan,Manhattan
2019-03-13 09:43:59,2019-03-13 10:00:02,2,2.16,12.5,3.16,0.0,18.96,yellow,credit card,Lincoln Square West,Central Park,Manhattan,Manhattan
2019-03-08 20:53:27,2019-03-08 20:59:44,2,1.0,6.0,1.5,0.0,11.3,yellow,credit card,Union Sq,East Chelsea,Manhattan,Manhattan
2019-03-06 06:36:47,2019-03-06 06:40:19,1,0.96,5.0,0.0,0.0,8.3,yellow,cash,Murray Hill,Midtown East,Manhattan,Manhattan
2019-03-06 16:30:34,2019-03-06 16:34:40,1,0.3,4.5,0.0,0.0,8.8,yellow,cash,Upper East Side North,Upper East Side North,Manhattan,Manhattan
2019-03-04 20:58:17,2019-03-04 21:09:14,6,2.6,11.0,2.86,0.0,17.16,yellow,credit card,Times Sq/Theatre District,Upper West Side North,Manhattan,Manhattan
2019-03-19 23:06:51,2019-03-19 23:38:27,1,18.86,52.0,10.0,5.76,71.06,yellow,credit card,JFK Airport,West Village,Queens,Manhattan
2019-03-15 14:09:58,2019-03-15 14:28:28,4,2.57,13.5,0.0,0.0,16.8,yellow,cash,Clinton East,Greenwich Village North,Manhattan,Manhattan
2019-03-29 09:28:46,2019-03-29 09:50:15,5,2.28,14.0,2.0,0.0,19.3,yellow,credit card,Upper West Side South,Clinton East,Manhattan,Manhattan
2019-03-26 22:36:11,2019-03-26 22:53:38,2,4.4,16.5,4.06,0.0,24.36,yellow,credit card,Midtown Center,East Village,Manhattan,Manhattan
2019-03-27 10:49:41,2019-03-27 11:22:33,4,10.28,32.5,8.31,5.76,49.87,yellow,credit card,LaGuardia Airport,Midtown Center,Queens,Manhattan
2019-03-29 17:07:27,2019-03-29 17:20:41,2,1.3,9.5,2.75,0.0,16.55,yellow,credit card,Midtown Center,Clinton East,Manhattan,Manhattan
2019-03-13 12:11:35,2019-03-13 12:24:33,2,1.9,10.0,2.0,0.0,15.3,yellow,credit card,Manhattan Valley,Upper East Side North,Manhattan,Manhattan
2019-03-06 20:25:17,2019-03-06 20:36:54,1,1.75,9.5,2.66,0.0,15.96,yellow,credit card,Midtown East,Gramercy,Manhattan,Manhattan
2019-03-18 14:53:39,2019-03-18 15:14:37,5,2.57,13.5,0.0,0.0,16.8,yellow,cash,Lenox Hill East,Upper West Side South,Manhattan,Manhattan
2019-03-08 19:42:21,2019-03-08 20:05:35,1,4.5,18.0,0.0,0.0,22.3,yellow,cash,Midtown East,Upper West Side North,Manhattan,Manhattan
2019-03-29 00:20:16,2019-03-29 00:24:06,1,0.43,4.5,1.66,0.0,9.96,yellow,credit card,Hudson Sq,SoHo,Manhattan,Manhattan
2019-03-14 07:49:10,2019-03-14 08:03:06,1,1.9,10.5,2.0,0.0,15.8,yellow,credit card,East Harlem South,Lenox Hill West,Manhattan,Manhattan
2019-03-14 00:09:17,2019-03-14 00:09:21,1,0.03,2.5,0.0,0.0,3.8,yellow,cash,Upper East Side South,,Manhattan,
2019-03-24 11:23:28,2019-03-24 11:28:51,1,0.9,5.5,1.76,0.0,10.56,yellow,credit card,Flatiron,Midtown South,Manhattan,Manhattan
2019-03-05 22:19:04,2019-03-05 22:25:14,2,0.92,6.0,0.0,0.0,9.8,yellow,cash,Lincoln Square East,Midtown North,Manhattan,Manhattan
2019-03-05 09:52:36,2019-03-05 10:03:47,1,1.32,8.5,0.0,0.0,11.8,yellow,cash,Greenwich Village North,Murray Hill,Manhattan,Manhattan
2019-03-21 10:02:10,2019-03-21 10:13:28,1,1.5,9.0,2.46,0.0,14.76,yellow,credit card,Upper East Side North,Upper East Side South,Manhattan,Manhattan
2019-03-23 22:09:03,2019-03-23 22:23:42,2,1.7,10.5,0.0,0.0,14.3,yellow,cash,Greenwich Village South,Flatiron,Manhattan,Manhattan
2019-03-30 12:34:41,2019-03-30 13:09:35,1,16.11,44.0,13.26,5.76,66.32,yellow,credit card,Battery Park City,LaGuardia Airport,Manhattan,Queens
2019-03-25 22:14:18,2019-03-25 22:26:38,1,2.59,10.5,1.0,0.0,15.3,yellow,credit card,Garment District,East Village,Manhattan,Manhattan
2019-03-11 06:46:52,2019-03-11 06:56:23,1,1.5,8.5,2.35,0.0,14.15,yellow,credit card,Clinton East,Murray Hill,Manhattan,Manhattan
2019-03-03 22:59:34,2019-03-03 23:00:39,2,0.44,3.5,1.46,0.0,8.76,yellow,credit card,Midtown South,Union Sq,Manhattan,Manhattan
2019-03-08 15:11:18,2019-03-08 15:22:50,1,0.66,7.5,0.0,0.0,10.8,yellow,cash,Penn Station/Madison Sq West,Garment District,Manhattan,Manhattan
2019-03-01 16:06:38,2019-03-01 16:19:31,2,1.7,10.0,0.0,0.0,14.3,yellow,cash,Murray Hill,Clinton West,Manhattan,Manhattan
2019-03-13 10:01:25,2019-03-13 10:09:13,1,1.42,7.5,1.2,0.0,12.0,yellow,credit card,Upper West Side South,Lincoln Square East,Manhattan,Manhattan
2019-03-14 18:05:49,2019-03-14 18:10:43,1,0.4,5.0,0.0,0.0,9.3,yellow,cash,Greenwich Village South,Little Italy/NoLiTa,Manhattan,Manhattan
2019-03-13 22:05:33,2019-03-13 22:17:47,1,2.64,11.0,3.7,0.0,18.5,yellow,credit card,Midtown North,Upper East Side North,Manhattan,Manhattan
2019-03-28 23:02:53,2019-03-28 23:15:00,2,2.09,10.0,3.45,0.0,17.25,yellow,credit card,Flatiron,Alphabet City,Manhattan,Manhattan
2019-03-20 21:17:21,2019-03-20 21:20:49,4,0.66,4.5,1.66,0.0,9.96,yellow,credit card,Lenox Hill East,Yorkville West,Manhattan,Manhattan
2019-03-22 18:48:22,2019-03-22 19:02:41,5,1.48,10.0,0.0,0.0,14.3,yellow,cash,Garment District,Midtown South,Manhattan,Manhattan
2019-03-10 19:25:47,2019-03-10 19:57:45,1,9.98,33.0,0.0,0.0,33.8,yellow,cash,JFK Airport,East New York,Queens,Brooklyn
2019-03-05 14:55:41,2019-03-05 15:01:57,1,0.87,6.0,1.86,0.0,11.16,yellow,credit card,East Village,Gramercy,Manhattan,Manhattan
2019-03-05 14:01:16,2019-03-05 14:15:19,1,2.0,10.5,3.45,0.0,17.25,yellow,credit card,Penn Station/Madison Sq West,Greenwich Village South,Manhattan,Manhattan
2019-03-26 19:40:05,2019-03-26 20:11:32,1,11.49,35.5,11.39,5.76,56.95,yellow,credit card,LaGuardia Airport,Midtown North,Queens,Manhattan
2019-03-22 15:16:17,2019-03-22 15:29:48,1,4.18,15.0,3.66,0.0,21.96,yellow,credit card,Lenox Hill East,Alphabet City,Manhattan,Manhattan
2019-03-09 02:06:34,2019-03-09 02:14:14,2,3.2,10.5,0.0,0.0,14.3,yellow,cash,UN/Turtle Bay South,East Harlem South,Manhattan,Manhattan
2019-03-27 10:58:53,2019-03-27 11:17:26,2,1.9,13.0,0.0,0.0,16.3,yellow,cash,Midtown Center,Upper East Side North,Manhattan,Manhattan
2019-03-08 18:25:53,2019-03-08 18:29:52,1,0.67,4.5,1.0,0.0,9.8,yellow,credit card,Midtown North,Midtown Center,Manhattan,Manhattan
2019-03-24 19:36:32,2019-03-24 19:42:23,1,1.1,6.0,1.86,0.0,11.16,yellow,credit card,TriBeCa/Civic Center,Battery Park City,Manhattan,Manhattan
2019-03-21 07:18:47,2019-03-21 07:27:25,1,1.9,8.5,0.0,0.0,11.8,yellow,cash,Upper East Side North,Midtown Center,Manhattan,Manhattan
2019-03-14 13:27:37,2019-03-14 13:32:26,1,0.74,5.5,1.76,0.0,10.56,yellow,credit card,Upper East Side South,Upper East Side North,Manhattan,Manhattan
2019-03-15 23:02:19,2019-03-15 23:42:01,6,8.4,31.5,2.0,0.0,37.3,yellow,credit card,Prospect Heights,Upper West Side South,Brooklyn,Manhattan
2019-03-15 08:39:34,2019-03-15 08:57:48,5,1.91,12.5,3.16,0.0,18.96,yellow,credit card,Upper East Side North,Midtown East,Manhattan,Manhattan
2019-03-02 03:16:59,2019-03-02 03:17:06,0,9.4,2.5,0.0,0.0,3.8,yellow,,JFK Airport,JFK Airport,Queens,Queens
2019-03-14 14:58:47,2019-03-14 15:14:38,2,1.4,11.0,2.85,0.0,17.15,yellow,credit card,West Village,Little Italy/NoLiTa,Manhattan,Manhattan
2019-03-05 16:51:21,2019-03-05 16:54:52,1,0.52,4.0,0.0,0.0,8.3,yellow,cash,West Village,West Village,Manhattan,Manhattan
2019-03-31 18:51:15,2019-03-31 19:01:14,0,1.6,8.5,2.95,0.0,14.75,yellow,credit card,Times Sq/Theatre District,Lenox Hill West,Manhattan,Manhattan
2019-03-19 12:43:53,2019-03-19 12:58:50,1,2.1,11.0,0.0,0.0,14.3,yellow,cash,Midtown East,Upper East Side North,Manhattan,Manhattan
2019-03-07 22:58:59,2019-03-07 23:02:40,1,0.66,5.0,0.0,0.0,8.8,yellow,cash,Sutton Place/Turtle Bay North,Murray Hill,Manhattan,Manhattan
2019-03-31 12:38:17,2019-03-31 12:47:31,1,1.32,7.5,2.16,0.0,12.96,yellow,credit card,Midtown Center,Clinton East,Manhattan,Manhattan
2019-03-19 01:35:57,2019-03-19 01:41:50,1,0.83,5.5,1.86,0.0,11.16,yellow,credit card,Union Sq,Union Sq,Manhattan,Manhattan
2019-03-07 08:24:28,2019-03-07 08:28:45,1,0.58,5.0,1.66,0.0,9.96,yellow,credit card,Clinton East,Lincoln Square East,Manhattan,Manhattan
2019-03-09 16:30:58,2019-03-09 16:37:21,1,1.43,7.0,2.06,0.0,12.36,yellow,credit card,Yorkville West,Central Park,Manhattan,Manhattan
2019-03-26 20:21:36,2019-03-26 20:38:18,1,2.26,12.0,3.16,0.0,18.96,yellow,credit card,World Trade Center,Lower East Side,Manhattan,Manhattan
2019-03-13 10:22:51,2019-03-13 10:25:17,1,0.4,3.5,1.36,0.0,8.16,yellow,credit card,Sutton Place/Turtle Bay North,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-18 09:40:33,2019-03-18 10:49:35,1,12.06,49.0,11.61,5.76,69.67,yellow,credit card,LaGuardia Airport,Lenox Hill East,Queens,Manhattan
2019-03-17 15:38:34,2019-03-17 15:41:21,5,0.34,4.0,0.73,0.0,8.03,yellow,credit card,Midtown South,Midtown South,Manhattan,Manhattan
2019-03-31 17:00:03,2019-03-31 17:14:41,2,2.5,12.0,0.0,0.0,15.3,yellow,cash,Yorkville West,Lincoln Square East,Manhattan,Manhattan
2019-03-15 15:10:03,2019-03-15 16:25:25,1,16.3,52.0,18.3,5.76,79.36,yellow,credit card,Murray Hill,JFK Airport,Manhattan,Queens
2019-03-07 01:23:12,2019-03-07 01:50:49,3,9.93,30.5,6.86,0.0,41.16,yellow,credit card,Times Sq/Theatre District,Forest Hills,Manhattan,Queens
2019-03-26 23:11:09,2019-03-26 23:27:02,1,6.23,19.0,4.56,0.0,27.36,yellow,credit card,Greenwich Village North,East Harlem North,Manhattan,Manhattan
2019-03-05 12:12:14,2019-03-05 12:23:14,2,1.2,8.5,2.36,0.0,14.16,yellow,credit card,Lincoln Square West,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-28 15:25:53,2019-03-28 15:52:18,1,6.6,24.0,2.0,0.0,29.3,yellow,credit card,Murray Hill,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-22 09:27:23,2019-03-22 09:47:03,1,1.9,13.0,4.05,0.0,20.35,yellow,credit card,Gramercy,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-22 22:52:23,2019-03-22 23:00:31,1,2.5,9.5,2.66,0.0,15.96,yellow,credit card,Sutton Place/Turtle Bay North,Long Island City/Hunters Point,Manhattan,Queens
2019-03-20 17:49:25,2019-03-20 17:56:36,3,0.9,6.5,2.16,0.0,12.96,yellow,credit card,Midtown East,Lenox Hill West,Manhattan,Manhattan
2019-03-16 04:20:57,2019-03-16 04:24:03,2,0.47,4.5,0.0,0.0,8.3,yellow,cash,Kips Bay,Midtown South,Manhattan,Manhattan
2019-03-06 10:01:53,2019-03-06 10:27:29,2,2.15,16.0,3.86,0.0,23.16,yellow,credit card,Upper East Side South,Clinton East,Manhattan,Manhattan
2019-03-09 20:37:37,2019-03-09 20:46:32,1,1.21,7.5,0.0,0.0,11.3,yellow,cash,Lenox Hill West,Lenox Hill West,Manhattan,Manhattan
2019-03-15 17:00:51,2019-03-15 17:06:36,1,0.7,5.5,0.0,0.0,9.8,yellow,cash,Greenwich Village North,East Village,Manhattan,Manhattan
2019-03-11 21:43:25,2019-03-11 21:52:35,1,2.1,9.0,0.0,0.0,12.8,yellow,cash,Upper West Side South,Yorkville East,Manhattan,Manhattan
2019-03-20 20:56:41,2019-03-20 21:16:57,2,3.26,14.5,3.66,0.0,21.96,yellow,credit card,Clinton East,Stuy Town/Peter Cooper Village,Manhattan,Manhattan
2019-03-23 13:15:50,2019-03-23 13:30:47,6,0.91,10.5,3.45,0.0,17.25,yellow,credit card,Penn Station/Madison Sq West,East Chelsea,Manhattan,Manhattan
2019-03-11 11:15:43,2019-03-11 11:27:36,1,1.36,9.0,1.5,0.0,13.8,yellow,credit card,Lenox Hill West,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-08 17:25:55,2019-03-08 17:41:20,1,1.5,11.0,1.53,0.0,16.83,yellow,credit card,Murray Hill,Lenox Hill East,Manhattan,Manhattan
2019-03-10 17:43:09,2019-03-10 17:55:08,1,3.07,12.0,3.06,0.0,18.36,yellow,credit card,Clinton West,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-14 10:40:55,2019-03-14 10:49:03,1,1.23,7.5,2.16,0.0,12.96,yellow,credit card,Upper West Side North,Upper East Side North,Manhattan,Manhattan
2019-03-28 14:22:49,2019-03-28 14:40:03,1,2.71,13.0,3.26,0.0,19.56,yellow,credit card,Lincoln Square East,Upper East Side North,Manhattan,Manhattan
2019-03-20 17:51:43,2019-03-20 17:55:08,1,0.47,4.0,0.0,0.0,8.3,yellow,cash,Greenwich Village North,Greenwich Village South,Manhattan,Manhattan
2019-03-09 17:14:24,2019-03-09 17:23:42,3,1.6,8.0,0.0,0.0,11.3,yellow,cash,Midtown Center,Upper East Side North,Manhattan,Manhattan
2019-03-13 23:26:58,2019-03-13 23:37:02,1,2.36,9.5,2.66,0.0,15.96,yellow,credit card,Meatpacking/West Village West,Kips Bay,Manhattan,Manhattan
2019-03-01 22:39:03,2019-03-01 22:51:14,1,2.78,11.5,3.06,0.0,18.36,yellow,credit card,Midtown North,Upper West Side North,Manhattan,Manhattan
2019-03-01 23:51:09,2019-03-02 00:04:12,1,2.6,11.5,1.84,0.0,17.14,yellow,credit card,Upper West Side North,Lenox Hill West,Manhattan,Manhattan
2019-03-30 22:29:15,2019-03-30 22:36:03,6,1.46,7.0,2.0,0.0,12.8,yellow,credit card,Clinton West,Lincoln Square East,Manhattan,Manhattan
2019-03-23 19:08:25,2019-03-23 19:14:28,2,1.28,6.5,2.0,0.0,11.8,yellow,credit card,Lenox Hill West,Midtown North,Manhattan,Manhattan
2019-03-12 09:33:28,2019-03-12 09:36:38,1,0.48,4.0,0.0,0.0,7.3,yellow,cash,Lenox Hill West,Upper East Side North,Manhattan,Manhattan
2019-03-10 16:28:37,2019-03-10 16:41:09,1,0.9,9.0,2.45,0.0,14.75,yellow,credit card,Flatiron,Union Sq,Manhattan,Manhattan
2019-03-03 13:54:01,2019-03-03 14:39:09,2,20.39,52.0,15.26,5.76,76.32,yellow,credit card,JFK Airport,Upper West Side North,Queens,Manhattan
2019-03-07 15:51:08,2019-03-07 16:01:03,2,1.03,7.5,2.16,0.0,12.96,yellow,credit card,Garment District,Union Sq,Manhattan,Manhattan
2019-03-02 13:24:13,2019-03-02 13:28:53,1,1.5,6.5,1.95,0.0,11.75,yellow,credit card,Yorkville West,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-16 20:36:10,2019-03-16 21:16:11,1,3.2,23.5,5.45,0.0,32.75,yellow,credit card,Clinton East,East Village,Manhattan,Manhattan
2019-03-23 15:08:14,2019-03-23 15:35:29,1,3.3,18.5,4.35,0.0,26.15,yellow,credit card,Penn Station/Madison Sq West,Lenox Hill West,Manhattan,Manhattan
2019-03-17 19:30:19,2019-03-17 19:41:39,1,2.1,9.5,0.0,0.0,12.8,yellow,cash,Lincoln Square East,Upper West Side North,Manhattan,Manhattan
2019-03-14 01:41:38,2019-03-14 01:49:32,1,2.8,10.5,0.0,0.0,11.8,yellow,cash,LaGuardia Airport,Flushing Meadows-Corona Park,Queens,Queens
2019-03-29 01:08:41,2019-03-29 01:25:18,1,3.4,13.5,0.0,0.0,17.3,yellow,cash,East Village,Midtown North,Manhattan,Manhattan
2019-03-16 18:45:55,2019-03-16 18:48:45,1,0.56,4.0,0.0,0.0,7.3,yellow,cash,Penn Station/Madison Sq West,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-03 15:46:16,2019-03-03 15:49:16,1,0.49,4.0,0.7,0.0,8.0,yellow,credit card,Lincoln Square East,Lincoln Square East,Manhattan,Manhattan
2019-03-10 10:15:12,2019-03-10 10:21:50,2,1.42,7.0,2.58,0.0,12.88,yellow,credit card,Upper East Side South,Murray Hill,Manhattan,Manhattan
2019-03-18 15:42:31,2019-03-18 15:52:16,1,2.02,9.0,2.46,0.0,14.76,yellow,credit card,Lincoln Square East,Upper East Side North,Manhattan,Manhattan
2019-03-12 22:04:50,2019-03-12 22:13:13,1,1.62,7.5,2.26,0.0,13.56,yellow,credit card,Murray Hill,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-26 13:12:00,2019-03-26 13:14:13,1,0.53,4.0,0.8,0.0,8.1,yellow,credit card,Upper East Side North,East Harlem South,Manhattan,Manhattan
2019-03-15 00:55:30,2019-03-15 01:26:34,6,7.88,26.0,7.45,0.0,37.25,yellow,credit card,Greenwich Village North,Yorkville West,Manhattan,Manhattan
2019-03-24 01:43:50,2019-03-24 02:07:27,1,6.3,23.0,2.0,0.0,28.8,yellow,credit card,Little Italy/NoLiTa,Long Island City/Queens Plaza,Manhattan,Queens
2019-03-07 20:38:23,2019-03-07 21:10:51,1,17.74,52.0,12.21,5.76,73.27,yellow,credit card,JFK Airport,Midtown East,Queens,Manhattan
2019-03-12 15:29:13,2019-03-12 15:41:52,1,1.1,9.0,3.65,0.0,15.95,yellow,credit card,Clinton East,Midtown Center,Manhattan,Manhattan
2019-03-05 21:32:07,2019-03-05 21:48:09,1,4.0,15.5,0.0,0.0,19.3,yellow,cash,TriBeCa/Civic Center,Columbia Street,Manhattan,Brooklyn
2019-03-04 09:52:32,2019-03-04 09:57:07,1,0.9,5.0,0.0,0.0,8.3,yellow,cash,Flatiron,Greenwich Village South,Manhattan,Manhattan
2019-03-10 12:27:53,2019-03-10 12:40:58,1,1.8,10.0,2.65,0.0,15.95,yellow,credit card,Murray Hill,Clinton East,Manhattan,Manhattan
2019-03-15 16:07:40,2019-03-15 16:18:54,2,2.56,10.5,0.0,0.0,14.8,yellow,cash,World Trade Center,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-29 21:34:45,2019-03-29 21:38:40,1,0.5,4.5,1.0,0.0,9.3,yellow,credit card,Penn Station/Madison Sq West,Midtown South,Manhattan,Manhattan
2019-03-08 11:21:57,2019-03-08 11:47:46,1,2.27,16.5,3.96,0.0,23.76,yellow,credit card,Midtown Center,Greenwich Village North,Manhattan,Manhattan
2019-03-05 12:42:33,2019-03-05 12:46:02,1,0.4,4.0,1.83,0.0,9.13,yellow,credit card,Central Park,Upper East Side South,Manhattan,Manhattan
2019-03-22 15:01:35,2019-03-22 15:24:54,1,3.8,17.5,0.0,0.0,20.8,yellow,cash,West Village,World Trade Center,Manhattan,Manhattan
2019-03-15 09:29:42,2019-03-15 09:34:42,1,0.5,5.0,1.65,0.0,9.95,yellow,credit card,Midtown Center,Murray Hill,Manhattan,Manhattan
2019-03-26 19:53:13,2019-03-26 19:56:27,1,0.75,4.5,0.0,0.0,8.8,yellow,credit card,Midtown East,Lenox Hill West,Manhattan,Manhattan
2019-03-29 10:36:53,2019-03-29 10:48:38,1,1.19,8.5,2.36,0.0,14.16,yellow,credit card,West Village,Gramercy,Manhattan,Manhattan
2019-03-23 07:01:18,2019-03-23 07:04:47,6,1.04,5.0,0.0,0.0,8.3,yellow,cash,Times Sq/Theatre District,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-22 20:42:52,2019-03-22 21:07:53,1,4.41,19.0,3.0,0.0,23.3,yellow,credit card,Williamsburg (South Side),Park Slope,Brooklyn,Brooklyn
2019-03-04 13:22:23,2019-03-04 13:38:07,1,2.1,11.5,2.96,0.0,17.76,yellow,credit card,Midtown East,Upper West Side South,Manhattan,Manhattan
2019-03-10 17:24:40,2019-03-10 17:32:19,1,1.0,6.5,1.95,0.0,11.75,yellow,credit card,Flatiron,Murray Hill,Manhattan,Manhattan
2019-03-01 18:51:32,2019-03-01 19:03:54,1,2.3,11.0,3.05,0.0,18.35,yellow,credit card,Lincoln Square West,Morningside Heights,Manhattan,Manhattan
2019-03-19 06:28:39,2019-03-19 06:36:28,3,1.1,7.0,1.03,0.0,11.33,yellow,credit card,Clinton East,Midtown Center,Manhattan,Manhattan
2019-03-25 16:15:41,2019-03-25 17:03:54,1,17.3,52.0,15.0,5.76,80.56,yellow,credit card,JFK Airport,Midtown South,Queens,Manhattan
2019-03-15 06:56:25,2019-03-15 07:59:38,2,18.7,57.0,0.0,5.76,63.56,yellow,credit card,East New York,Lenox Hill East,Brooklyn,Manhattan
2019-03-13 11:31:06,2019-03-13 12:07:56,1,3.29,23.0,2.0,0.0,28.3,yellow,credit card,Upper West Side North,Midtown East,Manhattan,Manhattan
2019-03-30 04:15:58,2019-03-30 04:29:20,1,4.09,13.5,0.0,0.0,17.3,yellow,cash,Times Sq/Theatre District,Sunnyside,Manhattan,Queens
2019-03-30 09:16:10,2019-03-30 09:33:56,1,7.11,23.0,5.26,0.0,31.56,yellow,credit card,Times Sq/Theatre District,Battery Park City,Manhattan,Manhattan
2019-03-02 10:48:31,2019-03-02 10:59:18,5,2.71,11.0,3.58,0.0,17.88,yellow,credit card,West Chelsea/Hudson Yards,Upper West Side South,Manhattan,Manhattan
2019-03-17 12:51:07,2019-03-17 13:09:27,1,3.34,14.5,0.0,0.0,17.8,yellow,cash,Midtown Center,Lower East Side,Manhattan,Manhattan
2019-03-22 19:40:05,2019-03-22 19:42:38,1,0.82,4.5,1.76,0.0,10.56,yellow,credit card,Lenox Hill West,Upper East Side North,Manhattan,Manhattan
2019-03-18 12:53:21,2019-03-18 13:13:49,2,7.2,24.0,6.6,5.76,39.66,yellow,credit card,LaGuardia Airport,Upper East Side North,Queens,Manhattan
2019-03-02 19:17:49,2019-03-02 19:30:05,2,1.62,9.0,2.46,0.0,14.76,yellow,credit card,Midtown Center,Union Sq,Manhattan,Manhattan
2019-03-31 20:56:08,2019-03-31 21:02:35,1,0.8,5.5,1.0,0.0,10.3,yellow,credit card,SoHo,Lower East Side,Manhattan,Manhattan
2019-03-13 10:47:48,2019-03-13 10:59:51,1,0.9,8.5,1.77,0.0,13.57,yellow,credit card,Midtown Center,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-07 21:31:45,2019-03-07 21:48:30,1,2.86,13.0,3.36,0.0,20.16,yellow,credit card,SoHo,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-23 20:43:05,2019-03-23 21:19:27,4,4.7,23.0,5.0,0.0,31.8,yellow,credit card,Lenox Hill West,Meatpacking/West Village West,Manhattan,Manhattan
2019-03-07 12:05:50,2019-03-07 12:12:54,1,0.9,6.5,1.2,0.0,11.0,yellow,credit card,Lenox Hill West,Upper East Side North,Manhattan,Manhattan
2019-03-20 10:03:57,2019-03-20 10:06:02,2,0.4,3.5,2.0,0.0,8.8,yellow,credit card,Upper East Side South,Upper East Side South,Manhattan,Manhattan
2019-03-06 14:38:47,2019-03-06 14:55:42,1,2.25,12.5,0.0,0.0,15.8,yellow,cash,Upper East Side North,Manhattan Valley,Manhattan,Manhattan
2019-03-15 17:07:20,2019-03-15 17:11:24,1,0.49,4.5,1.32,0.0,10.12,yellow,credit card,Upper West Side South,Upper West Side South,Manhattan,Manhattan
2019-03-19 06:32:13,2019-03-19 06:46:43,1,3.3,13.5,3.35,0.0,20.15,yellow,credit card,Union Sq,Upper East Side North,Manhattan,Manhattan
2019-03-20 19:27:37,2019-03-20 19:34:35,1,1.0,6.5,2.7,0.0,13.5,yellow,credit card,Murray Hill,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-27 13:59:05,2019-03-27 14:05:01,2,0.7,6.0,0.0,0.0,9.3,yellow,cash,Union Sq,Greenwich Village North,Manhattan,Manhattan
2019-03-07 17:43:12,2019-03-07 17:48:09,1,0.5,5.0,0.7,0.0,10.0,yellow,credit card,East Village,Greenwich Village North,Manhattan,Manhattan
2019-03-04 20:55:05,2019-03-04 21:18:21,1,6.67,22.5,5.26,0.0,31.56,yellow,credit card,Times Sq/Theatre District,Central Harlem North,Manhattan,Manhattan
2019-03-04 14:54:03,2019-03-04 15:30:42,1,17.9,52.0,15.25,5.76,76.31,yellow,credit card,JFK Airport,Midtown Center,Queens,Manhattan
2019-03-12 18:56:49,2019-03-12 19:00:22,3,0.91,5.0,1.86,0.0,11.16,yellow,credit card,TriBeCa/Civic Center,West Village,Manhattan,Manhattan
2019-03-29 18:12:14,2019-03-29 18:22:04,2,1.42,8.0,2.46,0.0,14.76,yellow,credit card,Midtown Center,Upper East Side South,Manhattan,Manhattan
2019-03-27 07:35:08,2019-03-27 07:43:21,1,1.18,7.5,1.0,0.0,9.3,yellow,credit card,Hamilton Heights,Central Harlem,Manhattan,Manhattan
2019-03-26 18:44:26,2019-03-26 18:49:25,1,0.62,5.0,2.32,0.0,11.62,yellow,credit card,Upper East Side South,Lenox Hill East,Manhattan,Manhattan
2019-03-29 06:49:41,2019-03-29 06:54:41,1,0.77,5.5,1.0,0.0,9.8,yellow,credit card,Garment District,Murray Hill,Manhattan,Manhattan
2019-03-01 11:50:32,2019-03-01 11:59:16,1,1.2,7.5,2.15,0.0,12.95,yellow,credit card,East Village,SoHo,Manhattan,Manhattan
2019-03-30 23:30:01,2019-03-30 23:41:59,1,2.3,10.0,1.0,0.0,14.8,yellow,credit card,Murray Hill,East Chelsea,Manhattan,Manhattan
2019-03-05 12:57:42,2019-03-05 13:00:41,1,0.53,4.0,0.0,0.0,7.3,yellow,cash,West Village,Flatiron,Manhattan,Manhattan
2019-03-12 17:39:50,2019-03-12 17:48:09,1,1.3,7.5,2.35,0.0,14.15,yellow,credit card,Lincoln Square East,Upper West Side North,Manhattan,Manhattan
2019-03-29 22:13:15,2019-03-29 22:25:11,1,1.59,9.5,0.0,0.0,13.3,yellow,credit card,East Village,Flatiron,Manhattan,Manhattan
2019-03-16 22:58:35,2019-03-16 23:03:58,1,1.28,6.0,0.0,0.0,9.8,yellow,cash,Upper East Side South,Midtown East,Manhattan,Manhattan
2019-03-01 00:03:29,2019-03-01 00:13:32,3,2.16,10.0,2.0,0.0,15.8,yellow,credit card,Lincoln Square East,Upper East Side North,Manhattan,Manhattan
2019-03-23 22:07:45,2019-03-23 22:14:48,2,0.71,6.5,2.06,0.0,12.36,yellow,credit card,Gramercy,East Village,Manhattan,Manhattan
2019-03-21 18:07:55,2019-03-21 18:32:47,1,3.44,17.5,0.0,0.0,21.8,yellow,cash,Midtown Center,Upper West Side North,Manhattan,Manhattan
2019-03-27 09:38:06,2019-03-27 10:18:31,1,12.53,40.0,9.81,5.76,58.87,yellow,credit card,LaGuardia Airport,Upper East Side South,Queens,Manhattan
2019-03-15 09:11:43,2019-03-15 09:21:57,5,1.04,8.0,2.26,0.0,13.56,yellow,credit card,Lincoln Square East,Midtown Center,Manhattan,Manhattan
2019-03-26 13:17:07,2019-03-26 13:27:05,2,1.44,8.5,2.36,0.0,14.16,yellow,credit card,UN/Turtle Bay South,Gramercy,Manhattan,Manhattan
2019-03-09 16:32:40,2019-03-09 16:49:32,2,2.7,13.0,0.0,0.0,16.3,yellow,cash,Midtown North,Kips Bay,Manhattan,Manhattan
2019-03-29 17:14:39,2019-03-29 17:22:49,1,0.71,6.5,1.62,0.0,12.42,yellow,credit card,Gramercy,Murray Hill,Manhattan,Manhattan
2019-03-01 14:21:09,2019-03-01 14:39:12,0,2.3,12.5,1.2,0.0,17.0,yellow,credit card,Yorkville West,Midtown Center,Manhattan,Manhattan
2019-03-19 09:05:04,2019-03-19 09:16:59,1,1.95,9.5,2.56,0.0,15.36,yellow,credit card,Lincoln Square East,Yorkville West,Manhattan,Manhattan
2019-03-25 07:28:39,2019-03-25 07:39:06,1,1.43,8.5,2.36,0.0,14.16,yellow,credit card,UN/Turtle Bay South,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-12 10:42:18,2019-03-12 10:43:51,1,0.4,3.5,1.7,0.0,8.5,yellow,credit card,Upper West Side North,Upper West Side North,Manhattan,Manhattan
2019-03-01 23:08:51,2019-03-01 23:35:30,1,4.4,20.0,5.95,0.0,29.75,yellow,credit card,Greenwich Village South,Park Slope,Manhattan,Brooklyn
2019-03-25 15:47:47,2019-03-25 16:15:56,1,13.66,38.0,9.41,5.76,56.47,yellow,credit card,Battery Park City,LaGuardia Airport,Manhattan,Queens
2019-03-24 13:17:38,2019-03-24 13:31:41,1,1.2,10.0,2.65,0.0,15.95,yellow,credit card,Murray Hill,Clinton East,Manhattan,Manhattan
2019-03-04 14:50:08,2019-03-04 14:54:15,1,0.76,5.0,2.08,0.0,10.38,yellow,credit card,Sutton Place/Turtle Bay North,Upper East Side South,Manhattan,Manhattan
2019-03-18 06:22:16,2019-03-18 06:28:51,5,1.52,7.0,2.06,0.0,12.36,yellow,credit card,Clinton East,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-18 15:41:34,2019-03-18 16:05:43,1,2.83,16.0,4.82,0.0,24.12,yellow,credit card,Lenox Hill East,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-30 17:59:42,2019-03-30 18:04:13,1,0.6,5.0,1.0,0.0,9.3,yellow,credit card,Lenox Hill West,Lenox Hill West,Manhattan,Manhattan
2019-03-14 09:10:07,2019-03-14 09:23:35,2,1.3,9.5,2.55,0.0,15.35,yellow,credit card,Midtown East,Midtown Center,Manhattan,Manhattan
2019-03-22 13:29:10,2019-03-22 13:31:32,1,0.4,4.0,1.0,0.0,8.3,yellow,credit card,Lincoln Square West,Lincoln Square West,Manhattan,Manhattan
2019-03-23 00:19:20,2019-03-23 00:26:11,1,1.0,6.5,1.5,0.0,11.8,yellow,credit card,Midtown South,Midtown East,Manhattan,Manhattan
2019-03-13 14:22:16,2019-03-13 14:29:12,1,1.1,6.5,1.96,0.0,11.76,yellow,credit card,TriBeCa/Civic Center,Battery Park City,Manhattan,Manhattan
2019-03-15 00:17:16,2019-03-15 00:19:55,2,0.59,4.0,0.0,0.0,7.8,yellow,cash,Midtown Center,Midtown North,Manhattan,Manhattan
2019-03-08 07:26:53,2019-03-08 07:36:20,1,0.6,7.0,0.0,0.0,10.3,yellow,cash,Penn Station/Madison Sq West,Union Sq,Manhattan,Manhattan
2019-03-07 16:21:41,2019-03-07 17:00:37,1,3.0,23.0,1.5,0.0,28.8,yellow,credit card,Flatiron,Upper East Side South,Manhattan,Manhattan
2019-03-06 11:24:49,2019-03-06 11:34:37,1,1.2,7.5,0.0,0.0,10.8,yellow,cash,Little Italy/NoLiTa,Union Sq,Manhattan,Manhattan
2019-03-06 07:42:02,2019-03-06 07:54:57,1,2.37,10.5,2.76,0.0,16.56,yellow,credit card,Yorkville East,Midtown North,Manhattan,Manhattan
2019-03-15 23:13:44,2019-03-15 23:24:47,1,1.7,9.5,2.65,0.0,15.95,yellow,credit card,Lincoln Square West,East Chelsea,Manhattan,Manhattan
2019-03-23 11:26:58,2019-03-23 11:35:17,2,1.3,7.5,0.0,0.0,10.8,yellow,,Upper East Side South,Lincoln Square West,Manhattan,Manhattan
2019-03-16 14:43:14,2019-03-16 14:45:29,1,0.6,4.0,0.0,0.0,7.3,yellow,cash,Upper East Side South,Upper East Side North,Manhattan,Manhattan
2019-03-21 15:47:42,2019-03-21 16:13:10,2,5.5,20.0,4.65,0.0,27.95,yellow,credit card,Upper East Side South,East Village,Manhattan,Manhattan
2019-03-28 16:50:32,2019-03-28 17:02:14,2,1.1,9.0,1.33,0.0,14.63,yellow,credit card,Upper East Side South,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-21 21:40:07,2019-03-21 21:55:33,1,2.39,12.0,0.58,0.0,16.38,yellow,credit card,TriBeCa/Civic Center,East Village,Manhattan,Manhattan
2019-03-05 10:01:27,2019-03-05 10:16:57,1,2.4,12.0,3.05,0.0,18.35,yellow,credit card,Penn Station/Madison Sq West,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-08 21:50:35,2019-03-08 22:08:14,2,2.6,13.5,1.7,0.0,19.0,yellow,credit card,East Village,Financial District North,Manhattan,Manhattan
2019-03-01 22:25:03,2019-03-01 22:32:08,1,1.3,7.0,1.66,0.0,9.96,yellow,credit card,Morningside Heights,Manhattanville,Manhattan,Manhattan
2019-03-30 17:58:22,2019-03-30 18:03:05,2,0.6,5.0,0.83,0.0,9.13,yellow,credit card,Gramercy,Gramercy,Manhattan,Manhattan
2019-03-10 14:56:12,2019-03-10 15:01:55,1,0.4,5.0,1.65,0.0,9.95,yellow,credit card,Lincoln Square East,Central Park,Manhattan,Manhattan
2019-03-24 01:43:34,2019-03-24 02:01:11,0,4.2,15.5,3.85,0.0,23.15,yellow,credit card,Times Sq/Theatre District,East Harlem South,Manhattan,Manhattan
2019-03-09 04:10:48,2019-03-09 04:34:29,1,10.7,31.5,3.0,5.76,44.06,yellow,credit card,Lincoln Square East,LaGuardia Airport,Manhattan,Queens
2019-03-25 19:00:32,2019-03-25 19:03:42,1,0.48,4.0,0.0,0.0,8.3,yellow,cash,Sutton Place/Turtle Bay North,Sutton Place/Turtle Bay North,Manhattan,Manhattan
2019-03-08 16:01:14,2019-03-08 16:19:09,1,1.83,12.0,3.06,0.0,18.36,yellow,credit card,Midtown East,Garment District,Manhattan,Manhattan
2019-03-28 23:19:09,2019-03-28 23:29:17,1,1.53,8.5,1.23,0.0,13.53,yellow,credit card,Midtown East,Murray Hill,Manhattan,Manhattan
2019-03-22 05:04:14,2019-03-22 05:07:03,1,0.7,4.5,1.15,0.0,6.95,yellow,credit card,Central Harlem,East Harlem South,Manhattan,Manhattan
2019-03-08 00:55:20,2019-03-08 01:49:38,2,6.47,35.5,6.0,0.0,45.3,yellow,credit card,Midtown North,Elmhurst/Maspeth,Manhattan,Queens
2019-03-14 06:22:56,2019-03-14 06:25:51,1,0.7,4.5,1.06,0.0,6.36,yellow,credit card,Cobble Hill,Brooklyn Heights,Brooklyn,Brooklyn
2019-03-09 06:27:43,2019-03-09 06:34:34,1,1.71,8.0,0.01,0.0,11.31,yellow,credit card,Gramercy,Lower East Side,Manhattan,Manhattan
2019-03-14 15:22:32,2019-03-14 15:45:41,1,2.41,14.5,3.56,0.0,21.36,yellow,credit card,TriBeCa/Civic Center,Brooklyn Heights,Manhattan,Brooklyn
2019-03-25 12:55:19,2019-03-25 13:04:12,1,1.1,7.5,0.0,0.0,10.8,yellow,cash,West Village,Penn Station/Madison Sq West,Manhattan,Manhattan
2019-03-18 06:07:09,2019-03-18 06:16:22,1,2.8,10.5,2.0,0.0,15.8,yellow,credit card,TriBeCa/Civic Center,Midtown South,Manhattan,Manhattan
2019-03-20 00:57:22,2019-03-20 00:59:00,6,0.63,4.0,1.17,0.0,8.97,yellow,credit card,West Chelsea/Hudson Yards,Clinton East,Manhattan,Manhattan
2019-03-19 07:23:39,2019-03-19 07:32:59,1,1.3,8.0,0.0,0.0,11.3,yellow,cash,Midtown East,East Chelsea,Manhattan,Manhattan
2019-03-26 21:49:25,2019-03-26 21:56:47,2,1.04,6.5,1.0,0.0,11.3,yellow,credit card,Union Sq,Midtown South,Manhattan,Manhattan
2019-03-16 20:24:58,2019-03-16 20:54:57,2,11.06,34.0,7.56,0.0,45.36,yellow,credit card,Gramercy,Inwood,Manhattan,Manhattan
2019-03-24 18:44:50,2019-03-24 19:14:16,6,9.02,29.5,9.64,5.76,48.2,yellow,credit card,LaGuardia Airport,Flatiron,Queens,Manhattan
2019-03-30 22:29:57,2019-03-30 22:44:26,2,4.88,15.5,3.86,0.0,23.16,yellow,credit card,Sutton Place/Turtle Bay North,Seaport,Manhattan,Manhattan
2019-03-27 17:08:10,2019-03-27 17:23:39,1,1.98,11.0,0.0,0.0,15.3,yellow,cash,East Village,Union Sq,Manhattan,Manhattan
2019-03-16 16:39:19,2019-03-16 17:04:00,2,4.37,20.5,5.95,0.0,29.75,yellow,credit card,West Chelsea/Hudson Yards,Manhattan Valley,Manhattan,Manhattan
2019-03-27 14:37:38,2019-03-27 14:44:19,1,1.28,6.5,0.0,0.0,9.8,yellow,cash,Lincoln Square West,Upper West Side North,Manhattan,Manhattan
2019-03-03 13:13:56,2019-03-03 13:22:47,1,1.3,8.0,1.7,0.0,13.0,yellow,credit card,Upper West Side South,Lincoln Square East,Manhattan,Manhattan
2019-03-23 14:46:49,2019-03-23 15:07:10,1,4.0,17.0,4.05,0.0,24.35,yellow,credit card,Garment District,Two Bridges/Seward Park,Manhattan,Manhattan
2019-03-02 16:44:47,2019-03-02 17:12:53,1,3.5,18.5,0.0,0.0,21.8,yellow,cash,Midtown North,Lower East Side,Manhattan,Manhattan
2019-03-14 15:57:41,2019-03-14 16:08:16,1,2.2,9.5,3.0,0.0,16.8,yellow,credit card,Yorkville West,Manhattan Valley,Manhattan,Manhattan
2019-03-15 15:39:44,2019-03-15 16:36:49,2,16.3,52.0,10.0,5.76,71.06,yellow,credit card,UN/Turtle Bay South,JFK Airport,Manhattan,Queens
2019-03-20 20:35:58,2019-03-20 20:45:23,1,1.32,7.5,1.0,0.0,12.3,yellow,credit card,Murray Hill,Midtown East,Manhattan,Manhattan
2019-03-10 14:10:22,2019-03-10 14:19:28,1,0.6,7.0,1.0,0.0,11.3,yellow,credit card,Clinton East,Clinton West,Manhattan,Manhattan
2019-03-14 00:56:40,2019-03-14 01:01:26,0,0.7,5.0,1.0,0.0,9.8,yellow,credit card,East Village,Lower East Side,Manhattan,Manhattan
2019-03-27 09:03:30,2019-03-27 09:28:47,1,1.54,15.5,0.0,0.0,18.8,yellow,cash,Murray Hill,Clinton West,Manhattan,Manhattan
2019-03-08 02:58:37,2019-03-08 03:19:27,2,6.9,23.5,0.0,0.0,27.3,yellow,,Garment District,Central Harlem North,Manhattan,Manhattan
2019-03-11 13:37:20,2019-03-11 13:51:45,5,2.06,11.0,2.86,0.0,17.16,yellow,credit card,Midtown Center,Greenwich Village North,Manhattan,Manhattan
2019-03-31 07:52:57,2019-03-31 07:58:31,1,1.48,6.5,0.0,0.0,9.8,yellow,cash,Meatpacking/West Village West,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-27 21:02:45,2019-03-27 21:10:55,1,1.08,7.5,2.26,0.0,13.56,yellow,credit card,Midtown Center,Lincoln Square East,Manhattan,Manhattan
2019-03-01 23:35:14,2019-03-01 23:43:25,5,1.11,7.0,3.24,0.0,14.04,yellow,credit card,Little Italy/NoLiTa,West Village,Manhattan,Manhattan
2019-03-10 22:57:48,2019-03-10 23:04:18,2,1.1,6.5,1.0,0.0,11.3,yellow,credit card,Greenwich Village South,Alphabet City,Manhattan,Manhattan
2019-03-17 21:28:42,2019-03-17 21:44:25,1,3.0,13.0,3.35,0.0,20.15,yellow,credit card,Upper West Side South,East Chelsea,Manhattan,Manhattan
2019-03-22 13:57:20,2019-03-22 14:06:28,1,1.42,8.0,2.26,0.0,13.56,yellow,credit card,East Village,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-01 06:41:00,2019-03-01 06:48:19,2,1.84,8.0,2.26,0.0,13.56,yellow,credit card,Lincoln Square West,Midtown East,Manhattan,Manhattan
2019-03-24 16:03:55,2019-03-24 16:37:14,1,9.19,30.5,7.41,5.76,44.47,yellow,credit card,LaGuardia Airport,Upper West Side North,Queens,Manhattan
2019-03-16 19:55:52,2019-03-16 20:10:26,1,1.88,11.0,2.86,0.0,17.16,yellow,credit card,Flatiron,West Chelsea/Hudson Yards,Manhattan,Manhattan
2019-03-14 18:19:17,2019-03-14 18:27:37,1,1.47,8.0,0.0,0.0,12.3,yellow,cash,Upper East Side North,Lincoln Square East,Manhattan,Manhattan
2019-03-05 07:14:16,2019-03-05 07:27:30,1,2.37,10.5,2.76,0.0,16.56,yellow,credit card,Greenwich Village North,Midtown South,Manhattan,Manhattan
2019-03-23 11:59:53,2019-03-23 12:16:28,2,3.78,14.5,3.56,0.0,21.36,yellow,credit card,Yorkville East,Times Sq/Theatre District,Manhattan,Manhattan
2019-03-30 05:50:22,2019-03-30 06:11:31,1,8.1,26.0,5.45,0.0,32.75,yellow,credit card,Steinway,Bushwick South,Queens,Brooklyn
2019-03-27 21:51:08,2019-03-27 21:54:52,1,0.81,5.0,1.0,0.0,9.8,yellow,credit card,Lincoln Square East,Clinton East,Manhattan,Manhattan
2019-03-16 14:18:58,2019-03-16 14:24:08,2,1.15,6.0,0.46,0.0,9.76,yellow,credit card,West Village,TriBeCa/Civic Center,Manhattan,Manhattan
2019-03-29 00:02:00,2019-03-29 00:02:05,2,0.0,45.0,5.0,0.0,50.3,yellow,credit card,,,,
2019-03-21 19:27:42,2019-03-21 19:44:51,1,7.2,21.5,0.0,0.0,23.3,yellow,cash,JFK Airport,Woodhaven,Queens,Queens
2019-03-04 21:05:30,2019-03-04 21:34:34,1,16.82,52.0,15.26,5.76,76.32,yellow,credit card,JFK Airport,Midtown Center,Queens,Manhattan
2019-03-16 14:38:18,2019-03-16 14:44:58,2,0.85,6.0,0.0,0.0,9.3,yellow,credit card,Upper East Side South,Upper East Side South,Manhattan,Manhattan
2019-03-07 13:10:37,2019-03-07 13:35:41,1,8.68,27.5,9.14,5.76,45.7,yellow,credit card,LaGuardia Airport,Midtown Center,Queens,Manhattan
2019-03-21 18:03:47,2019-03-21 18:30:47,5,4.99,20.5,4.96,0.0,29.76,yellow,credit card,Midtown Center,Central Harlem North,Manhattan,Manhattan
2019-03-08 00:30:05,2019-03-08 00:32:45,1,0.99,5.0,1.76,0.0,10.56,yellow,credit card,UN/Turtle Bay South,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-01 15:45:19,2019-03-01 15:47:06,1,0.5,3.5,0.0,0.0,7.8,yellow,cash,Kips Bay,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-09 20:48:43,2019-03-09 20:55:09,1,0.87,6.0,1.0,0.0,10.8,yellow,credit card,Upper East Side South,Lincoln Square East,Manhattan,Manhattan
2019-03-30 23:46:27,2019-03-30 23:53:42,1,0.99,6.5,2.06,0.0,12.36,yellow,credit card,East Village,Gramercy,Manhattan,Manhattan
2019-03-12 22:22:06,2019-03-12 22:27:22,1,1.0,5.5,0.0,0.0,9.3,yellow,credit card,Gramercy,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-27 17:26:24,2019-03-27 17:33:56,1,0.5,6.0,0.0,0.0,7.8,yellow,credit card,Midtown East,Upper East Side South,Manhattan,Manhattan
2019-03-22 10:19:07,2019-03-22 10:26:10,1,0.73,6.5,0.0,0.0,9.8,yellow,cash,Lincoln Square East,Lincoln Square West,Manhattan,Manhattan
2019-03-18 21:52:51,2019-03-18 22:23:12,3,8.7,28.5,6.2,0.0,38.5,yellow,credit card,Midtown Center,Clinton Hill,Manhattan,Brooklyn
2019-03-31 01:18:04,2019-03-31 01:27:35,1,2.6,9.5,1.5,0.0,14.8,yellow,credit card,Yorkville West,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-01 13:17:12,2019-03-01 13:25:18,1,0.8,6.5,1.95,0.0,11.75,yellow,credit card,Midtown Center,UN/Turtle Bay South,Manhattan,Manhattan
2019-03-19 08:51:33,2019-03-19 09:01:10,1,0.8,7.5,2.15,0.0,12.95,yellow,credit card,Clinton East,Midtown Center,Manhattan,Manhattan
2019-03-30 01:40:32,2019-03-30 01:42:00,1,0.64,4.0,0.0,0.0,5.3,yellow,cash,Long Island City/Queens Plaza,Astoria,Queens,Queens
2019-03-27 17:48:40,2019-03-27 17:55:55,1,1.31,7.0,0.0,0.0,11.3,yellow,cash,East Village,Murray Hill,Manhattan,Manhattan
2019-03-28 16:29:27,2019-03-28 16:55:52,1,5.14,20.5,4.96,0.0,29.76,yellow,credit card,Union Sq,Upper West Side North,Manhattan,Manhattan
2019-03-30 10:46:08,2019-03-30 10:54:04,2,1.56,7.5,1.66,0.0,11.91,yellow,credit card,Central Harlem North,East Harlem North,Manhattan,Manhattan
2019-03-01 07:06:20,2019-03-01 07:09:34,5,0.66,4.5,1.56,0.0,9.36,yellow,credit card,Lenox Hill West,Upper East Side North,Manhattan,Manhattan
2019-03-30 13:42:26,2019-03-30 13:44:47,6,0.29,3.5,0.0,0.0,6.8,yellow,cash,Times Sq/Theatre District,Midtown Center,Manhattan,Manhattan
2019-03-19 09:36:24,2019-03-19 10:09:41,1,6.8,25.5,0.0,0.0,28.8,yellow,cash,Manhattanville,Midtown East,Manhattan,Manhattan
2019-03-02 10:32:56,2019-03-02 10:46:13,2,1.54,9.5,2.56,0.0,15.36,yellow,credit card,Garment District,Midtown North,Manhattan,Manhattan
2019-03-02 23:55:24,2019-03-03 00:04:02,1,1.6,8.0,2.36,0.0,14.16,yellow,credit card,Central Park,Upper West Side North,Manhattan,Manhattan
2019-03-22 09:02:34,2019-03-22 09:32:22,1,8.3,27.0,7.2,5.76,43.26,yellow,credit card,LaGuardia Airport,Kips Bay,Queens,Manhattan
2019-03-15 15:44:24,2019-03-15 15:48:39,1,0.86,5.0,1.0,0.0,9.3,yellow,credit card,Upper West Side South,Lincoln Square East,Manhattan,Manhattan
2019-03-27 22:24:45,2019-03-27 22:40:25,1,5.15,16.5,4.06,0.0,24.36,yellow,credit card,Midtown Center,Central Harlem North,Manhattan,Manhattan