Exploratory Data Analysis with Python

We will explore the NYC MTA turnstile dataset. These data files are from the New York Subway. It tracks the hourly entries and exits to turnstiles by day in the subway system.

The data files are available on MTA's website.


In [1]:
!pip install wget


Requirement already satisfied: wget in /Users/gabrielcs/anaconda/lib/python3.5/site-packages

In [2]:
import os, wget

url_template = "http://web.mta.info/developers/data/nyct/turnstile/turnstile_%s.txt"
for date in ['160206', '160213', '160220', '160227', '160305']:
    url = url_template % date
    if os.path.isfile('data/turnstile_{}.txt'.format(date)):
        print(date, 'file already downloaded')
    else:
        wget.download(url, out='data/')
        print(date, 'file downloaded')


160206 file already downloaded
160213 file already downloaded
160220 file already downloaded
160227 file already downloaded
160305 file already downloaded

Our first step will be to create a dictionary of which the key will be the columns representing a turnstile (C/A, UNIT, SCP, STATION) and the value will be a list of the entries for that turnstile. It should look like so:

{
    ('A002','R051','02-00-00','LEXINGTON AVE'):    
    [
        ['NQR456', 'BMT', '01/03/2015', '03:00:00', 'REGULAR', '0004945474', '0001675324'],          
        ['NQR456', 'BMT', '01/03/2015', '07:00:00', 'REGULAR', '0004945478', '0001675333'],  
        ['NQR456', 'BMT', '01/03/2015', '11:00:00', 'REGULAR', '0004945515', '0001675364'],
      ...   
    ] 
}

In [3]:
import csv, glob
from collections import defaultdict

def read_csv(csv_file_name):
    turnstile_to_count_reading = defaultdict(list)
    with open(csv_file_name, 'r') as csv_file:
        mta_reader = csv.reader(csv_file)
        for i, row in enumerate(mta_reader):
            if i == 0:
                continue
                
            turnstile_info = tuple(row[:4])
            count_reading = row[4:]
            turnstile_to_count_reading[turnstile_info].append(count_reading)
            
    return turnstile_to_count_reading

In [4]:
weekly_data_dicts = [read_csv(csvfile) for csvfile in glob.glob('data/turnstile_*.txt')]

In [5]:
sample_dict = list(weekly_data_dicts[0].items())[:1]
sample_dict


Out[5]:
[(('B022', 'R229', '00-03-00', 'AVENUE M'),
  [['BQ',
    'BMT',
    '01/30/2016',
    '03:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/30/2016',
    '07:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/30/2016',
    '11:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/30/2016',
    '15:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/30/2016',
    '19:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/30/2016',
    '23:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/31/2016',
    '03:00:00',
    'RECOVR AUD',
    '0000000247',
    '0000000000                                           '],
   ['BQ',
    'BMT',
    '01/31/2016',
    '07:00:00',
    'RECOVR AUD',
    '0000000247',
    '0000000000                                           '],
   ['BQ',
    'BMT',
    '01/31/2016',
    '10:58:46',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/31/2016',
    '11:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/31/2016',
    '11:00:06',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/31/2016',
    '11:01:27',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/31/2016',
    '15:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/31/2016',
    '19:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '01/31/2016',
    '23:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/01/2016',
    '03:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/01/2016',
    '07:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/01/2016',
    '08:32:19',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/01/2016',
    '11:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/01/2016',
    '15:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/01/2016',
    '19:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/01/2016',
    '23:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/02/2016',
    '03:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/02/2016',
    '07:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/02/2016',
    '11:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/02/2016',
    '15:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/02/2016',
    '19:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/02/2016',
    '23:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/03/2016',
    '03:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/03/2016',
    '07:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/03/2016',
    '11:00:00',
    'REGULAR',
    '0000000247',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/03/2016',
    '15:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/03/2016',
    '19:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/03/2016',
    '23:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/04/2016',
    '03:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/04/2016',
    '07:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/04/2016',
    '11:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/04/2016',
    '15:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/04/2016',
    '19:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/04/2016',
    '23:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/05/2016',
    '03:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/05/2016',
    '07:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/05/2016',
    '11:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/05/2016',
    '15:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/05/2016',
    '19:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              '],
   ['BQ',
    'BMT',
    '02/05/2016',
    '23:00:00',
    'REGULAR',
    '0000000248',
    '0000000000                                              ']])]

Now let's turn this into a time series. This time our data will be comprised of just the point in time and the cumulative count of entries.

It should look like something like:

{    
    ('A002','R051','02-00-00','LEXINGTON AVE'):    
        [
            [datetime.datetime(2013, 3, 2, 3, 0), 3788],
            [datetime.datetime(2013, 3, 2, 7, 0), 2585],
            [datetime.datetime(2013, 3, 2, 12, 0), 10653],
            [datetime.datetime(2013, 3, 2, 17, 0), 11016],
            [datetime.datetime(2013, 3, 2, 23, 0), 10666],
            [datetime.datetime(2013, 3, 3, 3, 0), 10814],
            [datetime.datetime(2013, 3, 3, 7, 0), 10229],
          ...
        ],
  ...
}

In [6]:
from datetime import datetime
from dateutil.parser import parse

def convert_week_data_to_time_series(week_data_dict):
    turnstile_to_time_series = defaultdict(list)
    for i, (turnstile, row_data) in enumerate(week_data_dict.items()):
        if i % 200 == 0:
            print('Processing turnstile', turnstile)
        for lines, division, datestr, timestr, event, cum_entries, cum_exits in row_data:
            timestamp = parse('%sT%s' % (datestr, timestr))
            turnstile_to_time_series[turnstile].append([timestamp, int(cum_entries)])
            
    return turnstile_to_time_series

In [7]:
weekly_time_series = list(map(convert_week_data_to_time_series, weekly_data_dicts))


Processing turnstile ('B022', 'R229', '00-03-00', 'AVENUE M')
Processing turnstile ('B024A', 'R211', '02-00-04', 'KINGS HWY')
Processing turnstile ('S101A', 'R070', '01-00-03', 'ST. GEORGE')
Processing turnstile ('A002', 'R051', '02-00-00', '59 ST')
Processing turnstile ('N078', 'R175', '01-03-01', '14 ST')
Processing turnstile ('A083', 'R125', '00-00-01', 'BROAD ST')
Processing turnstile ('A006', 'R079', '00-03-02', '5 AV/59 ST')
Processing turnstile ('R166', 'R167', '02-00-00', '86 ST')
Processing turnstile ('N303', 'R015', '00-00-08', '5 AV/53 ST')
Processing turnstile ('N327', 'R254', '00-06-02', 'GRAND-NEWTOWN')
Processing turnstile ('N405', 'R239', '00-06-02', 'GREENPOINT AV')
Processing turnstile ('R158', 'R084', '00-00-02', '59 ST COLUMBUS')
Processing turnstile ('B020', 'R263', '00-06-02', 'AVENUE H')
Processing turnstile ('N067', 'R012', '00-00-02', '34 ST-PENN STA')
Processing turnstile ('R249', 'R179', '01-00-01', '86 ST')
Processing turnstile ('N422', 'R318', '00-00-00', 'FULTON ST')
Processing turnstile ('K019', 'R413', '00-03-01', 'KNICKERBOCKER')
Processing turnstile ('R194', 'R040', '00-03-00', '231 ST')
Processing turnstile ('R217A', 'R194', '00-03-02', 'BLEECKER ST')
Processing turnstile ('R208', 'R014', '03-03-00', 'FULTON ST')
Processing turnstile ('N506', 'R022', '00-05-00', '34 ST-HERALD SQ')
Processing turnstile ('N191', 'R335', '00-05-00', 'BEACH 67 ST')
Processing turnstile ('R137', 'R031', '02-00-00', '34 ST-PENN STA')
Processing turnstile ('B022', 'R229', '00-03-00', 'AVENUE M')
Processing turnstile ('R139', 'R031', '04-00-02', '34 ST-PENN STA')
Processing turnstile ('S101A', 'R070', '01-00-03', 'ST. GEORGE')
Processing turnstile ('A002', 'R051', '02-00-00', '59 ST')
Processing turnstile ('C003', 'R089', '00-03-01', 'JAY ST-METROTEC')
Processing turnstile ('R121', 'R290', '01-03-00', 'HOUSTON ST')
Processing turnstile ('R141', 'R031', '00-03-03', '34 ST-PENN STA')
Processing turnstile ('R208', 'R014', '03-01-00', 'FULTON ST')
Processing turnstile ('N024', 'R332', '00-00-01', '135 ST')
Processing turnstile ('R113', 'R028', '01-04-00', 'FULTON ST')
Processing turnstile ('C003', 'R089', '00-00-02', 'JAY ST-METROTEC')
Processing turnstile ('R285', 'R308', '00-00-00', 'MT EDEN AV')
Processing turnstile ('A002', 'R051', '02-03-06', '59 ST')
Processing turnstile ('N500', 'R020', '00-03-03', '47-50 STS ROCK')
Processing turnstile ('N511', 'R163', '03-00-02', '14 ST')
Processing turnstile ('N070', 'R012', '04-05-01', '34 ST-PENN STA')
Processing turnstile ('A015', 'R081', '00-00-00', '49 ST')
Processing turnstile ('R639', 'R109', '00-00-00', 'CHURCH AV')
Processing turnstile ('R602', 'R108', '00-00-00', 'BOROUGH HALL')
Processing turnstile ('A031', 'R083', '00-03-00', '23 ST')
Processing turnstile ('R131', 'R190', '00-00-02', '23 ST')
Processing turnstile ('N530', 'R301', '00-00-01', 'YORK ST')
Processing turnstile ('R250', 'R179', '00-00-0A', '86 ST')
Processing turnstile ('B022', 'R229', '00-03-00', 'AVENUE M')
Processing turnstile ('R240', 'R047', '00-03-00', 'GRD CNTRL-42 ST')
Processing turnstile ('A033', 'R170', '02-00-04', '14 ST-UNION SQ')
Processing turnstile ('R162', 'R166', '00-06-00', '79 ST')
Processing turnstile ('N078', 'R175', '01-03-01', '14 ST')
Processing turnstile ('A083', 'R125', '00-00-01', 'BROAD ST')
Processing turnstile ('A006', 'R079', '00-03-02', '5 AV/59 ST')
Processing turnstile ('R176', 'R169', '00-00-03', '137 ST CITY COL')
Processing turnstile ('N324', 'R018', '00-03-03', 'JKSN HT-ROOSVLT')
Processing turnstile ('R532', 'R328', '00-06-03', 'METS-WILLETS PT')
Processing turnstile ('C003', 'R089', '00-00-02', 'JAY ST-METROTEC')
Processing turnstile ('N528', 'R257', '01-00-00', 'EAST BROADWAY')
Processing turnstile ('B010', 'R412', '00-03-00', 'BOTANIC GARDEN')
Processing turnstile ('N420B', 'R317', '00-06-01', 'CLINTON-WASH AV')
Processing turnstile ('N068', 'R012', '03-00-02', '34 ST-PENN STA')
Processing turnstile ('J001', 'R460', '01-06-00', 'MARCY AV')
Processing turnstile ('B021', 'R228', '00-00-00', 'AVENUE J')
Processing turnstile ('R418', 'R106', '00-03-00', 'CASTLE HILL AV')
Processing turnstile ('R402', 'R446', '00-00-00', 'BROOK AV')
Processing turnstile ('B019', 'R149', '00-00-00', 'NEWKIRK PLAZA')
Processing turnstile ('R171', 'R192', '01-00-01', 'CATHEDRAL PKWY')
Processing turnstile ('R532H', 'R328', '02-05-00', 'METS-WILLETS PT')
Processing turnstile ('S101', 'R070', '00-00-05', 'ST. GEORGE')
Processing turnstile ('B022', 'R229', '00-03-00', 'AVENUE M')
Processing turnstile ('B024A', 'R211', '02-00-04', 'KINGS HWY')
Processing turnstile ('J023', 'R436', '00-00-01', 'NORWOOD AV')
Processing turnstile ('R160A', 'R164', '00-05-01', '66 ST-LINCOLN')
Processing turnstile ('N319', 'R298', '01-00-02', 'NORTHERN BLVD')
Processing turnstile ('R238', 'R046', '00-00-05', 'GRD CNTRL-42 ST')
Processing turnstile ('R141', 'R031', '00-03-03', '34 ST-PENN STA')
Processing turnstile ('R176', 'R169', '00-00-03', '137 ST CITY COL')
Processing turnstile ('N501', 'R020', '01-03-00', '47-50 STS ROCK')
Processing turnstile ('N327', 'R254', '00-06-02', 'GRAND-NEWTOWN')
Processing turnstile ('R116', 'R030', '00-06-00', 'CHAMBERS ST')
Processing turnstile ('R128', 'R105', '01-03-02', '14 ST')
Processing turnstile ('R238', 'R046', '00-06-04', 'GRD CNTRL-42 ST')
Processing turnstile ('R203', 'R043', '00-00-01', 'WALL ST')
Processing turnstile ('R138', 'R293', '00-03-01', '34 ST-PENN STA')
Processing turnstile ('R506', 'R276', '02-06-00', 'VERNON-JACKSON')
Processing turnstile ('N500', 'R020', '00-03-05', '47-50 STS ROCK')
Processing turnstile ('N062A', 'R010', '00-05-00', '42 ST-PORT AUTH')
Processing turnstile ('D005', 'R398', '00-00-00', 'NEW UTRECHT AV')
Processing turnstile ('N558', 'R130', '01-06-00', 'KINGS HWY')
Processing turnstile ('R612', 'R057', '01-03-02', 'ATL AV-BARCLAY')
Processing turnstile ('N319', 'R298', '01-00-00', 'NORTHERN BLVD')
Processing turnstile ('N305', 'R017', '01-03-00', 'LEXINGTON AV/53')
Processing turnstile ('B022', 'R229', '00-03-00', 'AVENUE M')
Processing turnstile ('N303', 'R015', '00-00-01', '5 AV/53 ST')
Processing turnstile ('PTH10', 'R547', '00-00-00', '9TH STREET')
Processing turnstile ('A007', 'R079', '01-06-00', '5 AV/59 ST')
Processing turnstile ('N013', 'R035', '02-05-01', '168 ST')
Processing turnstile ('N023', 'R332', '01-00-01', '135 ST')
Processing turnstile ('D002', 'R390', '00-03-02', '8 AV')
Processing turnstile ('N017', 'R331', '00-00-02', '155 ST')
Processing turnstile ('PTH06', 'R546', '00-00-02', 'PAVONIA/NEWPORT')
Processing turnstile ('PTH09', 'R548', '00-00-03', 'CHRISTOPHER ST')
Processing turnstile ('R534', 'R055', '01-03-00', 'FLUSHING-MAIN')
Processing turnstile ('N405', 'R239', '00-03-00', 'GREENPOINT AV')
Processing turnstile ('N502', 'R021', '01-00-02', '42 ST-BRYANT PK')
Processing turnstile ('H001', 'R175', '00-00-03', '8 AV')
Processing turnstile ('R520', 'R223', '01-05-00', '46 ST BLISS ST')
Processing turnstile ('B012', 'R196', '00-00-00', 'PROSPECT PARK')
Processing turnstile ('N501A', 'R020', '02-00-00', '47-50 STS ROCK')
Processing turnstile ('R241A', 'R048', '00-00-04', 'GRD CNTRL-42 ST')
Processing turnstile ('R514', 'R094', '00-00-03', 'ASTORIA BLVD')
Processing turnstile ('A038', 'R085', '00-00-00', '8 ST-NYU')
Processing turnstile ('R188', 'R037', '00-06-02', '207 ST')
Processing turnstile ('A054', 'R227', '01-00-02', 'RECTOR ST')
Processing turnstile ('N023', 'R332', '01-06-00', '135 ST')

In [8]:
sample_turnstile_to_time_series = list(weekly_time_series[0].items())[:2]
sample_turnstile_to_time_series


Out[8]:
[(('B022', 'R229', '00-03-00', 'AVENUE M'),
  [[datetime.datetime(2016, 1, 30, 3, 0), 247],
   [datetime.datetime(2016, 1, 30, 7, 0), 247],
   [datetime.datetime(2016, 1, 30, 11, 0), 247],
   [datetime.datetime(2016, 1, 30, 15, 0), 247],
   [datetime.datetime(2016, 1, 30, 19, 0), 247],
   [datetime.datetime(2016, 1, 30, 23, 0), 247],
   [datetime.datetime(2016, 1, 31, 3, 0), 247],
   [datetime.datetime(2016, 1, 31, 7, 0), 247],
   [datetime.datetime(2016, 1, 31, 10, 58, 46), 247],
   [datetime.datetime(2016, 1, 31, 11, 0), 247],
   [datetime.datetime(2016, 1, 31, 11, 0, 6), 247],
   [datetime.datetime(2016, 1, 31, 11, 1, 27), 247],
   [datetime.datetime(2016, 1, 31, 15, 0), 247],
   [datetime.datetime(2016, 1, 31, 19, 0), 247],
   [datetime.datetime(2016, 1, 31, 23, 0), 247],
   [datetime.datetime(2016, 2, 1, 3, 0), 247],
   [datetime.datetime(2016, 2, 1, 7, 0), 247],
   [datetime.datetime(2016, 2, 1, 8, 32, 19), 247],
   [datetime.datetime(2016, 2, 1, 11, 0), 247],
   [datetime.datetime(2016, 2, 1, 15, 0), 247],
   [datetime.datetime(2016, 2, 1, 19, 0), 247],
   [datetime.datetime(2016, 2, 1, 23, 0), 247],
   [datetime.datetime(2016, 2, 2, 3, 0), 247],
   [datetime.datetime(2016, 2, 2, 7, 0), 247],
   [datetime.datetime(2016, 2, 2, 11, 0), 247],
   [datetime.datetime(2016, 2, 2, 15, 0), 247],
   [datetime.datetime(2016, 2, 2, 19, 0), 247],
   [datetime.datetime(2016, 2, 2, 23, 0), 247],
   [datetime.datetime(2016, 2, 3, 3, 0), 247],
   [datetime.datetime(2016, 2, 3, 7, 0), 247],
   [datetime.datetime(2016, 2, 3, 11, 0), 247],
   [datetime.datetime(2016, 2, 3, 15, 0), 248],
   [datetime.datetime(2016, 2, 3, 19, 0), 248],
   [datetime.datetime(2016, 2, 3, 23, 0), 248],
   [datetime.datetime(2016, 2, 4, 3, 0), 248],
   [datetime.datetime(2016, 2, 4, 7, 0), 248],
   [datetime.datetime(2016, 2, 4, 11, 0), 248],
   [datetime.datetime(2016, 2, 4, 15, 0), 248],
   [datetime.datetime(2016, 2, 4, 19, 0), 248],
   [datetime.datetime(2016, 2, 4, 23, 0), 248],
   [datetime.datetime(2016, 2, 5, 3, 0), 248],
   [datetime.datetime(2016, 2, 5, 7, 0), 248],
   [datetime.datetime(2016, 2, 5, 11, 0), 248],
   [datetime.datetime(2016, 2, 5, 15, 0), 248],
   [datetime.datetime(2016, 2, 5, 19, 0), 248],
   [datetime.datetime(2016, 2, 5, 23, 0), 248]]),
 (('N086', 'R282', '00-00-01', 'SPRING ST'),
  [[datetime.datetime(2016, 1, 30, 3, 0), 3788136],
   [datetime.datetime(2016, 1, 30, 7, 0), 3788150],
   [datetime.datetime(2016, 1, 30, 11, 0), 3788227],
   [datetime.datetime(2016, 1, 30, 15, 0), 3788590],
   [datetime.datetime(2016, 1, 30, 19, 0), 3789329],
   [datetime.datetime(2016, 1, 30, 23, 0), 3789665],
   [datetime.datetime(2016, 1, 31, 3, 0), 3789770],
   [datetime.datetime(2016, 1, 31, 7, 0), 3789784],
   [datetime.datetime(2016, 1, 31, 11, 0), 3789832],
   [datetime.datetime(2016, 1, 31, 15, 0), 3790119],
   [datetime.datetime(2016, 1, 31, 19, 0), 3790633],
   [datetime.datetime(2016, 1, 31, 23, 0), 3790872],
   [datetime.datetime(2016, 2, 1, 3, 0), 3790936],
   [datetime.datetime(2016, 2, 1, 7, 0), 3790951],
   [datetime.datetime(2016, 2, 1, 11, 0), 3791273],
   [datetime.datetime(2016, 2, 1, 15, 0), 3791714],
   [datetime.datetime(2016, 2, 1, 19, 0), 3793166],
   [datetime.datetime(2016, 2, 1, 23, 0), 3793674],
   [datetime.datetime(2016, 2, 2, 3, 0), 3793740],
   [datetime.datetime(2016, 2, 2, 7, 0), 3793757],
   [datetime.datetime(2016, 2, 2, 11, 0), 3794103],
   [datetime.datetime(2016, 2, 2, 15, 0), 3794592],
   [datetime.datetime(2016, 2, 2, 19, 0), 3796196],
   [datetime.datetime(2016, 2, 2, 23, 0), 3796783],
   [datetime.datetime(2016, 2, 3, 3, 0), 3796864],
   [datetime.datetime(2016, 2, 3, 7, 0), 3796885],
   [datetime.datetime(2016, 2, 3, 11, 0), 3797199],
   [datetime.datetime(2016, 2, 3, 15, 0), 3797711],
   [datetime.datetime(2016, 2, 3, 19, 0), 3799247],
   [datetime.datetime(2016, 2, 3, 23, 0), 3799792],
   [datetime.datetime(2016, 2, 4, 3, 0), 3799849],
   [datetime.datetime(2016, 2, 4, 7, 0), 3799864],
   [datetime.datetime(2016, 2, 4, 11, 0), 3800189],
   [datetime.datetime(2016, 2, 4, 15, 0), 3800749],
   [datetime.datetime(2016, 2, 4, 19, 0), 3802359],
   [datetime.datetime(2016, 2, 4, 23, 0), 3802990],
   [datetime.datetime(2016, 2, 5, 3, 0), 3803091],
   [datetime.datetime(2016, 2, 5, 7, 0), 3803099],
   [datetime.datetime(2016, 2, 5, 11, 0), 3803433],
   [datetime.datetime(2016, 2, 5, 15, 0), 3803952],
   [datetime.datetime(2016, 2, 5, 19, 0), 3805492],
   [datetime.datetime(2016, 2, 5, 23, 0), 3805993]])]

These counts are grouped by dataset file (e.g., by week). Let's make it a high-res timeseries by combining multiple weeks.


In [9]:
def combine_multiple_weeks_into_single_high_res_timeseries(weekly_time_series):
    combined_time_series = defaultdict(list)
    for turnstile_to_weeklong_time_series in weekly_time_series:
        for turnstile, weeklong_time_series in turnstile_to_weeklong_time_series.items():
            combined_time_series[turnstile] += weeklong_time_series
            
    # It's already sorted due to the nature of the files
    return combined_time_series


turnstile_to_full_time_series = combine_multiple_weeks_into_single_high_res_timeseries(
    weekly_time_series)

In [10]:
sample_turnstile_to_full_time_series = list(turnstile_to_full_time_series.items())[:2]
sample_turnstile_to_full_time_series


Out[10]:
[(('B022', 'R229', '00-03-00', 'AVENUE M'),
  [[datetime.datetime(2016, 1, 30, 3, 0), 247],
   [datetime.datetime(2016, 1, 30, 7, 0), 247],
   [datetime.datetime(2016, 1, 30, 11, 0), 247],
   [datetime.datetime(2016, 1, 30, 15, 0), 247],
   [datetime.datetime(2016, 1, 30, 19, 0), 247],
   [datetime.datetime(2016, 1, 30, 23, 0), 247],
   [datetime.datetime(2016, 1, 31, 3, 0), 247],
   [datetime.datetime(2016, 1, 31, 7, 0), 247],
   [datetime.datetime(2016, 1, 31, 10, 58, 46), 247],
   [datetime.datetime(2016, 1, 31, 11, 0), 247],
   [datetime.datetime(2016, 1, 31, 11, 0, 6), 247],
   [datetime.datetime(2016, 1, 31, 11, 1, 27), 247],
   [datetime.datetime(2016, 1, 31, 15, 0), 247],
   [datetime.datetime(2016, 1, 31, 19, 0), 247],
   [datetime.datetime(2016, 1, 31, 23, 0), 247],
   [datetime.datetime(2016, 2, 1, 3, 0), 247],
   [datetime.datetime(2016, 2, 1, 7, 0), 247],
   [datetime.datetime(2016, 2, 1, 8, 32, 19), 247],
   [datetime.datetime(2016, 2, 1, 11, 0), 247],
   [datetime.datetime(2016, 2, 1, 15, 0), 247],
   [datetime.datetime(2016, 2, 1, 19, 0), 247],
   [datetime.datetime(2016, 2, 1, 23, 0), 247],
   [datetime.datetime(2016, 2, 2, 3, 0), 247],
   [datetime.datetime(2016, 2, 2, 7, 0), 247],
   [datetime.datetime(2016, 2, 2, 11, 0), 247],
   [datetime.datetime(2016, 2, 2, 15, 0), 247],
   [datetime.datetime(2016, 2, 2, 19, 0), 247],
   [datetime.datetime(2016, 2, 2, 23, 0), 247],
   [datetime.datetime(2016, 2, 3, 3, 0), 247],
   [datetime.datetime(2016, 2, 3, 7, 0), 247],
   [datetime.datetime(2016, 2, 3, 11, 0), 247],
   [datetime.datetime(2016, 2, 3, 15, 0), 248],
   [datetime.datetime(2016, 2, 3, 19, 0), 248],
   [datetime.datetime(2016, 2, 3, 23, 0), 248],
   [datetime.datetime(2016, 2, 4, 3, 0), 248],
   [datetime.datetime(2016, 2, 4, 7, 0), 248],
   [datetime.datetime(2016, 2, 4, 11, 0), 248],
   [datetime.datetime(2016, 2, 4, 15, 0), 248],
   [datetime.datetime(2016, 2, 4, 19, 0), 248],
   [datetime.datetime(2016, 2, 4, 23, 0), 248],
   [datetime.datetime(2016, 2, 5, 3, 0), 248],
   [datetime.datetime(2016, 2, 5, 7, 0), 248],
   [datetime.datetime(2016, 2, 5, 11, 0), 248],
   [datetime.datetime(2016, 2, 5, 15, 0), 248],
   [datetime.datetime(2016, 2, 5, 19, 0), 248],
   [datetime.datetime(2016, 2, 5, 23, 0), 248],
   [datetime.datetime(2016, 2, 6, 3, 0), 248],
   [datetime.datetime(2016, 2, 6, 7, 0), 248],
   [datetime.datetime(2016, 2, 6, 11, 0), 248],
   [datetime.datetime(2016, 2, 6, 15, 0), 248],
   [datetime.datetime(2016, 2, 6, 19, 0), 248],
   [datetime.datetime(2016, 2, 6, 23, 0), 248],
   [datetime.datetime(2016, 2, 7, 3, 0), 248],
   [datetime.datetime(2016, 2, 7, 7, 0), 248],
   [datetime.datetime(2016, 2, 7, 11, 0), 248],
   [datetime.datetime(2016, 2, 7, 15, 0), 248],
   [datetime.datetime(2016, 2, 7, 19, 0), 248],
   [datetime.datetime(2016, 2, 7, 23, 0), 248],
   [datetime.datetime(2016, 2, 8, 3, 0), 248],
   [datetime.datetime(2016, 2, 8, 7, 0), 248],
   [datetime.datetime(2016, 2, 8, 11, 0), 248],
   [datetime.datetime(2016, 2, 8, 15, 0), 248],
   [datetime.datetime(2016, 2, 8, 19, 0), 248],
   [datetime.datetime(2016, 2, 8, 23, 0), 248],
   [datetime.datetime(2016, 2, 9, 3, 0), 248],
   [datetime.datetime(2016, 2, 9, 7, 0), 248],
   [datetime.datetime(2016, 2, 9, 11, 0), 251],
   [datetime.datetime(2016, 2, 9, 15, 0), 252],
   [datetime.datetime(2016, 2, 9, 19, 0), 252],
   [datetime.datetime(2016, 2, 9, 23, 0), 252],
   [datetime.datetime(2016, 2, 10, 3, 0), 252],
   [datetime.datetime(2016, 2, 10, 7, 0), 252],
   [datetime.datetime(2016, 2, 10, 11, 0), 254],
   [datetime.datetime(2016, 2, 10, 15, 0), 254],
   [datetime.datetime(2016, 2, 10, 19, 0), 254],
   [datetime.datetime(2016, 2, 10, 23, 0), 254],
   [datetime.datetime(2016, 2, 11, 3, 0), 254],
   [datetime.datetime(2016, 2, 11, 7, 0), 254],
   [datetime.datetime(2016, 2, 11, 11, 0), 254],
   [datetime.datetime(2016, 2, 11, 15, 0), 254],
   [datetime.datetime(2016, 2, 11, 19, 0), 254],
   [datetime.datetime(2016, 2, 11, 23, 0), 254],
   [datetime.datetime(2016, 2, 12, 3, 0), 254],
   [datetime.datetime(2016, 2, 12, 7, 0), 254],
   [datetime.datetime(2016, 2, 12, 11, 0), 254],
   [datetime.datetime(2016, 2, 12, 15, 0), 254],
   [datetime.datetime(2016, 2, 12, 19, 0), 254],
   [datetime.datetime(2016, 2, 12, 23, 0), 254],
   [datetime.datetime(2016, 2, 13, 3, 0), 254],
   [datetime.datetime(2016, 2, 13, 7, 0), 254],
   [datetime.datetime(2016, 2, 13, 11, 0), 254],
   [datetime.datetime(2016, 2, 13, 15, 0), 254],
   [datetime.datetime(2016, 2, 13, 19, 0), 254],
   [datetime.datetime(2016, 2, 13, 23, 0), 254],
   [datetime.datetime(2016, 2, 14, 3, 0), 254],
   [datetime.datetime(2016, 2, 14, 7, 0), 254],
   [datetime.datetime(2016, 2, 14, 11, 0), 254],
   [datetime.datetime(2016, 2, 14, 15, 0), 254],
   [datetime.datetime(2016, 2, 14, 19, 0), 254],
   [datetime.datetime(2016, 2, 14, 23, 0), 254],
   [datetime.datetime(2016, 2, 15, 3, 0), 254],
   [datetime.datetime(2016, 2, 15, 7, 0), 254],
   [datetime.datetime(2016, 2, 15, 11, 0), 254],
   [datetime.datetime(2016, 2, 15, 15, 0), 254],
   [datetime.datetime(2016, 2, 15, 19, 0), 254],
   [datetime.datetime(2016, 2, 15, 23, 0), 254],
   [datetime.datetime(2016, 2, 16, 3, 0), 254],
   [datetime.datetime(2016, 2, 16, 7, 0), 254],
   [datetime.datetime(2016, 2, 16, 11, 0), 254],
   [datetime.datetime(2016, 2, 16, 15, 0), 254],
   [datetime.datetime(2016, 2, 16, 19, 0), 254],
   [datetime.datetime(2016, 2, 16, 23, 0), 254],
   [datetime.datetime(2016, 2, 17, 3, 0), 254],
   [datetime.datetime(2016, 2, 17, 7, 0), 254],
   [datetime.datetime(2016, 2, 17, 11, 0), 254],
   [datetime.datetime(2016, 2, 17, 15, 0), 254],
   [datetime.datetime(2016, 2, 17, 19, 0), 254],
   [datetime.datetime(2016, 2, 17, 23, 0), 254],
   [datetime.datetime(2016, 2, 18, 3, 0), 254],
   [datetime.datetime(2016, 2, 18, 7, 0), 254],
   [datetime.datetime(2016, 2, 18, 11, 0), 254],
   [datetime.datetime(2016, 2, 18, 15, 0), 254],
   [datetime.datetime(2016, 2, 18, 19, 0), 254],
   [datetime.datetime(2016, 2, 18, 23, 0), 254],
   [datetime.datetime(2016, 2, 19, 3, 0), 254],
   [datetime.datetime(2016, 2, 19, 7, 0), 254],
   [datetime.datetime(2016, 2, 19, 11, 0), 254],
   [datetime.datetime(2016, 2, 19, 15, 0), 254],
   [datetime.datetime(2016, 2, 19, 19, 0), 254],
   [datetime.datetime(2016, 2, 19, 23, 0), 254],
   [datetime.datetime(2016, 2, 20, 3, 0), 254],
   [datetime.datetime(2016, 2, 20, 7, 0), 254],
   [datetime.datetime(2016, 2, 20, 11, 0), 254],
   [datetime.datetime(2016, 2, 20, 15, 0), 254],
   [datetime.datetime(2016, 2, 20, 19, 0), 254],
   [datetime.datetime(2016, 2, 20, 23, 0), 254],
   [datetime.datetime(2016, 2, 21, 3, 0), 254],
   [datetime.datetime(2016, 2, 21, 7, 0), 254],
   [datetime.datetime(2016, 2, 21, 11, 0), 254],
   [datetime.datetime(2016, 2, 21, 15, 0), 254],
   [datetime.datetime(2016, 2, 21, 19, 0), 254],
   [datetime.datetime(2016, 2, 21, 23, 0), 254],
   [datetime.datetime(2016, 2, 22, 3, 0), 254],
   [datetime.datetime(2016, 2, 22, 7, 0), 254],
   [datetime.datetime(2016, 2, 22, 7, 52, 34), 254],
   [datetime.datetime(2016, 2, 22, 11, 0), 254],
   [datetime.datetime(2016, 2, 22, 15, 0), 254],
   [datetime.datetime(2016, 2, 22, 19, 0), 254],
   [datetime.datetime(2016, 2, 22, 23, 0), 254],
   [datetime.datetime(2016, 2, 23, 3, 0), 254],
   [datetime.datetime(2016, 2, 23, 7, 0), 254],
   [datetime.datetime(2016, 2, 23, 11, 0), 255],
   [datetime.datetime(2016, 2, 23, 15, 0), 255],
   [datetime.datetime(2016, 2, 23, 19, 0), 255],
   [datetime.datetime(2016, 2, 23, 23, 0), 255],
   [datetime.datetime(2016, 2, 24, 3, 0), 255],
   [datetime.datetime(2016, 2, 24, 7, 0), 255],
   [datetime.datetime(2016, 2, 24, 11, 0), 255],
   [datetime.datetime(2016, 2, 24, 15, 0), 255],
   [datetime.datetime(2016, 2, 24, 19, 0), 255],
   [datetime.datetime(2016, 2, 24, 23, 0), 255],
   [datetime.datetime(2016, 2, 25, 3, 0), 255],
   [datetime.datetime(2016, 2, 25, 7, 0), 255],
   [datetime.datetime(2016, 2, 25, 11, 0), 255],
   [datetime.datetime(2016, 2, 25, 15, 0), 255],
   [datetime.datetime(2016, 2, 25, 19, 0), 256],
   [datetime.datetime(2016, 2, 25, 23, 0), 256],
   [datetime.datetime(2016, 2, 26, 3, 0), 256],
   [datetime.datetime(2016, 2, 26, 7, 0), 256],
   [datetime.datetime(2016, 2, 26, 11, 0), 256],
   [datetime.datetime(2016, 2, 26, 15, 0), 256],
   [datetime.datetime(2016, 2, 26, 19, 0), 256],
   [datetime.datetime(2016, 2, 26, 23, 0), 256],
   [datetime.datetime(2016, 2, 27, 3, 0), 256],
   [datetime.datetime(2016, 2, 27, 7, 0), 256],
   [datetime.datetime(2016, 2, 27, 11, 0), 256],
   [datetime.datetime(2016, 2, 27, 15, 0), 256],
   [datetime.datetime(2016, 2, 27, 19, 0), 256],
   [datetime.datetime(2016, 2, 27, 23, 0), 256],
   [datetime.datetime(2016, 2, 28, 3, 0), 256],
   [datetime.datetime(2016, 2, 28, 7, 0), 256],
   [datetime.datetime(2016, 2, 28, 11, 0), 256],
   [datetime.datetime(2016, 2, 28, 15, 0), 256],
   [datetime.datetime(2016, 2, 28, 19, 0), 256],
   [datetime.datetime(2016, 2, 28, 23, 0), 256],
   [datetime.datetime(2016, 2, 29, 3, 0), 256],
   [datetime.datetime(2016, 2, 29, 7, 0), 256],
   [datetime.datetime(2016, 2, 29, 11, 0), 256],
   [datetime.datetime(2016, 2, 29, 15, 0), 256],
   [datetime.datetime(2016, 2, 29, 19, 0), 256],
   [datetime.datetime(2016, 2, 29, 23, 0), 256],
   [datetime.datetime(2016, 3, 1, 3, 0), 256],
   [datetime.datetime(2016, 3, 1, 7, 0), 256],
   [datetime.datetime(2016, 3, 1, 11, 0), 256],
   [datetime.datetime(2016, 3, 1, 15, 0), 256],
   [datetime.datetime(2016, 3, 1, 19, 0), 256],
   [datetime.datetime(2016, 3, 1, 23, 0), 256],
   [datetime.datetime(2016, 3, 2, 3, 0), 256],
   [datetime.datetime(2016, 3, 2, 7, 0), 256],
   [datetime.datetime(2016, 3, 2, 11, 0), 256],
   [datetime.datetime(2016, 3, 2, 15, 0), 256],
   [datetime.datetime(2016, 3, 2, 19, 0), 256],
   [datetime.datetime(2016, 3, 2, 23, 0), 256],
   [datetime.datetime(2016, 3, 3, 3, 0), 256],
   [datetime.datetime(2016, 3, 3, 7, 0), 256],
   [datetime.datetime(2016, 3, 3, 11, 0), 256],
   [datetime.datetime(2016, 3, 3, 15, 0), 256],
   [datetime.datetime(2016, 3, 3, 19, 0), 256],
   [datetime.datetime(2016, 3, 3, 23, 0), 256],
   [datetime.datetime(2016, 3, 4, 3, 0), 256],
   [datetime.datetime(2016, 3, 4, 7, 0), 256],
   [datetime.datetime(2016, 3, 4, 11, 0), 256],
   [datetime.datetime(2016, 3, 4, 15, 0), 256],
   [datetime.datetime(2016, 3, 4, 19, 0), 256],
   [datetime.datetime(2016, 3, 4, 23, 0), 256]]),
 (('N086', 'R282', '00-00-01', 'SPRING ST'),
  [[datetime.datetime(2016, 1, 30, 3, 0), 3788136],
   [datetime.datetime(2016, 1, 30, 7, 0), 3788150],
   [datetime.datetime(2016, 1, 30, 11, 0), 3788227],
   [datetime.datetime(2016, 1, 30, 15, 0), 3788590],
   [datetime.datetime(2016, 1, 30, 19, 0), 3789329],
   [datetime.datetime(2016, 1, 30, 23, 0), 3789665],
   [datetime.datetime(2016, 1, 31, 3, 0), 3789770],
   [datetime.datetime(2016, 1, 31, 7, 0), 3789784],
   [datetime.datetime(2016, 1, 31, 11, 0), 3789832],
   [datetime.datetime(2016, 1, 31, 15, 0), 3790119],
   [datetime.datetime(2016, 1, 31, 19, 0), 3790633],
   [datetime.datetime(2016, 1, 31, 23, 0), 3790872],
   [datetime.datetime(2016, 2, 1, 3, 0), 3790936],
   [datetime.datetime(2016, 2, 1, 7, 0), 3790951],
   [datetime.datetime(2016, 2, 1, 11, 0), 3791273],
   [datetime.datetime(2016, 2, 1, 15, 0), 3791714],
   [datetime.datetime(2016, 2, 1, 19, 0), 3793166],
   [datetime.datetime(2016, 2, 1, 23, 0), 3793674],
   [datetime.datetime(2016, 2, 2, 3, 0), 3793740],
   [datetime.datetime(2016, 2, 2, 7, 0), 3793757],
   [datetime.datetime(2016, 2, 2, 11, 0), 3794103],
   [datetime.datetime(2016, 2, 2, 15, 0), 3794592],
   [datetime.datetime(2016, 2, 2, 19, 0), 3796196],
   [datetime.datetime(2016, 2, 2, 23, 0), 3796783],
   [datetime.datetime(2016, 2, 3, 3, 0), 3796864],
   [datetime.datetime(2016, 2, 3, 7, 0), 3796885],
   [datetime.datetime(2016, 2, 3, 11, 0), 3797199],
   [datetime.datetime(2016, 2, 3, 15, 0), 3797711],
   [datetime.datetime(2016, 2, 3, 19, 0), 3799247],
   [datetime.datetime(2016, 2, 3, 23, 0), 3799792],
   [datetime.datetime(2016, 2, 4, 3, 0), 3799849],
   [datetime.datetime(2016, 2, 4, 7, 0), 3799864],
   [datetime.datetime(2016, 2, 4, 11, 0), 3800189],
   [datetime.datetime(2016, 2, 4, 15, 0), 3800749],
   [datetime.datetime(2016, 2, 4, 19, 0), 3802359],
   [datetime.datetime(2016, 2, 4, 23, 0), 3802990],
   [datetime.datetime(2016, 2, 5, 3, 0), 3803091],
   [datetime.datetime(2016, 2, 5, 7, 0), 3803099],
   [datetime.datetime(2016, 2, 5, 11, 0), 3803433],
   [datetime.datetime(2016, 2, 5, 15, 0), 3803952],
   [datetime.datetime(2016, 2, 5, 19, 0), 3805492],
   [datetime.datetime(2016, 2, 5, 23, 0), 3805993],
   [datetime.datetime(2016, 2, 6, 3, 0), 3806113],
   [datetime.datetime(2016, 2, 6, 7, 0), 3806127],
   [datetime.datetime(2016, 2, 6, 11, 0), 3806213],
   [datetime.datetime(2016, 2, 6, 15, 0), 3806532],
   [datetime.datetime(2016, 2, 6, 19, 0), 3807146],
   [datetime.datetime(2016, 2, 6, 23, 0), 3807456],
   [datetime.datetime(2016, 2, 7, 3, 0), 3807537],
   [datetime.datetime(2016, 2, 7, 7, 0), 3807554],
   [datetime.datetime(2016, 2, 7, 11, 0), 3807615],
   [datetime.datetime(2016, 2, 7, 15, 0), 3807838],
   [datetime.datetime(2016, 2, 7, 19, 0), 3808189],
   [datetime.datetime(2016, 2, 7, 23, 0), 3808330],
   [datetime.datetime(2016, 2, 8, 3, 0), 3808371],
   [datetime.datetime(2016, 2, 8, 7, 0), 3808389],
   [datetime.datetime(2016, 2, 8, 11, 0), 3808679],
   [datetime.datetime(2016, 2, 8, 15, 0), 3809085],
   [datetime.datetime(2016, 2, 8, 19, 0), 3810486],
   [datetime.datetime(2016, 2, 8, 23, 0), 3810946],
   [datetime.datetime(2016, 2, 9, 3, 0), 3810995],
   [datetime.datetime(2016, 2, 9, 7, 0), 3811012],
   [datetime.datetime(2016, 2, 9, 11, 0), 3811336],
   [datetime.datetime(2016, 2, 9, 15, 0), 3811830],
   [datetime.datetime(2016, 2, 9, 19, 0), 3813385],
   [datetime.datetime(2016, 2, 9, 23, 0), 3813961],
   [datetime.datetime(2016, 2, 10, 3, 0), 3814028],
   [datetime.datetime(2016, 2, 10, 7, 0), 3814050],
   [datetime.datetime(2016, 2, 10, 11, 0), 3814368],
   [datetime.datetime(2016, 2, 10, 15, 0), 3814871],
   [datetime.datetime(2016, 2, 10, 19, 0), 3816108],
   [datetime.datetime(2016, 2, 10, 23, 0), 3816667],
   [datetime.datetime(2016, 2, 11, 3, 0), 3816743],
   [datetime.datetime(2016, 2, 11, 7, 0), 3816762],
   [datetime.datetime(2016, 2, 11, 11, 0), 3817092],
   [datetime.datetime(2016, 2, 11, 15, 0), 3817673],
   [datetime.datetime(2016, 2, 11, 19, 0), 3819415],
   [datetime.datetime(2016, 2, 11, 23, 0), 3819998],
   [datetime.datetime(2016, 2, 12, 3, 0), 3820085],
   [datetime.datetime(2016, 2, 12, 7, 0), 3820098],
   [datetime.datetime(2016, 2, 12, 11, 0), 3820402],
   [datetime.datetime(2016, 2, 12, 15, 0), 3821026],
   [datetime.datetime(2016, 2, 12, 19, 0), 3822598],
   [datetime.datetime(2016, 2, 12, 23, 0), 3823143],
   [datetime.datetime(2016, 2, 13, 3, 0), 3823257],
   [datetime.datetime(2016, 2, 13, 7, 0), 3823267],
   [datetime.datetime(2016, 2, 13, 11, 0), 3823345],
   [datetime.datetime(2016, 2, 13, 15, 0), 3823682],
   [datetime.datetime(2016, 2, 13, 19, 0), 3824279],
   [datetime.datetime(2016, 2, 13, 23, 0), 3824586],
   [datetime.datetime(2016, 2, 14, 3, 0), 3824666],
   [datetime.datetime(2016, 2, 14, 7, 0), 3824675],
   [datetime.datetime(2016, 2, 14, 11, 0), 3824727],
   [datetime.datetime(2016, 2, 14, 15, 0), 3825021],
   [datetime.datetime(2016, 2, 14, 19, 0), 3825546],
   [datetime.datetime(2016, 2, 14, 23, 0), 3825778],
   [datetime.datetime(2016, 2, 15, 3, 0), 3825832],
   [datetime.datetime(2016, 2, 15, 7, 0), 3825840],
   [datetime.datetime(2016, 2, 15, 11, 0), 3825978],
   [datetime.datetime(2016, 2, 15, 15, 0), 3826347],
   [datetime.datetime(2016, 2, 15, 19, 0), 3827058],
   [datetime.datetime(2016, 2, 15, 23, 0), 3827346],
   [datetime.datetime(2016, 2, 16, 3, 0), 3827398],
   [datetime.datetime(2016, 2, 16, 7, 0), 3827415],
   [datetime.datetime(2016, 2, 16, 11, 0), 3827729],
   [datetime.datetime(2016, 2, 16, 15, 0), 3828145],
   [datetime.datetime(2016, 2, 16, 19, 0), 3829493],
   [datetime.datetime(2016, 2, 16, 23, 0), 3830040],
   [datetime.datetime(2016, 2, 17, 3, 0), 3830122],
   [datetime.datetime(2016, 2, 17, 7, 0), 3830139],
   [datetime.datetime(2016, 2, 17, 11, 0), 3830473],
   [datetime.datetime(2016, 2, 17, 15, 0), 3830999],
   [datetime.datetime(2016, 2, 17, 19, 0), 3832509],
   [datetime.datetime(2016, 2, 17, 23, 0), 3833082],
   [datetime.datetime(2016, 2, 18, 3, 0), 3833155],
   [datetime.datetime(2016, 2, 18, 7, 0), 3833180],
   [datetime.datetime(2016, 2, 18, 11, 0), 3833498],
   [datetime.datetime(2016, 2, 18, 15, 0), 3833940],
   [datetime.datetime(2016, 2, 18, 19, 0), 3835491],
   [datetime.datetime(2016, 2, 18, 23, 0), 3836072],
   [datetime.datetime(2016, 2, 19, 3, 0), 3836169],
   [datetime.datetime(2016, 2, 19, 7, 0), 3836186],
   [datetime.datetime(2016, 2, 19, 9, 19, 46), 3836363],
   [datetime.datetime(2016, 2, 19, 9, 21, 7), 3836365],
   [datetime.datetime(2016, 2, 19, 9, 22, 27), 3836368],
   [datetime.datetime(2016, 2, 19, 11, 0), 3836501],
   [datetime.datetime(2016, 2, 19, 15, 0), 3837000],
   [datetime.datetime(2016, 2, 19, 19, 0), 3838555],
   [datetime.datetime(2016, 2, 19, 23, 0), 3839127],
   [datetime.datetime(2016, 2, 20, 3, 0), 3839246],
   [datetime.datetime(2016, 2, 20, 7, 0), 3839257],
   [datetime.datetime(2016, 2, 20, 11, 0), 3839335],
   [datetime.datetime(2016, 2, 20, 15, 0), 3839670],
   [datetime.datetime(2016, 2, 20, 19, 0), 3840366],
   [datetime.datetime(2016, 2, 20, 23, 0), 3840723],
   [datetime.datetime(2016, 2, 21, 3, 0), 3840857],
   [datetime.datetime(2016, 2, 21, 7, 0), 3840869],
   [datetime.datetime(2016, 2, 21, 11, 0), 3840923],
   [datetime.datetime(2016, 2, 21, 15, 0), 3841234],
   [datetime.datetime(2016, 2, 21, 19, 0), 3841760],
   [datetime.datetime(2016, 2, 21, 23, 0), 3841964],
   [datetime.datetime(2016, 2, 22, 3, 0), 3841999],
   [datetime.datetime(2016, 2, 22, 7, 0), 3842020],
   [datetime.datetime(2016, 2, 22, 11, 0), 3842323],
   [datetime.datetime(2016, 2, 22, 15, 0), 3842789],
   [datetime.datetime(2016, 2, 22, 19, 0), 3844257],
   [datetime.datetime(2016, 2, 22, 23, 0), 3844733],
   [datetime.datetime(2016, 2, 23, 3, 0), 3844782],
   [datetime.datetime(2016, 2, 23, 7, 0), 3844810],
   [datetime.datetime(2016, 2, 23, 11, 0), 3845147],
   [datetime.datetime(2016, 2, 23, 15, 0), 3845650],
   [datetime.datetime(2016, 2, 23, 19, 0), 3847220],
   [datetime.datetime(2016, 2, 23, 23, 0), 3847780],
   [datetime.datetime(2016, 2, 24, 3, 0), 3847855],
   [datetime.datetime(2016, 2, 24, 7, 0), 3847881],
   [datetime.datetime(2016, 2, 24, 11, 0), 3848207],
   [datetime.datetime(2016, 2, 24, 15, 0), 3848696],
   [datetime.datetime(2016, 2, 24, 19, 0), 3850251],
   [datetime.datetime(2016, 2, 24, 23, 0), 3850768],
   [datetime.datetime(2016, 2, 25, 3, 0), 3850839],
   [datetime.datetime(2016, 2, 25, 7, 0), 3850862],
   [datetime.datetime(2016, 2, 25, 11, 0), 3851206],
   [datetime.datetime(2016, 2, 25, 11, 32, 49), 3851251],
   [datetime.datetime(2016, 2, 25, 11, 34, 9), 3851256],
   [datetime.datetime(2016, 2, 25, 11, 35, 31), 3851256],
   [datetime.datetime(2016, 2, 25, 15, 0), 3851697],
   [datetime.datetime(2016, 2, 25, 19, 0), 3853351],
   [datetime.datetime(2016, 2, 25, 23, 0), 3853921],
   [datetime.datetime(2016, 2, 26, 3, 0), 3854006],
   [datetime.datetime(2016, 2, 26, 7, 0), 3854019],
   [datetime.datetime(2016, 2, 26, 8, 58, 16), 3854167],
   [datetime.datetime(2016, 2, 26, 11, 0), 3854349],
   [datetime.datetime(2016, 2, 26, 15, 0), 3854914],
   [datetime.datetime(2016, 2, 26, 19, 0), 3856475],
   [datetime.datetime(2016, 2, 26, 23, 0), 3857050],
   [datetime.datetime(2016, 2, 27, 3, 0), 3857172],
   [datetime.datetime(2016, 2, 27, 7, 0), 3857178],
   [datetime.datetime(2016, 2, 27, 11, 0), 3857260],
   [datetime.datetime(2016, 2, 27, 15, 0), 3857565],
   [datetime.datetime(2016, 2, 27, 19, 0), 3858192],
   [datetime.datetime(2016, 2, 27, 23, 0), 3858479],
   [datetime.datetime(2016, 2, 28, 3, 0), 3858556],
   [datetime.datetime(2016, 2, 28, 7, 0), 3858568],
   [datetime.datetime(2016, 2, 28, 11, 0), 3858627],
   [datetime.datetime(2016, 2, 28, 15, 0), 3858866],
   [datetime.datetime(2016, 2, 28, 19, 0), 3859315],
   [datetime.datetime(2016, 2, 28, 23, 0), 3859479],
   [datetime.datetime(2016, 2, 29, 3, 0), 3859511],
   [datetime.datetime(2016, 2, 29, 7, 0), 3859532],
   [datetime.datetime(2016, 2, 29, 10, 27, 9), 3859780],
   [datetime.datetime(2016, 2, 29, 11, 0), 3859818],
   [datetime.datetime(2016, 2, 29, 15, 0), 3860271],
   [datetime.datetime(2016, 2, 29, 19, 0), 3861790],
   [datetime.datetime(2016, 2, 29, 23, 0), 3862276],
   [datetime.datetime(2016, 3, 1, 3, 0), 3862332],
   [datetime.datetime(2016, 3, 1, 7, 0), 3862356],
   [datetime.datetime(2016, 3, 1, 11, 0), 3862673],
   [datetime.datetime(2016, 3, 1, 15, 0), 3863157],
   [datetime.datetime(2016, 3, 1, 19, 0), 3864695],
   [datetime.datetime(2016, 3, 1, 23, 0), 3865261],
   [datetime.datetime(2016, 3, 2, 3, 0), 3865327],
   [datetime.datetime(2016, 3, 2, 7, 0), 3865352],
   [datetime.datetime(2016, 3, 2, 11, 0), 3865688],
   [datetime.datetime(2016, 3, 2, 15, 0), 3866212],
   [datetime.datetime(2016, 3, 2, 19, 0), 3867822],
   [datetime.datetime(2016, 3, 2, 23, 0), 3868402],
   [datetime.datetime(2016, 3, 3, 3, 0), 3868481],
   [datetime.datetime(2016, 3, 3, 7, 0), 3868501],
   [datetime.datetime(2016, 3, 3, 11, 0), 3868809],
   [datetime.datetime(2016, 3, 3, 15, 0), 3869269],
   [datetime.datetime(2016, 3, 3, 19, 0), 3870970],
   [datetime.datetime(2016, 3, 3, 23, 0), 3871604],
   [datetime.datetime(2016, 3, 4, 3, 0), 3871698],
   [datetime.datetime(2016, 3, 4, 7, 0), 3871710],
   [datetime.datetime(2016, 3, 4, 11, 0), 3872061],
   [datetime.datetime(2016, 3, 4, 15, 0), 3872568],
   [datetime.datetime(2016, 3, 4, 19, 0), 3874117],
   [datetime.datetime(2016, 3, 4, 23, 0), 3874673]])]

This seems to be a good time to take a break and ignore January, March, weekends and 2016 NYC holidays (Feb 12th and 15th). The sooner we do it the faster our code will execute.


In [11]:
feb_nyc_holidays = [12, 15]

removed = 0
for turnstile, turnstile_data in turnstile_to_full_time_series.items():
    # iterate over a copy of the list in order to be able to remove items from the original
    for timestamp, cum_entries in list(turnstile_data):
        if timestamp.month != 2 or timestamp.weekday() >= 5 or timestamp.day in feb_nyc_holidays:
            if not (timestamp.month == 1 and timestamp.day == 31):
                # leave the last of january in order to be able to make the cumulative count
                turnstile_data.remove([timestamp, cum_entries])
                removed = removed + 1

print(removed)


414034

Let's also further analyze the timestamps to see if we can easily filter entries between 8am and 8pm. Again, the sooner we do it the faster our code will execute.


In [12]:
turnstiles_timestamps = dict()
for turnstile, turnstile_data in turnstile_to_full_time_series.items():
    timestamps_set = set()
    for timestamp, cum_entries in list(turnstile_data):
        timestamps_set.add(timestamp.time())
    
    turnstiles_timestamps[turnstile] = timestamps_set

In [13]:
turnstiles_timestamps_items_list = list(turnstiles_timestamps.items())
n_turnstiles = len(turnstiles_timestamps_items_list)
n_samples = 4

sample_turnstiles_timestamps = [turnstiles_timestamps_items_list[i] 
                                for i in range(0, n_turnstiles - 1, n_turnstiles // n_samples)]
sample_turnstiles_timestamps


Out[13]:
[(('B022', 'R229', '00-03-00', 'AVENUE M'),
  {datetime.time(3, 0),
   datetime.time(7, 0),
   datetime.time(7, 52, 34),
   datetime.time(8, 32, 19),
   datetime.time(10, 58, 46),
   datetime.time(11, 0),
   datetime.time(11, 0, 6),
   datetime.time(11, 1, 27),
   datetime.time(15, 0),
   datetime.time(19, 0),
   datetime.time(23, 0)}),
 (('N091', 'R029', '02-06-01', 'CHAMBERS ST'),
  {datetime.time(3, 0),
   datetime.time(7, 0),
   datetime.time(9, 19, 56),
   datetime.time(9, 21, 17),
   datetime.time(9, 22, 37),
   datetime.time(11, 0),
   datetime.time(15, 0),
   datetime.time(19, 0),
   datetime.time(23, 0)}),
 (('R243', 'R049', '00-03-02', '51 ST'),
  {datetime.time(3, 0),
   datetime.time(7, 0),
   datetime.time(8, 41, 26),
   datetime.time(8, 42, 45),
   datetime.time(9, 9, 55),
   datetime.time(9, 11, 17),
   datetime.time(10, 28, 30),
   datetime.time(11, 0),
   datetime.time(15, 0),
   datetime.time(19, 0),
   datetime.time(23, 0)}),
 (('N049', 'R084', '01-06-00', '59 ST COLUMBUS'),
  {datetime.time(3, 0),
   datetime.time(7, 0),
   datetime.time(7, 26, 10),
   datetime.time(7, 36, 58),
   datetime.time(7, 38, 19),
   datetime.time(7, 55, 29),
   datetime.time(7, 58, 50),
   datetime.time(8, 45, 13),
   datetime.time(8, 46, 34),
   datetime.time(9, 15, 20),
   datetime.time(9, 17, 53),
   datetime.time(9, 19, 13),
   datetime.time(11, 0),
   datetime.time(15, 0),
   datetime.time(15, 5, 49),
   datetime.time(19, 0),
   datetime.time(23, 0)})]

Unfortunately, with only a few turnstile samples we can see that the timestamps in which data was recorded is not regular, with some timesamples being seemingly random. Since each station has multiple turnstiles it makes it hard even to compile timestamp data on a station basis.

Let's ignore the timestamps going forward and work with daily entries. We will have a single value for a single day, which is not cumulative counts but the total number of passengers that entered through this turnstile on this day.


In [14]:
sample_turnstile_to_full_time_series = list(turnstile_to_full_time_series.items())[:2]
sample_turnstile_to_full_time_series


Out[14]:
[(('B022', 'R229', '00-03-00', 'AVENUE M'),
  [[datetime.datetime(2016, 1, 31, 3, 0), 247],
   [datetime.datetime(2016, 1, 31, 7, 0), 247],
   [datetime.datetime(2016, 1, 31, 10, 58, 46), 247],
   [datetime.datetime(2016, 1, 31, 11, 0), 247],
   [datetime.datetime(2016, 1, 31, 11, 0, 6), 247],
   [datetime.datetime(2016, 1, 31, 11, 1, 27), 247],
   [datetime.datetime(2016, 1, 31, 15, 0), 247],
   [datetime.datetime(2016, 1, 31, 19, 0), 247],
   [datetime.datetime(2016, 1, 31, 23, 0), 247],
   [datetime.datetime(2016, 2, 1, 3, 0), 247],
   [datetime.datetime(2016, 2, 1, 7, 0), 247],
   [datetime.datetime(2016, 2, 1, 8, 32, 19), 247],
   [datetime.datetime(2016, 2, 1, 11, 0), 247],
   [datetime.datetime(2016, 2, 1, 15, 0), 247],
   [datetime.datetime(2016, 2, 1, 19, 0), 247],
   [datetime.datetime(2016, 2, 1, 23, 0), 247],
   [datetime.datetime(2016, 2, 2, 3, 0), 247],
   [datetime.datetime(2016, 2, 2, 7, 0), 247],
   [datetime.datetime(2016, 2, 2, 11, 0), 247],
   [datetime.datetime(2016, 2, 2, 15, 0), 247],
   [datetime.datetime(2016, 2, 2, 19, 0), 247],
   [datetime.datetime(2016, 2, 2, 23, 0), 247],
   [datetime.datetime(2016, 2, 3, 3, 0), 247],
   [datetime.datetime(2016, 2, 3, 7, 0), 247],
   [datetime.datetime(2016, 2, 3, 11, 0), 247],
   [datetime.datetime(2016, 2, 3, 15, 0), 248],
   [datetime.datetime(2016, 2, 3, 19, 0), 248],
   [datetime.datetime(2016, 2, 3, 23, 0), 248],
   [datetime.datetime(2016, 2, 4, 3, 0), 248],
   [datetime.datetime(2016, 2, 4, 7, 0), 248],
   [datetime.datetime(2016, 2, 4, 11, 0), 248],
   [datetime.datetime(2016, 2, 4, 15, 0), 248],
   [datetime.datetime(2016, 2, 4, 19, 0), 248],
   [datetime.datetime(2016, 2, 4, 23, 0), 248],
   [datetime.datetime(2016, 2, 5, 3, 0), 248],
   [datetime.datetime(2016, 2, 5, 7, 0), 248],
   [datetime.datetime(2016, 2, 5, 11, 0), 248],
   [datetime.datetime(2016, 2, 5, 15, 0), 248],
   [datetime.datetime(2016, 2, 5, 19, 0), 248],
   [datetime.datetime(2016, 2, 5, 23, 0), 248],
   [datetime.datetime(2016, 2, 8, 3, 0), 248],
   [datetime.datetime(2016, 2, 8, 7, 0), 248],
   [datetime.datetime(2016, 2, 8, 11, 0), 248],
   [datetime.datetime(2016, 2, 8, 15, 0), 248],
   [datetime.datetime(2016, 2, 8, 19, 0), 248],
   [datetime.datetime(2016, 2, 8, 23, 0), 248],
   [datetime.datetime(2016, 2, 9, 3, 0), 248],
   [datetime.datetime(2016, 2, 9, 7, 0), 248],
   [datetime.datetime(2016, 2, 9, 11, 0), 251],
   [datetime.datetime(2016, 2, 9, 15, 0), 252],
   [datetime.datetime(2016, 2, 9, 19, 0), 252],
   [datetime.datetime(2016, 2, 9, 23, 0), 252],
   [datetime.datetime(2016, 2, 10, 3, 0), 252],
   [datetime.datetime(2016, 2, 10, 7, 0), 252],
   [datetime.datetime(2016, 2, 10, 11, 0), 254],
   [datetime.datetime(2016, 2, 10, 15, 0), 254],
   [datetime.datetime(2016, 2, 10, 19, 0), 254],
   [datetime.datetime(2016, 2, 10, 23, 0), 254],
   [datetime.datetime(2016, 2, 11, 3, 0), 254],
   [datetime.datetime(2016, 2, 11, 7, 0), 254],
   [datetime.datetime(2016, 2, 11, 11, 0), 254],
   [datetime.datetime(2016, 2, 11, 15, 0), 254],
   [datetime.datetime(2016, 2, 11, 19, 0), 254],
   [datetime.datetime(2016, 2, 11, 23, 0), 254],
   [datetime.datetime(2016, 2, 16, 3, 0), 254],
   [datetime.datetime(2016, 2, 16, 7, 0), 254],
   [datetime.datetime(2016, 2, 16, 11, 0), 254],
   [datetime.datetime(2016, 2, 16, 15, 0), 254],
   [datetime.datetime(2016, 2, 16, 19, 0), 254],
   [datetime.datetime(2016, 2, 16, 23, 0), 254],
   [datetime.datetime(2016, 2, 17, 3, 0), 254],
   [datetime.datetime(2016, 2, 17, 7, 0), 254],
   [datetime.datetime(2016, 2, 17, 11, 0), 254],
   [datetime.datetime(2016, 2, 17, 15, 0), 254],
   [datetime.datetime(2016, 2, 17, 19, 0), 254],
   [datetime.datetime(2016, 2, 17, 23, 0), 254],
   [datetime.datetime(2016, 2, 18, 3, 0), 254],
   [datetime.datetime(2016, 2, 18, 7, 0), 254],
   [datetime.datetime(2016, 2, 18, 11, 0), 254],
   [datetime.datetime(2016, 2, 18, 15, 0), 254],
   [datetime.datetime(2016, 2, 18, 19, 0), 254],
   [datetime.datetime(2016, 2, 18, 23, 0), 254],
   [datetime.datetime(2016, 2, 19, 3, 0), 254],
   [datetime.datetime(2016, 2, 19, 7, 0), 254],
   [datetime.datetime(2016, 2, 19, 11, 0), 254],
   [datetime.datetime(2016, 2, 19, 15, 0), 254],
   [datetime.datetime(2016, 2, 19, 19, 0), 254],
   [datetime.datetime(2016, 2, 19, 23, 0), 254],
   [datetime.datetime(2016, 2, 22, 3, 0), 254],
   [datetime.datetime(2016, 2, 22, 7, 0), 254],
   [datetime.datetime(2016, 2, 22, 7, 52, 34), 254],
   [datetime.datetime(2016, 2, 22, 11, 0), 254],
   [datetime.datetime(2016, 2, 22, 15, 0), 254],
   [datetime.datetime(2016, 2, 22, 19, 0), 254],
   [datetime.datetime(2016, 2, 22, 23, 0), 254],
   [datetime.datetime(2016, 2, 23, 3, 0), 254],
   [datetime.datetime(2016, 2, 23, 7, 0), 254],
   [datetime.datetime(2016, 2, 23, 11, 0), 255],
   [datetime.datetime(2016, 2, 23, 15, 0), 255],
   [datetime.datetime(2016, 2, 23, 19, 0), 255],
   [datetime.datetime(2016, 2, 23, 23, 0), 255],
   [datetime.datetime(2016, 2, 24, 3, 0), 255],
   [datetime.datetime(2016, 2, 24, 7, 0), 255],
   [datetime.datetime(2016, 2, 24, 11, 0), 255],
   [datetime.datetime(2016, 2, 24, 15, 0), 255],
   [datetime.datetime(2016, 2, 24, 19, 0), 255],
   [datetime.datetime(2016, 2, 24, 23, 0), 255],
   [datetime.datetime(2016, 2, 25, 3, 0), 255],
   [datetime.datetime(2016, 2, 25, 7, 0), 255],
   [datetime.datetime(2016, 2, 25, 11, 0), 255],
   [datetime.datetime(2016, 2, 25, 15, 0), 255],
   [datetime.datetime(2016, 2, 25, 19, 0), 256],
   [datetime.datetime(2016, 2, 25, 23, 0), 256],
   [datetime.datetime(2016, 2, 26, 3, 0), 256],
   [datetime.datetime(2016, 2, 26, 7, 0), 256],
   [datetime.datetime(2016, 2, 26, 11, 0), 256],
   [datetime.datetime(2016, 2, 26, 15, 0), 256],
   [datetime.datetime(2016, 2, 26, 19, 0), 256],
   [datetime.datetime(2016, 2, 26, 23, 0), 256],
   [datetime.datetime(2016, 2, 29, 3, 0), 256],
   [datetime.datetime(2016, 2, 29, 7, 0), 256],
   [datetime.datetime(2016, 2, 29, 11, 0), 256],
   [datetime.datetime(2016, 2, 29, 15, 0), 256],
   [datetime.datetime(2016, 2, 29, 19, 0), 256],
   [datetime.datetime(2016, 2, 29, 23, 0), 256]]),
 (('N086', 'R282', '00-00-01', 'SPRING ST'),
  [[datetime.datetime(2016, 1, 31, 3, 0), 3789770],
   [datetime.datetime(2016, 1, 31, 7, 0), 3789784],
   [datetime.datetime(2016, 1, 31, 11, 0), 3789832],
   [datetime.datetime(2016, 1, 31, 15, 0), 3790119],
   [datetime.datetime(2016, 1, 31, 19, 0), 3790633],
   [datetime.datetime(2016, 1, 31, 23, 0), 3790872],
   [datetime.datetime(2016, 2, 1, 3, 0), 3790936],
   [datetime.datetime(2016, 2, 1, 7, 0), 3790951],
   [datetime.datetime(2016, 2, 1, 11, 0), 3791273],
   [datetime.datetime(2016, 2, 1, 15, 0), 3791714],
   [datetime.datetime(2016, 2, 1, 19, 0), 3793166],
   [datetime.datetime(2016, 2, 1, 23, 0), 3793674],
   [datetime.datetime(2016, 2, 2, 3, 0), 3793740],
   [datetime.datetime(2016, 2, 2, 7, 0), 3793757],
   [datetime.datetime(2016, 2, 2, 11, 0), 3794103],
   [datetime.datetime(2016, 2, 2, 15, 0), 3794592],
   [datetime.datetime(2016, 2, 2, 19, 0), 3796196],
   [datetime.datetime(2016, 2, 2, 23, 0), 3796783],
   [datetime.datetime(2016, 2, 3, 3, 0), 3796864],
   [datetime.datetime(2016, 2, 3, 7, 0), 3796885],
   [datetime.datetime(2016, 2, 3, 11, 0), 3797199],
   [datetime.datetime(2016, 2, 3, 15, 0), 3797711],
   [datetime.datetime(2016, 2, 3, 19, 0), 3799247],
   [datetime.datetime(2016, 2, 3, 23, 0), 3799792],
   [datetime.datetime(2016, 2, 4, 3, 0), 3799849],
   [datetime.datetime(2016, 2, 4, 7, 0), 3799864],
   [datetime.datetime(2016, 2, 4, 11, 0), 3800189],
   [datetime.datetime(2016, 2, 4, 15, 0), 3800749],
   [datetime.datetime(2016, 2, 4, 19, 0), 3802359],
   [datetime.datetime(2016, 2, 4, 23, 0), 3802990],
   [datetime.datetime(2016, 2, 5, 3, 0), 3803091],
   [datetime.datetime(2016, 2, 5, 7, 0), 3803099],
   [datetime.datetime(2016, 2, 5, 11, 0), 3803433],
   [datetime.datetime(2016, 2, 5, 15, 0), 3803952],
   [datetime.datetime(2016, 2, 5, 19, 0), 3805492],
   [datetime.datetime(2016, 2, 5, 23, 0), 3805993],
   [datetime.datetime(2016, 2, 8, 3, 0), 3808371],
   [datetime.datetime(2016, 2, 8, 7, 0), 3808389],
   [datetime.datetime(2016, 2, 8, 11, 0), 3808679],
   [datetime.datetime(2016, 2, 8, 15, 0), 3809085],
   [datetime.datetime(2016, 2, 8, 19, 0), 3810486],
   [datetime.datetime(2016, 2, 8, 23, 0), 3810946],
   [datetime.datetime(2016, 2, 9, 3, 0), 3810995],
   [datetime.datetime(2016, 2, 9, 7, 0), 3811012],
   [datetime.datetime(2016, 2, 9, 11, 0), 3811336],
   [datetime.datetime(2016, 2, 9, 15, 0), 3811830],
   [datetime.datetime(2016, 2, 9, 19, 0), 3813385],
   [datetime.datetime(2016, 2, 9, 23, 0), 3813961],
   [datetime.datetime(2016, 2, 10, 3, 0), 3814028],
   [datetime.datetime(2016, 2, 10, 7, 0), 3814050],
   [datetime.datetime(2016, 2, 10, 11, 0), 3814368],
   [datetime.datetime(2016, 2, 10, 15, 0), 3814871],
   [datetime.datetime(2016, 2, 10, 19, 0), 3816108],
   [datetime.datetime(2016, 2, 10, 23, 0), 3816667],
   [datetime.datetime(2016, 2, 11, 3, 0), 3816743],
   [datetime.datetime(2016, 2, 11, 7, 0), 3816762],
   [datetime.datetime(2016, 2, 11, 11, 0), 3817092],
   [datetime.datetime(2016, 2, 11, 15, 0), 3817673],
   [datetime.datetime(2016, 2, 11, 19, 0), 3819415],
   [datetime.datetime(2016, 2, 11, 23, 0), 3819998],
   [datetime.datetime(2016, 2, 16, 3, 0), 3827398],
   [datetime.datetime(2016, 2, 16, 7, 0), 3827415],
   [datetime.datetime(2016, 2, 16, 11, 0), 3827729],
   [datetime.datetime(2016, 2, 16, 15, 0), 3828145],
   [datetime.datetime(2016, 2, 16, 19, 0), 3829493],
   [datetime.datetime(2016, 2, 16, 23, 0), 3830040],
   [datetime.datetime(2016, 2, 17, 3, 0), 3830122],
   [datetime.datetime(2016, 2, 17, 7, 0), 3830139],
   [datetime.datetime(2016, 2, 17, 11, 0), 3830473],
   [datetime.datetime(2016, 2, 17, 15, 0), 3830999],
   [datetime.datetime(2016, 2, 17, 19, 0), 3832509],
   [datetime.datetime(2016, 2, 17, 23, 0), 3833082],
   [datetime.datetime(2016, 2, 18, 3, 0), 3833155],
   [datetime.datetime(2016, 2, 18, 7, 0), 3833180],
   [datetime.datetime(2016, 2, 18, 11, 0), 3833498],
   [datetime.datetime(2016, 2, 18, 15, 0), 3833940],
   [datetime.datetime(2016, 2, 18, 19, 0), 3835491],
   [datetime.datetime(2016, 2, 18, 23, 0), 3836072],
   [datetime.datetime(2016, 2, 19, 3, 0), 3836169],
   [datetime.datetime(2016, 2, 19, 7, 0), 3836186],
   [datetime.datetime(2016, 2, 19, 9, 19, 46), 3836363],
   [datetime.datetime(2016, 2, 19, 9, 21, 7), 3836365],
   [datetime.datetime(2016, 2, 19, 9, 22, 27), 3836368],
   [datetime.datetime(2016, 2, 19, 11, 0), 3836501],
   [datetime.datetime(2016, 2, 19, 15, 0), 3837000],
   [datetime.datetime(2016, 2, 19, 19, 0), 3838555],
   [datetime.datetime(2016, 2, 19, 23, 0), 3839127],
   [datetime.datetime(2016, 2, 22, 3, 0), 3841999],
   [datetime.datetime(2016, 2, 22, 7, 0), 3842020],
   [datetime.datetime(2016, 2, 22, 11, 0), 3842323],
   [datetime.datetime(2016, 2, 22, 15, 0), 3842789],
   [datetime.datetime(2016, 2, 22, 19, 0), 3844257],
   [datetime.datetime(2016, 2, 22, 23, 0), 3844733],
   [datetime.datetime(2016, 2, 23, 3, 0), 3844782],
   [datetime.datetime(2016, 2, 23, 7, 0), 3844810],
   [datetime.datetime(2016, 2, 23, 11, 0), 3845147],
   [datetime.datetime(2016, 2, 23, 15, 0), 3845650],
   [datetime.datetime(2016, 2, 23, 19, 0), 3847220],
   [datetime.datetime(2016, 2, 23, 23, 0), 3847780],
   [datetime.datetime(2016, 2, 24, 3, 0), 3847855],
   [datetime.datetime(2016, 2, 24, 7, 0), 3847881],
   [datetime.datetime(2016, 2, 24, 11, 0), 3848207],
   [datetime.datetime(2016, 2, 24, 15, 0), 3848696],
   [datetime.datetime(2016, 2, 24, 19, 0), 3850251],
   [datetime.datetime(2016, 2, 24, 23, 0), 3850768],
   [datetime.datetime(2016, 2, 25, 3, 0), 3850839],
   [datetime.datetime(2016, 2, 25, 7, 0), 3850862],
   [datetime.datetime(2016, 2, 25, 11, 0), 3851206],
   [datetime.datetime(2016, 2, 25, 11, 32, 49), 3851251],
   [datetime.datetime(2016, 2, 25, 11, 34, 9), 3851256],
   [datetime.datetime(2016, 2, 25, 11, 35, 31), 3851256],
   [datetime.datetime(2016, 2, 25, 15, 0), 3851697],
   [datetime.datetime(2016, 2, 25, 19, 0), 3853351],
   [datetime.datetime(2016, 2, 25, 23, 0), 3853921],
   [datetime.datetime(2016, 2, 26, 3, 0), 3854006],
   [datetime.datetime(2016, 2, 26, 7, 0), 3854019],
   [datetime.datetime(2016, 2, 26, 8, 58, 16), 3854167],
   [datetime.datetime(2016, 2, 26, 11, 0), 3854349],
   [datetime.datetime(2016, 2, 26, 15, 0), 3854914],
   [datetime.datetime(2016, 2, 26, 19, 0), 3856475],
   [datetime.datetime(2016, 2, 26, 23, 0), 3857050],
   [datetime.datetime(2016, 2, 29, 3, 0), 3859511],
   [datetime.datetime(2016, 2, 29, 7, 0), 3859532],
   [datetime.datetime(2016, 2, 29, 10, 27, 9), 3859780],
   [datetime.datetime(2016, 2, 29, 11, 0), 3859818],
   [datetime.datetime(2016, 2, 29, 15, 0), 3860271],
   [datetime.datetime(2016, 2, 29, 19, 0), 3861790],
   [datetime.datetime(2016, 2, 29, 23, 0), 3862276]])]

In [15]:
from itertools import groupby

def count_within_normal_bounds(count):
    if count is None:
        return True
    else:
        return 10000 > count >= 0

def convert_time_series_to_daily(high_res_time_series):
    daily_time_series = []
    
    def day_of_timestamp(time_series_entry):
        timestamp, tot_entries = time_series_entry
        return timestamp.date()
    
    # groupby() requires data to be sorted. It is sorted already here.
    count_on_previous_day = None
    for day, entries_on_this_day in groupby(high_res_time_series, key=day_of_timestamp):
        # get the maximum cumulative count among the entries on this day
        cum_entry_count_on_day = max([count for time, count in entries_on_this_day])
        # skip the first entry if we don't know the previous day
        if count_on_previous_day is None:
            daily_entries = None
        else:
            daily_entries = cum_entry_count_on_day - count_on_previous_day
        # Save today's count for tomorrow's calculation
        count_on_previous_day = cum_entry_count_on_day
        # Only append if the cumulative increased.
        # Otherwise there is something wrong in the data - skip with a warning.
        if count_within_normal_bounds(daily_entries):
            daily_time_series.append((day, daily_entries))
        else:
            print('WARNING. Abnormal entry count found on day %s: %s' % (day, daily_entries))
            daily_time_series.append((day, None))

    return daily_time_series


def convert_turnstile_to_high_res_time_series_to_daily(turnstile_to_time_series):
    turnstile_to_daily_time_series = {}
    for i, (turnstile, time_series) in enumerate(turnstile_to_time_series.items()):
        print('Processing turnstile', turnstile)
        turnstile_to_daily_time_series[turnstile] = convert_time_series_to_daily(time_series)
    return turnstile_to_daily_time_series


turnstile_to_daily_time_series = convert_turnstile_to_high_res_time_series_to_daily(
    turnstile_to_full_time_series)


Processing turnstile ('B022', 'R229', '00-03-00', 'AVENUE M')
Processing turnstile ('N086', 'R282', '00-00-01', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10042
Processing turnstile ('R116', 'R030', '00-06-01', 'CHAMBERS ST')
Processing turnstile ('N543', 'R289', '00-00-01', 'FT HAMILTON PKY')
Processing turnstile ('A083', 'R125', '00-00-03', 'BROAD ST')
Processing turnstile ('N062A', 'R010', '00-00-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-16: 10817
Processing turnstile ('N186', 'R418', '00-00-01', 'BEACH 105 ST')
Processing turnstile ('N300', 'R113', '01-00-01', '7 AV')
Processing turnstile ('N600', 'R302', '00-03-01', '57 ST')
Processing turnstile ('C027', 'R216', '00-03-00', 'BAY RIDGE AV')
Processing turnstile ('J032', 'R006', '01-05-00', 'WOODHAVEN BLVD')
Processing turnstile ('R160A', 'R164', '00-00-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-02-16: 11222
Processing turnstile ('PTH08', 'R540', '00-04-09', 'PATH WTC')
WARNING. Abnormal entry count found on day 2016-02-22: -21077
Processing turnstile ('R236', 'R045', '00-03-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-18: -11382807
Processing turnstile ('R285', 'R308', '00-00-03', 'MT EDEN AV')
Processing turnstile ('B020', 'R263', '00-00-00', 'AVENUE H')
Processing turnstile ('R259', 'R307', '00-00-02', '138/GRAND CONC')
Processing turnstile ('R138', 'R293', '00-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 17360
Processing turnstile ('H001', 'R175', '00-00-00', '8 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 16507
WARNING. Abnormal entry count found on day 2016-02-22: 10614
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R124', 'R290', '03-00-03', 'HOUSTON ST')
Processing turnstile ('E014', 'R374', '00-05-01', 'BAY PKWY')
Processing turnstile ('R328', 'R361', '00-00-02', 'PELHAM PKWY')
Processing turnstile ('R110', 'R027', '01-00-03', 'WALL ST')
Processing turnstile ('PTH13', 'R541', '00-00-01', 'THIRTY ST')
Processing turnstile ('N336', 'R158', '00-00-04', 'KEW GARDENS')
Processing turnstile ('C014', 'R246', '00-00-01', 'PROSPECT AV')
Processing turnstile ('N338B', 'R128', '00-00-03', 'SUTPHIN BLVD')
Processing turnstile ('PTH16', 'R550', '01-00-04', 'LACKAWANNA')
Processing turnstile ('N338B', 'R128', '00-00-00', 'SUTPHIN BLVD')
Processing turnstile ('R316', 'R407', '00-00-00', 'INTERVALE AV')
Processing turnstile ('R206', 'R014', '02-00-02', 'FULTON ST')
Processing turnstile ('PTH11', 'R545', '00-00-04', '14TH STREET')
Processing turnstile ('N506', 'R022', '00-06-01', '34 ST-HERALD SQ')
Processing turnstile ('R532', 'R328', '00-00-02', 'METS-WILLETS PT')
Processing turnstile ('N323', 'R018', '01-06-00', 'JKSN HT-ROOSVLT')
Processing turnstile ('J037', 'R009', '00-00-03', '121 ST')
Processing turnstile ('A043', 'R462', '00-06-01', 'CANAL ST')
Processing turnstile ('N141', 'R356', '00-03-01', 'OZONE PK LEFFRT')
Processing turnstile ('R246', 'R177', '00-03-01', '68ST-HUNTER CO')
Processing turnstile ('B021', 'R228', '00-05-00', 'AVENUE J')
Processing turnstile ('R262B', 'R195', '05-00-01', '161/YANKEE STAD')
Processing turnstile ('R210A', 'R044', '03-06-01', 'BROOKLYN BRIDGE')
Processing turnstile ('R169', 'R168', '01-03-00', '96 ST')
Processing turnstile ('N342', 'R019', '01-03-00', 'JAMAICA 179 ST')
Processing turnstile ('R155', 'R116', '01-00-03', '50 ST')
Processing turnstile ('R519', 'R223', '00-03-01', '46 ST BLISS ST')
Processing turnstile ('R174', 'R034', '00-00-03', '125 ST')
Processing turnstile ('N533', 'R129', '02-06-01', 'BERGEN ST')
Processing turnstile ('R526', 'R096', '00-05-02', '82 ST-JACKSON H')
Processing turnstile ('R101', 'R001', '02-00-06', 'SOUTH FERRY')
Processing turnstile ('N340A', 'R115', '01-03-01', '169 ST')
Processing turnstile ('R203', 'R043', '00-03-01', 'WALL ST')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14496
Processing turnstile ('PTH04', 'R551', '00-04-02', 'GROVE STREET')
Processing turnstile ('A037', 'R170', '05-00-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 11488
WARNING. Abnormal entry count found on day 2016-02-16: 20435
WARNING. Abnormal entry count found on day 2016-02-22: 11155
WARNING. Abnormal entry count found on day 2016-02-29: 11389
Processing turnstile ('R172', 'R192', '00-00-00', 'CATHEDRAL PKWY')
Processing turnstile ('C024', 'R214', '00-00-03', '77 ST')
Processing turnstile ('N016A', 'R296', '00-03-00', '163 ST-AMSTERDM')
Processing turnstile ('R163', 'R166', '01-00-00', '79 ST')
Processing turnstile ('N210', 'R253', '00-00-01', '174-175 STS')
Processing turnstile ('N505', 'R022', '02-00-08', '34 ST-HERALD SQ')
Processing turnstile ('A055', 'R227', '00-00-04', 'RECTOR ST')
Processing turnstile ('R421', 'R427', '00-00-01', 'MIDDLETOWN RD')
Processing turnstile ('R306', 'R207', '00-00-01', '135 ST')
WARNING. Abnormal entry count found on day 2016-02-29: 23843
Processing turnstile ('R164', 'R167', '00-03-01', '86 ST')
Processing turnstile ('R513', 'R093', '00-00-01', '30 AV')
Processing turnstile ('R119', 'R320', '00-00-00', 'CANAL ST')
Processing turnstile ('R155', 'R116', '01-00-09', '50 ST')
Processing turnstile ('N340', 'R115', '00-00-03', '169 ST')
Processing turnstile ('R641', 'R210', '00-00-01', 'BEVERLY RD')
Processing turnstile ('R243', 'R049', '00-03-04', '51 ST')
Processing turnstile ('N203', 'R195', '00-00-02', '161/YANKEE STAD')
Processing turnstile ('N110', 'R283', '00-06-01', 'LAFAYETTE AV')
Processing turnstile ('N184', 'R416', '00-00-01', 'BEACH 90 ST')
Processing turnstile ('R550', 'R072', '00-03-09', '34 ST-HUDSON YD')
Processing turnstile ('R260', 'R205', '01-05-00', '149/GRAND CONC')
Processing turnstile ('R508', 'R346', '00-03-00', 'COURT SQ')
Processing turnstile ('N539A', 'R288', '00-06-01', '7 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 13062
Processing turnstile ('R142', 'R293', '01-00-02', '34 ST-PENN STA')
Processing turnstile ('N067', 'R012', '00-00-04', '34 ST-PENN STA')
Processing turnstile ('A046', 'R463', '00-06-05', 'CANAL ST')
Processing turnstile ('R518', 'R261', '00-03-02', '40 ST LOWERY ST')
Processing turnstile ('N091', 'R029', '02-05-03', 'CHAMBERS ST')
Processing turnstile ('N600', 'R302', '00-00-01', '57 ST')
Processing turnstile ('PTH02', 'R544', '00-00-03', 'HARRISON')
Processing turnstile ('R190', 'R038', '00-06-00', '215 ST')
Processing turnstile ('PTH16', 'R550', '01-02-01', 'LACKAWANNA')
Processing turnstile ('R626', 'R062', '00-03-02', 'CROWN HTS-UTICA')
Processing turnstile ('N133', 'R384', '00-00-00', '88 ST')
Processing turnstile ('PTH01', 'R549', '00-00-01', 'NEWARK HW BMEBE')
Processing turnstile ('R147', 'R033', '04-00-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10952
Processing turnstile ('B025', 'R150', '00-05-00', 'AVENUE U')
Processing turnstile ('N507', 'R023', '00-00-00', '34 ST-HERALD SQ')
Processing turnstile ('H006', 'R330', '01-00-00', '3 AV')
Processing turnstile ('R197', 'R117', '00-00-02', 'V.CORTLANDT PK')
Processing turnstile ('N504', 'R021', '02-00-03', '42 ST-BRYANT PK')
Processing turnstile ('N187', 'R419', '00-00-00', 'ROCKAWAY PARK B')
Processing turnstile ('N111', 'R284', '00-00-00', 'CLINTON-WASH AV')
Processing turnstile ('H039', 'R375', '00-00-02', 'NEW LOTS')
Processing turnstile ('N316A', 'R267', '01-06-01', '46 ST')
Processing turnstile ('R318', 'R408', '00-05-01', 'SIMPSON ST')
Processing turnstile ('N062', 'R011', '01-05-00', '42 ST-PORT AUTH')
Processing turnstile ('R204', 'R043', '02-06-01', 'WALL ST')
Processing turnstile ('N063', 'R011', '02-06-02', '42 ST-PORT AUTH')
Processing turnstile ('R219', 'R160', '00-00-01', 'ASTOR PL')
Processing turnstile ('R635', 'R277', '00-00-01', 'PRESIDENT ST')
Processing turnstile ('R314', 'R406', '00-00-00', 'PROSPECT AV')
Processing turnstile ('N551', 'R421', '00-00-02', 'AVENUE I')
Processing turnstile ('N505', 'R022', '02-00-03', '34 ST-HERALD SQ')
Processing turnstile ('PTH04', 'R551', '00-00-01', 'GROVE STREET')
Processing turnstile ('R236', 'R045', '00-03-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11274
WARNING. Abnormal entry count found on day 2016-02-19: -1321914356
Processing turnstile ('R145', 'R032', '00-00-01', 'TIMES SQ-42 ST')
Processing turnstile ('N092', 'R029', '03-00-01', 'CHAMBERS ST')
Processing turnstile ('J013', 'R380', '00-00-00', 'GATES AV')
Processing turnstile ('N073', 'R013', '02-00-01', '34 ST-PENN STA')
Processing turnstile ('R407', 'R448', '01-00-00', "E 143/ST MARY'S")
Processing turnstile ('N519A', 'R461', '01-06-00', "B'WAY-LAFAYETTE")
Processing turnstile ('R408', 'R449', '00-00-02', 'E 149 ST')
Processing turnstile ('N090', 'R139', '01-00-02', 'CANAL ST')
Processing turnstile ('R229', 'R143', '01-00-05', '28 ST')
Processing turnstile ('R626', 'R062', '00-03-00', 'CROWN HTS-UTICA')
Processing turnstile ('J001', 'R460', '01-05-00', 'MARCY AV')
Processing turnstile ('N409', 'R268', '00-00-01', 'METROPOLITAN AV')
Processing turnstile ('N120', 'R153', '00-00-01', 'UTICA AV')
Processing turnstile ('N307', 'R359', '00-00-01', 'COURT SQ-23 ST')
Processing turnstile ('N305A', 'R016', '00-05-00', 'LEXINGTON AV/53')
Processing turnstile ('R210', 'R044', '00-05-00', 'BROOKLYN BRIDGE')
Processing turnstile ('R523', 'R147', '00-00-01', '61 ST WOODSIDE')
Processing turnstile ('N305', 'R017', '01-00-04', 'LEXINGTON AV/53')
Processing turnstile ('N303', 'R015', '00-00-05', '5 AV/53 ST')
Processing turnstile ('N535', 'R220', '00-00-02', 'CARROLL ST')
Processing turnstile ('N116', 'R198', '00-00-01', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10978
Processing turnstile ('N060', 'R010', '01-00-04', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-16: 10005
Processing turnstile ('R117', 'R343', '00-00-00', 'FRANKLIN ST')
Processing turnstile ('B032', 'R264', '00-00-00', 'OCEAN PKWY')
Processing turnstile ('R238A', 'R046', '02-00-02', 'GRD CNTRL-42 ST')
Processing turnstile ('PTH05', 'R543', '00-00-01', 'EXCHANGE PLACE')
Processing turnstile ('N309A', 'R140', '00-02-01', 'QUEENS PLAZA')
Processing turnstile ('R320', 'R409', '00-00-02', 'FREEMAN ST')
Processing turnstile ('N181A', 'R464', '00-06-00', 'AQUEDUCT RACETR')
Processing turnstile ('R101', 'R001', '02-06-00', 'SOUTH FERRY')
Processing turnstile ('N519A', 'R461', '01-05-00', "B'WAY-LAFAYETTE")
Processing turnstile ('N071', 'R013', '00-00-04', '34 ST-PENN STA')
Processing turnstile ('N506', 'R022', '00-05-01', '34 ST-HERALD SQ')
Processing turnstile ('H009', 'R235', '00-03-04', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-02-08: 17174
WARNING. Abnormal entry count found on day 2016-02-16: 25413
WARNING. Abnormal entry count found on day 2016-02-22: 17099
WARNING. Abnormal entry count found on day 2016-02-29: 15142
Processing turnstile ('N309A', 'R140', '00-00-01', 'QUEENS PLAZA')
Processing turnstile ('A046', 'R463', '00-03-00', 'CANAL ST')
Processing turnstile ('N116', 'R198', '00-00-00', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-02-16: 13979
Processing turnstile ('N072', 'R012', '05-03-05', '34 ST-PENN STA')
Processing turnstile ('R533', 'R055', '00-03-01', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-16: 12804
WARNING. Abnormal entry count found on day 2016-02-22: 10827
Processing turnstile ('N025', 'R102', '01-00-00', '125 ST')
Processing turnstile ('N057', 'R188', '00-00-01', '50 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10175
Processing turnstile ('J002', 'R460', '00-00-00', 'MARCY AV')
Processing turnstile ('C001', 'R108', '01-00-01', 'BOROUGH HALL')
Processing turnstile ('N067', 'R012', '00-06-01', '34 ST-PENN STA')
Processing turnstile ('N316A', 'R267', '01-03-01', '46 ST')
Processing turnstile ('R159', 'R164', '01-00-04', '66 ST-LINCOLN')
Processing turnstile ('A066', 'R118', '00-00-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13635
WARNING. Abnormal entry count found on day 2016-02-29: 11119
Processing turnstile ('N026', 'R102', '00-00-07', '125 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14465
WARNING. Abnormal entry count found on day 2016-02-22: 10065
Processing turnstile ('PTH10', 'R547', '00-00-01', '9TH STREET')
Processing turnstile ('PTH11', 'R545', '00-04-05', '14TH STREET')
Processing turnstile ('H026', 'R137', '00-05-01', 'MYRTLE-WYCKOFF')
Processing turnstile ('R419', 'R326', '00-05-01', 'ZEREGA AV')
Processing turnstile ('R262', 'R195', '03-00-02', '161/YANKEE STAD')
Processing turnstile ('R141', 'R031', '00-03-02', '34 ST-PENN STA')
Processing turnstile ('N182', 'R414', '00-05-00', 'HOWARD BCH JFK')
Processing turnstile ('N091', 'R029', '02-00-05', 'CHAMBERS ST')
Processing turnstile ('N529', 'R257', '00-00-02', 'EAST BROADWAY')
Processing turnstile ('R200A', 'R041', '01-05-00', 'BOWLING GREEN')
Processing turnstile ('N325A', 'R218', '00-05-01', 'ELMHURST AV')
Processing turnstile ('N049', 'R084', '01-00-01', '59 ST COLUMBUS')
Processing turnstile ('R205A', 'R014', '04-02-01', 'FULTON ST')
Processing turnstile ('R604', 'R108', '03-00-03', 'BOROUGH HALL')
Processing turnstile ('N519A', 'R461', '01-05-02', "B'WAY-LAFAYETTE")
Processing turnstile ('PTH13', 'R541', '00-04-02', 'THIRTY ST')
Processing turnstile ('R250', 'R179', '00-00-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 11320
WARNING. Abnormal entry count found on day 2016-02-16: 19734
WARNING. Abnormal entry count found on day 2016-02-22: 11645
WARNING. Abnormal entry count found on day 2016-02-29: 12030
Processing turnstile ('C001', 'R108', '01-00-02', 'BOROUGH HALL')
Processing turnstile ('N605', 'R024', '00-00-02', 'SUTPHIN-ARCHER')
Processing turnstile ('N060', 'R010', '01-00-03', '42 ST-PORT AUTH')
Processing turnstile ('N187', 'R419', '00-05-00', 'ROCKAWAY PARK B')
Processing turnstile ('N337', 'R255', '00-00-00', 'BRIARWOOD')
Processing turnstile ('R624', 'R124', '00-00-01', 'KINGSTON AV')
Processing turnstile ('R249', 'R179', '01-00-04', '86 ST')
Processing turnstile ('A047', 'R087', '00-00-01', 'CITY HALL')
Processing turnstile ('B031', 'R172', '01-00-03', 'BRIGHTON BEACH')
Processing turnstile ('G009', 'R151', '02-05-01', 'CONEY IS-STILLW')
Processing turnstile ('N063', 'R011', '02-00-02', '42 ST-PORT AUTH')
Processing turnstile ('N183', 'R415', '00-00-01', 'BROAD CHANNEL')
Processing turnstile ('G009', 'R151', '02-00-05', 'CONEY IS-STILLW')
Processing turnstile ('N303', 'R015', '00-00-01', '5 AV/53 ST')
Processing turnstile ('B024A', 'R211', '02-00-04', 'KINGS HWY')
Processing turnstile ('R139', 'R031', '04-00-02', '34 ST-PENN STA')
Processing turnstile ('PTH19', 'R549', '02-01-00', 'NEWARK C')
Processing turnstile ('R240', 'R047', '00-03-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10954
Processing turnstile ('N012', 'R035', '01-06-01', '168 ST')
Processing turnstile ('N196', 'R285', '00-00-00', 'FAR ROCKAWAY')
Processing turnstile ('N101', 'R252', '01-00-02', 'HIGH ST')
Processing turnstile ('R151', 'R033', '00-00-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 15666
Processing turnstile ('R168A', 'R168', '00-02-00', '96 ST')
Processing turnstile ('N562', 'R426', '00-00-01', 'NEPTUNE AV')
Processing turnstile ('R217A', 'R194', '00-05-01', 'BLEECKER ST')
Processing turnstile ('R110', 'R027', '01-03-01', 'WALL ST')
Processing turnstile ('R257', 'R182', '01-03-00', '116 ST')
Processing turnstile ('N330C', 'R202', '01-06-01', '63 DR-REGO PARK')
Processing turnstile ('N337', 'R255', '00-00-01', 'BRIARWOOD')
Processing turnstile ('R227', 'R131', '00-00-02', '23 ST')
Processing turnstile ('N519A', 'R461', '01-01-03', "B'WAY-LAFAYETTE")
Processing turnstile ('N009', 'R174', '01-00-01', '181 ST')
Processing turnstile ('N327', 'R254', '00-05-01', 'GRAND-NEWTOWN')
Processing turnstile ('R101', 'R001', '02-06-01', 'SOUTH FERRY')
Processing turnstile ('R115', 'R029', '00-00-02', 'PARK PLACE')
Processing turnstile ('N139', 'R355', '00-00-00', '111 ST')
Processing turnstile ('N049', 'R084', '01-02-01', '59 ST COLUMBUS')
Processing turnstile ('N330', 'R202', '00-00-00', '63 DR-REGO PARK')
Processing turnstile ('R258', 'R132', '00-06-02', '125 ST')
Processing turnstile ('R127', 'R105', '00-03-03', '14 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11431
Processing turnstile ('N057', 'R188', '00-05-00', '50 ST')
Processing turnstile ('R423', 'R429', '00-00-03', 'PELHAM BAY PARK')
Processing turnstile ('A034', 'R170', '03-03-01', '14 ST-UNION SQ')
Processing turnstile ('N606', 'R025', '00-05-01', 'JAMAICA CENTER')
Processing turnstile ('N010', 'R126', '00-00-04', '175 ST')
Processing turnstile ('R303', 'R324', '00-00-01', '116 ST')
Processing turnstile ('R262', 'R195', '03-03-01', '161/YANKEE STAD')
Processing turnstile ('R319', 'R409', '01-00-02', 'FREEMAN ST')
Processing turnstile ('R618', 'R058', '01-00-00', 'BERGEN ST')
Processing turnstile ('R409', 'R449', '01-00-01', 'E 149 ST')
Processing turnstile ('R252', 'R180', '00-00-01', '103 ST')
Processing turnstile ('A002', 'R051', '02-05-00', '59 ST')
Processing turnstile ('R220', 'R160', '01-03-02', 'ASTOR PL')
Processing turnstile ('N304', 'R015', '01-06-00', '5 AV/53 ST')
Processing turnstile ('R204', 'R043', '02-00-00', 'WALL ST')
Processing turnstile ('N103', 'R127', '00-03-00', 'JAY ST-METROTEC')
Processing turnstile ('N547', 'R420', '01-06-00', 'DITMAS AV')
Processing turnstile ('B029', 'R172', '00-00-00', 'BRIGHTON BEACH')
Processing turnstile ('R258', 'R132', '00-00-01', '125 ST')
Processing turnstile ('R284', 'R243', '00-00-03', '170 ST')
Processing turnstile ('R411', 'R450', '01-00-01', 'LONGWOOD AV')
Processing turnstile ('R148', 'R033', '01-00-00', 'TIMES SQ-42 ST')
Processing turnstile ('R618', 'R058', '01-00-01', 'BERGEN ST')
Processing turnstile ('R118', 'R343', '01-06-01', 'FRANKLIN ST')
Processing turnstile ('A081', 'R028', '04-00-01', 'FULTON ST')
Processing turnstile ('R286', 'R309', '00-00-00', '176 ST')
Processing turnstile ('N343', 'R019', '00-00-0A', 'JAMAICA 179 ST')
Processing turnstile ('N330', 'R202', '00-03-00', '63 DR-REGO PARK')
Processing turnstile ('A015', 'R081', '00-03-01', '49 ST')
Processing turnstile ('R103', 'R304', '00-06-00', 'RECTOR ST')
Processing turnstile ('R612', 'R057', '01-03-05', 'ATL AV-BARCLAY')
Processing turnstile ('R206', 'R014', '02-05-00', 'FULTON ST')
Processing turnstile ('J016', 'R381', '00-00-02', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11557
Processing turnstile ('R169', 'R168', '01-03-01', '96 ST')
Processing turnstile ('R645', 'R110', '00-03-02', 'FLATBUSH AV-B.C')
Processing turnstile ('PTH08', 'R540', '00-01-04', 'PATH WTC')
Processing turnstile ('R169', 'R168', '01-05-00', '96 ST')
Processing turnstile ('R293', 'R133', '00-00-02', 'MOSHOLU PKWY')
Processing turnstile ('N205', 'R195', '02-00-00', '161/YANKEE STAD')
Processing turnstile ('PTH19', 'R549', '02-02-04', 'NEWARK C')
Processing turnstile ('B022', 'R229', '00-00-00', 'AVENUE M')
Processing turnstile ('A025', 'R023', '01-03-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-01: -2227
WARNING. Abnormal entry count found on day 2016-02-02: -3875
WARNING. Abnormal entry count found on day 2016-02-03: -4242
WARNING. Abnormal entry count found on day 2016-02-04: -4254
WARNING. Abnormal entry count found on day 2016-02-05: -4401
WARNING. Abnormal entry count found on day 2016-02-08: -9586
WARNING. Abnormal entry count found on day 2016-02-09: -4110
WARNING. Abnormal entry count found on day 2016-02-10: -4175
WARNING. Abnormal entry count found on day 2016-02-11: -4411
WARNING. Abnormal entry count found on day 2016-02-16: -17351
WARNING. Abnormal entry count found on day 2016-02-17: -4244
WARNING. Abnormal entry count found on day 2016-02-18: -4266
WARNING. Abnormal entry count found on day 2016-02-19: -4565
WARNING. Abnormal entry count found on day 2016-02-22: -9927
WARNING. Abnormal entry count found on day 2016-02-23: -3964
WARNING. Abnormal entry count found on day 2016-02-24: -4334
WARNING. Abnormal entry count found on day 2016-02-25: -4277
WARNING. Abnormal entry count found on day 2016-02-26: -4349
WARNING. Abnormal entry count found on day 2016-02-29: -9957
Processing turnstile ('N131', 'R383', '00-00-02', '80 ST')
Processing turnstile ('N319', 'R298', '01-06-02', 'NORTHERN BLVD')
Processing turnstile ('N507', 'R023', '00-00-02', '34 ST-HERALD SQ')
Processing turnstile ('N057', 'R188', '00-05-01', '50 ST')
Processing turnstile ('N013', 'R035', '02-00-04', '168 ST')
Processing turnstile ('R219', 'R160', '00-00-05', 'ASTOR PL')
Processing turnstile ('R202', 'R042', '00-00-00', 'BOWLING GREEN')
Processing turnstile ('H009', 'R235', '00-06-04', 'BEDFORD AV')
Processing turnstile ('N303', 'R015', '00-00-03', '5 AV/53 ST')
Processing turnstile ('PTH05', 'R543', '00-00-00', 'EXCHANGE PLACE')
Processing turnstile ('R327', 'R361', '01-05-00', 'PELHAM PKWY')
Processing turnstile ('C008', 'R099', '00-04-01', 'DEKALB AV')
Processing turnstile ('N604', 'R342', '00-05-00', 'JAMAICA VAN WK')
Processing turnstile ('N087', 'R282', '01-05-00', 'SPRING ST')
Processing turnstile ('N221', 'R155', '00-00-01', 'KINGSBRIDGE RD')
Processing turnstile ('N092', 'R029', '03-00-03', 'CHAMBERS ST')
Processing turnstile ('N181', 'R357', '00-06-00', 'AQUEDUCT N.COND')
Processing turnstile ('S102', 'R165', '00-05-00', 'TOMPKINSVILLE')
Processing turnstile ('G001', 'R151', '00-05-01', 'CONEY IS-STILLW')
Processing turnstile ('N051', 'R084', '02-03-01', '59 ST COLUMBUS')
Processing turnstile ('R623', 'R061', '00-00-02', 'NOSTRAND AV')
Processing turnstile ('R517', 'R291', '01-06-01', '33 ST-RAWSON ST')
Processing turnstile ('R532H', 'R328', '02-00-00', 'METS-WILLETS PT')
Processing turnstile ('R258', 'R132', '00-03-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-02-08: -2898707
Processing turnstile ('JFK02', 'R535', '01-00-05', 'HOWARD BCH JFK')
Processing turnstile ('R550', 'R072', '00-03-00', '34 ST-HUDSON YD')
Processing turnstile ('N017', 'R331', '00-00-03', '155 ST')
Processing turnstile ('R331', 'R364', '00-00-00', 'GUN HILL RD')
Processing turnstile ('R185', 'R274', '00-00-02', '191 ST')
Processing turnstile ('N062', 'R011', '01-00-01', '42 ST-PORT AUTH')
Processing turnstile ('R170', 'R191', '00-05-00', '103 ST')
Processing turnstile ('A031', 'R083', '00-00-02', '23 ST')
Processing turnstile ('N504', 'R021', '02-00-05', '42 ST-BRYANT PK')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
WARNING. Abnormal entry count found on day 2016-02-18: -780875
Processing turnstile ('H040', 'R376', '00-00-03', 'EAST 105 ST')
Processing turnstile ('R185', 'R274', '00-00-00', '191 ST')
Processing turnstile ('R550', 'R072', '00-05-01', '34 ST-HUDSON YD')
Processing turnstile ('A035', 'R170', '00-00-04', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 14233
Processing turnstile ('N340', 'R115', '00-00-00', '169 ST')
Processing turnstile ('B020', 'R263', '00-03-02', 'AVENUE H')
Processing turnstile ('A037', 'R170', '05-00-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 12005
WARNING. Abnormal entry count found on day 2016-02-16: 20300
WARNING. Abnormal entry count found on day 2016-02-22: 12550
WARNING. Abnormal entry count found on day 2016-02-29: 12507
Processing turnstile ('R131', 'R190', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 15216
Processing turnstile ('N500', 'R020', '00-00-03', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-02-16: 12265
Processing turnstile ('N300', 'R113', '01-00-04', '7 AV')
Processing turnstile ('R639', 'R109', '00-05-02', 'CHURCH AV')
Processing turnstile ('N400A', 'R359', '02-00-01', 'COURT SQ')
Processing turnstile ('C028', 'R216', '01-06-00', 'BAY RIDGE AV')
Processing turnstile ('R501', 'R054', '00-00-04', '5 AVE')
Processing turnstile ('H017', 'R265', '00-00-02', 'MONTROSE AV')
WARNING. Abnormal entry count found on day 2016-02-16: 11979
Processing turnstile ('R645', 'R110', '00-03-00', 'FLATBUSH AV-B.C')
Processing turnstile ('R532', 'R328', '00-05-02', 'METS-WILLETS PT')
Processing turnstile ('PTH16', 'R550', '01-00-05', 'LACKAWANNA')
Processing turnstile ('R418', 'R106', '00-00-00', 'CASTLE HILL AV')
Processing turnstile ('R125', 'R189', '00-00-00', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13295
Processing turnstile ('PTH17', 'R541', '01-01-02', 'THIRTY THIRD ST')
Processing turnstile ('R527', 'R122', '00-03-03', '90 ST-ELMHURST')
Processing turnstile ('N208', 'R443', '01-06-01', '170 ST')
Processing turnstile ('N418', 'R269', '01-05-01', 'BEDFORD-NOSTRAN')
Processing turnstile ('N113', 'R297', '00-00-01', 'FRANKLIN AV')
Processing turnstile ('R245', 'R051', '00-03-00', '59 ST')
Processing turnstile ('R117', 'R343', '00-00-01', 'FRANKLIN ST')
Processing turnstile ('R302', 'R324', '01-00-04', '116 ST')
Processing turnstile ('N135', 'R385', '01-03-00', 'ROCKAWAY BLVD')
Processing turnstile ('A050', 'R088', '00-06-02', 'CORTLANDT ST')
Processing turnstile ('B014', 'R148', '00-00-00', 'PARKSIDE AV')
Processing turnstile ('B031', 'R172', '01-06-03', 'BRIGHTON BEACH')
Processing turnstile ('N120A', 'R153', '01-00-03', 'UTICA AV')
Processing turnstile ('R186', 'R036', '00-00-00', 'DYCKMAN ST')
Processing turnstile ('R501', 'R054', '00-00-03', '5 AVE')
Processing turnstile ('R414', 'R162', '00-00-01', 'ELDER AV')
Processing turnstile ('J013', 'R380', '00-00-02', 'GATES AV')
Processing turnstile ('N223', 'R156', '01-06-01', 'BEDFORD PK BLVD')
Processing turnstile ('N420B', 'R317', '00-00-00', 'CLINTON-WASH AV')
Processing turnstile ('R533', 'R055', '00-03-06', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-16: 12402
Processing turnstile ('R200A', 'R041', '01-00-02', 'BOWLING GREEN')
Processing turnstile ('R227', 'R131', '00-05-00', '23 ST')
Processing turnstile ('N112A', 'R284', '01-06-01', 'CLINTON-WASH AV')
Processing turnstile ('R240', 'R047', '00-03-07', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 15897
Processing turnstile ('R162', 'R166', '00-00-02', '79 ST')
Processing turnstile ('R418', 'R106', '00-00-02', 'CASTLE HILL AV')
Processing turnstile ('N342', 'R019', '01-00-03', 'JAMAICA 179 ST')
Processing turnstile ('R147', 'R033', '04-00-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10553
Processing turnstile ('N057', 'R188', '00-06-00', '50 ST')
Processing turnstile ('B024', 'R211', '00-00-00', 'KINGS HWY')
Processing turnstile ('N011', 'R126', '01-06-00', '175 ST')
Processing turnstile ('R647', 'R110', '02-00-00', 'FLATBUSH AV-B.C')
Processing turnstile ('A021', 'R032', '01-00-01', 'TIMES SQ-42 ST')
Processing turnstile ('R304', 'R206', '00-00-01', '125 ST')
Processing turnstile ('N133', 'R384', '00-00-02', '88 ST')
Processing turnstile ('R231A', 'R176', '01-00-02', '33 ST')
Processing turnstile ('N309A', 'R140', '00-06-03', 'QUEENS PLAZA')
Processing turnstile ('E014', 'R374', '00-05-00', 'BAY PKWY')
Processing turnstile ('N103', 'R127', '00-06-00', 'JAY ST-METROTEC')
Processing turnstile ('R238', 'R046', '00-05-00', 'GRD CNTRL-42 ST')
Processing turnstile ('R302', 'R324', '01-00-00', '116 ST')
Processing turnstile ('N218', 'R112', '01-05-00', 'FORDHAM RD')
Processing turnstile ('R333', 'R366', '00-00-00', '225 ST')
Processing turnstile ('R158', 'R084', '00-06-01', '59 ST COLUMBUS')
Processing turnstile ('R331', 'R364', '00-05-00', 'GUN HILL RD')
Processing turnstile ('R414', 'R162', '00-05-01', 'ELDER AV')
Processing turnstile ('N213', 'R154', '00-06-00', 'TREMONT AV')
Processing turnstile ('H028', 'R266', '00-00-02', 'HALSEY ST')
Processing turnstile ('N309A', 'R140', '00-03-02', 'QUEENS PLAZA')
Processing turnstile ('C019', 'R232', '00-00-03', '45 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10315
Processing turnstile ('A039', 'R085', '01-06-00', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-02-08: 61061043
WARNING. Abnormal entry count found on day 2016-02-10: 117440488
WARNING. Abnormal entry count found on day 2016-02-16: -184542613
Processing turnstile ('J002', 'R460', '00-00-02', 'MARCY AV')
Processing turnstile ('R229', 'R143', '01-00-01', '28 ST')
Processing turnstile ('JFK03', 'R536', '00-03-04', 'JFK JAMAICA CT1')
Processing turnstile ('B024', 'R211', '00-00-02', 'KINGS HWY')
Processing turnstile ('PTH05', 'R543', '00-00-03', 'EXCHANGE PLACE')
Processing turnstile ('N044', 'R187', '00-03-02', '81 ST-MUSEUM')
Processing turnstile ('R639', 'R109', '00-00-01', 'CHURCH AV')
Processing turnstile ('R290', 'R161', '00-00-03', 'KINGSBRIDGE RD')
Processing turnstile ('R501', 'R054', '00-06-00', '5 AVE')
Processing turnstile ('N408A', 'R256', '00-00-00', 'NASSAU ST')
Processing turnstile ('N325A', 'R218', '00-00-00', 'ELMHURST AV')
Processing turnstile ('N304', 'R015', '01-01-01', '5 AV/53 ST')
Processing turnstile ('C020', 'R233', '00-00-01', '53 ST')
Processing turnstile ('H022', 'R279', '00-06-00', 'JEFFERSON ST')
Processing turnstile ('R204A', 'R043', '03-06-00', 'WALL ST')
Processing turnstile ('N324', 'R018', '00-03-04', 'JKSN HT-ROOSVLT')
Processing turnstile ('N128', 'R200', '00-00-03', 'EUCLID AV')
Processing turnstile ('R154', 'R116', '00-00-00', '50 ST')
Processing turnstile ('R285', 'R308', '00-00-02', 'MT EDEN AV')
Processing turnstile ('R526', 'R096', '00-00-00', '82 ST-JACKSON H')
Processing turnstile ('J023', 'R436', '00-00-01', 'NORWOOD AV')
Processing turnstile ('A033', 'R170', '02-00-04', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 15065
WARNING. Abnormal entry count found on day 2016-02-22: 10161
WARNING. Abnormal entry count found on day 2016-02-29: 10348
Processing turnstile ('R101', 'R001', '02-07-00', 'SOUTH FERRY')
Processing turnstile ('R528', 'R097', '00-06-01', 'JUNCTION BLVD')
Processing turnstile ('R310', 'R053', '01-00-02', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -1227
WARNING. Abnormal entry count found on day 2016-02-02: -3041
WARNING. Abnormal entry count found on day 2016-02-03: -3831
WARNING. Abnormal entry count found on day 2016-02-04: -3946
WARNING. Abnormal entry count found on day 2016-02-05: -4220
WARNING. Abnormal entry count found on day 2016-02-08: -6165
WARNING. Abnormal entry count found on day 2016-02-09: -2751
WARNING. Abnormal entry count found on day 2016-02-10: -3042
WARNING. Abnormal entry count found on day 2016-02-11: -3177
WARNING. Abnormal entry count found on day 2016-02-16: -10491
WARNING. Abnormal entry count found on day 2016-02-17: -2577
WARNING. Abnormal entry count found on day 2016-02-18: -3239
WARNING. Abnormal entry count found on day 2016-02-19: -2924
WARNING. Abnormal entry count found on day 2016-02-22: -5821
WARNING. Abnormal entry count found on day 2016-02-23: -2966
WARNING. Abnormal entry count found on day 2016-02-24: -2952
WARNING. Abnormal entry count found on day 2016-02-25: -2867
WARNING. Abnormal entry count found on day 2016-02-26: -2995
WARNING. Abnormal entry count found on day 2016-02-29: -6094
Processing turnstile ('A047', 'R087', '00-06-00', 'CITY HALL')
Processing turnstile ('J002', 'R460', '00-05-00', 'MARCY AV')
Processing turnstile ('N100', 'R252', '00-00-02', 'HIGH ST')
Processing turnstile ('PTH20', 'R549', '03-01-07', 'NEWARK HM HE')
Processing turnstile ('R512', 'R092', '00-00-01', 'BROADWAY')
Processing turnstile ('N210', 'R253', '00-00-02', '174-175 STS')
Processing turnstile ('R412', 'R146', '00-03-00', 'HUNTS POINT AV')
Processing turnstile ('R608', 'R056', '00-00-00', 'NEVINS ST')
Processing turnstile ('R550', 'R072', '00-03-01', '34 ST-HUDSON YD')
Processing turnstile ('R243', 'R049', '00-03-01', '51 ST')
Processing turnstile ('R161A', 'R452', '01-06-01', '72 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 15250
Processing turnstile ('N542', 'R241', '00-00-00', '15 ST-PROSPECT')
Processing turnstile ('N606', 'R025', '00-00-01', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-02-01: -477
WARNING. Abnormal entry count found on day 2016-02-02: -1683
WARNING. Abnormal entry count found on day 2016-02-03: -1645
WARNING. Abnormal entry count found on day 2016-02-04: -1648
WARNING. Abnormal entry count found on day 2016-02-05: -1526
WARNING. Abnormal entry count found on day 2016-02-08: -2695
WARNING. Abnormal entry count found on day 2016-02-09: -1504
WARNING. Abnormal entry count found on day 2016-02-10: -1585
WARNING. Abnormal entry count found on day 2016-02-11: -1669
WARNING. Abnormal entry count found on day 2016-02-16: -4687
WARNING. Abnormal entry count found on day 2016-02-17: -1356
WARNING. Abnormal entry count found on day 2016-02-18: -1555
WARNING. Abnormal entry count found on day 2016-02-19: -1589
WARNING. Abnormal entry count found on day 2016-02-22: -2878
WARNING. Abnormal entry count found on day 2016-02-23: -1636
WARNING. Abnormal entry count found on day 2016-02-24: -1621
WARNING. Abnormal entry count found on day 2016-02-25: -1491
WARNING. Abnormal entry count found on day 2016-02-26: -1531
WARNING. Abnormal entry count found on day 2016-02-29: -2999
Processing turnstile ('R420', 'R107', '00-00-02', 'WESTCHESTER SQ')
Processing turnstile ('R310', 'R053', '01-00-00', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14823
Processing turnstile ('D008', 'R392', '00-00-02', '18 AV')
Processing turnstile ('S101A', 'R070', '01-00-02', 'ST. GEORGE')
Processing turnstile ('A002', 'R051', '02-03-05', '59 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10117
Processing turnstile ('PTH05', 'R543', '00-00-07', 'EXCHANGE PLACE')
Processing turnstile ('R159', 'R164', '01-00-03', '66 ST-LINCOLN')
Processing turnstile ('H039', 'R375', '00-00-00', 'NEW LOTS')
Processing turnstile ('N057', 'R188', '00-03-01', '50 ST')
Processing turnstile ('N551', 'R421', '00-00-01', 'AVENUE I')
Processing turnstile ('R252', 'R180', '00-00-02', '103 ST')
Processing turnstile ('N208', 'R443', '01-00-00', '170 ST')
Processing turnstile ('R251', 'R144', '00-03-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13383
Processing turnstile ('PTH20', 'R549', '03-00-00', 'NEWARK HM HE')
Processing turnstile ('G001', 'R151', '00-03-03', 'CONEY IS-STILLW')
Processing turnstile ('N130', 'R383', '01-04-00', '80 ST')
Processing turnstile ('R238', 'R046', '00-00-00', 'GRD CNTRL-42 ST')
Processing turnstile ('C018', 'R197', '00-00-03', '36 ST')
Processing turnstile ('R116', 'R030', '00-00-03', 'CHAMBERS ST')
Processing turnstile ('R503', 'R276', '01-00-00', 'VERNON-JACKSON')
Processing turnstile ('N184', 'R416', '00-00-02', 'BEACH 90 ST')
Processing turnstile ('PTH17', 'R541', '01-00-00', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-02-16: 107287
WARNING. Abnormal entry count found on day 2016-02-17: -107287
Processing turnstile ('N089', 'R139', '00-06-00', 'CANAL ST')
Processing turnstile ('R201', 'R041', '00-06-02', 'BOWLING GREEN')
Processing turnstile ('R249', 'R179', '01-00-09', '86 ST')
Processing turnstile ('R621', 'R060', '00-00-00', 'EASTN PKWY-MUSM')
Processing turnstile ('R610', 'R057', '00-06-01', 'ATL AV-BARCLAY')
Processing turnstile ('D010', 'R394', '00-00-02', 'BAY PKWY')
Processing turnstile ('K019', 'R413', '00-03-01', 'KNICKERBOCKER')
Processing turnstile ('R227', 'R131', '00-00-01', '23 ST')
Processing turnstile ('C010', 'R231', '00-00-01', 'UNION ST')
Processing turnstile ('PTH05', 'R543', '00-00-06', 'EXCHANGE PLACE')
Processing turnstile ('A069', 'R044', '01-00-00', 'CHAMBERS ST')
Processing turnstile ('R160', 'R164', '02-05-00', '66 ST-LINCOLN')
Processing turnstile ('N206', 'R104', '01-05-01', '167 ST')
Processing turnstile ('N602', 'R259', '00-05-01', 'ROOSEVELT ISLND')
Processing turnstile ('E014', 'R374', '00-00-02', 'BAY PKWY')
Processing turnstile ('H022', 'R279', '00-00-01', 'JEFFERSON ST')
Processing turnstile ('N339A', 'R114', '00-00-01', 'PARSONS BLVD')
Processing turnstile ('JFK02', 'R535', '01-00-02', 'HOWARD BCH JFK')
Processing turnstile ('PTH16', 'R550', '01-01-03', 'LACKAWANNA')
Processing turnstile ('N318', 'R298', '00-00-01', 'NORTHERN BLVD')
Processing turnstile ('K025', 'R404', '00-00-00', 'FRESH POND RD')
Processing turnstile ('N501', 'R020', '01-03-02', '47-50 STS ROCK')
Processing turnstile ('N187', 'R419', '00-00-01', 'ROCKAWAY PARK B')
Processing turnstile ('G001', 'R151', '00-05-00', 'CONEY IS-STILLW')
Processing turnstile ('A077', 'R028', '03-03-02', 'FULTON ST')
Processing turnstile ('N224', 'R157', '00-00-04', 'NORWOOD 205 ST')
Processing turnstile ('H041', 'R152', '00-05-01', 'CANARSIE-ROCKAW')
Processing turnstile ('H012', 'R268', '01-06-02', 'LORIMER ST')
Processing turnstile ('N078', 'R175', '01-06-02', '14 ST')
Processing turnstile ('N080', 'R138', '00-03-00', 'W 4 ST-WASH SQ')
Processing turnstile ('N111', 'R284', '00-06-02', 'CLINTON-WASH AV')
Processing turnstile ('N543', 'R289', '00-00-02', 'FT HAMILTON PKY')
Processing turnstile ('H023', 'R236', '00-00-00', 'DEKALB AV')
Processing turnstile ('R252', 'R180', '00-00-00', '103 ST')
Processing turnstile ('N067', 'R012', '00-06-02', '34 ST-PENN STA')
Processing turnstile ('PTH08', 'R540', '00-00-02', 'PATH WTC')
Processing turnstile ('R528', 'R097', '00-05-01', 'JUNCTION BLVD')
Processing turnstile ('K024', 'R403', '00-00-00', 'FOREST AVE')
Processing turnstile ('R226', 'R131', '02-03-01', '23 ST')
Processing turnstile ('N089', 'R139', '00-03-01', 'CANAL ST')
Processing turnstile ('R242', 'R049', '01-00-02', '51 ST')
Processing turnstile ('R173', 'R159', '00-00-01', '116 ST-COLUMBIA')
Processing turnstile ('N049', 'R084', '01-02-00', '59 ST COLUMBUS')
Processing turnstile ('J007', 'R377', '00-00-00', 'FLUSHING AV')
Processing turnstile ('N063A', 'R011', '00-00-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-16: 13143
Processing turnstile ('N310', 'R140', '01-00-01', 'QUEENS PLAZA')
Processing turnstile ('R237', 'R046', '01-00-05', 'GRD CNTRL-42 ST')
Processing turnstile ('PTH19', 'R549', '02-01-07', 'NEWARK C')
Processing turnstile ('R232', 'R176', '02-00-02', '33 ST')
Processing turnstile ('B026', 'R230', '00-06-00', 'NECK RD')
Processing turnstile ('N080', 'R138', '00-00-02', 'W 4 ST-WASH SQ')
Processing turnstile ('C019', 'R232', '00-00-01', '45 ST')
Processing turnstile ('H032', 'R295', '00-00-02', 'WILSON AV')
Processing turnstile ('C009', 'R057', '03-03-01', 'ATL AV-BARCLAY')
Processing turnstile ('N513', 'R163', '04-00-02', '14 ST')
Processing turnstile ('R203', 'R043', '00-00-02', 'WALL ST')
Processing turnstile ('N063', 'R011', '02-03-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-16: 13759
Processing turnstile ('PTH07', 'R550', '00-01-01', 'CITY / BUS')
Processing turnstile ('N331', 'R219', '00-00-02', '67 AV')
Processing turnstile ('R730', 'R431', '00-00-04', 'EASTCHSTER/DYRE')
Processing turnstile ('N071', 'R013', '00-00-02', '34 ST-PENN STA')
Processing turnstile ('R249', 'R179', '01-00-05', '86 ST')
Processing turnstile ('C016', 'R278', '00-00-01', '25 ST')
Processing turnstile ('R322', 'R386', '00-00-00', '174 ST')
Processing turnstile ('R182', 'R035', '00-03-00', '168 ST')
Processing turnstile ('H003', 'R163', '01-06-00', '6 AV')
Processing turnstile ('R305', 'R206', '01-00-00', '125 ST')
Processing turnstile ('N340', 'R115', '00-06-01', '169 ST')
Processing turnstile ('PTH17', 'R541', '01-01-06', 'THIRTY THIRD ST')
Processing turnstile ('R610', 'R057', '00-03-05', 'ATL AV-BARCLAY')
Processing turnstile ('N338', 'R128', '01-05-01', 'SUTPHIN BLVD')
Processing turnstile ('N138', 'R355', '01-06-00', '111 ST')
Processing turnstile ('N022', 'R332', '02-06-00', '135 ST')
Processing turnstile ('R201', 'R041', '00-03-00', 'BOWLING GREEN')
Processing turnstile ('N553', 'R422', '00-00-00', 'BAY PKWY')
Processing turnstile ('S101', 'R070', '00-00-00', 'ST. GEORGE')
Processing turnstile ('N110', 'R283', '00-03-02', 'LAFAYETTE AV')
Processing turnstile ('R242', 'R049', '01-03-01', '51 ST')
Processing turnstile ('R185', 'R274', '00-00-03', '191 ST')
Processing turnstile ('N600', 'R302', '00-06-00', '57 ST')
Processing turnstile ('N605', 'R024', '00-05-01', 'SUTPHIN-ARCHER')
Processing turnstile ('N051', 'R084', '02-05-01', '59 ST COLUMBUS')
Processing turnstile ('R532', 'R328', '00-06-02', 'METS-WILLETS PT')
Processing turnstile ('A047', 'R087', '00-00-00', 'CITY HALL')
Processing turnstile ('PTH08', 'R540', '00-00-07', 'PATH WTC')
Processing turnstile ('N181', 'R357', '00-00-00', 'AQUEDUCT N.COND')
Processing turnstile ('N542', 'R241', '00-00-02', '15 ST-PROSPECT')
Processing turnstile ('N089', 'R139', '00-06-01', 'CANAL ST')
Processing turnstile ('R248', 'R178', '00-00-01', '77 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14909
Processing turnstile ('R231A', 'R176', '01-06-00', '33 ST')
Processing turnstile ('H041', 'R152', '00-06-00', 'CANARSIE-ROCKAW')
Processing turnstile ('R186', 'R036', '00-00-02', 'DYCKMAN ST')
Processing turnstile ('R116', 'R030', '00-03-01', 'CHAMBERS ST')
Processing turnstile ('R227', 'R131', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -870
WARNING. Abnormal entry count found on day 2016-02-02: -2806
WARNING. Abnormal entry count found on day 2016-02-03: -2927
WARNING. Abnormal entry count found on day 2016-02-04: -2995
WARNING. Abnormal entry count found on day 2016-02-05: -3100
WARNING. Abnormal entry count found on day 2016-02-08: -4480
WARNING. Abnormal entry count found on day 2016-02-09: -2705
WARNING. Abnormal entry count found on day 2016-02-10: -2607
WARNING. Abnormal entry count found on day 2016-02-11: -3036
WARNING. Abnormal entry count found on day 2016-02-16: -7592
WARNING. Abnormal entry count found on day 2016-02-17: -2471
WARNING. Abnormal entry count found on day 2016-02-18: -2904
WARNING. Abnormal entry count found on day 2016-02-19: -2688
WARNING. Abnormal entry count found on day 2016-02-22: -4348
WARNING. Abnormal entry count found on day 2016-02-23: -2723
WARNING. Abnormal entry count found on day 2016-02-24: -2771
WARNING. Abnormal entry count found on day 2016-02-25: -2607
WARNING. Abnormal entry count found on day 2016-02-26: -2800
WARNING. Abnormal entry count found on day 2016-02-29: -4374
Processing turnstile ('PTH08', 'R540', '00-01-06', 'PATH WTC')
Processing turnstile ('N303', 'R015', '00-00-00', '5 AV/53 ST')
Processing turnstile ('N103', 'R127', '00-06-02', 'JAY ST-METROTEC')
Processing turnstile ('A039', 'R085', '01-03-00', '8 ST-NYU')
Processing turnstile ('R244', 'R050', '00-00-01', '59 ST')
Processing turnstile ('A011', 'R080', '01-00-01', '57 ST-7 AV')
Processing turnstile ('A002', 'R051', '02-03-03', '59 ST')
Processing turnstile ('C021', 'R212', '00-00-03', '59 ST')
Processing turnstile ('N062A', 'R010', '00-00-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-08: 10643
WARNING. Abnormal entry count found on day 2016-02-16: 18421
WARNING. Abnormal entry count found on day 2016-02-22: 11832
WARNING. Abnormal entry count found on day 2016-02-29: 11008
Processing turnstile ('N545', 'R204', '01-06-00', 'CHURCH AV')
Processing turnstile ('R420', 'R107', '00-00-01', 'WESTCHESTER SQ')
Processing turnstile ('R290', 'R161', '00-00-00', 'KINGSBRIDGE RD')
Processing turnstile ('A058', 'R001', '01-00-02', 'WHITEHALL S-FRY')
Processing turnstile ('R525', 'R018', '02-00-00', '74 ST-BROADWAY')
Processing turnstile ('R639', 'R109', '00-00-03', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-02-16: 11674
Processing turnstile ('N023', 'R332', '01-00-02', '135 ST')
Processing turnstile ('A013', 'R081', '01-03-02', '49 ST')
Processing turnstile ('A082', 'R028', '05-06-01', 'FULTON ST')
Processing turnstile ('J012', 'R379', '00-00-00', 'KOSCIUSZKO ST')
Processing turnstile ('R402', 'R446', '00-00-03', 'BROOK AV')
Processing turnstile ('PTH03', 'R552', '00-00-09', 'JOURNAL SQUARE')
Processing turnstile ('N124', 'R103', '00-03-01', 'BROADWAY JCT')
Processing turnstile ('N548', 'R420', '00-00-02', 'DITMAS AV')
Processing turnstile ('N218', 'R112', '01-06-01', 'FORDHAM RD')
Processing turnstile ('PTH12', 'R542', '00-04-02', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-02-24: -7518
Processing turnstile ('H027', 'R137', '01-00-02', 'MYRTLE-WYCKOFF')
Processing turnstile ('N077', 'R111', '02-06-01', '23 ST')
Processing turnstile ('R501', 'R054', '00-00-05', '5 AVE')
Processing turnstile ('R162', 'R166', '00-00-00', '79 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10053
Processing turnstile ('R244', 'R050', '00-00-00', '59 ST')
Processing turnstile ('A034', 'R170', '03-06-02', '14 ST-UNION SQ')
Processing turnstile ('R238', 'R046', '00-05-01', 'GRD CNTRL-42 ST')
Processing turnstile ('N062', 'R011', '01-00-00', '42 ST-PORT AUTH')
Processing turnstile ('N504', 'R021', '02-00-02', '42 ST-BRYANT PK')
Processing turnstile ('PTH06', 'R546', '00-00-0A', 'PAVONIA/NEWPORT')
Processing turnstile ('PTH08', 'R540', '00-04-01', 'PATH WTC')
WARNING. Abnormal entry count found on day 2016-02-16: 10048
Processing turnstile ('R192', 'R039', '00-00-02', 'MARBLE HILL-225')
Processing turnstile ('R154', 'R116', '00-00-03', '50 ST')
Processing turnstile ('R514', 'R094', '00-00-02', 'ASTORIA BLVD')
Processing turnstile ('R250', 'R179', '00-00-03', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14917
Processing turnstile ('PTH02', 'R544', '00-00-00', 'HARRISON')
Processing turnstile ('N095A', 'R014', '01-03-03', 'FULTON ST')
Processing turnstile ('R310', 'R053', '01-00-01', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13680
Processing turnstile ('A011', 'R080', '01-00-03', '57 ST-7 AV')
Processing turnstile ('N305', 'R017', '01-00-03', 'LEXINGTON AV/53')
Processing turnstile ('N125', 'R440', '00-00-01', 'LIBERTY AV')
Processing turnstile ('S101A', 'R070', '01-00-03', 'ST. GEORGE')
Processing turnstile ('R217A', 'R194', '00-00-00', 'BLEECKER ST')
Processing turnstile ('N343', 'R019', '00-00-09', 'JAMAICA 179 ST')
Processing turnstile ('PTH13', 'R541', '00-00-05', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-02-02: -128297
WARNING. Abnormal entry count found on day 2016-02-05: 78156
Processing turnstile ('A007', 'R079', '01-06-00', '5 AV/59 ST')
Processing turnstile ('N601', 'R319', '00-05-00', 'LEXINGTON AV/63')
Processing turnstile ('R194', 'R040', '00-00-01', '231 ST')
Processing turnstile ('R160A', 'R164', '00-05-01', '66 ST-LINCOLN')
Processing turnstile ('A006', 'R079', '00-00-03', '5 AV/59 ST')
Processing turnstile ('A002', 'R051', '02-00-00', '59 ST')
Processing turnstile ('R162', 'R166', '00-06-00', '79 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11230
Processing turnstile ('N194', 'R338', '00-00-02', 'BEACH 36 ST')
Processing turnstile ('J028', 'R004', '00-00-04', '75 ST-ELDERTS')
Processing turnstile ('K019', 'R413', '00-03-00', 'KNICKERBOCKER')
Processing turnstile ('B026', 'R230', '00-05-01', 'NECK RD')
Processing turnstile ('R139', 'R031', '04-00-01', '34 ST-PENN STA')
Processing turnstile ('N501', 'R020', '01-00-00', '47-50 STS ROCK')
Processing turnstile ('H001', 'R175', '00-06-02', '8 AV')
Processing turnstile ('R256', 'R182', '00-00-03', '116 ST')
WARNING. Abnormal entry count found on day 2016-02-23: -407150
Processing turnstile ('N324', 'R018', '00-02-00', 'JKSN HT-ROOSVLT')
Processing turnstile ('R301', 'R323', '00-06-01', 'CENTRAL PK N110')
Processing turnstile ('N333', 'R141', '01-00-01', 'FOREST HILLS 71')
Processing turnstile ('PTH09', 'R548', '00-00-01', 'CHRISTOPHER ST')
Processing turnstile ('R204', 'R043', '02-03-03', 'WALL ST')
Processing turnstile ('N089', 'R139', '00-00-01', 'CANAL ST')
Processing turnstile ('N507', 'R023', '00-00-03', '34 ST-HERALD SQ')
Processing turnstile ('R220', 'R160', '01-03-01', 'ASTOR PL')
Processing turnstile ('R127', 'R105', '00-00-02', '14 ST')
Processing turnstile ('R201', 'R041', '00-06-01', 'BOWLING GREEN')
Processing turnstile ('R243', 'R049', '00-05-00', '51 ST')
Processing turnstile ('R323', 'R387', '00-00-03', 'WEST FARMS SQ')
Processing turnstile ('J007', 'R377', '00-00-01', 'FLUSHING AV')
Processing turnstile ('J030', 'R005', '00-00-03', '85 ST-FOREST PK')
Processing turnstile ('N068', 'R012', '03-06-00', '34 ST-PENN STA')
Processing turnstile ('E001', 'R368', '00-05-00', '9 AV')
Processing turnstile ('B024A', 'R211', '02-00-03', 'KINGS HWY')
Processing turnstile ('K025', 'R404', '00-03-03', 'FRESH POND RD')
Processing turnstile ('R247', 'R178', '01-00-01', '77 ST')
Processing turnstile ('R101', 'R001', '02-07-03', 'SOUTH FERRY')
Processing turnstile ('N561', 'R271', '00-00-01', 'AVENUE X')
Processing turnstile ('N333B', 'R141', '02-00-01', 'FOREST HILLS 71')
Processing turnstile ('N541', 'R241', '01-06-02', '15 ST-PROSPECT')
Processing turnstile ('E001', 'R368', '00-00-01', '9 AV')
Processing turnstile ('R244A', 'R050', '01-00-00', '59 ST')
Processing turnstile ('R226A', 'R131', '03-05-00', '23 ST')
Processing turnstile ('C011', 'R231', '01-00-02', 'UNION ST')
Processing turnstile ('N316A', 'R267', '01-00-00', '46 ST')
Processing turnstile ('N049', 'R084', '01-03-01', '59 ST COLUMBUS')
Processing turnstile ('A029', 'R082', '00-03-00', '28 ST')
Processing turnstile ('R238', 'R046', '00-03-02', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 14707
WARNING. Abnormal entry count found on day 2016-02-16: 38130
WARNING. Abnormal entry count found on day 2016-02-17: 10074
Processing turnstile ('R316', 'R407', '00-00-01', 'INTERVALE AV')
Processing turnstile ('A014', 'R081', '02-06-01', '49 ST')
Processing turnstile ('C012', 'R258', '01-03-02', '4AV-9 ST')
Processing turnstile ('R304', 'R206', '00-00-04', '125 ST')
Processing turnstile ('N196', 'R285', '00-05-00', 'FAR ROCKAWAY')
Processing turnstile ('N206', 'R104', '01-06-00', '167 ST')
Processing turnstile ('N336', 'R158', '00-03-00', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-02-16: 12168
WARNING. Abnormal entry count found on day 2016-02-25: -1528163
Processing turnstile ('N335', 'R158', '01-06-00', 'KEW GARDENS')
Processing turnstile ('R644', 'R135', '01-00-00', 'NEWKIRK AV')
Processing turnstile ('PTH13', 'R541', '00-00-07', 'THIRTY ST')
Processing turnstile ('N502', 'R021', '01-00-02', '42 ST-BRYANT PK')
Processing turnstile ('C023', 'R213', '00-00-03', 'BAY RIDGE AV')
Processing turnstile ('R610', 'R057', '00-06-02', 'ATL AV-BARCLAY')
Processing turnstile ('R600', 'R224', '00-00-01', 'CLARK ST')
Processing turnstile ('N212', 'R253', '01-06-01', '174-175 STS')
Processing turnstile ('A050', 'R088', '00-05-01', 'CORTLANDT ST')
Processing turnstile ('A038', 'R085', '00-00-02', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-02-16: 10759
Processing turnstile ('N607', 'R025', '01-00-03', 'JAMAICA CENTER')
Processing turnstile ('R116', 'R030', '00-05-01', 'CHAMBERS ST')
Processing turnstile ('N062A', 'R010', '00-00-05', '42 ST-PORT AUTH')
Processing turnstile ('R301', 'R323', '00-03-01', 'CENTRAL PK N110')
Processing turnstile ('A033', 'R170', '02-06-00', '14 ST-UNION SQ')
Processing turnstile ('A050', 'R088', '00-05-00', 'CORTLANDT ST')
Processing turnstile ('N607', 'R025', '01-00-00', 'JAMAICA CENTER')
Processing turnstile ('B019', 'R149', '00-00-02', 'NEWKIRK PLAZA')
Processing turnstile ('R238', 'R046', '00-03-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 10624
WARNING. Abnormal entry count found on day 2016-02-16: 27442
WARNING. Abnormal entry count found on day 2016-02-22: 23581
WARNING. Abnormal entry count found on day 2016-02-26: 10250
WARNING. Abnormal entry count found on day 2016-02-29: 20797
Processing turnstile ('R240', 'R047', '00-03-08', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 12080
WARNING. Abnormal entry count found on day 2016-02-16: 20665
WARNING. Abnormal entry count found on day 2016-02-22: 11634
WARNING. Abnormal entry count found on day 2016-02-29: 11785
Processing turnstile ('N128', 'R200', '00-00-00', 'EUCLID AV')
Processing turnstile ('J028', 'R004', '00-00-01', '75 ST-ELDERTS')
Processing turnstile ('R405', 'R447', '01-00-00', 'CYPRESS AV')
Processing turnstile ('A071', 'R044', '02-06-00', 'CHAMBERS ST')
Processing turnstile ('N343', 'R019', '00-05-01', 'JAMAICA 179 ST')
Processing turnstile ('N334B', 'R341', '00-03-01', '75 AV')
Processing turnstile ('R626', 'R062', '00-00-01', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-02-16: 10203
Processing turnstile ('N098', 'R028', '00-00-00', 'FULTON ST')
Processing turnstile ('R419', 'R326', '00-00-01', 'ZEREGA AV')
Processing turnstile ('H003', 'R163', '01-00-01', '6 AV')
Processing turnstile ('R320', 'R409', '00-00-00', 'FREEMAN ST')
Processing turnstile ('N606', 'R025', '00-00-02', 'JAMAICA CENTER')
Processing turnstile ('N338', 'R128', '01-06-01', 'SUTPHIN BLVD')
Processing turnstile ('N091', 'R029', '02-00-00', 'CHAMBERS ST')
Processing turnstile ('N087', 'R282', '01-03-00', 'SPRING ST')
Processing turnstile ('R137', 'R031', '02-03-00', '34 ST-PENN STA')
Processing turnstile ('N316A', 'R267', '01-00-02', '46 ST')
Processing turnstile ('R532H', 'R328', '02-03-03', 'METS-WILLETS PT')
Processing turnstile ('N322', 'R340', '00-00-02', '65 ST')
Processing turnstile ('PTH16', 'R550', '01-02-04', 'LACKAWANNA')
Processing turnstile ('K026', 'R100', '00-00-01', 'METROPOLITAN AV')
Processing turnstile ('N303', 'R015', '00-00-06', '5 AV/53 ST')
Processing turnstile ('PTH16', 'R550', '01-00-06', 'LACKAWANNA')
Processing turnstile ('N125', 'R440', '00-00-02', 'LIBERTY AV')
Processing turnstile ('N301', 'R113', '00-00-04', '7 AV')
Processing turnstile ('R241A', 'R048', '00-00-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10991
Processing turnstile ('R289', 'R119', '00-00-01', 'FORDHAM RD')
Processing turnstile ('N545', 'R204', '01-05-01', 'CHURCH AV')
Processing turnstile ('R503', 'R276', '01-06-00', 'VERNON-JACKSON')
Processing turnstile ('N039', 'R251', '01-00-02', '96 ST')
Processing turnstile ('N557', 'R130', '00-00-00', 'KINGS HWY')
Processing turnstile ('A043', 'R462', '00-00-02', 'CANAL ST')
Processing turnstile ('A049', 'R088', '02-03-03', 'CORTLANDT ST')
Processing turnstile ('R407', 'R448', '01-00-02', "E 143/ST MARY'S")
Processing turnstile ('N078', 'R175', '01-00-00', '14 ST')
Processing turnstile ('B020', 'R263', '00-03-00', 'AVENUE H')
Processing turnstile ('N334B', 'R341', '00-06-01', '75 AV')
Processing turnstile ('R534', 'R055', '01-05-00', 'FLUSHING-MAIN')
Processing turnstile ('B022', 'R229', '00-05-00', 'AVENUE M')
Processing turnstile ('PTH04', 'R551', '00-01-01', 'GROVE STREET')
Processing turnstile ('N310', 'R140', '01-00-00', 'QUEENS PLAZA')
Processing turnstile ('N075', 'R111', '01-06-01', '23 ST')
Processing turnstile ('R128', 'R105', '01-03-00', '14 ST')
Processing turnstile ('R244', 'R050', '00-00-04', '59 ST')
Processing turnstile ('H030', 'R266', '01-00-02', 'HALSEY ST')
Processing turnstile ('A046', 'R463', '00-06-03', 'CANAL ST')
Processing turnstile ('A025', 'R023', '01-00-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 11686
Processing turnstile ('N312', 'R339', '00-00-02', '36 ST')
Processing turnstile ('R417', 'R222', '00-00-02', 'PARKCHESTER')
Processing turnstile ('N414A', 'R316', '01-00-01', 'FLUSHING AV')
Processing turnstile ('R165', 'R167', '01-00-03', '86 ST')
Processing turnstile ('PTH01', 'R549', '00-00-03', 'NEWARK HW BMEBE')
Processing turnstile ('R170', 'R191', '00-05-01', '103 ST')
Processing turnstile ('N304', 'R015', '01-03-01', '5 AV/53 ST')
Processing turnstile ('R515', 'R095', '00-03-03', 'ASTORIA DITMARS')
WARNING. Abnormal entry count found on day 2016-02-16: 10344
Processing turnstile ('A030', 'R083', '01-03-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12131
Processing turnstile ('B022', 'R229', '00-00-03', 'AVENUE M')
Processing turnstile ('R284', 'R243', '00-00-00', '170 ST')
Processing turnstile ('B021', 'R228', '00-05-02', 'AVENUE J')
Processing turnstile ('H040', 'R376', '00-00-01', 'EAST 105 ST')
Processing turnstile ('R179', 'R193', '01-00-00', '157 ST')
Processing turnstile ('A046', 'R463', '00-00-02', 'CANAL ST')
Processing turnstile ('R508', 'R346', '00-05-01', 'COURT SQ')
Processing turnstile ('S101', 'R070', '00-00-06', 'ST. GEORGE')
Processing turnstile ('R131', 'R190', '00-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10929
Processing turnstile ('E001', 'R368', '00-05-01', '9 AV')
Processing turnstile ('N306', 'R017', '00-00-01', 'LEXINGTON AV/53')
Processing turnstile ('R283', 'R221', '00-00-00', '167 ST')
Processing turnstile ('R201', 'R041', '00-05-01', 'BOWLING GREEN')
Processing turnstile ('N092', 'R029', '03-00-05', 'CHAMBERS ST')
Processing turnstile ('N062A', 'R010', '00-00-02', '42 ST-PORT AUTH')
Processing turnstile ('R245', 'R051', '00-03-03', '59 ST')
Processing turnstile ('N002A', 'R173', '00-05-01', 'INWOOD-207 ST')
Processing turnstile ('N006A', 'R280', '00-00-02', '190 ST')
Processing turnstile ('N325A', 'R218', '00-05-00', 'ELMHURST AV')
Processing turnstile ('R325', 'R388', '00-00-03', 'E 180 ST')
Processing turnstile ('R627', 'R063', '00-00-02', 'SUTTER AV-RUTLD')
Processing turnstile ('E003', 'R369', '00-00-01', 'FT HAMILTON PKY')
Processing turnstile ('N400A', 'R359', '02-00-00', 'COURT SQ')
Processing turnstile ('R246', 'R177', '00-00-05', '68ST-HUNTER CO')
Processing turnstile ('R528', 'R097', '00-00-03', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-02-16: 12515
Processing turnstile ('R417', 'R222', '00-05-01', 'PARKCHESTER')
Processing turnstile ('A006', 'R079', '00-00-04', '5 AV/59 ST')
Processing turnstile ('R245A', 'R051', '01-00-03', '59 ST')
Processing turnstile ('N029', 'R333', '01-00-00', '116 ST')
Processing turnstile ('R528', 'R097', '00-03-01', 'JUNCTION BLVD')
Processing turnstile ('S101A', 'R070', '01-03-02', 'ST. GEORGE')
Processing turnstile ('N506', 'R022', '00-03-04', '34 ST-HERALD SQ')
Processing turnstile ('N301', 'R113', '00-00-00', '7 AV')
Processing turnstile ('N182', 'R414', '00-05-01', 'HOWARD BCH JFK')
Processing turnstile ('R210', 'R044', '00-00-00', 'BROOKLYN BRIDGE')
Processing turnstile ('N301', 'R113', '00-00-03', '7 AV')
Processing turnstile ('R158', 'R084', '00-06-03', '59 ST COLUMBUS')
Processing turnstile ('R249', 'R179', '01-00-06', '86 ST')
Processing turnstile ('N192', 'R336', '00-00-00', 'BEACH 60 ST')
Processing turnstile ('R617', 'R058', '00-00-01', 'BERGEN ST')
Processing turnstile ('C021', 'R212', '00-00-00', '59 ST')
Processing turnstile ('R227', 'R131', '00-05-01', '23 ST')
Processing turnstile ('N607', 'R025', '01-00-04', 'JAMAICA CENTER')
Processing turnstile ('N220', 'R155', '01-00-02', 'KINGSBRIDGE RD')
Processing turnstile ('N002A', 'R173', '00-00-01', 'INWOOD-207 ST')
Processing turnstile ('R188', 'R037', '00-06-01', '207 ST')
Processing turnstile ('N310', 'R140', '01-06-00', 'QUEENS PLAZA')
Processing turnstile ('N501A', 'R020', '02-06-01', '47-50 STS ROCK')
Processing turnstile ('R143', 'R032', '02-03-01', 'TIMES SQ-42 ST')
Processing turnstile ('PTH16', 'R550', '01-01-04', 'LACKAWANNA')
Processing turnstile ('N006A', 'R280', '00-00-01', '190 ST')
Processing turnstile ('N128', 'R200', '00-00-02', 'EUCLID AV')
WARNING. Abnormal entry count found on day 2016-02-01: -2339
WARNING. Abnormal entry count found on day 2016-02-02: -1498
WARNING. Abnormal entry count found on day 2016-02-03: -1612
WARNING. Abnormal entry count found on day 2016-02-04: -1621
WARNING. Abnormal entry count found on day 2016-02-05: -1582
WARNING. Abnormal entry count found on day 2016-02-08: -3232
WARNING. Abnormal entry count found on day 2016-02-09: -1320
WARNING. Abnormal entry count found on day 2016-02-10: -1550
WARNING. Abnormal entry count found on day 2016-02-11: -1514
WARNING. Abnormal entry count found on day 2016-02-16: -5469
WARNING. Abnormal entry count found on day 2016-02-17: -1217
WARNING. Abnormal entry count found on day 2016-02-18: -1323
WARNING. Abnormal entry count found on day 2016-02-19: -1369
WARNING. Abnormal entry count found on day 2016-02-22: -6970
WARNING. Abnormal entry count found on day 2016-02-23: -1692
WARNING. Abnormal entry count found on day 2016-02-24: -1536
WARNING. Abnormal entry count found on day 2016-02-25: -1568
WARNING. Abnormal entry count found on day 2016-02-26: -1543
WARNING. Abnormal entry count found on day 2016-02-29: -3268
Processing turnstile ('N505', 'R022', '02-00-00', '34 ST-HERALD SQ')
Processing turnstile ('R147', 'R033', '04-05-00', 'TIMES SQ-42 ST')
Processing turnstile ('N215', 'R237', '00-00-01', '182-183 STS')
Processing turnstile ('N500', 'R020', '00-05-00', '47-50 STS ROCK')
Processing turnstile ('R237', 'R046', '01-00-03', 'GRD CNTRL-42 ST')
Processing turnstile ('N191', 'R335', '00-00-01', 'BEACH 67 ST')
Processing turnstile ('N504', 'R021', '02-00-01', '42 ST-BRYANT PK')
Processing turnstile ('H027', 'R137', '01-06-01', 'MYRTLE-WYCKOFF')
Processing turnstile ('N535', 'R220', '00-03-00', 'CARROLL ST')
Processing turnstile ('N536', 'R270', '00-00-00', 'SMITH-9 ST')
Processing turnstile ('PTH01', 'R549', '00-00-02', 'NEWARK HW BMEBE')
Processing turnstile ('N306', 'R017', '00-00-02', 'LEXINGTON AV/53')
Processing turnstile ('J035', 'R008', '00-00-01', '111 ST')
Processing turnstile ('N528', 'R257', '01-05-00', 'EAST BROADWAY')
Processing turnstile ('R328', 'R361', '00-00-00', 'PELHAM PKWY')
Processing turnstile ('N013', 'R035', '02-05-01', '168 ST')
Processing turnstile ('J002', 'R460', '00-06-02', 'MARCY AV')
Processing turnstile ('C003', 'R089', '00-03-01', 'JAY ST-METROTEC')
Processing turnstile ('N078', 'R175', '01-03-01', '14 ST')
Processing turnstile ('N604', 'R342', '00-00-01', 'JAMAICA VAN WK')
Processing turnstile ('R529', 'R208', '00-00-00', '103 ST-CORONA')
Processing turnstile ('R287', 'R244', '00-00-01', 'BURNSIDE AV')
Processing turnstile ('R637', 'R451', '00-00-00', 'WINTHROP ST')
Processing turnstile ('PTH19', 'R549', '02-02-02', 'NEWARK C')
Processing turnstile ('E001', 'R368', '00-00-03', '9 AV')
Processing turnstile ('R526', 'R096', '00-00-01', '82 ST-JACKSON H')
Processing turnstile ('N324', 'R018', '00-06-00', 'JKSN HT-ROOSVLT')
Processing turnstile ('R534', 'R055', '01-03-03', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-16: 11985
Processing turnstile ('N191', 'R335', '00-05-01', 'BEACH 67 ST')
Processing turnstile ('N072', 'R012', '05-03-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 10836
Processing turnstile ('N545', 'R204', '01-06-01', 'CHURCH AV')
Processing turnstile ('R532H', 'R328', '02-00-02', 'METS-WILLETS PT')
Processing turnstile ('R241A', 'R048', '00-00-02', 'GRD CNTRL-42 ST')
Processing turnstile ('N110', 'R283', '00-05-00', 'LAFAYETTE AV')
Processing turnstile ('R177', 'R273', '01-00-01', '145 ST')
Processing turnstile ('C012', 'R258', '01-03-03', '4AV-9 ST')
Processing turnstile ('R308', 'R344', '00-00-01', '145 ST')
Processing turnstile ('R524', 'R347', '00-05-01', '69 ST')
Processing turnstile ('N500', 'R020', '00-03-05', '47-50 STS ROCK')
Processing turnstile ('N212', 'R253', '01-00-02', '174-175 STS')
Processing turnstile ('R221', 'R170', '01-03-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 12873
Processing turnstile ('N501', 'R020', '01-03-01', '47-50 STS ROCK')
Processing turnstile ('R236', 'R045', '00-00-01', 'GRD CNTRL-42 ST')
Processing turnstile ('N338B', 'R128', '00-06-00', 'SUTPHIN BLVD')
Processing turnstile ('R170', 'R191', '00-00-02', '103 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10084
Processing turnstile ('N503', 'R021', '00-00-05', '42 ST-BRYANT PK')
Processing turnstile ('N139', 'R355', '00-00-02', '111 ST')
Processing turnstile ('R151', 'R033', '00-00-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 12193
WARNING. Abnormal entry count found on day 2016-02-16: 22981
Processing turnstile ('PTH17', 'R541', '01-00-03', 'THIRTY THIRD ST')
Processing turnstile ('A007', 'R079', '01-06-02', '5 AV/59 ST')
Processing turnstile ('PTH16', 'R550', '01-01-06', 'LACKAWANNA')
Processing turnstile ('B018', 'R184', '00-00-00', 'CORTELYOU RD')
Processing turnstile ('N012', 'R035', '01-06-00', '168 ST')
Processing turnstile ('PTH18', 'R549', '01-01-03', 'NEWARK BM BW')
Processing turnstile ('N051', 'R084', '02-00-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-02-16: 16129
Processing turnstile ('R228', 'R143', '00-00-00', '28 ST')
Processing turnstile ('R133', 'R272', '00-00-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12093
Processing turnstile ('R532', 'R328', '00-00-01', 'METS-WILLETS PT')
Processing turnstile ('R112', 'R027', '02-00-04', 'WALL ST')
Processing turnstile ('N012', 'R035', '01-05-00', '168 ST')
Processing turnstile ('N422', 'R318', '00-00-01', 'FULTON ST')
Processing turnstile ('N601', 'R319', '00-00-01', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-02-01: -601
WARNING. Abnormal entry count found on day 2016-02-02: -2649
WARNING. Abnormal entry count found on day 2016-02-03: -2534
WARNING. Abnormal entry count found on day 2016-02-04: -2375
WARNING. Abnormal entry count found on day 2016-02-05: -2652
WARNING. Abnormal entry count found on day 2016-02-08: -4804
WARNING. Abnormal entry count found on day 2016-02-09: -2143
WARNING. Abnormal entry count found on day 2016-02-10: -2308
WARNING. Abnormal entry count found on day 2016-02-11: -2405
WARNING. Abnormal entry count found on day 2016-02-16: -6618
WARNING. Abnormal entry count found on day 2016-02-17: -2199
WARNING. Abnormal entry count found on day 2016-02-18: -2293
WARNING. Abnormal entry count found on day 2016-02-19: -2375
WARNING. Abnormal entry count found on day 2016-02-22: -2742
WARNING. Abnormal entry count found on day 2016-02-23: -2244
WARNING. Abnormal entry count found on day 2016-02-24: -2151
WARNING. Abnormal entry count found on day 2016-02-25: -2072
WARNING. Abnormal entry count found on day 2016-02-26: -2463
WARNING. Abnormal entry count found on day 2016-02-29: -4507
Processing turnstile ('N221', 'R155', '00-00-04', 'KINGSBRIDGE RD')
Processing turnstile ('N111', 'R284', '00-06-00', 'CLINTON-WASH AV')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('J003', 'R352', '00-00-00', 'HEWES ST')
Processing turnstile ('K022', 'R402', '00-03-01', 'SENECA AVE')
Processing turnstile ('R180', 'R193', '00-00-01', '157 ST')
Processing turnstile ('N025', 'R102', '01-00-04', '125 ST')
Processing turnstile ('N135', 'R385', '01-05-00', 'ROCKAWAY BLVD')
Processing turnstile ('R165', 'R167', '01-00-04', '86 ST')
Processing turnstile ('N010', 'R126', '00-00-02', '175 ST')
Processing turnstile ('B024', 'R211', '00-00-01', 'KINGS HWY')
Processing turnstile ('R527', 'R122', '00-05-00', '90 ST-ELMHURST')
Processing turnstile ('R622', 'R123', '00-00-01', 'FRANKLIN AV')
Processing turnstile ('R226A', 'R131', '03-05-01', '23 ST')
Processing turnstile ('R116', 'R030', '00-06-03', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13351
Processing turnstile ('N049', 'R084', '01-00-00', '59 ST COLUMBUS')
Processing turnstile ('C003', 'R089', '00-00-00', 'JAY ST-METROTEC')
Processing turnstile ('R609', 'R056', '01-03-00', 'NEVINS ST')
Processing turnstile ('A043', 'R462', '00-00-00', 'CANAL ST')
Processing turnstile ('R124', 'R290', '03-00-02', 'HOUSTON ST')
Processing turnstile ('R619', 'R059', '00-03-01', 'GRAND ARMY PLAZ')
Processing turnstile ('N095A', 'R014', '01-00-04', 'FULTON ST')
Processing turnstile ('N128', 'R200', '00-00-05', 'EUCLID AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10462
Processing turnstile ('R422', 'R428', '00-00-01', 'BUHRE AV')
Processing turnstile ('R639', 'R109', '00-05-01', 'CHURCH AV')
Processing turnstile ('PTH04', 'R551', '00-01-04', 'GROVE STREET')
Processing turnstile ('N335', 'R158', '01-06-03', 'KEW GARDENS')
Processing turnstile ('R169', 'R168', '01-00-00', '96 ST')
Processing turnstile ('R154', 'R116', '00-03-01', '50 ST')
Processing turnstile ('R170', 'R191', '00-03-02', '103 ST')
Processing turnstile ('B025', 'R150', '00-00-02', 'AVENUE U')
Processing turnstile ('E003', 'R369', '00-00-02', 'FT HAMILTON PKY')
Processing turnstile ('N196', 'R285', '00-05-01', 'FAR ROCKAWAY')
Processing turnstile ('A046', 'R463', '00-00-03', 'CANAL ST')
Processing turnstile ('PTH02', 'R544', '00-04-03', 'HARRISON')
Processing turnstile ('E014', 'R374', '00-00-01', 'BAY PKWY')
Processing turnstile ('R169', 'R168', '01-00-01', '96 ST')
Processing turnstile ('B009', 'R411', '00-00-01', 'PARK PLACE')
Processing turnstile ('A027', 'R082', '01-00-00', '28 ST')
Processing turnstile ('N529', 'R257', '00-00-00', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-02-16: 10761
Processing turnstile ('N090', 'R139', '01-06-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-02-04: -83567833
Processing turnstile ('JFK03', 'R536', '00-00-03', 'JFK JAMAICA CT1')
Processing turnstile ('N539A', 'R288', '00-00-04', '7 AV')
Processing turnstile ('PTH17', 'R541', '01-00-04', 'THIRTY THIRD ST')
Processing turnstile ('B015', 'R098', '01-03-00', 'CHURCH AV')
Processing turnstile ('R293', 'R133', '00-00-05', 'MOSHOLU PKWY')
Processing turnstile ('PTH02', 'R544', '00-04-05', 'HARRISON')
Processing turnstile ('N502', 'R021', '01-00-03', '42 ST-BRYANT PK')
Processing turnstile ('R423', 'R429', '00-03-01', 'PELHAM BAY PARK')
Processing turnstile ('R419', 'R326', '00-05-00', 'ZEREGA AV')
Processing turnstile ('A081', 'R028', '04-00-02', 'FULTON ST')
Processing turnstile ('N340', 'R115', '00-00-04', '169 ST')
Processing turnstile ('B026', 'R230', '00-00-00', 'NECK RD')
Processing turnstile ('R116', 'R030', '00-05-02', 'CHAMBERS ST')
Processing turnstile ('A084', 'R125', '01-06-02', 'BROAD ST')
Processing turnstile ('E016', 'R400', '00-00-02', 'BAY 50 ST')
Processing turnstile ('A021', 'R032', '01-00-05', 'TIMES SQ-42 ST')
Processing turnstile ('R244', 'R050', '00-06-00', '59 ST')
Processing turnstile ('R258', 'R132', '00-06-00', '125 ST')
Processing turnstile ('N034', 'R334', '01-00-00', 'CATHEDRAL PKWY')
Processing turnstile ('N306', 'R017', '00-03-03', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-02-16: 11739
Processing turnstile ('R604', 'R108', '03-00-05', 'BOROUGH HALL')
Processing turnstile ('R242A', 'R049', '02-03-01', '51 ST')
Processing turnstile ('R420', 'R107', '00-00-00', 'WESTCHESTER SQ')
Processing turnstile ('N539A', 'R288', '00-05-01', '7 AV')
Processing turnstile ('C015', 'R454', '00-00-02', 'PROSPECT AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R627', 'R063', '00-00-01', 'SUTTER AV-RUTLD')
Processing turnstile ('R529', 'R208', '00-05-01', '103 ST-CORONA')
Processing turnstile ('R102', 'R304', '01-03-02', 'RECTOR ST')
Processing turnstile ('A002', 'R051', '02-06-00', '59 ST')
Processing turnstile ('R628', 'R064', '00-00-01', 'SARATOGA AV')
Processing turnstile ('N342', 'R019', '01-03-04', 'JAMAICA 179 ST')
Processing turnstile ('PTH04', 'R551', '00-00-05', 'GROVE STREET')
Processing turnstile ('PTH17', 'R541', '01-00-02', 'THIRTY THIRD ST')
Processing turnstile ('N220', 'R155', '01-06-00', 'KINGSBRIDGE RD')
Processing turnstile ('S101', 'R070', '00-00-04', 'ST. GEORGE')
Processing turnstile ('N044', 'R187', '00-00-00', '81 ST-MUSEUM')
Processing turnstile ('N203', 'R195', '00-03-05', '161/YANKEE STAD')
Processing turnstile ('R112', 'R027', '02-00-03', 'WALL ST')
Processing turnstile ('N519A', 'R461', '01-00-01', "B'WAY-LAFAYETTE")
Processing turnstile ('R526', 'R096', '00-03-02', '82 ST-JACKSON H')
Processing turnstile ('N542', 'R241', '00-06-00', '15 ST-PROSPECT')
Processing turnstile ('JFK03', 'R536', '00-00-01', 'JFK JAMAICA CT1')
Processing turnstile ('A037', 'R170', '05-00-03', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 10437
WARNING. Abnormal entry count found on day 2016-02-16: 19132
WARNING. Abnormal entry count found on day 2016-02-22: 10770
WARNING. Abnormal entry count found on day 2016-02-29: 10576
Processing turnstile ('N137', 'R354', '00-00-01', '104 ST')
Processing turnstile ('R509', 'R121', '00-00-05', 'QUEENSBORO PLZ')
Processing turnstile ('PTH18', 'R549', '01-00-08', 'NEWARK BM BW')
Processing turnstile ('R625', 'R062', '01-00-03', 'CROWN HTS-UTICA')
Processing turnstile ('R245A', 'R051', '01-06-01', '59 ST')
Processing turnstile ('N318', 'R298', '00-00-00', 'NORTHERN BLVD')
Processing turnstile ('C008', 'R099', '00-00-00', 'DEKALB AV')
Processing turnstile ('R227A', 'R131', '01-00-00', '23 ST')
Processing turnstile ('R647', 'R110', '02-05-02', 'FLATBUSH AV-B.C')
Processing turnstile ('C028', 'R216', '01-06-01', 'BAY RIDGE AV')
Processing turnstile ('R203', 'R043', '00-03-00', 'WALL ST')
Processing turnstile ('TRAM2', 'R469', '00-05-01', 'RIT-ROOSEVELT')
Processing turnstile ('B017', 'R262', '00-00-00', 'BEVERLEY ROAD')
Processing turnstile ('A030', 'R083', '01-03-01', '23 ST')
Processing turnstile ('C019', 'R232', '00-00-00', '45 ST')
Processing turnstile ('C020', 'R233', '00-00-02', '53 ST')
Processing turnstile ('N419', 'R287', '00-00-01', 'CLASSON AV')
Processing turnstile ('R291', 'R183', '00-00-03', 'BEDFORD PK BLVD')
Processing turnstile ('PTH01', 'R549', '00-00-06', 'NEWARK HW BMEBE')
Processing turnstile ('N519A', 'R461', '01-01-02', "B'WAY-LAFAYETTE")
Processing turnstile ('R533', 'R055', '00-03-07', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-16: 14221
Processing turnstile ('R203', 'R043', '00-05-03', 'WALL ST')
Processing turnstile ('R133', 'R272', '00-00-02', '28 ST')
Processing turnstile ('A034', 'R170', '03-00-01', '14 ST-UNION SQ')
Processing turnstile ('N333A', 'R141', '00-00-04', 'FOREST HILLS 71')
Processing turnstile ('N600', 'R302', '00-06-03', '57 ST')
Processing turnstile ('N067', 'R012', '00-05-00', '34 ST-PENN STA')
Processing turnstile ('R221', 'R170', '01-03-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 11180
Processing turnstile ('R165', 'R167', '01-00-00', '86 ST')
Processing turnstile ('N605', 'R024', '00-00-03', 'SUTPHIN-ARCHER')
Processing turnstile ('H007', 'R248', '00-03-02', '1 AV')
Processing turnstile ('R143', 'R032', '02-00-00', 'TIMES SQ-42 ST')
Processing turnstile ('N306', 'R017', '00-06-00', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-02-16: 10334
Processing turnstile ('N545', 'R204', '01-05-00', 'CHURCH AV')
Processing turnstile ('R151', 'R033', '00-00-07', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10794
Processing turnstile ('N523', 'R300', '00-00-00', '2 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10202
Processing turnstile ('N304', 'R015', '01-03-00', '5 AV/53 ST')
Processing turnstile ('R101', 'R001', '02-00-08', 'SOUTH FERRY')
Processing turnstile ('R161B', 'R452', '00-00-02', '72 ST')
Processing turnstile ('R532H', 'R328', '02-03-01', 'METS-WILLETS PT')
Processing turnstile ('R532', 'R328', '00-05-00', 'METS-WILLETS PT')
Processing turnstile ('N606', 'R025', '00-00-03', 'JAMAICA CENTER')
Processing turnstile ('R200A', 'R041', '01-00-06', 'BOWLING GREEN')
Processing turnstile ('N091', 'R029', '02-06-01', 'CHAMBERS ST')
Processing turnstile ('R325', 'R388', '00-05-00', 'E 180 ST')
Processing turnstile ('R141', 'R031', '00-06-00', '34 ST-PENN STA')
Processing turnstile ('A054', 'R227', '01-00-01', 'RECTOR ST')
Processing turnstile ('R256', 'R182', '00-00-00', '116 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13967
Processing turnstile ('N601', 'R319', '00-00-04', 'LEXINGTON AV/63')
Processing turnstile ('R525', 'R018', '02-00-02', '74 ST-BROADWAY')
Processing turnstile ('A046', 'R463', '00-00-00', 'CANAL ST')
Processing turnstile ('K026', 'R100', '00-00-03', 'METROPOLITAN AV')
Processing turnstile ('A043', 'R462', '00-03-02', 'CANAL ST')
Processing turnstile ('N094', 'R029', '01-00-02', 'WORLD TRADE CTR')
Processing turnstile ('PTH02', 'R544', '00-04-02', 'HARRISON')
Processing turnstile ('N414A', 'R316', '01-06-01', 'FLUSHING AV')
Processing turnstile ('A010', 'R080', '00-00-05', '57 ST-7 AV')
Processing turnstile ('R112', 'R027', '02-00-00', 'WALL ST')
Processing turnstile ('H014', 'R249', '00-00-02', 'GRAHAM AV')
Processing turnstile ('PTH03', 'R552', '00-00-06', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-02-22: -1133617
Processing turnstile ('N554', 'R423', '01-04-01', 'AVENUE N')
Processing turnstile ('J002', 'R460', '00-06-01', 'MARCY AV')
Processing turnstile ('R226', 'R131', '02-05-01', '23 ST')
Processing turnstile ('N023', 'R332', '01-00-01', '135 ST')
Processing turnstile ('R331', 'R364', '00-00-02', 'GUN HILL RD')
Processing turnstile ('R238', 'R046', '00-00-05', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13049
Processing turnstile ('R121', 'R290', '01-03-00', 'HOUSTON ST')
Processing turnstile ('A083', 'R125', '00-00-01', 'BROAD ST')
Processing turnstile ('R518', 'R261', '00-00-02', '40 ST LOWERY ST')
Processing turnstile ('R622', 'R123', '00-00-06', 'FRANKLIN AV')
Processing turnstile ('N337', 'R255', '00-00-03', 'BRIARWOOD')
WARNING. Abnormal entry count found on day 2016-02-22: 9649605
Processing turnstile ('R645', 'R110', '00-06-01', 'FLATBUSH AV-B.C')
Processing turnstile ('PTH18', 'R549', '01-00-05', 'NEWARK BM BW')
Processing turnstile ('N409', 'R268', '00-00-00', 'METROPOLITAN AV')
Processing turnstile ('R517', 'R291', '01-05-01', '33 ST-RAWSON ST')
Processing turnstile ('R610', 'R057', '00-03-03', 'ATL AV-BARCLAY')
Processing turnstile ('N507', 'R023', '00-03-05', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 15531
Processing turnstile ('B009', 'R411', '00-05-00', 'PARK PLACE')
Processing turnstile ('R202', 'R042', '00-06-00', 'BOWLING GREEN')
Processing turnstile ('N225', 'R157', '01-00-02', 'NORWOOD 205 ST')
Processing turnstile ('R246', 'R177', '00-03-03', '68ST-HUNTER CO')
Processing turnstile ('R158', 'R084', '00-05-02', '59 ST COLUMBUS')
Processing turnstile ('R630', 'R066', '00-00-00', 'JUNIUS ST')
Processing turnstile ('R161B', 'R452', '00-05-03', '72 ST')
Processing turnstile ('K017', 'R401', '00-03-01', 'CENTRAL AV')
Processing turnstile ('H030', 'R266', '01-00-00', 'HALSEY ST')
Processing turnstile ('R508', 'R346', '00-00-00', 'COURT SQ')
Processing turnstile ('R243', 'R049', '00-00-00', '51 ST')
Processing turnstile ('R205A', 'R014', '04-03-00', 'FULTON ST')
Processing turnstile ('R201', 'R041', '00-00-00', 'BOWLING GREEN')
Processing turnstile ('A014', 'R081', '02-06-00', '49 ST')
Processing turnstile ('N067', 'R012', '00-03-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 10249
Processing turnstile ('R158', 'R084', '00-00-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-02-05: -503660541
Processing turnstile ('N510', 'R163', '02-00-00', '14 ST')
Processing turnstile ('N091', 'R029', '02-00-03', 'CHAMBERS ST')
Processing turnstile ('N417', 'R269', '00-00-00', 'BEDFORD-NOSTRAN')
Processing turnstile ('R506', 'R276', '02-05-01', 'VERNON-JACKSON')
Processing turnstile ('PTH05', 'R543', '00-01-05', 'EXCHANGE PLACE')
Processing turnstile ('N089', 'R139', '00-04-01', 'CANAL ST')
Processing turnstile ('N072', 'R012', '05-00-00', '34 ST-PENN STA')
Processing turnstile ('N076', 'R111', '00-06-01', '23 ST')
Processing turnstile ('N007A', 'R174', '00-00-00', '181 ST')
Processing turnstile ('B023', 'R211', '01-05-00', 'KINGS HWY')
Processing turnstile ('R238', 'R046', '00-03-04', 'GRD CNTRL-42 ST')
Processing turnstile ('N120', 'R153', '00-00-03', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-02-08: 10094
WARNING. Abnormal entry count found on day 2016-02-16: 16045
WARNING. Abnormal entry count found on day 2016-02-22: 10252
WARNING. Abnormal entry count found on day 2016-02-29: 10233
Processing turnstile ('R550', 'R072', '00-03-06', '34 ST-HUDSON YD')
Processing turnstile ('N091', 'R029', '02-05-01', 'CHAMBERS ST')
Processing turnstile ('J007', 'R377', '00-00-02', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10884
Processing turnstile ('R248', 'R178', '00-00-06', '77 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12206
Processing turnstile ('N340A', 'R115', '01-00-01', '169 ST')
Processing turnstile ('N024', 'R332', '00-00-00', '135 ST')
Processing turnstile ('PTH18', 'R549', '01-00-03', 'NEWARK BM BW')
Processing turnstile ('R623', 'R061', '00-00-00', 'NOSTRAND AV')
Processing turnstile ('R186', 'R036', '00-05-00', 'DYCKMAN ST')
Processing turnstile ('R258', 'R132', '00-00-00', '125 ST')
Processing turnstile ('R142', 'R293', '01-00-01', '34 ST-PENN STA')
Processing turnstile ('TRAM2', 'R469', '00-05-00', 'RIT-ROOSEVELT')
Processing turnstile ('A039', 'R085', '01-00-00', '8 ST-NYU')
Processing turnstile ('N103', 'R127', '00-00-07', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-02-22: -3242602
Processing turnstile ('N605', 'R024', '00-00-00', 'SUTPHIN-ARCHER')
Processing turnstile ('H008', 'R248', '01-00-00', '1 AV')
WARNING. Abnormal entry count found on day 2016-02-22: 150441926
Processing turnstile ('A011', 'R080', '01-00-02', '57 ST-7 AV')
Processing turnstile ('R111', 'R027', '00-03-00', 'WALL ST')
Processing turnstile ('R550', 'R072', '00-03-07', '34 ST-HUDSON YD')
Processing turnstile ('R311', 'R053', '00-05-00', '3 AV-149 ST')
Processing turnstile ('N122', 'R439', '00-00-00', 'ROCKAWAY AV')
Processing turnstile ('R507', 'R134', '00-00-02', 'HUNTERS PT AV')
Processing turnstile ('R242', 'R049', '01-03-00', '51 ST')
Processing turnstile ('PTH13', 'R541', '00-04-03', 'THIRTY ST')
Processing turnstile ('N095A', 'R014', '01-05-01', 'FULTON ST')
Processing turnstile ('R128', 'R105', '01-06-00', '14 ST')
Processing turnstile ('N607', 'R025', '01-06-02', 'JAMAICA CENTER')
Processing turnstile ('N078', 'R175', '01-06-01', '14 ST')
Processing turnstile ('N006A', 'R280', '00-00-00', '190 ST')
Processing turnstile ('R306', 'R207', '00-05-00', '135 ST')
Processing turnstile ('N063A', 'R011', '00-00-02', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-16: 16371
Processing turnstile ('R515', 'R095', '00-00-03', 'ASTORIA DITMARS')
Processing turnstile ('R180', 'R193', '00-00-04', '157 ST')
Processing turnstile ('N342', 'R019', '01-03-02', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -160
WARNING. Abnormal entry count found on day 2016-02-02: -392
WARNING. Abnormal entry count found on day 2016-02-03: -444
WARNING. Abnormal entry count found on day 2016-02-04: -403
WARNING. Abnormal entry count found on day 2016-02-05: -447
WARNING. Abnormal entry count found on day 2016-02-08: -805
WARNING. Abnormal entry count found on day 2016-02-09: -378
WARNING. Abnormal entry count found on day 2016-02-10: -412
WARNING. Abnormal entry count found on day 2016-02-11: -451
WARNING. Abnormal entry count found on day 2016-02-16: -1540
WARNING. Abnormal entry count found on day 2016-02-17: -379
WARNING. Abnormal entry count found on day 2016-02-18: -414
WARNING. Abnormal entry count found on day 2016-02-19: -431
WARNING. Abnormal entry count found on day 2016-02-22: -796
WARNING. Abnormal entry count found on day 2016-02-23: -395
WARNING. Abnormal entry count found on day 2016-02-24: -409
WARNING. Abnormal entry count found on day 2016-02-25: -412
WARNING. Abnormal entry count found on day 2016-02-26: -479
WARNING. Abnormal entry count found on day 2016-02-29: -768
Processing turnstile ('PTH10', 'R547', '00-00-02', '9TH STREET')
Processing turnstile ('S101', 'R070', '00-00-01', 'ST. GEORGE')
Processing turnstile ('PTH12', 'R542', '00-00-01', 'TWENTY THIRD ST')
Processing turnstile ('R643', 'R135', '00-00-02', 'NEWKIRK AV')
Processing turnstile ('R119', 'R320', '00-00-02', 'CANAL ST')
Processing turnstile ('C009', 'R057', '03-00-02', 'ATL AV-BARCLAY')
Processing turnstile ('A010', 'R080', '00-00-01', '57 ST-7 AV')
Processing turnstile ('R249', 'R179', '01-00-08', '86 ST')
Processing turnstile ('N012', 'R035', '01-06-03', '168 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11240
Processing turnstile ('N342', 'R019', '01-00-00', 'JAMAICA 179 ST')
Processing turnstile ('R518', 'R261', '00-00-00', '40 ST LOWERY ST')
Processing turnstile ('R203', 'R043', '00-00-00', 'WALL ST')
Processing turnstile ('B031', 'R172', '01-00-00', 'BRIGHTON BEACH')
Processing turnstile ('A042', 'R086', '01-00-00', 'PRINCE ST')
Processing turnstile ('N034', 'R334', '01-00-02', 'CATHEDRAL PKWY')
Processing turnstile ('R641', 'R210', '00-06-00', 'BEVERLY RD')
Processing turnstile ('R229', 'R143', '01-00-00', '28 ST')
Processing turnstile ('R112', 'R027', '02-00-01', 'WALL ST')
Processing turnstile ('J012', 'R379', '00-00-01', 'KOSCIUSZKO ST')
Processing turnstile ('H009', 'R235', '00-06-01', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-02-10: 218071266
WARNING. Abnormal entry count found on day 2016-02-17: -251790400
Processing turnstile ('N500', 'R020', '00-03-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-02-16: 11217
Processing turnstile ('R602', 'R108', '00-03-01', 'BOROUGH HALL')
Processing turnstile ('R120', 'R320', '01-00-00', 'CANAL ST')
Processing turnstile ('R232A', 'R176', '03-05-00', '33 ST')
Processing turnstile ('R612', 'R057', '01-00-03', 'ATL AV-BARCLAY')
Processing turnstile ('R335', 'R444', '00-00-01', 'NEREID AV')
WARNING. Abnormal entry count found on day 2016-02-19: -3091587
Processing turnstile ('R406', 'R448', '00-00-00', "E 143/ST MARY'S")
Processing turnstile ('K025', 'R404', '00-00-03', 'FRESH POND RD')
Processing turnstile ('N506', 'R022', '00-00-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 11143
Processing turnstile ('R170', 'R191', '00-00-04', '103 ST')
Processing turnstile ('N120A', 'R153', '01-00-01', 'UTICA AV')
Processing turnstile ('R728', 'R226', '00-00-00', 'GUN HILL RD')
Processing turnstile ('R413', 'R325', '00-00-00', 'WHITLOCK AV')
Processing turnstile ('J001', 'R460', '01-00-00', 'MARCY AV')
Processing turnstile ('H006', 'R330', '01-00-02', '3 AV')
Processing turnstile ('N335', 'R158', '01-00-03', 'KEW GARDENS')
Processing turnstile ('PTH05', 'R543', '00-04-00', 'EXCHANGE PLACE')
Processing turnstile ('N019', 'R101', '01-00-02', '145 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11327
WARNING. Abnormal entry count found on day 2016-02-29: 19643
Processing turnstile ('N317', 'R267', '02-00-00', '46 ST')
Processing turnstile ('A033', 'R170', '02-00-00', '14 ST-UNION SQ')
Processing turnstile ('R422', 'R428', '00-05-01', 'BUHRE AV')
Processing turnstile ('N072', 'R012', '05-00-02', '34 ST-PENN STA')
Processing turnstile ('D016', 'R397', '00-00-01', '86 ST')
Processing turnstile ('R210', 'R044', '00-03-02', 'BROOKLYN BRIDGE')
Processing turnstile ('N078', 'R175', '01-00-02', '14 ST')
Processing turnstile ('N316', 'R267', '00-00-01', '46 ST')
Processing turnstile ('R306', 'R207', '00-00-02', '135 ST')
WARNING. Abnormal entry count found on day 2016-02-29: 16361
Processing turnstile ('R132', 'R190', '01-00-01', '23 ST')
Processing turnstile ('J037', 'R009', '00-00-02', '121 ST')
Processing turnstile ('JFK02', 'R535', '01-00-03', 'HOWARD BCH JFK')
Processing turnstile ('R310', 'R053', '01-03-01', '3 AV-149 ST')
Processing turnstile ('R227', 'R131', '00-00-03', '23 ST')
Processing turnstile ('R601A', 'R108', '02-00-02', 'BOROUGH HALL')
Processing turnstile ('A050', 'R088', '00-03-00', 'CORTLANDT ST')
Processing turnstile ('N103', 'R127', '00-02-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-02-16: 65900227
Processing turnstile ('N060', 'R010', '01-05-00', '42 ST-PORT AUTH')
Processing turnstile ('R168A', 'R168', '00-00-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-22: 10107
Processing turnstile ('A047', 'R087', '00-00-02', 'CITY HALL')
Processing turnstile ('C024', 'R214', '00-00-00', '77 ST')
Processing turnstile ('A021', 'R032', '01-00-04', 'TIMES SQ-42 ST')
Processing turnstile ('R639', 'R109', '00-05-03', 'CHURCH AV')
Processing turnstile ('H019', 'R294', '00-06-02', 'MORGAN AV')
Processing turnstile ('C026', 'R215', '01-05-01', '86 ST')
Processing turnstile ('A031', 'R083', '00-03-01', '23 ST')
Processing turnstile ('N342', 'R019', '01-00-02', 'JAMAICA 179 ST')
Processing turnstile ('PTH06', 'R546', '00-00-05', 'PAVONIA/NEWPORT')
Processing turnstile ('N026', 'R102', '00-00-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12863
WARNING. Abnormal entry count found on day 2016-02-22: 10863
WARNING. Abnormal entry count found on day 2016-02-29: 10170
Processing turnstile ('N037', 'R314', '00-00-02', '103 ST')
Processing turnstile ('R249', 'R179', '01-00-03', '86 ST')
Processing turnstile ('N324', 'R018', '00-00-03', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-16: 12737
Processing turnstile ('N555', 'R423', '00-00-00', 'AVENUE N')
Processing turnstile ('R510', 'R090', '00-00-00', '39 AV')
Processing turnstile ('H001', 'R175', '00-00-04', '8 AV')
Processing turnstile ('R232A', 'R176', '03-06-00', '33 ST')
Processing turnstile ('R612', 'R057', '01-00-01', 'ATL AV-BARCLAY')
Processing turnstile ('J020', 'R433', '00-00-01', 'ALABAMA AV')
Processing turnstile ('R514', 'R094', '00-03-00', 'ASTORIA BLVD')
Processing turnstile ('R236', 'R045', '00-03-02', 'GRD CNTRL-42 ST')
Processing turnstile ('N083', 'R138', '01-03-00', 'W 4 ST-WASH SQ')
Processing turnstile ('N089', 'R139', '00-06-02', 'CANAL ST')
Processing turnstile ('N338B', 'R128', '00-00-04', 'SUTPHIN BLVD')
Processing turnstile ('H033', 'R313', '00-00-02', 'BUSHWICK AV')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('A041', 'R086', '00-00-00', 'PRINCE ST')
Processing turnstile ('N550', 'R242', '01-05-00', '18 AV')
Processing turnstile ('N333B', 'R141', '02-01-03', 'FOREST HILLS 71')
Processing turnstile ('R227A', 'R131', '01-00-01', '23 ST')
Processing turnstile ('H028', 'R266', '00-06-00', 'HALSEY ST')
Processing turnstile ('H038', 'R350', '00-06-01', 'LIVONIA AV')
Processing turnstile ('R329', 'R362', '00-00-01', 'ALLERTON AV')
Processing turnstile ('R530', 'R310', '00-00-01', '111 ST')
Processing turnstile ('N422', 'R318', '00-05-00', 'FULTON ST')
Processing turnstile ('PTH11', 'R545', '00-04-04', '14TH STREET')
Processing turnstile ('R523', 'R147', '00-00-04', '61 ST WOODSIDE')
Processing turnstile ('A049', 'R088', '02-00-03', 'CORTLANDT ST')
Processing turnstile ('N206', 'R104', '01-05-00', '167 ST')
Processing turnstile ('PTH08', 'R540', '00-00-01', 'PATH WTC')
WARNING. Abnormal entry count found on day 2016-02-11: -34456
Processing turnstile ('N329', 'R201', '00-03-04', 'WOODHAVEN BLVD')
Processing turnstile ('S102', 'R165', '00-03-02', 'TOMPKINSVILLE')
Processing turnstile ('R261', 'R205', '00-00-01', '149/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-02-16: 13598
Processing turnstile ('A077', 'R028', '03-00-00', 'FULTON ST')
Processing turnstile ('N091', 'R029', '02-05-02', 'CHAMBERS ST')
Processing turnstile ('N131', 'R383', '00-00-01', '80 ST')
Processing turnstile ('R321', 'R386', '01-00-02', '174 ST')
Processing turnstile ('R417', 'R222', '00-00-00', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-02-16: 15366
WARNING. Abnormal entry count found on day 2016-02-22: 10183
WARNING. Abnormal entry count found on day 2016-02-29: 10247
Processing turnstile ('R330', 'R363', '00-00-02', 'BURKE AV')
Processing turnstile ('N112A', 'R284', '01-00-01', 'CLINTON-WASH AV')
Processing turnstile ('N220', 'R155', '01-00-03', 'KINGSBRIDGE RD')
Processing turnstile ('A071', 'R044', '02-00-02', 'CHAMBERS ST')
Processing turnstile ('N217', 'R112', '00-00-02', 'FORDHAM RD')
Processing turnstile ('N316A', 'R267', '01-06-00', '46 ST')
Processing turnstile ('N329A', 'R201', '01-06-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-02-16: 11850
Processing turnstile ('R421', 'R427', '00-03-01', 'MIDDLETOWN RD')
Processing turnstile ('R248', 'R178', '00-00-00', '77 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11943
Processing turnstile ('R121', 'R290', '01-06-01', 'HOUSTON ST')
Processing turnstile ('R121', 'R290', '01-05-00', 'HOUSTON ST')
Processing turnstile ('R634', 'R069', '00-00-03', 'NEW LOTS AV')
Processing turnstile ('N094', 'R029', '01-00-03', 'WORLD TRADE CTR')
Processing turnstile ('N043', 'R186', '00-00-01', '86 ST')
Processing turnstile ('N209', 'R443', '00-00-02', '170 ST')
Processing turnstile ('D008', 'R392', '00-00-01', '18 AV')
Processing turnstile ('R520', 'R223', '01-06-00', '46 ST BLISS ST')
Processing turnstile ('N098', 'R028', '00-00-02', 'FULTON ST')
Processing turnstile ('R141', 'R031', '00-03-03', '34 ST-PENN STA')
Processing turnstile ('A006', 'R079', '00-03-02', '5 AV/59 ST')
Processing turnstile ('B020', 'R263', '00-06-04', 'AVENUE H')
Processing turnstile ('R164', 'R167', '00-03-02', '86 ST')
Processing turnstile ('N010', 'R126', '00-03-02', '175 ST')
Processing turnstile ('R332', 'R365', '00-00-02', '219 ST')
Processing turnstile ('R221', 'R170', '01-06-03', '14 ST-UNION SQ')
Processing turnstile ('N067', 'R012', '00-03-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 15348
Processing turnstile ('N010', 'R126', '00-05-01', '175 ST')
Processing turnstile ('B026', 'R230', '00-05-00', 'NECK RD')
Processing turnstile ('R523', 'R147', '00-00-00', '61 ST WOODSIDE')
Processing turnstile ('N092', 'R029', '03-06-01', 'CHAMBERS ST')
Processing turnstile ('N029', 'R333', '01-00-01', '116 ST')
Processing turnstile ('R625', 'R062', '01-06-02', 'CROWN HTS-UTICA')
Processing turnstile ('JFK03', 'R536', '00-03-03', 'JFK JAMAICA CT1')
Processing turnstile ('R161B', 'R452', '00-03-00', '72 ST')
Processing turnstile ('N072', 'R012', '05-03-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 12091
Processing turnstile ('R532', 'R328', '00-00-00', 'METS-WILLETS PT')
Processing turnstile ('R730', 'R431', '00-00-01', 'EASTCHSTER/DYRE')
Processing turnstile ('R532', 'R328', '00-00-03', 'METS-WILLETS PT')
Processing turnstile ('R323', 'R387', '00-06-01', 'WEST FARMS SQ')
Processing turnstile ('D015', 'R396', '00-00-01', 'AVENUE U')
Processing turnstile ('R518', 'R261', '00-03-01', '40 ST LOWERY ST')
Processing turnstile ('H041', 'R152', '00-00-00', 'CANARSIE-ROCKAW')
Processing turnstile ('R637', 'R451', '00-00-02', 'WINTHROP ST')
Processing turnstile ('H028', 'R266', '00-00-01', 'HALSEY ST')
Processing turnstile ('N307', 'R359', '00-00-03', 'COURT SQ-23 ST')
Processing turnstile ('N103', 'R127', '00-00-00', 'JAY ST-METROTEC')
Processing turnstile ('C012', 'R258', '01-00-03', '4AV-9 ST')
Processing turnstile ('A058', 'R001', '01-00-03', 'WHITEHALL S-FRY')
Processing turnstile ('R508', 'R346', '00-00-01', 'COURT SQ')
Processing turnstile ('N334B', 'R341', '00-00-01', '75 AV')
Processing turnstile ('N110', 'R283', '00-03-01', 'LAFAYETTE AV')
Processing turnstile ('N536', 'R270', '00-05-01', 'SMITH-9 ST')
Processing turnstile ('PTH07', 'R550', '00-02-01', 'CITY / BUS')
Processing turnstile ('N601', 'R319', '00-00-02', 'LEXINGTON AV/63')
Processing turnstile ('R415', 'R120', '00-05-00', 'MORISN AV/SNDVW')
Processing turnstile ('R422', 'R428', '00-05-00', 'BUHRE AV')
Processing turnstile ('R411', 'R450', '01-00-00', 'LONGWOOD AV')
Processing turnstile ('PTH08', 'R540', '00-01-00', 'PATH WTC')
Processing turnstile ('R147', 'R033', '04-00-06', 'TIMES SQ-42 ST')
Processing turnstile ('N193', 'R337', '00-00-01', 'BEACH 44 ST')
Processing turnstile ('R139', 'R031', '04-00-03', '34 ST-PENN STA')
Processing turnstile ('R328', 'R361', '00-05-00', 'PELHAM PKWY')
Processing turnstile ('R247', 'R178', '01-00-02', '77 ST')
Processing turnstile ('N549', 'R242', '00-00-00', '18 AV')
Processing turnstile ('R200A', 'R041', '01-00-01', 'BOWLING GREEN')
Processing turnstile ('N062', 'R011', '01-05-01', '42 ST-PORT AUTH')
Processing turnstile ('N504', 'R021', '02-06-02', '42 ST-BRYANT PK')
Processing turnstile ('R310', 'R053', '01-05-00', '3 AV-149 ST')
Processing turnstile ('R519', 'R223', '00-00-00', '46 ST BLISS ST')
Processing turnstile ('N049', 'R084', '01-00-02', '59 ST COLUMBUS')
Processing turnstile ('R221', 'R170', '01-03-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 13179
Processing turnstile ('R113', 'R028', '01-06-03', 'FULTON ST')
Processing turnstile ('H037', 'R349', '00-00-00', 'SUTTER AV')
Processing turnstile ('R241A', 'R048', '00-00-03', 'GRD CNTRL-42 ST')
Processing turnstile ('H013', 'R249', '01-00-02', 'GRAHAM AV')
WARNING. Abnormal entry count found on day 2016-02-16: 11731
Processing turnstile ('N603', 'R303', '00-00-03', '21 ST-QNSBRIDGE')
WARNING. Abnormal entry count found on day 2016-02-16: 11201
Processing turnstile ('PTH20', 'R549', '03-01-06', 'NEWARK HM HE')
Processing turnstile ('R231', 'R176', '00-00-00', '33 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10165
Processing turnstile ('B020', 'R263', '00-03-01', 'AVENUE H')
Processing turnstile ('R123', 'R290', '00-00-02', 'HOUSTON ST')
Processing turnstile ('E001', 'R368', '00-00-02', '9 AV')
Processing turnstile ('R186', 'R036', '00-00-03', 'DYCKMAN ST')
Processing turnstile ('B026', 'R230', '00-00-01', 'NECK RD')
Processing turnstile ('J005', 'R353', '00-06-00', 'LORIMER ST')
Processing turnstile ('N108', 'R217', '00-00-00', 'HOYT-SCHER')
Processing turnstile ('R138', 'R293', '00-05-00', '34 ST-PENN STA')
Processing turnstile ('N026', 'R102', '00-00-05', '125 ST')
Processing turnstile ('N334B', 'R341', '00-00-02', '75 AV')
Processing turnstile ('N422', 'R318', '00-06-01', 'FULTON ST')
Processing turnstile ('R328', 'R361', '00-05-01', 'PELHAM PKWY')
Processing turnstile ('N062', 'R011', '01-03-01', '42 ST-PORT AUTH')
Processing turnstile ('A043', 'R462', '00-06-00', 'CANAL ST')
Processing turnstile ('R319', 'R409', '01-00-00', 'FREEMAN ST')
Processing turnstile ('G009', 'R151', '02-00-03', 'CONEY IS-STILLW')
Processing turnstile ('R318', 'R408', '00-05-00', 'SIMPSON ST')
Processing turnstile ('N519', 'R461', '00-00-01', "B'WAY-LAFAYETTE")
Processing turnstile ('N532', 'R129', '00-00-01', 'BERGEN ST')
Processing turnstile ('N068', 'R012', '03-00-01', '34 ST-PENN STA')
Processing turnstile ('R228', 'R143', '00-00-04', '28 ST')
Processing turnstile ('N508', 'R453', '00-00-01', '23 ST')
Processing turnstile ('N331', 'R219', '00-00-03', '67 AV')
Processing turnstile ('R610', 'R057', '00-03-01', 'ATL AV-BARCLAY')
Processing turnstile ('R646', 'R110', '01-00-01', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-02-01: -548
WARNING. Abnormal entry count found on day 2016-02-02: -2257
WARNING. Abnormal entry count found on day 2016-02-03: -2254
WARNING. Abnormal entry count found on day 2016-02-04: -2238
WARNING. Abnormal entry count found on day 2016-02-05: -2264
WARNING. Abnormal entry count found on day 2016-02-08: -2828
WARNING. Abnormal entry count found on day 2016-02-09: -1980
WARNING. Abnormal entry count found on day 2016-02-10: -1888
WARNING. Abnormal entry count found on day 2016-02-11: -2342
WARNING. Abnormal entry count found on day 2016-02-16: -5073
WARNING. Abnormal entry count found on day 2016-02-17: -1998
WARNING. Abnormal entry count found on day 2016-02-18: -2047
WARNING. Abnormal entry count found on day 2016-02-19: -2077
WARNING. Abnormal entry count found on day 2016-02-22: -2628
WARNING. Abnormal entry count found on day 2016-02-23: -2184
WARNING. Abnormal entry count found on day 2016-02-24: -2311
WARNING. Abnormal entry count found on day 2016-02-25: -2254
WARNING. Abnormal entry count found on day 2016-02-26: -2282
WARNING. Abnormal entry count found on day 2016-02-29: -2790
Processing turnstile ('N533', 'R129', '02-06-00', 'BERGEN ST')
Processing turnstile ('N119', 'R199', '00-00-00', 'KINGSTON-THROOP')
Processing turnstile ('N420B', 'R317', '00-03-01', 'CLINTON-WASH AV')
Processing turnstile ('S101', 'R070', '00-00-03', 'ST. GEORGE')
Processing turnstile ('A014', 'R081', '02-00-01', '49 ST')
Processing turnstile ('N091', 'R029', '02-00-01', 'CHAMBERS ST')
Processing turnstile ('N095', 'R014', '00-03-05', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10066
Processing turnstile ('R532H', 'R328', '02-00-04', 'METS-WILLETS PT')
Processing turnstile ('R247', 'R178', '01-00-00', '77 ST')
Processing turnstile ('N505', 'R022', '02-00-09', '34 ST-HERALD SQ')
Processing turnstile ('R302', 'R324', '01-00-01', '116 ST')
Processing turnstile ('B012', 'R196', '00-03-00', 'PROSPECT PARK')
Processing turnstile ('N185', 'R417', '00-05-01', 'BEACH 98 ST')
Processing turnstile ('N343', 'R019', '00-05-00', 'JAMAICA 179 ST')
Processing turnstile ('N600', 'R302', '00-00-03', '57 ST')
Processing turnstile ('N089', 'R139', '00-00-02', 'CANAL ST')
Processing turnstile ('N184', 'R416', '00-05-01', 'BEACH 90 ST')
Processing turnstile ('N340A', 'R115', '01-03-03', '169 ST')
Processing turnstile ('N334B', 'R341', '00-00-00', '75 AV')
Processing turnstile ('R643', 'R135', '00-03-00', 'NEWKIRK AV')
Processing turnstile ('R236', 'R045', '00-00-04', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-18: 11387085
Processing turnstile ('C023', 'R213', '00-00-01', 'BAY RIDGE AV')
Processing turnstile ('N339A', 'R114', '00-03-01', 'PARSONS BLVD')
Processing turnstile ('C023', 'R213', '00-00-04', 'BAY RIDGE AV')
Processing turnstile ('N123B', 'R439', '01-06-01', 'ROCKAWAY AV')
Processing turnstile ('R114', 'R028', '02-00-03', 'FULTON ST')
Processing turnstile ('R139', 'R031', '04-06-00', '34 ST-PENN STA')
Processing turnstile ('R630', 'R066', '00-00-02', 'JUNIUS ST')
Processing turnstile ('A049', 'R088', '02-03-00', 'CORTLANDT ST')
Processing turnstile ('N076', 'R111', '00-00-01', '23 ST')
Processing turnstile ('R532', 'R328', '00-06-06', 'METS-WILLETS PT')
Processing turnstile ('PTH05', 'R543', '00-04-08', 'EXCHANGE PLACE')
Processing turnstile ('PTH19', 'R549', '02-00-03', 'NEWARK C')
Processing turnstile ('A085', 'R125', '02-05-00', 'BROAD ST')
Processing turnstile ('N337', 'R255', '00-03-01', 'BRIARWOOD')
Processing turnstile ('N500', 'R020', '00-06-01', '47-50 STS ROCK')
Processing turnstile ('N114', 'R297', '01-05-00', 'FRANKLIN AV')
Processing turnstile ('R293', 'R133', '00-00-04', 'MOSHOLU PKWY')
Processing turnstile ('N073', 'R013', '02-00-08', '34 ST-PENN STA')
Processing turnstile ('N118', 'R199', '01-00-02', 'KINGSTON-THROOP')
Processing turnstile ('E001', 'R368', '00-00-04', '9 AV')
Processing turnstile ('R318', 'R408', '00-00-01', 'SIMPSON ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10811
Processing turnstile ('R119', 'R320', '00-00-01', 'CANAL ST')
Processing turnstile ('R510', 'R090', '00-00-02', '39 AV')
Processing turnstile ('E005', 'R247', '00-00-02', '55 ST')
Processing turnstile ('N335', 'R158', '01-00-01', 'KEW GARDENS')
Processing turnstile ('A029', 'R082', '00-00-01', '28 ST')
Processing turnstile ('R128', 'R105', '01-00-02', '14 ST')
Processing turnstile ('A050', 'R088', '00-06-01', 'CORTLANDT ST')
Processing turnstile ('H035', 'R348', '00-00-02', 'ATLANTIC AV')
Processing turnstile ('N536', 'R270', '00-00-02', 'SMITH-9 ST')
Processing turnstile ('A069', 'R044', '01-00-03', 'CHAMBERS ST')
Processing turnstile ('N306', 'R017', '00-06-01', 'LEXINGTON AV/53')
Processing turnstile ('PTH18', 'R549', '01-02-01', 'NEWARK BM BW')
Processing turnstile ('B013', 'R196', '01-00-02', 'PROSPECT PARK')
Processing turnstile ('N405', 'R239', '00-00-00', 'GREENPOINT AV')
Processing turnstile ('N342', 'R019', '01-03-03', 'JAMAICA 179 ST')
Processing turnstile ('R244', 'R050', '00-03-02', '59 ST')
Processing turnstile ('R242', 'R049', '01-03-03', '51 ST')
Processing turnstile ('N329A', 'R201', '01-06-01', 'WOODHAVEN BLVD')
Processing turnstile ('R238A', 'R046', '02-03-01', 'GRD CNTRL-42 ST')
Processing turnstile ('R416', 'R245', '00-05-00', 'ST LAWRENCE AV')
Processing turnstile ('R618', 'R058', '01-06-01', 'BERGEN ST')
Processing turnstile ('R262', 'R195', '03-06-01', '161/YANKEE STAD')
Processing turnstile ('N420B', 'R317', '00-03-02', 'CLINTON-WASH AV')
Processing turnstile ('R515', 'R095', '00-00-00', 'ASTORIA DITMARS')
Processing turnstile ('N098', 'R028', '00-00-03', 'FULTON ST')
Processing turnstile ('N342', 'R019', '01-00-01', 'JAMAICA 179 ST')
Processing turnstile ('R169', 'R168', '01-00-02', '96 ST')
Processing turnstile ('R134', 'R272', '01-00-03', '28 ST')
Processing turnstile ('R237', 'R046', '01-00-00', 'GRD CNTRL-42 ST')
Processing turnstile ('R169', 'R168', '01-07-01', '96 ST')
Processing turnstile ('R330', 'R363', '00-00-01', 'BURKE AV')
WARNING. Abnormal entry count found on day 2016-02-19: -1497008
Processing turnstile ('R285', 'R308', '00-00-01', 'MT EDEN AV')
Processing turnstile ('R188', 'R037', '00-06-00', '207 ST')
Processing turnstile ('N547', 'R420', '01-06-01', 'DITMAS AV')
Processing turnstile ('A002', 'R051', '02-03-02', '59 ST')
Processing turnstile ('N310', 'R140', '01-00-02', 'QUEENS PLAZA')
Processing turnstile ('PTH05', 'R543', '00-04-06', 'EXCHANGE PLACE')
Processing turnstile ('N063A', 'R011', '00-00-00', '42 ST-PORT AUTH')
Processing turnstile ('N083', 'R138', '01-03-01', 'W 4 ST-WASH SQ')
Processing turnstile ('A042', 'R086', '01-00-01', 'PRINCE ST')
Processing turnstile ('R122', 'R290', '02-06-00', 'HOUSTON ST')
Processing turnstile ('N196', 'R285', '00-03-01', 'FAR ROCKAWAY')
Processing turnstile ('R622', 'R123', '00-00-05', 'FRANKLIN AV')
Processing turnstile ('N602', 'R259', '00-00-00', 'ROOSEVELT ISLND')
Processing turnstile ('R534', 'R055', '01-03-01', 'FLUSHING-MAIN')
Processing turnstile ('R529', 'R208', '00-05-00', '103 ST-CORONA')
Processing turnstile ('N416', 'R286', '01-05-01', 'MYRTLE-WILLOUGH')
Processing turnstile ('N332', 'R219', '01-06-03', '67 AV')
Processing turnstile ('R314', 'R406', '00-00-02', 'PROSPECT AV')
Processing turnstile ('N010', 'R126', '00-00-03', '175 ST')
Processing turnstile ('R636', 'R209', '00-00-00', 'STERLING ST')
Processing turnstile ('R169', 'R168', '01-00-05', '96 ST')
Processing turnstile ('R155', 'R116', '01-00-07', '50 ST')
Processing turnstile ('A034', 'R170', '03-00-02', '14 ST-UNION SQ')
Processing turnstile ('N305', 'R017', '01-03-02', 'LEXINGTON AV/53')
Processing turnstile ('N122', 'R439', '00-00-02', 'ROCKAWAY AV')
Processing turnstile ('N547', 'R420', '01-04-00', 'DITMAS AV')
Processing turnstile ('C012', 'R258', '01-00-00', '4AV-9 ST')
Processing turnstile ('R232', 'R176', '02-00-01', '33 ST')
Processing turnstile ('R252', 'R180', '00-00-05', '103 ST')
Processing turnstile ('N095', 'R014', '00-03-00', 'FULTON ST')
Processing turnstile ('R632', 'R067', '00-00-00', 'PENNSYLVANIA AV')
Processing turnstile ('R196', 'R306', '00-00-01', '238 ST')
Processing turnstile ('J028', 'R004', '00-00-03', '75 ST-ELDERTS')
WARNING. Abnormal entry count found on day 2016-02-19: -2074826
Processing turnstile ('E009', 'R370', '00-00-01', '71 ST')
Processing turnstile ('A049', 'R088', '02-01-02', 'CORTLANDT ST')
Processing turnstile ('N409', 'R268', '00-03-01', 'METROPOLITAN AV')
Processing turnstile ('N017', 'R331', '00-00-02', '155 ST')
Processing turnstile ('R145', 'R032', '00-00-03', 'TIMES SQ-42 ST')
Processing turnstile ('R208', 'R014', '03-01-03', 'FULTON ST')
Processing turnstile ('N339A', 'R114', '00-03-04', 'PARSONS BLVD')
Processing turnstile ('R208', 'R014', '03-01-00', 'FULTON ST')
Processing turnstile ('R176', 'R169', '00-00-03', '137 ST CITY COL')
Processing turnstile ('R174', 'R034', '00-00-02', '125 ST')
Processing turnstile ('R166', 'R167', '02-00-00', '86 ST')
Processing turnstile ('J017', 'R432', '00-00-00', 'CHAUNCEY ST')
Processing turnstile ('J007', 'R377', '00-05-01', 'FLUSHING AV')
Processing turnstile ('R250', 'R179', '00-00-05', '86 ST')
Processing turnstile ('N010', 'R126', '00-03-01', '175 ST')
Processing turnstile ('R236', 'R045', '00-00-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-18: 920023
Processing turnstile ('PTH07', 'R550', '00-00-02', 'CITY / BUS')
Processing turnstile ('R308', 'R344', '00-00-00', '145 ST')
Processing turnstile ('R605', 'R456', '00-00-02', 'HOYT ST')
Processing turnstile ('N309A', 'R140', '00-05-00', 'QUEENS PLAZA')
Processing turnstile ('R203', 'R043', '00-03-02', 'WALL ST')
Processing turnstile ('R529', 'R208', '00-06-01', '103 ST-CORONA')
Processing turnstile ('R244', 'R050', '00-03-01', '59 ST')
Processing turnstile ('N607', 'R025', '01-06-01', 'JAMAICA CENTER')
Processing turnstile ('R523', 'R147', '00-00-06', '61 ST WOODSIDE')
Processing turnstile ('N121B', 'R438', '00-00-03', 'RALPH AV')
Processing turnstile ('R135', 'R031', '01-00-03', '34 ST-PENN STA')
Processing turnstile ('N505', 'R022', '02-00-01', '34 ST-HERALD SQ')
Processing turnstile ('R182', 'R035', '00-00-00', '168 ST')
Processing turnstile ('R644', 'R135', '01-00-01', 'NEWKIRK AV')
Processing turnstile ('N324', 'R018', '00-00-02', 'JKSN HT-ROOSVLT')
Processing turnstile ('N327', 'R254', '00-06-01', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-02-01: -1382
WARNING. Abnormal entry count found on day 2016-02-02: -2691
WARNING. Abnormal entry count found on day 2016-02-03: -3004
WARNING. Abnormal entry count found on day 2016-02-04: -2926
WARNING. Abnormal entry count found on day 2016-02-05: -2889
WARNING. Abnormal entry count found on day 2016-02-08: -6083
WARNING. Abnormal entry count found on day 2016-02-09: -2606
WARNING. Abnormal entry count found on day 2016-02-10: -2906
WARNING. Abnormal entry count found on day 2016-02-11: -2959
WARNING. Abnormal entry count found on day 2016-02-16: -10394
WARNING. Abnormal entry count found on day 2016-02-17: -2573
WARNING. Abnormal entry count found on day 2016-02-18: -2869
WARNING. Abnormal entry count found on day 2016-02-19: -2772
WARNING. Abnormal entry count found on day 2016-02-22: -5976
WARNING. Abnormal entry count found on day 2016-02-23: -2833
WARNING. Abnormal entry count found on day 2016-02-24: -2865
WARNING. Abnormal entry count found on day 2016-02-25: -2815
WARNING. Abnormal entry count found on day 2016-02-26: -2926
WARNING. Abnormal entry count found on day 2016-02-29: -6496
Processing turnstile ('N305A', 'R016', '00-03-03', 'LEXINGTON AV/53')
Processing turnstile ('N400A', 'R359', '02-00-02', 'COURT SQ')
Processing turnstile ('R325', 'R388', '00-05-01', 'E 180 ST')
Processing turnstile ('D016', 'R397', '00-00-00', '86 ST')
Processing turnstile ('N417', 'R269', '00-00-01', 'BEDFORD-NOSTRAN')
Processing turnstile ('R238', 'R046', '00-00-08', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 11421
WARNING. Abnormal entry count found on day 2016-02-16: 22523
WARNING. Abnormal entry count found on day 2016-02-22: 15709
WARNING. Abnormal entry count found on day 2016-02-29: 15044
Processing turnstile ('R206', 'R014', '02-00-01', 'FULTON ST')
Processing turnstile ('R302', 'R324', '01-00-03', '116 ST')
Processing turnstile ('R176', 'R169', '00-00-01', '137 ST CITY COL')
Processing turnstile ('A046', 'R463', '00-05-02', 'CANAL ST')
Processing turnstile ('R524', 'R347', '00-00-00', '69 ST')
Processing turnstile ('A021', 'R032', '01-00-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10008
Processing turnstile ('C009', 'R057', '03-05-00', 'ATL AV-BARCLAY')
Processing turnstile ('N405', 'R239', '00-03-01', 'GREENPOINT AV')
Processing turnstile ('N333A', 'R141', '00-03-01', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-02-08: 10120
WARNING. Abnormal entry count found on day 2016-02-16: 16573
WARNING. Abnormal entry count found on day 2016-02-22: 10244
WARNING. Abnormal entry count found on day 2016-02-29: 10164
Processing turnstile ('N333A', 'R141', '00-06-01', 'FOREST HILLS 71')
Processing turnstile ('N340', 'R115', '00-00-02', '169 ST')
Processing turnstile ('N335', 'R158', '01-06-02', 'KEW GARDENS')
Processing turnstile ('E009', 'R370', '00-00-00', '71 ST')
Processing turnstile ('A016', 'R081', '03-06-00', '49 ST')
Processing turnstile ('N339', 'R114', '01-05-01', 'PARSONS BLVD')
Processing turnstile ('N051', 'R084', '02-03-03', '59 ST COLUMBUS')
Processing turnstile ('N020', 'R101', '00-00-01', '145 ST')
WARNING. Abnormal entry count found on day 2016-02-22: 10355
Processing turnstile ('K025', 'R404', '00-00-01', 'FRESH POND RD')
Processing turnstile ('N002A', 'R173', '00-05-00', 'INWOOD-207 ST')
Processing turnstile ('R159', 'R164', '01-06-00', '66 ST-LINCOLN')
Processing turnstile ('N083', 'R138', '01-00-00', 'W 4 ST-WASH SQ')
Processing turnstile ('R177', 'R273', '01-00-02', '145 ST')
Processing turnstile ('C011', 'R231', '01-00-01', 'UNION ST')
Processing turnstile ('B034', 'R264', '01-06-00', 'OCEAN PKWY')
Processing turnstile ('N501', 'R020', '01-06-01', '47-50 STS ROCK')
Processing turnstile ('N091', 'R029', '02-00-02', 'CHAMBERS ST')
Processing turnstile ('H026', 'R137', '00-03-00', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-02-16: 11375
Processing turnstile ('N412', 'R299', '00-00-01', 'BROADWAY')
Processing turnstile ('A054', 'R227', '01-00-00', 'RECTOR ST')
Processing turnstile ('R639', 'R109', '00-06-00', 'CHURCH AV')
Processing turnstile ('N305A', 'R016', '00-00-01', 'LEXINGTON AV/53')
Processing turnstile ('R413', 'R325', '00-00-01', 'WHITLOCK AV')
Processing turnstile ('R409', 'R449', '01-00-02', 'E 149 ST')
Processing turnstile ('N111', 'R284', '00-00-02', 'CLINTON-WASH AV')
Processing turnstile ('R194', 'R040', '00-00-03', '231 ST')
Processing turnstile ('R160A', 'R164', '00-00-02', '66 ST-LINCOLN')
Processing turnstile ('N217', 'R112', '00-03-00', 'FORDHAM RD')
Processing turnstile ('R166', 'R167', '02-00-01', '86 ST')
Processing turnstile ('PTH13', 'R541', '00-04-01', 'THIRTY ST')
Processing turnstile ('N335', 'R158', '01-00-02', 'KEW GARDENS')
Processing turnstile ('N086', 'R282', '00-00-02', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13402
Processing turnstile ('R516', 'R291', '00-00-01', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-02-22: -768730
Processing turnstile ('R412', 'R146', '00-03-03', 'HUNTS POINT AV')
Processing turnstile ('A049', 'R088', '02-00-00', 'CORTLANDT ST')
Processing turnstile ('R237B', 'R047', '01-00-03', 'GRD CNTRL-42 ST')
Processing turnstile ('R242A', 'R049', '02-00-01', '51 ST')
Processing turnstile ('N220', 'R155', '01-00-00', 'KINGSBRIDGE RD')
Processing turnstile ('R601A', 'R108', '02-05-01', 'BOROUGH HALL')
Processing turnstile ('G009', 'R151', '02-05-00', 'CONEY IS-STILLW')
Processing turnstile ('R114', 'R028', '02-00-01', 'FULTON ST')
Processing turnstile ('G001', 'R151', '00-00-03', 'CONEY IS-STILLW')
Processing turnstile ('N073', 'R013', '02-00-05', '34 ST-PENN STA')
Processing turnstile ('R145', 'R032', '00-06-02', 'TIMES SQ-42 ST')
Processing turnstile ('PTH05', 'R543', '00-04-09', 'EXCHANGE PLACE')
Processing turnstile ('R236', 'R045', '00-00-06', 'GRD CNTRL-42 ST')
Processing turnstile ('A022', 'R022', '01-00-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 10247
WARNING. Abnormal entry count found on day 2016-02-16: 18612
WARNING. Abnormal entry count found on day 2016-02-22: 10859
WARNING. Abnormal entry count found on day 2016-02-29: 11208
Processing turnstile ('PTH01', 'R549', '00-00-0A', 'NEWARK HW BMEBE')
Processing turnstile ('R155', 'R116', '01-00-04', '50 ST')
Processing turnstile ('N317', 'R267', '02-06-01', '46 ST')
Processing turnstile ('R201', 'R041', '00-03-04', 'BOWLING GREEN')
Processing turnstile ('R134', 'R272', '01-00-01', '28 ST')
Processing turnstile ('PTH18', 'R549', '01-02-02', 'NEWARK BM BW')
Processing turnstile ('R245', 'R051', '00-03-02', '59 ST')
Processing turnstile ('R202', 'R042', '00-00-03', 'BOWLING GREEN')
Processing turnstile ('R122', 'R290', '02-06-01', 'HOUSTON ST')
Processing turnstile ('C009', 'R057', '03-00-00', 'ATL AV-BARCLAY')
Processing turnstile ('R512', 'R092', '00-03-01', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-02-16: 14287
WARNING. Abnormal entry count found on day 2016-02-29: 12407
Processing turnstile ('PTH06', 'R546', '00-00-01', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-02-16: -431910
Processing turnstile ('N051', 'R084', '02-05-00', '59 ST COLUMBUS')
Processing turnstile ('N336', 'R158', '00-00-01', 'KEW GARDENS')
Processing turnstile ('N001', 'R173', '01-06-02', 'INWOOD-207 ST')
Processing turnstile ('J032', 'R006', '01-05-01', 'WOODHAVEN BLVD')
Processing turnstile ('N309A', 'R140', '00-06-01', 'QUEENS PLAZA')
Processing turnstile ('N094', 'R029', '01-05-00', 'WORLD TRADE CTR')
Processing turnstile ('N412', 'R299', '00-00-00', 'BROADWAY')
Processing turnstile ('R501', 'R054', '00-06-01', '5 AVE')
Processing turnstile ('R250', 'R179', '00-00-0A', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 16535
Processing turnstile ('N203', 'R195', '00-00-03', '161/YANKEE STAD')
Processing turnstile ('R419', 'R326', '00-03-01', 'ZEREGA AV')
Processing turnstile ('A082', 'R028', '05-05-01', 'FULTON ST')
Processing turnstile ('R525', 'R018', '02-06-00', '74 ST-BROADWAY')
Processing turnstile ('R238A', 'R046', '02-03-02', 'GRD CNTRL-42 ST')
Processing turnstile ('R134', 'R272', '01-06-00', '28 ST')
Processing turnstile ('R141', 'R031', '00-03-04', '34 ST-PENN STA')
Processing turnstile ('R519', 'R223', '00-00-01', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-02-17: -8672427
Processing turnstile ('N051', 'R084', '02-03-02', '59 ST COLUMBUS')
Processing turnstile ('N068', 'R012', '03-00-00', '34 ST-PENN STA')
Processing turnstile ('N526', 'R142', '02-00-01', 'DELANCEY/ESSEX')
Processing turnstile ('R243', 'R049', '00-03-03', '51 ST')
Processing turnstile ('R334', 'R367', '00-00-00', '233 ST')
Processing turnstile ('K025', 'R404', '00-03-02', 'FRESH POND RD')
Processing turnstile ('R514', 'R094', '00-05-00', 'ASTORIA BLVD')
Processing turnstile ('N057', 'R188', '00-03-02', '50 ST')
Processing turnstile ('N103', 'R127', '00-06-01', 'JAY ST-METROTEC')
Processing turnstile ('N509', 'R203', '00-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10593
Processing turnstile ('PTH17', 'R541', '01-00-06', 'THIRTY THIRD ST')
Processing turnstile ('R155', 'R116', '01-00-06', '50 ST')
Processing turnstile ('N063A', 'R011', '00-00-04', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-01: -1412
WARNING. Abnormal entry count found on day 2016-02-02: -4126
WARNING. Abnormal entry count found on day 2016-02-03: -4047
WARNING. Abnormal entry count found on day 2016-02-04: -4531
WARNING. Abnormal entry count found on day 2016-02-05: -4350
WARNING. Abnormal entry count found on day 2016-02-08: -7877
WARNING. Abnormal entry count found on day 2016-02-09: -4007
WARNING. Abnormal entry count found on day 2016-02-10: -4155
WARNING. Abnormal entry count found on day 2016-02-11: -4181
WARNING. Abnormal entry count found on day 2016-02-16: -14529
WARNING. Abnormal entry count found on day 2016-02-17: -4341
WARNING. Abnormal entry count found on day 2016-02-18: -4314
WARNING. Abnormal entry count found on day 2016-02-19: -4273
WARNING. Abnormal entry count found on day 2016-02-22: -7785
WARNING. Abnormal entry count found on day 2016-02-23: -3886
WARNING. Abnormal entry count found on day 2016-02-24: -4316
WARNING. Abnormal entry count found on day 2016-02-25: -4715
WARNING. Abnormal entry count found on day 2016-02-26: -4489
WARNING. Abnormal entry count found on day 2016-02-29: -7378
Processing turnstile ('A002', 'R051', '02-03-04', '59 ST')
Processing turnstile ('K022', 'R402', '00-00-01', 'SENECA AVE')
Processing turnstile ('PTH04', 'R551', '00-04-01', 'GROVE STREET')
Processing turnstile ('B019', 'R149', '00-00-04', 'NEWKIRK PLAZA')
Processing turnstile ('A054', 'R227', '01-06-00', 'RECTOR ST')
Processing turnstile ('N416', 'R286', '01-06-00', 'MYRTLE-WILLOUGH')
Processing turnstile ('R130', 'R321', '01-06-00', '18 ST')
Processing turnstile ('N130', 'R383', '01-06-00', '80 ST')
Processing turnstile ('R406', 'R448', '00-00-01', "E 143/ST MARY'S")
Processing turnstile ('B022', 'R229', '00-00-01', 'AVENUE M')
Processing turnstile ('H003', 'R163', '01-00-00', '6 AV')
Processing turnstile ('A025', 'R023', '01-00-03', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 10693
Processing turnstile ('H041', 'R152', '00-06-01', 'CANARSIE-ROCKAW')
Processing turnstile ('N420B', 'R317', '00-03-00', 'CLINTON-WASH AV')
Processing turnstile ('N089', 'R139', '00-00-00', 'CANAL ST')
Processing turnstile ('R236', 'R045', '00-03-04', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10326
WARNING. Abnormal entry count found on day 2016-02-18: 1309713480
Processing turnstile ('R534', 'R055', '01-00-02', 'FLUSHING-MAIN')
Processing turnstile ('R608', 'R056', '00-03-00', 'NEVINS ST')
Processing turnstile ('A010', 'R080', '00-00-02', '57 ST-7 AV')
Processing turnstile ('A049', 'R088', '02-05-01', 'CORTLANDT ST')
Processing turnstile ('R316', 'R407', '00-00-02', 'INTERVALE AV')
Processing turnstile ('N103', 'R127', '00-00-05', 'JAY ST-METROTEC')
Processing turnstile ('N507', 'R023', '00-00-01', '34 ST-HERALD SQ')
Processing turnstile ('N095', 'R014', '00-03-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10113
Processing turnstile ('N124', 'R103', '00-00-00', 'BROADWAY JCT')
Processing turnstile ('R158', 'R084', '00-06-02', '59 ST COLUMBUS')
Processing turnstile ('H041', 'R152', '00-00-01', 'CANARSIE-ROCKAW')
Processing turnstile ('N501A', 'R020', '02-00-02', '47-50 STS ROCK')
Processing turnstile ('R401', 'R445', '00-00-01', '3 AV 138 ST')
Processing turnstile ('A046', 'R463', '00-06-04', 'CANAL ST')
Processing turnstile ('R606', 'R225', '00-00-00', 'HOYT ST')
Processing turnstile ('N030', 'R333', '00-00-01', '116 ST')
Processing turnstile ('B020', 'R263', '00-05-01', 'AVENUE H')
Processing turnstile ('R423', 'R429', '00-05-00', 'PELHAM BAY PARK')
Processing turnstile ('R250', 'R179', '00-00-02', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 10951
WARNING. Abnormal entry count found on day 2016-02-16: 18716
WARNING. Abnormal entry count found on day 2016-02-22: 10934
WARNING. Abnormal entry count found on day 2016-02-29: 10860
Processing turnstile ('H012', 'R268', '01-06-00', 'LORIMER ST')
Processing turnstile ('J001', 'R460', '01-05-01', 'MARCY AV')
Processing turnstile ('N400A', 'R359', '02-06-02', 'COURT SQ')
Processing turnstile ('A050', 'R088', '00-06-00', 'CORTLANDT ST')
Processing turnstile ('C027', 'R216', '00-00-00', 'BAY RIDGE AV')
Processing turnstile ('R178', 'R273', '00-00-03', '145 ST')
Processing turnstile ('N051', 'R084', '02-00-03', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-02-16: 14607
Processing turnstile ('R726', 'R329', '00-00-02', 'MORRIS PARK')
Processing turnstile ('R286', 'R309', '00-00-03', '176 ST')
Processing turnstile ('R249', 'R179', '01-00-07', '86 ST')
Processing turnstile ('R161B', 'R452', '00-03-02', '72 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14369
WARNING. Abnormal entry count found on day 2016-02-22: 11603
Processing turnstile ('PTH01', 'R549', '00-00-04', 'NEWARK HW BMEBE')
Processing turnstile ('A039', 'R085', '01-00-02', '8 ST-NYU')
Processing turnstile ('R532', 'R328', '00-05-04', 'METS-WILLETS PT')
Processing turnstile ('N422', 'R318', '00-00-02', 'FULTON ST')
Processing turnstile ('N534', 'R220', '01-00-02', 'CARROLL ST')
Processing turnstile ('R626', 'R062', '00-03-03', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-02-16: 10189
Processing turnstile ('PTH13', 'R541', '00-04-07', 'THIRTY ST')
Processing turnstile ('N400A', 'R359', '02-06-00', 'COURT SQ')
Processing turnstile ('N537', 'R258', '00-00-01', '4 AV-9 ST')
Processing turnstile ('PTH12', 'R542', '00-00-04', 'TWENTY THIRD ST')
Processing turnstile ('E016', 'R400', '00-00-01', 'BAY 50 ST')
Processing turnstile ('H038', 'R350', '00-06-00', 'LIVONIA AV')
Processing turnstile ('A002', 'R051', '02-03-01', '59 ST')
Processing turnstile ('R238', 'R046', '00-00-02', 'GRD CNTRL-42 ST')
Processing turnstile ('R138', 'R293', '00-03-04', '34 ST-PENN STA')
Processing turnstile ('N528', 'R257', '01-06-01', 'EAST BROADWAY')
Processing turnstile ('PTH06', 'R546', '00-00-02', 'PAVONIA/NEWPORT')
Processing turnstile ('N184', 'R416', '00-00-00', 'BEACH 90 ST')
Processing turnstile ('PTH13', 'R541', '00-04-09', 'THIRTY ST')
Processing turnstile ('N024', 'R332', '00-00-01', '135 ST')
Processing turnstile ('N324', 'R018', '00-03-03', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-16: 10989
Processing turnstile ('N501', 'R020', '01-03-00', '47-50 STS ROCK')
Processing turnstile ('N303', 'R015', '00-00-08', '5 AV/53 ST')
Processing turnstile ('H041', 'R152', '00-00-03', 'CANARSIE-ROCKAW')
Processing turnstile ('N098', 'R028', '00-05-00', 'FULTON ST')
Processing turnstile ('N060', 'R010', '01-00-02', '42 ST-PORT AUTH')
Processing turnstile ('N116', 'R198', '00-03-00', 'NOSTRAND AV')
Processing turnstile ('N400A', 'R359', '02-03-01', 'COURT SQ')
Processing turnstile ('R417', 'R222', '00-03-03', 'PARKCHESTER')
Processing turnstile ('N501', 'R020', '01-06-00', '47-50 STS ROCK')
Processing turnstile ('R148', 'R033', '01-06-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12167
Processing turnstile ('R401', 'R445', '00-00-02', '3 AV 138 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11408
Processing turnstile ('N120', 'R153', '00-00-00', 'UTICA AV')
Processing turnstile ('R203A', 'R043', '01-05-00', 'WALL ST')
Processing turnstile ('N089', 'R139', '00-04-02', 'CANAL ST')
Processing turnstile ('B028', 'R136', '01-00-02', 'SHEEPSHEAD BAY')
Processing turnstile ('B021', 'R228', '00-04-00', 'AVENUE J')
Processing turnstile ('E015', 'R399', '00-00-00', '25 AV')
Processing turnstile ('N519', 'R461', '00-03-01', "B'WAY-LAFAYETTE")
Processing turnstile ('PTH03', 'R552', '00-01-05', 'JOURNAL SQUARE')
Processing turnstile ('J016', 'R381', '00-00-01', 'HALSEY ST')
Processing turnstile ('N329', 'R201', '00-03-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-02-16: 12593
Processing turnstile ('N203', 'R195', '00-03-02', '161/YANKEE STAD')
Processing turnstile ('R404', 'R447', '00-00-00', 'CYPRESS AV')
Processing turnstile ('N077', 'R111', '02-06-00', '23 ST')
Processing turnstile ('A047', 'R087', '00-06-01', 'CITY HALL')
Processing turnstile ('R632', 'R067', '00-00-02', 'PENNSYLVANIA AV')
Processing turnstile ('R550', 'R072', '00-00-01', '34 ST-HUDSON YD')
Processing turnstile ('A010', 'R080', '00-00-04', '57 ST-7 AV')
Processing turnstile ('R609', 'R056', '01-00-02', 'NEVINS ST')
Processing turnstile ('N010', 'R126', '00-03-00', '175 ST')
Processing turnstile ('A064', 'R311', '00-03-01', 'BOWERY')
Processing turnstile ('N126', 'R441', '00-00-02', 'VAN SICLEN AVE')
Processing turnstile ('B018', 'R184', '00-00-01', 'CORTELYOU RD')
Processing turnstile ('N405', 'R239', '00-00-02', 'GREENPOINT AV')
Processing turnstile ('R412', 'R146', '00-03-01', 'HUNTS POINT AV')
Processing turnstile ('R123', 'R290', '00-00-01', 'HOUSTON ST')
Processing turnstile ('R421', 'R427', '00-06-01', 'MIDDLETOWN RD')
Processing turnstile ('R414', 'R162', '00-05-00', 'ELDER AV')
Processing turnstile ('N181', 'R357', '00-00-01', 'AQUEDUCT N.COND')
Processing turnstile ('N523', 'R300', '00-00-01', '2 AV')
Processing turnstile ('R533', 'R055', '00-00-02', 'FLUSHING-MAIN')
Processing turnstile ('A021', 'R032', '01-00-06', 'TIMES SQ-42 ST')
Processing turnstile ('R524', 'R347', '00-03-01', '69 ST')
Processing turnstile ('N511', 'R163', '03-00-00', '14 ST')
Processing turnstile ('A007', 'R079', '01-06-03', '5 AV/59 ST')
Processing turnstile ('B020', 'R263', '00-05-00', 'AVENUE H')
Processing turnstile ('N057', 'R188', '00-00-02', '50 ST')
Processing turnstile ('N049', 'R084', '01-05-01', '59 ST COLUMBUS')
Processing turnstile ('R310', 'R053', '01-03-00', '3 AV-149 ST')
Processing turnstile ('R201', 'R041', '00-03-01', 'BOWLING GREEN')
Processing turnstile ('N056', 'R188', '01-00-02', '50 ST')
Processing turnstile ('N103', 'R127', '00-00-03', 'JAY ST-METROTEC')
Processing turnstile ('R197', 'R117', '00-00-01', 'V.CORTLANDT PK')
Processing turnstile ('PTH07', 'R550', '00-02-02', 'CITY / BUS')
Processing turnstile ('R610', 'R057', '00-04-03', 'ATL AV-BARCLAY')
Processing turnstile ('R221', 'R170', '01-05-00', '14 ST-UNION SQ')
Processing turnstile ('N309A', 'R140', '00-05-02', 'QUEENS PLAZA')
Processing turnstile ('N304', 'R015', '01-01-00', '5 AV/53 ST')
Processing turnstile ('N339A', 'R114', '00-03-02', 'PARSONS BLVD')
Processing turnstile ('A084', 'R125', '01-00-01', 'BROAD ST')
Processing turnstile ('N607', 'R025', '01-06-04', 'JAMAICA CENTER')
Processing turnstile ('A050', 'R088', '00-06-03', 'CORTLANDT ST')
Processing turnstile ('B021', 'R228', '00-03-00', 'AVENUE J')
Processing turnstile ('N602', 'R259', '00-00-02', 'ROOSEVELT ISLND')
Processing turnstile ('R612', 'R057', '01-00-06', 'ATL AV-BARCLAY')
Processing turnstile ('D012', 'R395', '00-00-01', 'KINGS HWY')
Processing turnstile ('C009', 'R057', '03-03-03', 'ATL AV-BARCLAY')
Processing turnstile ('N001', 'R173', '01-06-00', 'INWOOD-207 ST')
Processing turnstile ('N103', 'R127', '00-02-01', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-02-16: 10012
Processing turnstile ('R226', 'R131', '02-05-00', '23 ST')
Processing turnstile ('J031', 'R006', '00-00-02', 'WOODHAVEN BLVD')
Processing turnstile ('N526', 'R142', '02-00-03', 'DELANCEY/ESSEX')
Processing turnstile ('R111', 'R027', '00-00-03', 'WALL ST')
Processing turnstile ('R238A', 'R046', '02-00-03', 'GRD CNTRL-42 ST')
Processing turnstile ('R527', 'R122', '00-03-02', '90 ST-ELMHURST')
Processing turnstile ('R415', 'R120', '00-03-00', 'MORISN AV/SNDVW')
Processing turnstile ('K026', 'R100', '00-00-02', 'METROPOLITAN AV')
Processing turnstile ('R245A', 'R051', '01-00-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12735
Processing turnstile ('N046', 'R281', '00-00-00', '72 ST')
Processing turnstile ('R288', 'R275', '00-00-00', '183 ST')
Processing turnstile ('PTH11', 'R545', '00-04-03', '14TH STREET')
Processing turnstile ('PTH17', 'R541', '01-00-09', 'THIRTY THIRD ST')
Processing turnstile ('R151', 'R033', '00-00-04', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13637
Processing turnstile ('N102', 'R127', '01-00-03', 'JAY ST-METROTEC')
Processing turnstile ('N309A', 'R140', '00-05-03', 'QUEENS PLAZA')
Processing turnstile ('E013', 'R373', '00-00-00', '20 AV')
Processing turnstile ('H007', 'R248', '00-00-00', '1 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 17917
Processing turnstile ('R120', 'R320', '01-00-01', 'CANAL ST')
Processing turnstile ('E011', 'R371', '00-00-02', '79 ST')
Processing turnstile ('R605', 'R456', '00-06-00', 'HOYT ST')
Processing turnstile ('B016', 'R098', '00-00-01', 'CHURCH AV')
Processing turnstile ('PTH16', 'R550', '01-01-05', 'LACKAWANNA')
Processing turnstile ('A069', 'R044', '01-00-04', 'CHAMBERS ST')
Processing turnstile ('R174', 'R034', '00-00-00', '125 ST')
Processing turnstile ('B020', 'R263', '00-00-02', 'AVENUE H')
Processing turnstile ('R635', 'R277', '00-00-00', 'PRESIDENT ST')
Processing turnstile ('N095A', 'R014', '01-00-01', 'FULTON ST')
Processing turnstile ('N029', 'R333', '01-00-02', '116 ST')
Processing turnstile ('N316A', 'R267', '01-03-00', '46 ST')
Processing turnstile ('N073', 'R013', '02-00-02', '34 ST-PENN STA')
Processing turnstile ('S102', 'R165', '00-03-01', 'TOMPKINSVILLE')
Processing turnstile ('R258', 'R132', '00-05-01', '125 ST')
Processing turnstile ('PTH17', 'R541', '01-00-08', 'THIRTY THIRD ST')
Processing turnstile ('N196', 'R285', '00-03-00', 'FAR ROCKAWAY')
Processing turnstile ('C004', 'R089', '01-06-00', 'JAY ST-METROTEC')
Processing turnstile ('R415', 'R120', '00-00-01', 'MORISN AV/SNDVW')
Processing turnstile ('PTH20', 'R549', '03-00-03', 'NEWARK HM HE')
Processing turnstile ('R302', 'R324', '01-00-02', '116 ST')
Processing turnstile ('H026', 'R137', '00-03-02', 'MYRTLE-WYCKOFF')
Processing turnstile ('H015', 'R250', '01-00-02', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10691
Processing turnstile ('R503', 'R276', '01-00-02', 'VERNON-JACKSON')
Processing turnstile ('R518', 'R261', '00-03-00', '40 ST LOWERY ST')
Processing turnstile ('N016A', 'R296', '00-03-02', '163 ST-AMSTERDM')
Processing turnstile ('B004', 'R171', '00-00-02', '7 AV')
Processing turnstile ('R526', 'R096', '00-05-03', '82 ST-JACKSON H')
Processing turnstile ('N537', 'R258', '00-00-00', '4 AV-9 ST')
Processing turnstile ('R118', 'R343', '01-00-02', 'FRANKLIN ST')
Processing turnstile ('N213', 'R154', '00-06-02', 'TREMONT AV')
Processing turnstile ('N128', 'R200', '00-05-01', 'EUCLID AV')
Processing turnstile ('A043', 'R462', '00-00-01', 'CANAL ST')
Processing turnstile ('B028', 'R136', '01-00-01', 'SHEEPSHEAD BAY')
Processing turnstile ('R228', 'R143', '00-00-01', '28 ST')
Processing turnstile ('PTH03', 'R552', '00-01-08', 'JOURNAL SQUARE')
Processing turnstile ('B024A', 'R211', '02-00-00', 'KINGS HWY')
Processing turnstile ('R311', 'R053', '00-00-02', '3 AV-149 ST')
Processing turnstile ('J009', 'R378', '00-00-02', 'MYRTLE AV')
Processing turnstile ('N546', 'R204', '00-00-02', 'CHURCH AV')
Processing turnstile ('R154', 'R116', '00-00-02', '50 ST')
Processing turnstile ('R625', 'R062', '01-06-01', 'CROWN HTS-UTICA')
Processing turnstile ('N562', 'R426', '00-00-00', 'NEPTUNE AV')
Processing turnstile ('PTH19', 'R549', '02-01-01', 'NEWARK C')
Processing turnstile ('N324', 'R018', '00-02-01', 'JKSN HT-ROOSVLT')
Processing turnstile ('N124', 'R103', '00-00-02', 'BROADWAY JCT')
Processing turnstile ('N057', 'R188', '00-03-00', '50 ST')
Processing turnstile ('H033', 'R313', '00-00-00', 'BUSHWICK AV')
Processing turnstile ('R130', 'R321', '01-00-02', '18 ST')
Processing turnstile ('H015', 'R250', '01-00-01', 'GRAND ST')
Processing turnstile ('H027', 'R137', '01-06-00', 'MYRTLE-WYCKOFF')
Processing turnstile ('R160', 'R164', '02-00-00', '66 ST-LINCOLN')
Processing turnstile ('N323', 'R018', '01-00-00', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-09: -898340
Processing turnstile ('R532', 'R328', '00-05-01', 'METS-WILLETS PT')
Processing turnstile ('N080', 'R138', '00-06-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-02-25: -501242
Processing turnstile ('N507', 'R023', '00-03-00', '34 ST-HERALD SQ')
Processing turnstile ('A014', 'R081', '02-00-02', '49 ST')
Processing turnstile ('N535', 'R220', '00-06-00', 'CARROLL ST')
Processing turnstile ('A081', 'R028', '04-00-04', 'FULTON ST')
Processing turnstile ('R238', 'R046', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('R333', 'R366', '00-00-02', '225 ST')
Processing turnstile ('N513', 'R163', '04-00-00', '14 ST')
Processing turnstile ('N333B', 'R141', '02-03-01', 'FOREST HILLS 71')
Processing turnstile ('N400A', 'R359', '02-06-06', 'COURT SQ')
Processing turnstile ('R606', 'R225', '00-00-03', 'HOYT ST')
Processing turnstile ('N090', 'R139', '01-06-01', 'CANAL ST')
Processing turnstile ('J005', 'R353', '00-00-00', 'LORIMER ST')
Processing turnstile ('B034', 'R264', '01-06-01', 'OCEAN PKWY')
Processing turnstile ('N060', 'R010', '01-00-01', '42 ST-PORT AUTH')
Processing turnstile ('R410', 'R450', '00-00-00', 'LONGWOOD AV')
Processing turnstile ('R208', 'R014', '03-00-00', 'FULTON ST')
Processing turnstile ('H027', 'R137', '01-00-01', 'MYRTLE-WYCKOFF')
Processing turnstile ('R205A', 'R014', '04-03-01', 'FULTON ST')
Processing turnstile ('N500', 'R020', '00-03-00', '47-50 STS ROCK')
Processing turnstile ('R516', 'R291', '00-03-01', '33 ST-RAWSON ST')
Processing turnstile ('R179', 'R193', '01-00-02', '157 ST')
Processing turnstile ('N603', 'R303', '00-05-00', '21 ST-QNSBRIDGE')
Processing turnstile ('J003', 'R352', '00-00-01', 'HEWES ST')
Processing turnstile ('N336', 'R158', '00-00-02', 'KEW GARDENS')
Processing turnstile ('N025', 'R102', '01-00-03', '125 ST')
Processing turnstile ('R511', 'R091', '00-00-03', '36 AV')
Processing turnstile ('R507', 'R134', '00-00-03', 'HUNTERS PT AV')
Processing turnstile ('N025', 'R102', '01-00-02', '125 ST')
Processing turnstile ('N519', 'R461', '00-03-03', "B'WAY-LAFAYETTE")
Processing turnstile ('R220', 'R160', '01-03-00', 'ASTOR PL')
Processing turnstile ('N195', 'R358', '00-05-01', 'BEACH 25 ST')
Processing turnstile ('A011', 'R080', '01-00-04', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-02-01: -903
WARNING. Abnormal entry count found on day 2016-02-02: -1844
WARNING. Abnormal entry count found on day 2016-02-03: -2116
WARNING. Abnormal entry count found on day 2016-02-04: -2083
WARNING. Abnormal entry count found on day 2016-02-05: -2124
WARNING. Abnormal entry count found on day 2016-02-08: -3964
WARNING. Abnormal entry count found on day 2016-02-09: -1829
WARNING. Abnormal entry count found on day 2016-02-10: -2040
WARNING. Abnormal entry count found on day 2016-02-11: -2116
WARNING. Abnormal entry count found on day 2016-02-16: -7790
WARNING. Abnormal entry count found on day 2016-02-17: -1951
WARNING. Abnormal entry count found on day 2016-02-18: -1984
WARNING. Abnormal entry count found on day 2016-02-19: -1957
WARNING. Abnormal entry count found on day 2016-02-22: -3755
WARNING. Abnormal entry count found on day 2016-02-23: -1834
WARNING. Abnormal entry count found on day 2016-02-24: -2019
WARNING. Abnormal entry count found on day 2016-02-25: -2126
WARNING. Abnormal entry count found on day 2016-02-26: -2110
WARNING. Abnormal entry count found on day 2016-02-29: -4393
Processing turnstile ('R176', 'R169', '00-03-00', '137 ST CITY COL')
Processing turnstile ('B013', 'R196', '01-05-00', 'PROSPECT PARK')
Processing turnstile ('C020', 'R233', '00-00-00', '53 ST')
Processing turnstile ('N340A', 'R115', '01-00-00', '169 ST')
Processing turnstile ('B017', 'R262', '00-00-02', 'BEVERLEY ROAD')
Processing turnstile ('S101A', 'R070', '01-00-05', 'ST. GEORGE')
Processing turnstile ('N309A', 'R140', '00-06-00', 'QUEENS PLAZA')
Processing turnstile ('R261', 'R205', '00-00-00', '149/GRAND CONC')
Processing turnstile ('N340', 'R115', '00-00-05', '169 ST')
Processing turnstile ('N303', 'R015', '00-00-04', '5 AV/53 ST')
Processing turnstile ('N194', 'R338', '00-05-01', 'BEACH 36 ST')
Processing turnstile ('N551', 'R421', '00-00-00', 'AVENUE I')
Processing turnstile ('N528', 'R257', '01-00-03', 'EAST BROADWAY')
Processing turnstile ('R101', 'R001', '02-00-03', 'SOUTH FERRY')
Processing turnstile ('R123', 'R290', '00-00-00', 'HOUSTON ST')
Processing turnstile ('PTH09', 'R548', '00-00-03', 'CHRISTOPHER ST')
Processing turnstile ('N509', 'R203', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11224
Processing turnstile ('N327', 'R254', '00-06-00', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-02-16: 10837
Processing turnstile ('N526', 'R142', '02-00-04', 'DELANCEY/ESSEX')
Processing turnstile ('R113', 'R028', '01-04-00', 'FULTON ST')
Processing turnstile ('R532', 'R328', '00-06-03', 'METS-WILLETS PT')
Processing turnstile ('N327', 'R254', '00-06-02', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-02-16: 12812
Processing turnstile ('N539A', 'R288', '00-06-00', '7 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 13586
Processing turnstile ('C025', 'R215', '00-03-00', '86 ST')
Processing turnstile ('R238', 'R046', '00-00-01', 'GRD CNTRL-42 ST')
Processing turnstile ('C023', 'R213', '00-00-05', 'BAY RIDGE AV')
Processing turnstile ('R206', 'R014', '02-03-01', 'FULTON ST')
Processing turnstile ('R258', 'R132', '00-00-03', '125 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -2337
WARNING. Abnormal entry count found on day 2016-02-02: -5009
WARNING. Abnormal entry count found on day 2016-02-03: -5070
WARNING. Abnormal entry count found on day 2016-02-04: -4705
WARNING. Abnormal entry count found on day 2016-02-05: -4882
WARNING. Abnormal entry count found on day 2016-02-08: -9907
WARNING. Abnormal entry count found on day 2016-02-09: -4372
WARNING. Abnormal entry count found on day 2016-02-10: -4635
WARNING. Abnormal entry count found on day 2016-02-11: -4874
WARNING. Abnormal entry count found on day 2016-02-16: -16412
WARNING. Abnormal entry count found on day 2016-02-17: -4293
WARNING. Abnormal entry count found on day 2016-02-18: -4816
WARNING. Abnormal entry count found on day 2016-02-19: -4703
WARNING. Abnormal entry count found on day 2016-02-22: -9774
WARNING. Abnormal entry count found on day 2016-02-23: -4898
WARNING. Abnormal entry count found on day 2016-02-24: -4725
WARNING. Abnormal entry count found on day 2016-02-25: -4594
WARNING. Abnormal entry count found on day 2016-02-26: -4998
WARNING. Abnormal entry count found on day 2016-02-29: -10184
Processing turnstile ('N311', 'R339', '01-00-02', '36 ST')
Processing turnstile ('A033', 'R170', '02-00-02', '14 ST-UNION SQ')
Processing turnstile ('R327', 'R361', '01-05-01', 'PELHAM PKWY')
Processing turnstile ('C024', 'R214', '00-00-01', '77 ST')
Processing turnstile ('R304', 'R206', '00-00-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -1336
WARNING. Abnormal entry count found on day 2016-02-02: -2383
WARNING. Abnormal entry count found on day 2016-02-03: -2699
WARNING. Abnormal entry count found on day 2016-02-04: -2357
WARNING. Abnormal entry count found on day 2016-02-05: -2475
WARNING. Abnormal entry count found on day 2016-02-08: -5176
WARNING. Abnormal entry count found on day 2016-02-09: -2196
WARNING. Abnormal entry count found on day 2016-02-10: -2350
WARNING. Abnormal entry count found on day 2016-02-11: -2467
WARNING. Abnormal entry count found on day 2016-02-16: -8655
WARNING. Abnormal entry count found on day 2016-02-17: -2113
WARNING. Abnormal entry count found on day 2016-02-18: -2351
WARNING. Abnormal entry count found on day 2016-02-19: -2308
WARNING. Abnormal entry count found on day 2016-02-22: -5240
WARNING. Abnormal entry count found on day 2016-02-23: -2408
WARNING. Abnormal entry count found on day 2016-02-24: -2321
WARNING. Abnormal entry count found on day 2016-02-25: -1298
WARNING. Abnormal entry count found on day 2016-02-26: -2321
WARNING. Abnormal entry count found on day 2016-02-29: -5245
Processing turnstile ('PTH04', 'R551', '00-04-05', 'GROVE STREET')
Processing turnstile ('H023', 'R236', '00-00-02', 'DEKALB AV')
Processing turnstile ('N333', 'R141', '01-00-00', 'FOREST HILLS 71')
Processing turnstile ('H009', 'R235', '00-03-02', 'BEDFORD AV')
Processing turnstile ('R634', 'R069', '00-00-01', 'NEW LOTS AV')
Processing turnstile ('R138', 'R293', '00-03-05', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-03: -2285339
WARNING. Abnormal entry count found on day 2016-02-16: 10763
Processing turnstile ('R243', 'R049', '00-03-00', '51 ST')
Processing turnstile ('R516', 'R291', '00-03-02', '33 ST-RAWSON ST')
Processing turnstile ('R138', 'R293', '00-03-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 13874
Processing turnstile ('R550', 'R072', '00-03-02', '34 ST-HUDSON YD')
Processing turnstile ('R306', 'R207', '00-05-01', '135 ST')
Processing turnstile ('E004', 'R234', '00-00-01', '50 ST')
Processing turnstile ('R232A', 'R176', '03-06-01', '33 ST')
Processing turnstile ('N401', 'R360', '00-00-00', '21 ST')
Processing turnstile ('R244', 'R050', '00-06-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10776
Processing turnstile ('TRAM2', 'R469', '00-03-00', 'RIT-ROOSEVELT')
Processing turnstile ('R523', 'R147', '00-05-01', '61 ST WOODSIDE')
Processing turnstile ('R526', 'R096', '00-03-03', '82 ST-JACKSON H')
Processing turnstile ('R161A', 'R452', '01-00-00', '72 ST')
Processing turnstile ('N094', 'R029', '01-00-00', 'WORLD TRADE CTR')
Processing turnstile ('N501A', 'R020', '02-06-00', '47-50 STS ROCK')
Processing turnstile ('N080', 'R138', '00-00-00', 'W 4 ST-WASH SQ')
Processing turnstile ('R402', 'R446', '00-00-02', 'BROOK AV')
Processing turnstile ('A043', 'R462', '00-03-04', 'CANAL ST')
Processing turnstile ('R243', 'R049', '00-00-01', '51 ST')
Processing turnstile ('R231', 'R176', '00-00-03', '33 ST')
Processing turnstile ('R258', 'R132', '00-03-01', '125 ST')
Processing turnstile ('J037', 'R009', '00-06-00', '121 ST')
Processing turnstile ('R221', 'R170', '01-00-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 10360
WARNING. Abnormal entry count found on day 2016-02-16: 16532
WARNING. Abnormal entry count found on day 2016-02-22: 10192
WARNING. Abnormal entry count found on day 2016-02-29: 10629
Processing turnstile ('N323', 'R018', '01-00-02', 'JKSN HT-ROOSVLT')
Processing turnstile ('N331', 'R219', '00-00-00', '67 AV')
Processing turnstile ('J009', 'R378', '00-00-01', 'MYRTLE AV')
Processing turnstile ('R158', 'R084', '00-02-01', '59 ST COLUMBUS')
Processing turnstile ('N108', 'R217', '00-00-03', 'HOYT-SCHER')
Processing turnstile ('R521', 'R327', '00-06-01', '52 ST')
Processing turnstile ('K026', 'R100', '00-00-04', 'METROPOLITAN AV')
Processing turnstile ('R168A', 'R168', '00-03-02', '96 ST')
Processing turnstile ('R226', 'R131', '02-05-02', '23 ST')
Processing turnstile ('J009', 'R378', '00-00-00', 'MYRTLE AV')
Processing turnstile ('N207', 'R104', '00-00-00', '167 ST')
Processing turnstile ('N603', 'R303', '00-00-02', '21 ST-QNSBRIDGE')
Processing turnstile ('G001', 'R151', '00-03-00', 'CONEY IS-STILLW')
Processing turnstile ('PTH05', 'R543', '00-00-02', 'EXCHANGE PLACE')
Processing turnstile ('R290', 'R161', '00-00-01', 'KINGSBRIDGE RD')
Processing turnstile ('N034', 'R334', '01-06-00', 'CATHEDRAL PKWY')
Processing turnstile ('PTH03', 'R552', '00-00-08', 'JOURNAL SQUARE')
Processing turnstile ('B032', 'R264', '00-00-01', 'OCEAN PKWY')
Processing turnstile ('R550', 'R072', '00-00-02', '34 ST-HUDSON YD')
Processing turnstile ('K025', 'R404', '00-03-00', 'FRESH POND RD')
Processing turnstile ('R217A', 'R194', '00-03-00', 'BLEECKER ST')
Processing turnstile ('N222', 'R156', '00-00-01', 'BEDFORD PK BLVD')
Processing turnstile ('N305A', 'R016', '00-00-02', 'LEXINGTON AV/53')
Processing turnstile ('R168A', 'R168', '00-03-00', '96 ST')
Processing turnstile ('N213', 'R154', '00-00-02', 'TREMONT AV')
Processing turnstile ('R177', 'R273', '01-00-00', '145 ST')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11935
Processing turnstile ('G015', 'R312', '01-06-01', 'W 8 ST-AQUARIUM')
Processing turnstile ('N521', 'R300', '01-00-00', '2 AV')
Processing turnstile ('N090', 'R139', '01-00-00', 'CANAL ST')
Processing turnstile ('H015', 'R250', '01-00-00', 'GRAND ST')
Processing turnstile ('R639', 'R109', '00-05-00', 'CHURCH AV')
Processing turnstile ('N207', 'R104', '00-00-02', '167 ST')
Processing turnstile ('J020', 'R433', '00-00-02', 'ALABAMA AV')
Processing turnstile ('N057', 'R188', '00-00-03', '50 ST')
Processing turnstile ('N400A', 'R359', '02-06-05', 'COURT SQ')
Processing turnstile ('N182', 'R414', '00-00-02', 'HOWARD BCH JFK')
Processing turnstile ('PTH19', 'R549', '02-00-00', 'NEWARK C')
Processing turnstile ('B004', 'R171', '00-00-01', '7 AV')
Processing turnstile ('N305', 'R017', '01-00-05', 'LEXINGTON AV/53')
Processing turnstile ('R323', 'R387', '00-05-00', 'WEST FARMS SQ')
Processing turnstile ('PTH08', 'R540', '00-01-08', 'PATH WTC')
Processing turnstile ('R133', 'R272', '00-00-03', '28 ST')
Processing turnstile ('N317', 'R267', '02-06-00', '46 ST')
Processing turnstile ('R512', 'R092', '00-03-02', 'BROADWAY')
Processing turnstile ('N526', 'R142', '02-06-00', 'DELANCEY/ESSEX')
Processing turnstile ('R532H', 'R328', '02-06-00', 'METS-WILLETS PT')
Processing turnstile ('A060', 'R001', '00-00-00', 'WHITEHALL S-FRY')
Processing turnstile ('R528', 'R097', '00-06-02', 'JUNCTION BLVD')
Processing turnstile ('N207', 'R104', '00-00-03', '167 ST')
Processing turnstile ('A071', 'R044', '02-06-01', 'CHAMBERS ST')
Processing turnstile ('G001', 'R151', '00-00-01', 'CONEY IS-STILLW')
Processing turnstile ('B021', 'R228', '00-00-02', 'AVENUE J')
Processing turnstile ('PTH16', 'R550', '01-02-03', 'LACKAWANNA')
Processing turnstile ('R116', 'R030', '00-05-00', 'CHAMBERS ST')
Processing turnstile ('N063A', 'R011', '00-00-05', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-01: -846
WARNING. Abnormal entry count found on day 2016-02-02: -3413
WARNING. Abnormal entry count found on day 2016-02-03: -3214
WARNING. Abnormal entry count found on day 2016-02-04: -3696
WARNING. Abnormal entry count found on day 2016-02-05: -3441
WARNING. Abnormal entry count found on day 2016-02-08: -5621
WARNING. Abnormal entry count found on day 2016-02-09: -3065
WARNING. Abnormal entry count found on day 2016-02-10: -3472
WARNING. Abnormal entry count found on day 2016-02-11: -3350
WARNING. Abnormal entry count found on day 2016-02-16: -11387
WARNING. Abnormal entry count found on day 2016-02-17: -3546
WARNING. Abnormal entry count found on day 2016-02-18: -3540
WARNING. Abnormal entry count found on day 2016-02-19: -3549
WARNING. Abnormal entry count found on day 2016-02-22: -6198
WARNING. Abnormal entry count found on day 2016-02-23: -3467
WARNING. Abnormal entry count found on day 2016-02-24: -3412
WARNING. Abnormal entry count found on day 2016-02-25: -3845
WARNING. Abnormal entry count found on day 2016-02-26: -3543
WARNING. Abnormal entry count found on day 2016-02-29: -5276
Processing turnstile ('A016', 'R081', '03-00-01', '49 ST')
Processing turnstile ('R528', 'R097', '00-06-00', 'JUNCTION BLVD')
Processing turnstile ('R242', 'R049', '01-03-02', '51 ST')
Processing turnstile ('N505', 'R022', '02-06-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 14035
Processing turnstile ('R180', 'R193', '00-00-03', '157 ST')
Processing turnstile ('R529', 'R208', '00-00-03', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-02-16: 15524
Processing turnstile ('B020', 'R263', '00-06-00', 'AVENUE H')
Processing turnstile ('N511', 'R163', '03-06-01', '14 ST')
Processing turnstile ('N044', 'R187', '00-00-01', '81 ST-MUSEUM')
Processing turnstile ('B009', 'R411', '00-00-02', 'PARK PLACE')
Processing turnstile ('N304', 'R015', '01-06-01', '5 AV/53 ST')
Processing turnstile ('J025', 'R003', '00-00-01', 'CYPRESS HILLS')
Processing turnstile ('A025', 'R023', '01-06-01', '34 ST-HERALD SQ')
Processing turnstile ('R250', 'R179', '00-00-0B', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 12364
WARNING. Abnormal entry count found on day 2016-02-16: 21325
WARNING. Abnormal entry count found on day 2016-02-22: 12974
WARNING. Abnormal entry count found on day 2016-02-29: 13118
Processing turnstile ('R226', 'R131', '02-00-00', '23 ST')
Processing turnstile ('N205', 'R195', '02-00-01', '161/YANKEE STAD')
Processing turnstile ('R647', 'R110', '02-00-01', 'FLATBUSH AV-B.C')
Processing turnstile ('G001', 'R151', '00-00-02', 'CONEY IS-STILLW')
Processing turnstile ('R286', 'R309', '00-00-01', '176 ST')
Processing turnstile ('N329A', 'R201', '01-05-00', 'WOODHAVEN BLVD')
Processing turnstile ('R190', 'R038', '00-00-00', '215 ST')
Processing turnstile ('E012', 'R372', '00-00-02', '18 AV')
Processing turnstile ('R216', 'R322', '01-00-02', 'SPRING ST')
Processing turnstile ('R304', 'R206', '00-00-02', '125 ST')
Processing turnstile ('N510', 'R163', '02-00-02', '14 ST')
Processing turnstile ('N532', 'R129', '00-00-00', 'BERGEN ST')
Processing turnstile ('R180', 'R193', '00-00-02', '157 ST')
Processing turnstile ('R647', 'R110', '02-06-00', 'FLATBUSH AV-B.C')
Processing turnstile ('C010', 'R231', '00-00-02', 'UNION ST')
Processing turnstile ('K026', 'R100', '00-00-00', 'METROPOLITAN AV')
Processing turnstile ('N420B', 'R317', '00-06-00', 'CLINTON-WASH AV')
Processing turnstile ('G001', 'R151', '00-00-00', 'CONEY IS-STILLW')
Processing turnstile ('B028', 'R136', '01-00-00', 'SHEEPSHEAD BAY')
Processing turnstile ('R301', 'R323', '00-00-01', 'CENTRAL PK N110')
Processing turnstile ('R501', 'R054', '00-00-06', '5 AVE')
Processing turnstile ('R101', 'R001', '02-00-00', 'SOUTH FERRY')
Processing turnstile ('R203A', 'R043', '01-06-01', 'WALL ST')
Processing turnstile ('N541', 'R241', '01-06-03', '15 ST-PROSPECT')
Processing turnstile ('PTH02', 'R544', '00-00-01', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-02-04: -676176
Processing turnstile ('R154', 'R116', '00-00-01', '50 ST')
Processing turnstile ('R169', 'R168', '01-00-04', '96 ST')
Processing turnstile ('N060', 'R010', '01-00-05', '42 ST-PORT AUTH')
Processing turnstile ('R173', 'R159', '00-00-02', '116 ST-COLUMBIA')
Processing turnstile ('S101A', 'R070', '01-00-06', 'ST. GEORGE')
Processing turnstile ('E005', 'R247', '00-00-01', '55 ST')
Processing turnstile ('H001', 'R175', '00-00-05', '8 AV')
Processing turnstile ('H019', 'R294', '00-00-01', 'MORGAN AV')
Processing turnstile ('J016', 'R381', '00-00-00', 'HALSEY ST')
Processing turnstile ('N534', 'R220', '01-00-01', 'CARROLL ST')
Processing turnstile ('R288', 'R275', '00-00-02', '183 ST')
Processing turnstile ('R530', 'R310', '00-00-02', '111 ST')
Processing turnstile ('R412', 'R146', '00-00-01', 'HUNTS POINT AV')
Processing turnstile ('A016', 'R081', '03-06-01', '49 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 133654618
Processing turnstile ('N007A', 'R174', '00-00-01', '181 ST')
Processing turnstile ('R176', 'R169', '00-00-00', '137 ST CITY COL')
Processing turnstile ('A081', 'R028', '04-05-00', 'FULTON ST')
Processing turnstile ('R514', 'R094', '00-00-00', 'ASTORIA BLVD')
Processing turnstile ('R513', 'R093', '00-00-02', '30 AV')
Processing turnstile ('A016', 'R081', '03-00-00', '49 ST')
Processing turnstile ('N010', 'R126', '00-03-04', '175 ST')
Processing turnstile ('JFK01', 'R535', '00-00-02', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-02-16: -22562
Processing turnstile ('PTH08', 'R540', '00-01-01', 'PATH WTC')
Processing turnstile ('R145', 'R032', '00-00-04', 'TIMES SQ-42 ST')
Processing turnstile ('R192', 'R039', '00-06-00', 'MARBLE HILL-225')
Processing turnstile ('N213', 'R154', '00-00-00', 'TREMONT AV')
Processing turnstile ('R306', 'R207', '00-00-04', '135 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10997
WARNING. Abnormal entry count found on day 2016-02-29: 19855
Processing turnstile ('N019', 'R101', '01-00-01', '145 ST')
WARNING. Abnormal entry count found on day 2016-02-29: 35139
Processing turnstile ('G011', 'R312', '00-00-00', 'W 8 ST-AQUARIUM')
Processing turnstile ('N408A', 'R256', '00-00-01', 'NASSAU ST')
Processing turnstile ('R257', 'R182', '01-00-01', '116 ST')
Processing turnstile ('R245A', 'R051', '01-06-00', '59 ST')
Processing turnstile ('R190', 'R038', '00-00-02', '215 ST')
Processing turnstile ('R623', 'R061', '00-00-01', 'NOSTRAND AV')
Processing turnstile ('R646', 'R110', '01-00-02', 'FLATBUSH AV-B.C')
Processing turnstile ('R532', 'R328', '00-06-00', 'METS-WILLETS PT')
Processing turnstile ('N113', 'R297', '00-00-02', 'FRANKLIN AV')
Processing turnstile ('D002', 'R390', '00-00-01', '8 AV')
Processing turnstile ('J030', 'R005', '00-00-02', '85 ST-FOREST PK')
Processing turnstile ('N508', 'R453', '00-00-03', '23 ST')
Processing turnstile ('R528', 'R097', '00-00-00', 'JUNCTION BLVD')
Processing turnstile ('N092', 'R029', '03-03-01', 'CHAMBERS ST')
Processing turnstile ('J025', 'R003', '00-00-02', 'CYPRESS HILLS')
Processing turnstile ('D002', 'R390', '00-00-00', '8 AV')
Processing turnstile ('N305A', 'R016', '00-03-02', 'LEXINGTON AV/53')
Processing turnstile ('PTH04', 'R551', '00-04-04', 'GROVE STREET')
Processing turnstile ('B021', 'R228', '00-03-01', 'AVENUE J')
Processing turnstile ('N026', 'R102', '00-00-03', '125 ST')
Processing turnstile ('R145', 'R032', '00-06-01', 'TIMES SQ-42 ST')
Processing turnstile ('N063', 'R011', '02-06-01', '42 ST-PORT AUTH')
Processing turnstile ('N533', 'R129', '02-06-02', 'BERGEN ST')
Processing turnstile ('N120A', 'R153', '01-05-00', 'UTICA AV')
Processing turnstile ('R315', 'R406', '01-00-01', 'PROSPECT AV')
Processing turnstile ('B031', 'R172', '01-06-00', 'BRIGHTON BEACH')
Processing turnstile ('R221', 'R170', '01-05-01', '14 ST-UNION SQ')
Processing turnstile ('TRAM1', 'R468', '00-00-02', 'RIT-MANHATTAN')
Processing turnstile ('N315', 'R238', '00-00-01', 'STEINWAY ST')
Processing turnstile ('A083', 'R125', '00-00-00', 'BROAD ST')
Processing turnstile ('C009', 'R057', '03-00-01', 'ATL AV-BARCLAY')
Processing turnstile ('R534', 'R055', '01-03-00', 'FLUSHING-MAIN')
Processing turnstile ('PTH11', 'R545', '00-00-01', '14TH STREET')
Processing turnstile ('J034', 'R007', '00-00-00', '104 ST')
Processing turnstile ('N510', 'R163', '02-06-01', '14 ST')
Processing turnstile ('C003', 'R089', '00-00-02', 'JAY ST-METROTEC')
Processing turnstile ('N003', 'R185', '00-00-00', 'DYCKMAN ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10272
Processing turnstile ('N405', 'R239', '00-06-02', 'GREENPOINT AV')
Processing turnstile ('N541', 'R241', '01-05-00', '15 ST-PROSPECT')
Processing turnstile ('R246', 'R177', '00-03-05', '68ST-HUNTER CO')
Processing turnstile ('N062', 'R011', '01-03-03', '42 ST-PORT AUTH')
Processing turnstile ('R601A', 'R108', '02-00-00', 'BOROUGH HALL')
Processing turnstile ('R201', 'R041', '00-06-00', 'BOWLING GREEN')
Processing turnstile ('N126', 'R441', '00-00-01', 'VAN SICLEN AVE')
Processing turnstile ('R151', 'R033', '00-00-06', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11694
Processing turnstile ('R610', 'R057', '00-06-03', 'ATL AV-BARCLAY')
Processing turnstile ('R159', 'R164', '01-00-02', '66 ST-LINCOLN')
Processing turnstile ('N605', 'R024', '00-05-00', 'SUTPHIN-ARCHER')
Processing turnstile ('R138', 'R293', '00-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 15058
Processing turnstile ('R203A', 'R043', '01-05-01', 'WALL ST')
Processing turnstile ('R521', 'R327', '00-00-02', '52 ST')
Processing turnstile ('H009', 'R235', '00-03-03', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-02-08: 10892
WARNING. Abnormal entry count found on day 2016-02-16: 15707
WARNING. Abnormal entry count found on day 2016-02-22: 11162
WARNING. Abnormal entry count found on day 2016-02-29: 11904
Processing turnstile ('N181A', 'R464', '00-06-02', 'AQUEDUCT RACETR')
Processing turnstile ('N336', 'R158', '00-03-01', 'KEW GARDENS')
Processing turnstile ('N556', 'R424', '00-00-02', 'AVENUE P')
Processing turnstile ('R247', 'R178', '01-00-03', '77 ST')
Processing turnstile ('N072', 'R012', '05-03-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 10635
Processing turnstile ('B026', 'R230', '00-00-03', 'NECK RD')
Processing turnstile ('N605', 'R024', '00-00-04', 'SUTPHIN-ARCHER')
Processing turnstile ('PTH16', 'R550', '01-01-07', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-02-19: -905585
Processing turnstile ('N114', 'R297', '01-05-01', 'FRANKLIN AV')
Processing turnstile ('JFK03', 'R536', '00-03-00', 'JFK JAMAICA CT1')
Processing turnstile ('PTH08', 'R540', '00-04-08', 'PATH WTC')
Processing turnstile ('C016', 'R278', '00-00-02', '25 ST')
Processing turnstile ('N324', 'R018', '00-03-02', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-16: 12374
Processing turnstile ('R258', 'R132', '00-00-02', '125 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11506
Processing turnstile ('N185', 'R417', '00-05-00', 'BEACH 98 ST')
Processing turnstile ('C008', 'R099', '00-00-02', 'DEKALB AV')
Processing turnstile ('C018', 'R197', '00-00-00', '36 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10002
Processing turnstile ('PTH04', 'R551', '00-01-00', 'GROVE STREET')
Processing turnstile ('R161B', 'R452', '00-00-00', '72 ST')
Processing turnstile ('R114', 'R028', '02-00-02', 'FULTON ST')
Processing turnstile ('A015', 'R081', '00-00-03', '49 ST')
Processing turnstile ('R309', 'R345', '00-00-00', 'HARLEM 148 ST')
Processing turnstile ('R317', 'R408', '01-05-01', 'SIMPSON ST')
Processing turnstile ('N324', 'R018', '00-06-01', 'JKSN HT-ROOSVLT')
Processing turnstile ('N222', 'R156', '00-00-03', 'BEDFORD PK BLVD')
Processing turnstile ('R517', 'R291', '01-06-00', '33 ST-RAWSON ST')
Processing turnstile ('N083', 'R138', '01-02-01', 'W 4 ST-WASH SQ')
Processing turnstile ('R161A', 'R452', '01-00-01', '72 ST')
Processing turnstile ('A041', 'R086', '00-00-02', 'PRINCE ST')
Processing turnstile ('R101', 'R001', '02-00-01', 'SOUTH FERRY')
Processing turnstile ('R258', 'R132', '00-00-04', '125 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14632
Processing turnstile ('N035', 'R334', '00-00-02', 'CATHEDRAL PKWY')
Processing turnstile ('N073', 'R013', '02-00-04', '34 ST-PENN STA')
Processing turnstile ('N409', 'R268', '00-03-00', 'METROPOLITAN AV')
Processing turnstile ('N037', 'R314', '00-00-00', '103 ST')
Processing turnstile ('R217A', 'R194', '00-03-01', 'BLEECKER ST')
Processing turnstile ('R159', 'R164', '01-00-00', '66 ST-LINCOLN')
Processing turnstile ('N329', 'R201', '00-03-03', 'WOODHAVEN BLVD')
Processing turnstile ('PTH03', 'R552', '00-01-07', 'JOURNAL SQUARE')
Processing turnstile ('N506', 'R022', '00-05-04', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 14959
Processing turnstile ('C008', 'R099', '00-00-03', 'DEKALB AV')
Processing turnstile ('A069', 'R044', '01-06-01', 'CHAMBERS ST')
Processing turnstile ('N539A', 'R288', '00-05-00', '7 AV')
Processing turnstile ('R550', 'R072', '00-03-04', '34 ST-HUDSON YD')
Processing turnstile ('R245', 'R051', '00-03-01', '59 ST')
Processing turnstile ('PTH16', 'R550', '01-02-02', 'LACKAWANNA')
Processing turnstile ('R231', 'R176', '00-00-05', '33 ST')
Processing turnstile ('R133', 'R272', '00-00-01', '28 ST')
Processing turnstile ('N546', 'R204', '00-00-04', 'CHURCH AV')
Processing turnstile ('N300', 'R113', '01-00-03', '7 AV')
Processing turnstile ('E013', 'R373', '00-00-01', '20 AV')
Processing turnstile ('A082', 'R028', '05-05-00', 'FULTON ST')
Processing turnstile ('R601A', 'R108', '02-05-00', 'BOROUGH HALL')
Processing turnstile ('PTH19', 'R549', '02-00-04', 'NEWARK C')
Processing turnstile ('A060', 'R001', '00-00-07', 'WHITEHALL S-FRY')
Processing turnstile ('PTH20', 'R549', '03-01-03', 'NEWARK HM HE')
Processing turnstile ('B027', 'R136', '00-00-02', 'SHEEPSHEAD BAY')
Processing turnstile ('PTH04', 'R551', '00-01-05', 'GROVE STREET')
Processing turnstile ('R283', 'R221', '00-00-03', '167 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11418
Processing turnstile ('N051', 'R084', '02-00-04', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-02-16: 10742
Processing turnstile ('N530', 'R301', '00-00-00', 'YORK ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10238
Processing turnstile ('N305', 'R017', '01-00-00', 'LEXINGTON AV/53')
Processing turnstile ('N420B', 'R317', '00-00-02', 'CLINTON-WASH AV')
Processing turnstile ('B027', 'R136', '00-00-00', 'SHEEPSHEAD BAY')
Processing turnstile ('N056', 'R188', '01-00-03', '50 ST')
Processing turnstile ('N607', 'R025', '01-00-02', 'JAMAICA CENTER')
Processing turnstile ('N505', 'R022', '02-00-02', '34 ST-HERALD SQ')
Processing turnstile ('R201', 'R041', '00-00-01', 'BOWLING GREEN')
Processing turnstile ('N309A', 'R140', '00-02-02', 'QUEENS PLAZA')
Processing turnstile ('R160', 'R164', '02-05-01', '66 ST-LINCOLN')
Processing turnstile ('N045', 'R187', '01-00-00', '81 ST-MUSEUM')
Processing turnstile ('N026', 'R102', '00-00-06', '125 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11868
Processing turnstile ('R504', 'R276', '00-00-03', 'VERNON-JACKSON')
Processing turnstile ('R244A', 'R050', '01-00-01', '59 ST')
Processing turnstile ('R293', 'R133', '00-00-03', 'MOSHOLU PKWY')
Processing turnstile ('R619', 'R059', '00-00-01', 'GRAND ARMY PLAZ')
Processing turnstile ('R312', 'R405', '00-00-00', 'JACKSON AV')
Processing turnstile ('R532H', 'R328', '02-05-01', 'METS-WILLETS PT')
Processing turnstile ('G015', 'R312', '01-05-01', 'W 8 ST-AQUARIUM')
Processing turnstile ('R294', 'R052', '00-00-02', 'WOODLAWN')
Processing turnstile ('R262', 'R195', '03-06-00', '161/YANKEE STAD')
Processing turnstile ('PTH07', 'R550', '00-00-03', 'CITY / BUS')
Processing turnstile ('R210', 'R044', '00-03-00', 'BROOKLYN BRIDGE')
Processing turnstile ('R619', 'R059', '00-00-00', 'GRAND ARMY PLAZ')
Processing turnstile ('N030', 'R333', '00-00-00', '116 ST')
Processing turnstile ('PTH01', 'R549', '00-01-03', 'NEWARK HW BMEBE')
Processing turnstile ('N095A', 'R014', '01-03-02', 'FULTON ST')
Processing turnstile ('R328', 'R361', '00-00-01', 'PELHAM PKWY')
Processing turnstile ('R229', 'R143', '01-00-04', '28 ST')
Processing turnstile ('PTH13', 'R541', '00-00-00', 'THIRTY ST')
Processing turnstile ('N056', 'R188', '01-00-00', '50 ST')
Processing turnstile ('R327', 'R361', '01-06-01', 'PELHAM PKWY')
Processing turnstile ('N342', 'R019', '01-03-01', 'JAMAICA 179 ST')
Processing turnstile ('R626', 'R062', '00-05-00', 'CROWN HTS-UTICA')
Processing turnstile ('N095', 'R014', '00-03-06', 'FULTON ST')
Processing turnstile ('R238', 'R046', '00-06-02', 'GRD CNTRL-42 ST')
Processing turnstile ('N606', 'R025', '00-00-08', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-02-08: 15728
WARNING. Abnormal entry count found on day 2016-02-16: 31654
WARNING. Abnormal entry count found on day 2016-02-22: 16609
WARNING. Abnormal entry count found on day 2016-02-29: 16042
Processing turnstile ('N114', 'R297', '01-00-03', 'FRANKLIN AV')
Processing turnstile ('S101A', 'R070', '01-03-00', 'ST. GEORGE')
Processing turnstile ('N213', 'R154', '00-00-04', 'TREMONT AV')
Processing turnstile ('A034', 'R170', '03-03-00', '14 ST-UNION SQ')
Processing turnstile ('N141', 'R356', '00-03-02', 'OZONE PK LEFFRT')
Processing turnstile ('N012', 'R035', '01-05-01', '168 ST')
Processing turnstile ('N501', 'R020', '01-00-03', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-02-26: -12583250
Processing turnstile ('R643', 'R135', '00-00-00', 'NEWKIRK AV')
Processing turnstile ('R244A', 'R050', '01-00-04', '59 ST')
Processing turnstile ('N045', 'R187', '01-00-02', '81 ST-MUSEUM')
Processing turnstile ('B015', 'R098', '01-00-02', 'CHURCH AV')
Processing turnstile ('N040', 'R251', '00-00-01', '96 ST')
Processing turnstile ('R610', 'R057', '00-03-04', 'ATL AV-BARCLAY')
Processing turnstile ('R116', 'R030', '00-00-02', 'CHAMBERS ST')
Processing turnstile ('N013', 'R035', '02-00-01', '168 ST')
Processing turnstile ('N306', 'R017', '00-03-01', 'LEXINGTON AV/53')
Processing turnstile ('R174', 'R034', '00-00-04', '125 ST')
Processing turnstile ('PTH02', 'R544', '00-04-04', 'HARRISON')
Processing turnstile ('R422', 'R428', '00-00-00', 'BUHRE AV')
Processing turnstile ('R601A', 'R108', '02-00-06', 'BOROUGH HALL')
Processing turnstile ('R288', 'R275', '00-00-03', '183 ST')
Processing turnstile ('R130', 'R321', '01-06-01', '18 ST')
Processing turnstile ('N100', 'R252', '00-00-00', 'HIGH ST')
Processing turnstile ('N222', 'R156', '00-00-00', 'BEDFORD PK BLVD')
Processing turnstile ('R240', 'R047', '00-03-01', 'GRD CNTRL-42 ST')
Processing turnstile ('PTH05', 'R543', '00-01-00', 'EXCHANGE PLACE')
Processing turnstile ('N333B', 'R141', '02-01-00', 'FOREST HILLS 71')
Processing turnstile ('N080', 'R138', '00-06-00', 'W 4 ST-WASH SQ')
Processing turnstile ('N309A', 'R140', '00-00-04', 'QUEENS PLAZA')
Processing turnstile ('N022', 'R332', '02-06-01', '135 ST')
Processing turnstile ('R164', 'R167', '00-03-00', '86 ST')
Processing turnstile ('R194', 'R040', '00-03-01', '231 ST')
Processing turnstile ('C026', 'R215', '01-06-01', '86 ST')
Processing turnstile ('A049', 'R088', '02-00-01', 'CORTLANDT ST')
Processing turnstile ('H040', 'R376', '00-00-02', 'EAST 105 ST')
Processing turnstile ('N213', 'R154', '00-06-01', 'TREMONT AV')
Processing turnstile ('A027', 'R082', '01-03-02', '28 ST')
Processing turnstile ('N035', 'R334', '00-00-01', 'CATHEDRAL PKWY')
Processing turnstile ('R418', 'R106', '00-06-01', 'CASTLE HILL AV')
Processing turnstile ('R334', 'R367', '00-00-01', '233 ST')
Processing turnstile ('G011', 'R312', '00-00-03', 'W 8 ST-AQUARIUM')
Processing turnstile ('TRAM2', 'R469', '00-00-01', 'RIT-ROOSEVELT')
Processing turnstile ('N537', 'R258', '00-03-00', '4 AV-9 ST')
Processing turnstile ('N300', 'R113', '01-00-02', '7 AV')
Processing turnstile ('N559', 'R425', '00-00-00', 'AVENUE U')
Processing turnstile ('R205A', 'R014', '04-02-00', 'FULTON ST')
Processing turnstile ('R143', 'R032', '02-00-01', 'TIMES SQ-42 ST')
Processing turnstile ('N212', 'R253', '01-00-00', '174-175 STS')
Processing turnstile ('S102', 'R165', '00-05-01', 'TOMPKINSVILLE')
Processing turnstile ('B025', 'R150', '00-00-01', 'AVENUE U')
Processing turnstile ('H008', 'R248', '01-00-04', '1 AV')
WARNING. Abnormal entry count found on day 2016-02-08: 11708
WARNING. Abnormal entry count found on day 2016-02-16: 15126
WARNING. Abnormal entry count found on day 2016-02-22: 12285
WARNING. Abnormal entry count found on day 2016-02-29: 11266
Processing turnstile ('N195', 'R358', '00-00-00', 'BEACH 25 ST')
Processing turnstile ('R628', 'R064', '00-00-00', 'SARATOGA AV')
Processing turnstile ('R158', 'R084', '00-05-04', '59 ST COLUMBUS')
Processing turnstile ('H032', 'R295', '00-00-01', 'WILSON AV')
Processing turnstile ('N026', 'R102', '00-00-02', '125 ST')
Processing turnstile ('PTH03', 'R552', '00-01-06', 'JOURNAL SQUARE')
Processing turnstile ('PTH16', 'R550', '01-00-03', 'LACKAWANNA')
Processing turnstile ('R423', 'R429', '00-00-01', 'PELHAM BAY PARK')
Processing turnstile ('PTH12', 'R542', '00-00-00', 'TWENTY THIRD ST')
Processing turnstile ('A033', 'R170', '02-00-03', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 11644
Processing turnstile ('N063A', 'R011', '00-05-01', '42 ST-PORT AUTH')
Processing turnstile ('R183', 'R260', '00-00-02', '181 ST')
Processing turnstile ('N049', 'R084', '01-03-00', '59 ST COLUMBUS')
Processing turnstile ('E003', 'R369', '00-00-00', 'FT HAMILTON PKY')
Processing turnstile ('R192', 'R039', '00-00-01', 'MARBLE HILL-225')
Processing turnstile ('C008', 'R099', '00-06-02', 'DEKALB AV')
Processing turnstile ('N203', 'R195', '00-05-00', '161/YANKEE STAD')
Processing turnstile ('A084', 'R125', '01-00-00', 'BROAD ST')
Processing turnstile ('N091', 'R029', '02-06-00', 'CHAMBERS ST')
Processing turnstile ('PTH13', 'R541', '00-00-06', 'THIRTY ST')
Processing turnstile ('A034', 'R170', '03-00-00', '14 ST-UNION SQ')
Processing turnstile ('N304', 'R015', '01-00-01', '5 AV/53 ST')
Processing turnstile ('N405', 'R239', '00-00-03', 'GREENPOINT AV')
Processing turnstile ('R137', 'R031', '02-03-01', '34 ST-PENN STA')
Processing turnstile ('C017', 'R455', '00-00-01', '25 ST')
Processing turnstile ('R206', 'R014', '02-03-03', 'FULTON ST')
Processing turnstile ('TRAM2', 'R469', '00-03-01', 'RIT-ROOSEVELT')
Processing turnstile ('N118', 'R199', '01-00-00', 'KINGSTON-THROOP')
Processing turnstile ('N221', 'R155', '00-00-02', 'KINGSBRIDGE RD')
Processing turnstile ('N003', 'R185', '00-00-01', 'DYCKMAN ST')
Processing turnstile ('N191', 'R335', '00-00-02', 'BEACH 67 ST')
Processing turnstile ('N400A', 'R359', '02-03-02', 'COURT SQ')
Processing turnstile ('H012', 'R268', '01-00-01', 'LORIMER ST')
Processing turnstile ('R304', 'R206', '00-00-03', '125 ST')
Processing turnstile ('R161A', 'R452', '01-00-04', '72 ST')
Processing turnstile ('N101', 'R252', '01-00-01', 'HIGH ST')
Processing turnstile ('PTH18', 'R549', '01-00-00', 'NEWARK BM BW')
Processing turnstile ('J035', 'R008', '00-00-00', '111 ST')
Processing turnstile ('N528', 'R257', '01-00-00', 'EAST BROADWAY')
Processing turnstile ('R285', 'R308', '00-00-00', 'MT EDEN AV')
Processing turnstile ('R128', 'R105', '01-03-02', '14 ST')
Processing turnstile ('R417', 'R222', '00-05-00', 'PARKCHESTER')
Processing turnstile ('R158', 'R084', '00-00-02', '59 ST COLUMBUS')
Processing turnstile ('R514', 'R094', '00-05-01', 'ASTORIA BLVD')
Processing turnstile ('R610', 'R057', '00-03-00', 'ATL AV-BARCLAY')
Processing turnstile ('R626', 'R062', '00-00-00', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-02-16: 10465
Processing turnstile ('R194', 'R040', '00-06-00', '231 ST')
Processing turnstile ('N532', 'R129', '00-00-02', 'BERGEN ST')
Processing turnstile ('N412', 'R299', '00-00-02', 'BROADWAY')
Processing turnstile ('PTH19', 'R549', '02-01-04', 'NEWARK C')
Processing turnstile ('R289', 'R119', '00-03-00', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-02-16: 15440
WARNING. Abnormal entry count found on day 2016-02-29: 14473
Processing turnstile ('N528', 'R257', '01-06-00', 'EAST BROADWAY')
Processing turnstile ('R241A', 'R048', '00-00-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10432
Processing turnstile ('R122', 'R290', '02-05-01', 'HOUSTON ST')
Processing turnstile ('N221', 'R155', '00-00-00', 'KINGSBRIDGE RD')
Processing turnstile ('R102', 'R304', '01-03-01', 'RECTOR ST')
Processing turnstile ('R533', 'R055', '00-00-03', 'FLUSHING-MAIN')
Processing turnstile ('S101A', 'R070', '01-03-03', 'ST. GEORGE')
Processing turnstile ('C009', 'R057', '03-00-03', 'ATL AV-BARCLAY')
Processing turnstile ('N215', 'R237', '00-00-02', '182-183 STS')
Processing turnstile ('N134', 'R385', '00-03-00', 'ROCKAWAY BLVD')
Processing turnstile ('R329', 'R362', '00-00-00', 'ALLERTON AV')
Processing turnstile ('R148', 'R033', '01-00-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -608
WARNING. Abnormal entry count found on day 2016-02-02: -2146
WARNING. Abnormal entry count found on day 2016-02-03: -2276
WARNING. Abnormal entry count found on day 2016-02-04: -2229
WARNING. Abnormal entry count found on day 2016-02-05: -2262
WARNING. Abnormal entry count found on day 2016-02-08: -3742
WARNING. Abnormal entry count found on day 2016-02-09: -2000
WARNING. Abnormal entry count found on day 2016-02-10: -2259
WARNING. Abnormal entry count found on day 2016-02-11: -2279
WARNING. Abnormal entry count found on day 2016-02-16: -6625
WARNING. Abnormal entry count found on day 2016-02-17: -2107
WARNING. Abnormal entry count found on day 2016-02-18: -2338
WARNING. Abnormal entry count found on day 2016-02-19: -2281
WARNING. Abnormal entry count found on day 2016-02-22: -3588
WARNING. Abnormal entry count found on day 2016-02-23: -2072
WARNING. Abnormal entry count found on day 2016-02-24: -2257
WARNING. Abnormal entry count found on day 2016-02-25: -2286
WARNING. Abnormal entry count found on day 2016-02-26: -2360
WARNING. Abnormal entry count found on day 2016-02-29: -4005
Processing turnstile ('C004', 'R089', '01-05-00', 'JAY ST-METROTEC')
Processing turnstile ('N138', 'R355', '01-04-01', '111 ST')
Processing turnstile ('R253', 'R181', '00-00-01', '110 ST')
Processing turnstile ('H023', 'R236', '00-06-02', 'DEKALB AV')
Processing turnstile ('N203', 'R195', '00-00-00', '161/YANKEE STAD')
Processing turnstile ('B019', 'R149', '00-00-03', 'NEWKIRK PLAZA')
Processing turnstile ('R173', 'R159', '00-00-00', '116 ST-COLUMBIA')
WARNING. Abnormal entry count found on day 2016-02-16: 10946
Processing turnstile ('N070', 'R012', '04-00-03', '34 ST-PENN STA')
Processing turnstile ('N192', 'R336', '00-05-00', 'BEACH 60 ST')
Processing turnstile ('N422', 'R318', '00-06-00', 'FULTON ST')
Processing turnstile ('N519', 'R461', '00-03-00', "B'WAY-LAFAYETTE")
Processing turnstile ('A049', 'R088', '02-05-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-02-02: -1
WARNING. Abnormal entry count found on day 2016-02-08: -1
WARNING. Abnormal entry count found on day 2016-02-11: -1
WARNING. Abnormal entry count found on day 2016-02-16: -3
WARNING. Abnormal entry count found on day 2016-02-19: -2
WARNING. Abnormal entry count found on day 2016-02-22: -5
WARNING. Abnormal entry count found on day 2016-02-24: -1
WARNING. Abnormal entry count found on day 2016-02-26: -2
WARNING. Abnormal entry count found on day 2016-02-29: -1
Processing turnstile ('R148', 'R033', '01-03-00', 'TIMES SQ-42 ST')
Processing turnstile ('J005', 'R353', '00-00-02', 'LORIMER ST')
Processing turnstile ('R220', 'R160', '01-00-00', 'ASTOR PL')
Processing turnstile ('R414', 'R162', '00-03-01', 'ELDER AV')
Processing turnstile ('R228', 'R143', '00-00-05', '28 ST')
Processing turnstile ('N062A', 'R010', '00-06-00', '42 ST-PORT AUTH')
Processing turnstile ('R143', 'R032', '02-03-02', 'TIMES SQ-42 ST')
Processing turnstile ('N315', 'R238', '00-00-02', 'STEINWAY ST')
Processing turnstile ('N422', 'R318', '00-05-01', 'FULTON ST')
Processing turnstile ('N535', 'R220', '00-00-01', 'CARROLL ST')
Processing turnstile ('A071', 'R044', '02-06-02', 'CHAMBERS ST')
Processing turnstile ('G015', 'R312', '01-05-00', 'W 8 ST-AQUARIUM')
Processing turnstile ('R336', 'R145', '00-03-01', 'WAKEFIELD/241')
Processing turnstile ('A010', 'R080', '00-00-03', '57 ST-7 AV')
Processing turnstile ('N095A', 'R014', '01-03-01', 'FULTON ST')
Processing turnstile ('N102', 'R127', '01-05-01', 'JAY ST-METROTEC')
Processing turnstile ('E015', 'R399', '00-00-01', '25 AV')
Processing turnstile ('N548', 'R420', '00-00-01', 'DITMAS AV')
Processing turnstile ('D012', 'R395', '00-00-02', 'KINGS HWY')
Processing turnstile ('N519A', 'R461', '01-00-02', "B'WAY-LAFAYETTE")
Processing turnstile ('R730', 'R431', '00-00-02', 'EASTCHSTER/DYRE')
Processing turnstile ('N327', 'R254', '00-05-00', 'GRAND-NEWTOWN')
Processing turnstile ('R120', 'R320', '01-00-02', 'CANAL ST')
Processing turnstile ('A043', 'R462', '00-06-02', 'CANAL ST')
Processing turnstile ('PTH02', 'R544', '00-00-02', 'HARRISON')
Processing turnstile ('N549', 'R242', '00-00-02', '18 AV')
Processing turnstile ('N330', 'R202', '00-00-01', '63 DR-REGO PARK')
Processing turnstile ('N536', 'R270', '00-00-03', 'SMITH-9 ST')
Processing turnstile ('R334', 'R367', '00-05-00', '233 ST')
Processing turnstile ('N544', 'R289', '01-06-00', 'FT HAMILTON PKY')
Processing turnstile ('PTH07', 'R550', '00-01-00', 'CITY / BUS')
Processing turnstile ('A027', 'R082', '01-03-01', '28 ST')
Processing turnstile ('R423', 'R429', '00-05-01', 'PELHAM BAY PARK')
Processing turnstile ('R419', 'R326', '00-00-00', 'ZEREGA AV')
Processing turnstile ('J031', 'R006', '00-00-01', 'WOODHAVEN BLVD')
Processing turnstile ('N559', 'R425', '00-06-00', 'AVENUE U')
Processing turnstile ('R612', 'R057', '01-03-01', 'ATL AV-BARCLAY')
Processing turnstile ('C022', 'R212', '01-06-01', '59 ST')
Processing turnstile ('N102', 'R127', '01-06-01', 'JAY ST-METROTEC')
Processing turnstile ('N531', 'R129', '01-06-00', 'BERGEN ST')
Processing turnstile ('N409', 'R268', '00-06-01', 'METROPOLITAN AV')
Processing turnstile ('N306', 'R017', '00-03-02', 'LEXINGTON AV/53')
Processing turnstile ('PTH17', 'R541', '01-01-05', 'THIRTY THIRD ST')
Processing turnstile ('N135', 'R385', '01-05-01', 'ROCKAWAY BLVD')
Processing turnstile ('A021', 'R032', '01-00-07', 'TIMES SQ-42 ST')
Processing turnstile ('N329A', 'R201', '01-05-01', 'WOODHAVEN BLVD')
Processing turnstile ('N072', 'R012', '05-03-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 12601
Processing turnstile ('N561', 'R271', '00-00-00', 'AVENUE X')
Processing turnstile ('N405', 'R239', '00-06-03', 'GREENPOINT AV')
Processing turnstile ('PTH20', 'R549', '03-01-02', 'NEWARK HM HE')
Processing turnstile ('R336', 'R145', '00-00-01', 'WAKEFIELD/241')
Processing turnstile ('N312', 'R339', '00-00-00', '36 ST')
Processing turnstile ('A046', 'R463', '00-06-02', 'CANAL ST')
Processing turnstile ('R534', 'R055', '01-00-00', 'FLUSHING-MAIN')
Processing turnstile ('PTH03', 'R552', '00-01-03', 'JOURNAL SQUARE')
Processing turnstile ('R644', 'R135', '01-06-01', 'NEWKIRK AV')
Processing turnstile ('R516', 'R291', '00-03-00', '33 ST-RAWSON ST')
Processing turnstile ('A050', 'R088', '00-00-00', 'CORTLANDT ST')
Processing turnstile ('A061', 'R142', '00-00-01', 'DELANCEY/ESSEX')
Processing turnstile ('J034', 'R007', '00-00-01', '104 ST')
Processing turnstile ('N604', 'R342', '00-03-00', 'JAMAICA VAN WK')
Processing turnstile ('R158', 'R084', '00-02-00', '59 ST COLUMBUS')
Processing turnstile ('N102', 'R127', '01-00-01', 'JAY ST-METROTEC')
Processing turnstile ('R415', 'R120', '00-00-00', 'MORISN AV/SNDVW')
Processing turnstile ('R512', 'R092', '00-03-00', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-02-08: 13506
WARNING. Abnormal entry count found on day 2016-02-16: 20246
WARNING. Abnormal entry count found on day 2016-02-22: 15972
WARNING. Abnormal entry count found on day 2016-02-29: 19167
Processing turnstile ('R530', 'R310', '00-00-03', '111 ST')
Processing turnstile ('D010', 'R394', '00-00-03', 'BAY PKWY')
Processing turnstile ('N095A', 'R014', '01-03-05', 'FULTON ST')
Processing turnstile ('R527', 'R122', '00-05-01', '90 ST-ELMHURST')
Processing turnstile ('N554', 'R423', '01-04-00', 'AVENUE N')
Processing turnstile ('R172', 'R192', '00-00-01', 'CATHEDRAL PKWY')
Processing turnstile ('D005', 'R398', '00-06-01', 'NEW UTRECHT AV')
Processing turnstile ('N327', 'R254', '00-00-01', 'GRAND-NEWTOWN')
Processing turnstile ('N330', 'R202', '00-05-00', '63 DR-REGO PARK')
Processing turnstile ('H022', 'R279', '00-06-01', 'JEFFERSON ST')
Processing turnstile ('C008', 'R099', '00-03-03', 'DEKALB AV')
Processing turnstile ('PTH20', 'R549', '03-00-05', 'NEWARK HM HE')
Processing turnstile ('B004', 'R171', '00-00-00', '7 AV')
Processing turnstile ('N083', 'R138', '01-03-02', 'W 4 ST-WASH SQ')
Processing turnstile ('R515', 'R095', '00-00-01', 'ASTORIA DITMARS')
Processing turnstile ('N046', 'R281', '00-06-00', '72 ST')
Processing turnstile ('N422', 'R318', '00-00-00', 'FULTON ST')
Processing turnstile ('JFK03', 'R536', '00-03-01', 'JFK JAMAICA CT1')
Processing turnstile ('R217A', 'R194', '00-00-02', 'BLEECKER ST')
Processing turnstile ('N508', 'R453', '00-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-02: -2975
WARNING. Abnormal entry count found on day 2016-02-03: -3055
WARNING. Abnormal entry count found on day 2016-02-04: -2835
WARNING. Abnormal entry count found on day 2016-02-05: -3072
WARNING. Abnormal entry count found on day 2016-02-08: -5247
WARNING. Abnormal entry count found on day 2016-02-09: -2729
WARNING. Abnormal entry count found on day 2016-02-10: -3002
WARNING. Abnormal entry count found on day 2016-02-11: -3011
WARNING. Abnormal entry count found on day 2016-02-16: -5953
WARNING. Abnormal entry count found on day 2016-02-17: -2074
WARNING. Abnormal entry count found on day 2016-02-18: -2388
WARNING. Abnormal entry count found on day 2016-02-19: -2881
WARNING. Abnormal entry count found on day 2016-02-22: -2829
WARNING. Abnormal entry count found on day 2016-02-23: -2676
WARNING. Abnormal entry count found on day 2016-02-24: -3046
WARNING. Abnormal entry count found on day 2016-02-25: -2194
WARNING. Abnormal entry count found on day 2016-02-26: -2914
WARNING. Abnormal entry count found on day 2016-02-29: -5115
Processing turnstile ('N071', 'R013', '00-00-00', '34 ST-PENN STA')
Processing turnstile ('A049', 'R088', '02-01-00', 'CORTLANDT ST')
Processing turnstile ('H003', 'R163', '01-06-01', '6 AV')
Processing turnstile ('C016', 'R278', '00-00-00', '25 ST')
Processing turnstile ('C015', 'R454', '00-00-00', 'PROSPECT AV')
Processing turnstile ('R163', 'R166', '01-00-02', '79 ST')
Processing turnstile ('G015', 'R312', '01-06-00', 'W 8 ST-AQUARIUM')
Processing turnstile ('N194', 'R338', '00-00-00', 'BEACH 36 ST')
Processing turnstile ('N057', 'R188', '00-00-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10468
Processing turnstile ('PTH08', 'R540', '00-04-03', 'PATH WTC')
WARNING. Abnormal entry count found on day 2016-02-16: 12085
Processing turnstile ('H001', 'R175', '00-06-01', '8 AV')
Processing turnstile ('R423', 'R429', '00-03-00', 'PELHAM BAY PARK')
Processing turnstile ('N080', 'R138', '00-00-01', 'W 4 ST-WASH SQ')
Processing turnstile ('R533', 'R055', '00-03-05', 'FLUSHING-MAIN')
Processing turnstile ('R110', 'R027', '01-03-03', 'WALL ST')
Processing turnstile ('R532H', 'R328', '02-03-05', 'METS-WILLETS PT')
Processing turnstile ('PTH18', 'R549', '01-02-03', 'NEWARK BM BW')
Processing turnstile ('R507', 'R134', '00-03-05', 'HUNTERS PT AV')
Processing turnstile ('N501', 'R020', '01-00-01', '47-50 STS ROCK')
Processing turnstile ('N049', 'R084', '01-06-02', '59 ST COLUMBUS')
Processing turnstile ('R245', 'R051', '00-00-00', '59 ST')
Processing turnstile ('N193', 'R337', '00-05-01', 'BEACH 44 ST')
Processing turnstile ('N131', 'R383', '00-00-00', '80 ST')
Processing turnstile ('PTH17', 'R541', '01-00-05', 'THIRTY THIRD ST')
Processing turnstile ('N123B', 'R439', '01-06-00', 'ROCKAWAY AV')
Processing turnstile ('R125', 'R189', '00-00-01', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10264
Processing turnstile ('R336', 'R145', '00-00-02', 'WAKEFIELD/241')
Processing turnstile ('N561', 'R271', '00-00-02', 'AVENUE X')
Processing turnstile ('R116', 'R030', '00-06-00', 'CHAMBERS ST')
Processing turnstile ('N304', 'R015', '01-00-00', '5 AV/53 ST')
Processing turnstile ('N049', 'R084', '01-06-01', '59 ST COLUMBUS')
Processing turnstile ('N318', 'R298', '00-00-02', 'NORTHERN BLVD')
Processing turnstile ('R311', 'R053', '00-00-01', '3 AV-149 ST')
Processing turnstile ('B027', 'R136', '00-00-03', 'SHEEPSHEAD BAY')
Processing turnstile ('R243', 'R049', '00-03-02', '51 ST')
Processing turnstile ('N332', 'R219', '01-05-00', '67 AV')
Processing turnstile ('N415', 'R286', '00-00-01', 'MYRTLE-WILLOUGH')
Processing turnstile ('N127', 'R442', '00-00-01', 'SHEPHERD AV')
Processing turnstile ('N098', 'R028', '00-07-02', 'FULTON ST')
Processing turnstile ('R283', 'R221', '00-00-01', '167 ST')
Processing turnstile ('R134', 'R272', '01-00-00', '28 ST')
Processing turnstile ('R317', 'R408', '01-00-01', 'SIMPSON ST')
Processing turnstile ('C021', 'R212', '00-00-01', '59 ST')
Processing turnstile ('PTH04', 'R551', '00-00-06', 'GROVE STREET')
Processing turnstile ('PTH16', 'R550', '01-00-02', 'LACKAWANNA')
Processing turnstile ('R525', 'R018', '02-06-01', '74 ST-BROADWAY')
Processing turnstile ('N103', 'R127', '00-00-02', 'JAY ST-METROTEC')
Processing turnstile ('R319', 'R409', '01-00-01', 'FREEMAN ST')
Processing turnstile ('R217A', 'R194', '00-05-00', 'BLEECKER ST')
Processing turnstile ('N309A', 'R140', '00-00-00', 'QUEENS PLAZA')
Processing turnstile ('N010', 'R126', '00-05-00', '175 ST')
Processing turnstile ('N072', 'R012', '05-03-06', '34 ST-PENN STA')
Processing turnstile ('N120', 'R153', '00-05-01', 'UTICA AV')
Processing turnstile ('N094', 'R029', '01-00-01', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-02-19: -598551
Processing turnstile ('N051', 'R084', '02-03-04', '59 ST COLUMBUS')
Processing turnstile ('R523', 'R147', '00-05-00', '61 ST WOODSIDE')
Processing turnstile ('N011', 'R126', '01-06-01', '175 ST')
Processing turnstile ('N506', 'R022', '00-00-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 12416
Processing turnstile ('PTH16', 'R550', '01-00-07', 'LACKAWANNA')
Processing turnstile ('N405', 'R239', '00-03-00', 'GREENPOINT AV')
Processing turnstile ('N546', 'R204', '00-00-03', 'CHURCH AV')
Processing turnstile ('R612', 'R057', '01-00-02', 'ATL AV-BARCLAY')
Processing turnstile ('R411', 'R450', '01-00-02', 'LONGWOOD AV')
Processing turnstile ('N181A', 'R464', '00-06-01', 'AQUEDUCT RACETR')
Processing turnstile ('R251', 'R144', '00-03-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12057
Processing turnstile ('R422', 'R428', '00-03-01', 'BUHRE AV')
Processing turnstile ('R289', 'R119', '00-03-01', 'FORDHAM RD')
Processing turnstile ('N504', 'R021', '02-00-04', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-02-16: 14539
Processing turnstile ('R101', 'R001', '02-07-01', 'SOUTH FERRY')
Processing turnstile ('A061', 'R142', '00-03-01', 'DELANCEY/ESSEX')
Processing turnstile ('R521', 'R327', '00-00-00', '52 ST')
Processing turnstile ('B010', 'R412', '00-03-00', 'BOTANIC GARDEN')
Processing turnstile ('A002', 'R051', '02-03-06', '59 ST')
Processing turnstile ('R238', 'R046', '00-06-04', 'GRD CNTRL-42 ST')
Processing turnstile ('N605', 'R024', '00-06-03', 'SUTPHIN-ARCHER')
Processing turnstile ('B020', 'R263', '00-06-02', 'AVENUE H')
Processing turnstile ('R232', 'R176', '02-00-00', '33 ST')
Processing turnstile ('N062A', 'R010', '00-06-01', '42 ST-PORT AUTH')
Processing turnstile ('N307', 'R359', '00-00-02', 'COURT SQ-23 ST')
Processing turnstile ('A041', 'R086', '00-00-01', 'PRINCE ST')
Processing turnstile ('J002', 'R460', '00-05-01', 'MARCY AV')
Processing turnstile ('C012', 'R258', '01-06-02', '4AV-9 ST')
Processing turnstile ('A058', 'R001', '01-06-00', 'WHITEHALL S-FRY')
Processing turnstile ('N343', 'R019', '00-00-06', 'JAMAICA 179 ST')
Processing turnstile ('R612', 'R057', '01-00-05', 'ATL AV-BARCLAY')
Processing turnstile ('N075', 'R111', '01-05-00', '23 ST')
Processing turnstile ('B021', 'R228', '00-00-01', 'AVENUE J')
Processing turnstile ('PTH16', 'R550', '01-01-02', 'LACKAWANNA')
Processing turnstile ('R143', 'R032', '02-03-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12103
Processing turnstile ('R532H', 'R328', '02-03-07', 'METS-WILLETS PT')
Processing turnstile ('N500', 'R020', '00-05-01', '47-50 STS ROCK')
Processing turnstile ('R232A', 'R176', '03-05-01', '33 ST')
Processing turnstile ('N309A', 'R140', '00-03-00', 'QUEENS PLAZA')
Processing turnstile ('N333', 'R141', '01-00-03', 'FOREST HILLS 71')
Processing turnstile ('R220', 'R160', '01-00-02', 'ASTOR PL')
Processing turnstile ('R533', 'R055', '00-00-06', 'FLUSHING-MAIN')
Processing turnstile ('R201', 'R041', '00-00-02', 'BOWLING GREEN')
Processing turnstile ('N025', 'R102', '01-06-00', '125 ST')
Processing turnstile ('R227A', 'R131', '01-06-01', '23 ST')
Processing turnstile ('R240', 'R047', '00-00-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 10364
WARNING. Abnormal entry count found on day 2016-02-16: 17901
WARNING. Abnormal entry count found on day 2016-02-22: 10384
WARNING. Abnormal entry count found on day 2016-02-29: 10522
Processing turnstile ('R519', 'R223', '00-03-03', '46 ST BLISS ST')
Processing turnstile ('N519A', 'R461', '01-05-03', "B'WAY-LAFAYETTE")
Processing turnstile ('D003', 'R391', '00-00-01', 'FT HAMILTON PKY')
Processing turnstile ('R402', 'R446', '00-00-01', 'BROOK AV')
Processing turnstile ('A050', 'R088', '00-05-03', 'CORTLANDT ST')
Processing turnstile ('N312', 'R339', '00-03-00', '36 ST')
Processing turnstile ('R244', 'R050', '00-00-02', '59 ST')
Processing turnstile ('N339', 'R114', '01-05-00', 'PARSONS BLVD')
Processing turnstile ('N078', 'R175', '01-03-00', '14 ST')
Processing turnstile ('R729', 'R292', '00-00-02', 'BAYCHESTER AV')
Processing turnstile ('R200A', 'R041', '01-00-05', 'BOWLING GREEN')
Processing turnstile ('C008', 'R099', '00-06-00', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10344
Processing turnstile ('N314', 'R238', '01-03-00', 'STEINWAY ST')
Processing turnstile ('N073', 'R013', '02-00-07', '34 ST-PENN STA')
Processing turnstile ('PTH07', 'R550', '00-01-08', 'CITY / BUS')
Processing turnstile ('R293', 'R133', '00-06-01', 'MOSHOLU PKWY')
Processing turnstile ('N092', 'R029', '03-00-04', 'CHAMBERS ST')
Processing turnstile ('R318', 'R408', '00-00-02', 'SIMPSON ST')
Processing turnstile ('R132', 'R190', '01-00-03', '23 ST')
Processing turnstile ('N325A', 'R218', '00-00-01', 'ELMHURST AV')
Processing turnstile ('A050', 'R088', '00-02-00', 'CORTLANDT ST')
Processing turnstile ('N124', 'R103', '00-03-00', 'BROADWAY JCT')
Processing turnstile ('N400A', 'R359', '02-00-03', 'COURT SQ')
Processing turnstile ('R236', 'R045', '00-06-00', 'GRD CNTRL-42 ST')
Processing turnstile ('N185', 'R417', '00-00-01', 'BEACH 98 ST')
Processing turnstile ('N509', 'R203', '00-00-03', '23 ST')
Processing turnstile ('N062', 'R011', '01-00-02', '42 ST-PORT AUTH')
Processing turnstile ('R175', 'R169', '01-00-01', '137 ST CITY COL')
Processing turnstile ('R419', 'R326', '00-03-00', 'ZEREGA AV')
Processing turnstile ('R262', 'R195', '03-00-00', '161/YANKEE STAD')
Processing turnstile ('H009', 'R235', '00-06-05', 'BEDFORD AV')
Processing turnstile ('E011', 'R371', '00-06-01', '79 ST')
Processing turnstile ('R142', 'R293', '01-06-01', '34 ST-PENN STA')
Processing turnstile ('R169', 'R168', '01-00-03', '96 ST')
Processing turnstile ('N338', 'R128', '01-05-00', 'SUTPHIN BLVD')
Processing turnstile ('E016', 'R400', '00-00-00', 'BAY 50 ST')
Processing turnstile ('N224', 'R157', '00-00-01', 'NORWOOD 205 ST')
Processing turnstile ('R526', 'R096', '00-05-00', '82 ST-JACKSON H')
Processing turnstile ('R325', 'R388', '00-00-02', 'E 180 ST')
Processing turnstile ('R287', 'R244', '00-00-02', 'BURNSIDE AV')
Processing turnstile ('R523', 'R147', '00-00-07', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-02-16: 12517
Processing turnstile ('R163', 'R166', '01-00-01', '79 ST')
Processing turnstile ('N072', 'R012', '05-03-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 12790
Processing turnstile ('R251', 'R144', '00-00-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11388
Processing turnstile ('R254', 'R181', '01-00-02', '110 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11275
Processing turnstile ('R303', 'R324', '00-00-02', '116 ST')
Processing turnstile ('N559', 'R425', '00-00-02', 'AVENUE U')
Processing turnstile ('H012', 'R268', '01-00-00', 'LORIMER ST')
Processing turnstile ('N112A', 'R284', '01-00-00', 'CLINTON-WASH AV')
Processing turnstile ('N063', 'R011', '02-00-00', '42 ST-PORT AUTH')
Processing turnstile ('R221', 'R170', '01-00-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 11717
WARNING. Abnormal entry count found on day 2016-02-16: 18445
WARNING. Abnormal entry count found on day 2016-02-22: 12446
WARNING. Abnormal entry count found on day 2016-02-29: 12227
Processing turnstile ('N206', 'R104', '01-06-01', '167 ST')
Processing turnstile ('H005', 'R330', '00-00-02', '3 AV')
Processing turnstile ('N098', 'R028', '00-05-01', 'FULTON ST')
Processing turnstile ('B018', 'R184', '00-00-02', 'CORTELYOU RD')
Processing turnstile ('R636', 'R209', '00-00-02', 'STERLING ST')
Processing turnstile ('A071', 'R044', '02-00-00', 'CHAMBERS ST')
Processing turnstile ('S101A', 'R070', '01-00-04', 'ST. GEORGE')
Processing turnstile ('B021', 'R228', '00-05-01', 'AVENUE J')
Processing turnstile ('R238', 'R046', '00-06-00', 'GRD CNTRL-42 ST')
Processing turnstile ('R533', 'R055', '00-00-07', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-16: 13277
Processing turnstile ('R165', 'R167', '01-00-01', '86 ST')
Processing turnstile ('N039', 'R251', '01-06-01', '96 ST')
Processing turnstile ('B010', 'R412', '00-03-01', 'BOTANIC GARDEN')
Processing turnstile ('N405', 'R239', '00-06-01', 'GREENPOINT AV')
Processing turnstile ('N135', 'R385', '01-03-01', 'ROCKAWAY BLVD')
Processing turnstile ('R204', 'R043', '02-06-00', 'WALL ST')
Processing turnstile ('C026', 'R215', '01-06-00', '86 ST')
Processing turnstile ('PTH05', 'R543', '00-00-04', 'EXCHANGE PLACE')
Processing turnstile ('N090', 'R139', '01-03-00', 'CANAL ST')
Processing turnstile ('N324', 'R018', '00-03-01', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-16: 13013
Processing turnstile ('N605', 'R024', '00-06-00', 'SUTPHIN-ARCHER')
Processing turnstile ('R190', 'R038', '00-00-01', '215 ST')
Processing turnstile ('PTH16', 'R550', '01-02-00', 'LACKAWANNA')
Processing turnstile ('N062A', 'R010', '00-05-01', '42 ST-PORT AUTH')
Processing turnstile ('R161B', 'R452', '00-05-00', '72 ST')
Processing turnstile ('A002', 'R051', '02-05-01', '59 ST')
Processing turnstile ('R503', 'R276', '01-06-01', 'VERNON-JACKSON')
Processing turnstile ('N094', 'R029', '01-05-01', 'WORLD TRADE CTR')
Processing turnstile ('N034', 'R334', '01-00-01', 'CATHEDRAL PKWY')
Processing turnstile ('A006', 'R079', '00-00-02', '5 AV/59 ST')
Processing turnstile ('B015', 'R098', '01-00-01', 'CHURCH AV')
Processing turnstile ('N546', 'R204', '00-00-06', 'CHURCH AV')
Processing turnstile ('N043', 'R186', '00-06-00', '86 ST')
Processing turnstile ('R312', 'R405', '00-05-01', 'JACKSON AV')
Processing turnstile ('R532', 'R328', '00-06-05', 'METS-WILLETS PT')
Processing turnstile ('N141', 'R356', '00-03-00', 'OZONE PK LEFFRT')
Processing turnstile ('R161B', 'R452', '00-05-01', '72 ST')
Processing turnstile ('R608', 'R056', '00-03-02', 'NEVINS ST')
Processing turnstile ('B004', 'R171', '00-00-03', '7 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10049
Processing turnstile ('E003', 'R369', '00-05-00', 'FT HAMILTON PKY')
Processing turnstile ('R135', 'R031', '01-00-04', '34 ST-PENN STA')
Processing turnstile ('N110', 'R283', '00-05-01', 'LAFAYETTE AV')
Processing turnstile ('R523', 'R147', '00-06-01', '61 ST WOODSIDE')
Processing turnstile ('N340', 'R115', '00-00-01', '169 ST')
Processing turnstile ('B020', 'R263', '00-05-02', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-02-17: -669614
Processing turnstile ('N511', 'R163', '03-00-01', '14 ST')
Processing turnstile ('G001', 'R151', '00-00-04', 'CONEY IS-STILLW')
Processing turnstile ('PTH08', 'R540', '00-01-03', 'PATH WTC')
Processing turnstile ('R532H', 'R328', '02-03-00', 'METS-WILLETS PT')
Processing turnstile ('N112A', 'R284', '01-06-00', 'CLINTON-WASH AV')
Processing turnstile ('N334B', 'R341', '00-03-00', '75 AV')
Processing turnstile ('N111', 'R284', '00-00-01', 'CLINTON-WASH AV')
Processing turnstile ('S101A', 'R070', '01-00-00', 'ST. GEORGE')
Processing turnstile ('A054', 'R227', '01-03-01', 'RECTOR ST')
Processing turnstile ('B023', 'R211', '01-06-00', 'KINGS HWY')
Processing turnstile ('N181A', 'R464', '00-06-03', 'AQUEDUCT RACETR')
Processing turnstile ('R204', 'R043', '02-03-01', 'WALL ST')
Processing turnstile ('N510', 'R163', '02-06-00', '14 ST')
Processing turnstile ('R262A', 'R195', '04-00-02', '161/YANKEE STAD')
Processing turnstile ('N502', 'R021', '01-06-00', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-02-25: 29799
Processing turnstile ('A046', 'R463', '00-06-07', 'CANAL ST')
Processing turnstile ('N128', 'R200', '00-00-04', 'EUCLID AV')
Processing turnstile ('R210', 'R044', '00-03-04', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-02-01: -847
WARNING. Abnormal entry count found on day 2016-02-02: -2395
WARNING. Abnormal entry count found on day 2016-02-03: -2550
WARNING. Abnormal entry count found on day 2016-02-04: -2148
WARNING. Abnormal entry count found on day 2016-02-05: -2408
WARNING. Abnormal entry count found on day 2016-02-08: -4072
WARNING. Abnormal entry count found on day 2016-02-09: -93
WARNING. Abnormal entry count found on day 2016-02-10: -1712
WARNING. Abnormal entry count found on day 2016-02-11: -2386
WARNING. Abnormal entry count found on day 2016-02-16: -6109
WARNING. Abnormal entry count found on day 2016-02-17: -1968
WARNING. Abnormal entry count found on day 2016-02-18: -2582
WARNING. Abnormal entry count found on day 2016-02-19: -2616
WARNING. Abnormal entry count found on day 2016-02-22: -4607
WARNING. Abnormal entry count found on day 2016-02-23: -2610
WARNING. Abnormal entry count found on day 2016-02-24: -2170
WARNING. Abnormal entry count found on day 2016-02-25: -1942
WARNING. Abnormal entry count found on day 2016-02-26: -2425
WARNING. Abnormal entry count found on day 2016-02-29: -4756
Processing turnstile ('N322', 'R340', '00-00-01', '65 ST')
Processing turnstile ('R237', 'R046', '01-00-01', 'GRD CNTRL-42 ST')
Processing turnstile ('D002', 'R390', '00-03-02', '8 AV')
Processing turnstile ('R628', 'R064', '00-00-03', 'SARATOGA AV')
Processing turnstile ('H032', 'R295', '00-00-00', 'WILSON AV')
Processing turnstile ('N051', 'R084', '02-03-00', '59 ST COLUMBUS')
Processing turnstile ('R635', 'R277', '00-00-02', 'PRESIDENT ST')
Processing turnstile ('PTH08', 'R540', '00-00-06', 'PATH WTC')
Processing turnstile ('R518', 'R261', '00-00-01', '40 ST LOWERY ST')
WARNING. Abnormal entry count found on day 2016-02-17: -3362920
Processing turnstile ('N013', 'R035', '02-00-00', '168 ST')
Processing turnstile ('N418', 'R269', '01-05-00', 'BEDFORD-NOSTRAN')
Processing turnstile ('A050', 'R088', '00-06-04', 'CORTLANDT ST')
Processing turnstile ('R116', 'R030', '00-06-02', 'CHAMBERS ST')
Processing turnstile ('R524', 'R347', '00-00-03', '69 ST')
Processing turnstile ('R216', 'R322', '01-00-01', 'SPRING ST')
Processing turnstile ('PTH08', 'R540', '00-01-05', 'PATH WTC')
Processing turnstile ('A030', 'R083', '01-06-01', '23 ST')
Processing turnstile ('R610', 'R057', '00-04-00', 'ATL AV-BARCLAY')
Processing turnstile ('R161A', 'R452', '01-00-03', '72 ST')
Processing turnstile ('N045', 'R187', '01-06-01', '81 ST-MUSEUM')
Processing turnstile ('N095A', 'R014', '01-00-00', 'FULTON ST')
Processing turnstile ('N095A', 'R014', '01-03-00', 'FULTON ST')
Processing turnstile ('N075', 'R111', '01-05-01', '23 ST')
Processing turnstile ('A029', 'R082', '00-00-00', '28 ST')
Processing turnstile ('R236', 'R045', '00-03-05', 'GRD CNTRL-42 ST')
Processing turnstile ('N558', 'R130', '01-05-00', 'KINGS HWY')
Processing turnstile ('R332', 'R365', '00-00-01', '219 ST')
Processing turnstile ('R236', 'R045', '00-00-02', 'GRD CNTRL-42 ST')
Processing turnstile ('R155', 'R116', '01-00-05', '50 ST')
Processing turnstile ('N303', 'R015', '00-00-0B', '5 AV/53 ST')
Processing turnstile ('R284', 'R243', '00-00-01', '170 ST')
Processing turnstile ('R205A', 'R014', '04-02-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10331
Processing turnstile ('R244', 'R050', '00-06-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 10619
WARNING. Abnormal entry count found on day 2016-02-16: 14244
WARNING. Abnormal entry count found on day 2016-02-29: 10514
Processing turnstile ('R511', 'R091', '00-00-00', '36 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 11299
Processing turnstile ('B024A', 'R211', '02-00-01', 'KINGS HWY')
Processing turnstile ('R315', 'R406', '01-00-00', 'PROSPECT AV')
Processing turnstile ('N501A', 'R020', '02-03-00', '47-50 STS ROCK')
Processing turnstile ('C017', 'R455', '00-00-00', '25 ST')
Processing turnstile ('N124', 'R103', '00-00-01', 'BROADWAY JCT')
Processing turnstile ('PTH11', 'R545', '00-00-00', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-02-22: 1565829
WARNING. Abnormal entry count found on day 2016-02-23: -1561426
Processing turnstile ('N134', 'R385', '00-03-01', 'ROCKAWAY BLVD')
Processing turnstile ('R525', 'R018', '02-00-01', '74 ST-BROADWAY')
Processing turnstile ('R116', 'R030', '00-00-01', 'CHAMBERS ST')
Processing turnstile ('H001', 'R175', '00-00-03', '8 AV')
Processing turnstile ('R729', 'R292', '00-00-01', 'BAYCHESTER AV')
Processing turnstile ('N420B', 'R317', '00-06-01', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-02-16: 12049
Processing turnstile ('R203', 'R043', '00-00-01', 'WALL ST')
Processing turnstile ('R287', 'R244', '00-06-00', 'BURNSIDE AV')
Processing turnstile ('N323', 'R018', '01-06-01', 'JKSN HT-ROOSVLT')
Processing turnstile ('N500', 'R020', '00-03-03', '47-50 STS ROCK')
Processing turnstile ('R178', 'R273', '00-00-01', '145 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13509
Processing turnstile ('N067', 'R012', '00-00-02', '34 ST-PENN STA')
Processing turnstile ('N092', 'R029', '03-00-00', 'CHAMBERS ST')
Processing turnstile ('R528', 'R097', '00-00-02', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-02-16: 10843
Processing turnstile ('N212', 'R253', '01-06-02', '174-175 STS')
Processing turnstile ('D002', 'R390', '00-03-01', '8 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10849
Processing turnstile ('N039', 'R251', '01-00-01', '96 ST')
Processing turnstile ('J017', 'R432', '00-00-02', 'CHAUNCEY ST')
Processing turnstile ('N340', 'R115', '00-06-00', '169 ST')
Processing turnstile ('R168A', 'R168', '00-03-01', '96 ST')
Processing turnstile ('K017', 'R401', '00-03-00', 'CENTRAL AV')
Processing turnstile ('PTH07', 'R550', '00-02-03', 'CITY / BUS')
Processing turnstile ('B013', 'R196', '01-00-01', 'PROSPECT PARK')
Processing turnstile ('R242', 'R049', '01-03-04', '51 ST')
Processing turnstile ('N063A', 'R011', '00-00-09', '42 ST-PORT AUTH')
Processing turnstile ('R523', 'R147', '00-00-05', '61 ST WOODSIDE')
Processing turnstile ('C022', 'R212', '01-03-00', '59 ST')
Processing turnstile ('R238', 'R046', '00-06-01', 'GRD CNTRL-42 ST')
Processing turnstile ('R248', 'R178', '00-00-02', '77 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13445
Processing turnstile ('A025', 'R023', '01-03-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 12856
Processing turnstile ('A064', 'R311', '00-03-00', 'BOWERY')
Processing turnstile ('R161A', 'R452', '01-06-00', '72 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10952
Processing turnstile ('R231A', 'R176', '01-00-01', '33 ST')
Processing turnstile ('R636', 'R209', '00-00-01', 'STERLING ST')
Processing turnstile ('N195', 'R358', '00-05-00', 'BEACH 25 ST')
Processing turnstile ('R217A', 'R194', '00-00-01', 'BLEECKER ST')
Processing turnstile ('N090', 'R139', '01-05-00', 'CANAL ST')
Processing turnstile ('N305', 'R017', '01-00-02', 'LEXINGTON AV/53')
Processing turnstile ('R314', 'R406', '00-00-01', 'PROSPECT AV')
Processing turnstile ('R169', 'R168', '01-03-03', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 13179
WARNING. Abnormal entry count found on day 2016-02-16: 15410
WARNING. Abnormal entry count found on day 2016-02-22: 13353
WARNING. Abnormal entry count found on day 2016-02-29: 13256
Processing turnstile ('R124', 'R290', '03-00-00', 'HOUSTON ST')
Processing turnstile ('N094', 'R029', '01-06-01', 'WORLD TRADE CTR')
Processing turnstile ('N339', 'R114', '01-06-00', 'PARSONS BLVD')
Processing turnstile ('R532H', 'R328', '02-03-06', 'METS-WILLETS PT')
Processing turnstile ('N506', 'R022', '00-03-01', '34 ST-HERALD SQ')
Processing turnstile ('H028', 'R266', '00-00-00', 'HALSEY ST')
Processing turnstile ('N205', 'R195', '02-00-03', '161/YANKEE STAD')
Processing turnstile ('N092', 'R029', '03-03-02', 'CHAMBERS ST')
Processing turnstile ('R610', 'R057', '00-04-04', 'ATL AV-BARCLAY')
Processing turnstile ('N333B', 'R141', '02-01-01', 'FOREST HILLS 71')
Processing turnstile ('R403', 'R446', '01-00-02', 'BROOK AV')
Processing turnstile ('R126', 'R189', '01-00-01', 'CHRISTOPHER ST')
Processing turnstile ('R111', 'R027', '00-00-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-02-04: -12580524
Processing turnstile ('A038', 'R085', '00-00-03', '8 ST-NYU')
Processing turnstile ('A021', 'R032', '01-00-02', 'TIMES SQ-42 ST')
Processing turnstile ('A046', 'R463', '00-05-00', 'CANAL ST')
Processing turnstile ('PTH18', 'R549', '01-02-00', 'NEWARK BM BW')
Processing turnstile ('A060', 'R001', '00-00-05', 'WHITEHALL S-FRY')
Processing turnstile ('N063A', 'R011', '00-00-06', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-16: 17875
Processing turnstile ('R322', 'R386', '00-00-02', '174 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -602
WARNING. Abnormal entry count found on day 2016-02-02: -1514
WARNING. Abnormal entry count found on day 2016-02-03: -1506
WARNING. Abnormal entry count found on day 2016-02-04: -1566
WARNING. Abnormal entry count found on day 2016-02-05: -1631
WARNING. Abnormal entry count found on day 2016-02-08: -2577
WARNING. Abnormal entry count found on day 2016-02-10: -587
WARNING. Abnormal entry count found on day 2016-02-11: -1461
WARNING. Abnormal entry count found on day 2016-02-16: -4809
WARNING. Abnormal entry count found on day 2016-02-17: -1151
WARNING. Abnormal entry count found on day 2016-02-18: -991
WARNING. Abnormal entry count found on day 2016-02-19: -1305
WARNING. Abnormal entry count found on day 2016-02-22: -2671
WARNING. Abnormal entry count found on day 2016-02-23: -1525
WARNING. Abnormal entry count found on day 2016-02-24: -1527
WARNING. Abnormal entry count found on day 2016-02-25: -1372
WARNING. Abnormal entry count found on day 2016-02-26: -1501
WARNING. Abnormal entry count found on day 2016-02-29: -2984
Processing turnstile ('R101', 'R001', '02-00-02', 'SOUTH FERRY')
Processing turnstile ('R417', 'R222', '00-03-00', 'PARKCHESTER')
Processing turnstile ('C014', 'R246', '00-00-00', 'PROSPECT AV')
Processing turnstile ('R647', 'R110', '02-05-00', 'FLATBUSH AV-B.C')
Processing turnstile ('R326', 'R389', '00-00-00', 'BRONX PARK EAST')
Processing turnstile ('J023', 'R436', '00-00-00', 'NORWOOD AV')
Processing turnstile ('S101', 'R070', '00-03-03', 'ST. GEORGE')
Processing turnstile ('N506', 'R022', '00-05-03', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 12487
Processing turnstile ('N418', 'R269', '01-06-01', 'BEDFORD-NOSTRAN')
Processing turnstile ('R170', 'R191', '00-00-00', '103 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12771
Processing turnstile ('N415', 'R286', '00-00-02', 'MYRTLE-WILLOUGH')
Processing turnstile ('R624', 'R124', '00-00-00', 'KINGSTON AV')
Processing turnstile ('B016', 'R098', '00-03-01', 'CHURCH AV')
Processing turnstile ('J007', 'R377', '00-05-00', 'FLUSHING AV')
Processing turnstile ('N182', 'R414', '00-06-01', 'HOWARD BCH JFK')
Processing turnstile ('R413', 'R325', '00-05-00', 'WHITLOCK AV')
Processing turnstile ('N305A', 'R016', '00-03-04', 'LEXINGTON AV/53')
Processing turnstile ('R204', 'R043', '02-03-00', 'WALL ST')
Processing turnstile ('N339', 'R114', '01-06-01', 'PARSONS BLVD')
Processing turnstile ('R248', 'R178', '00-00-03', '77 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10838
Processing turnstile ('N330C', 'R202', '01-04-01', '63 DR-REGO PARK')
Processing turnstile ('N203', 'R195', '00-05-01', '161/YANKEE STAD')
Processing turnstile ('A035', 'R170', '00-00-02', '14 ST-UNION SQ')
Processing turnstile ('N340A', 'R115', '01-00-02', '169 ST')
Processing turnstile ('PTH18', 'R549', '01-01-00', 'NEWARK BM BW')
Processing turnstile ('C012', 'R258', '01-03-01', '4AV-9 ST')
Processing turnstile ('R230', 'R143', '02-05-01', '28 ST')
Processing turnstile ('R293', 'R133', '00-06-02', 'MOSHOLU PKWY')
Processing turnstile ('N335', 'R158', '01-00-04', 'KEW GARDENS')
Processing turnstile ('R202', 'R042', '00-00-02', 'BOWLING GREEN')
Processing turnstile ('R604', 'R108', '03-00-02', 'BOROUGH HALL')
Processing turnstile ('N533', 'R129', '02-05-01', 'BERGEN ST')
Processing turnstile ('A043', 'R462', '00-03-03', 'CANAL ST')
Processing turnstile ('N333A', 'R141', '00-06-00', 'FOREST HILLS 71')
Processing turnstile ('PTH04', 'R551', '00-04-00', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-02-08: -125418
Processing turnstile ('N501A', 'R020', '02-00-01', '47-50 STS ROCK')
Processing turnstile ('R645', 'R110', '00-00-01', 'FLATBUSH AV-B.C')
Processing turnstile ('B012', 'R196', '00-00-01', 'PROSPECT PARK')
Processing turnstile ('R175', 'R169', '01-00-03', '137 ST CITY COL')
Processing turnstile ('N083', 'R138', '01-02-02', 'W 4 ST-WASH SQ')
Processing turnstile ('N547', 'R420', '01-04-01', 'DITMAS AV')
Processing turnstile ('R182', 'R035', '00-03-01', '168 ST')
Processing turnstile ('E011', 'R371', '00-00-00', '79 ST')
Processing turnstile ('R289', 'R119', '00-05-00', 'FORDHAM RD')
Processing turnstile ('A046', 'R463', '00-05-01', 'CANAL ST')
Processing turnstile ('K025', 'R404', '00-03-01', 'FRESH POND RD')
Processing turnstile ('N417', 'R269', '00-00-02', 'BEDFORD-NOSTRAN')
Processing turnstile ('D002', 'R390', '00-00-02', '8 AV')
Processing turnstile ('R641', 'R210', '00-00-02', 'BEVERLY RD')
Processing turnstile ('H038', 'R350', '00-00-00', 'LIVONIA AV')
Processing turnstile ('N502', 'R021', '01-00-00', '42 ST-BRYANT PK')
Processing turnstile ('N526', 'R142', '02-06-01', 'DELANCEY/ESSEX')
Processing turnstile ('C001', 'R108', '01-06-00', 'BOROUGH HALL')
Processing turnstile ('R171', 'R192', '01-00-02', 'CATHEDRAL PKWY')
Processing turnstile ('N185', 'R417', '00-00-00', 'BEACH 98 ST')
Processing turnstile ('R237B', 'R047', '01-00-02', 'GRD CNTRL-42 ST')
Processing turnstile ('N607', 'R025', '01-06-03', 'JAMAICA CENTER')
Processing turnstile ('R527', 'R122', '00-00-01', '90 ST-ELMHURST')
Processing turnstile ('H001', 'R175', '00-06-03', '8 AV')
Processing turnstile ('PTH03', 'R552', '00-00-07', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-02-16: 10194
Processing turnstile ('N600', 'R302', '00-06-01', '57 ST')
Processing turnstile ('N549', 'R242', '00-00-01', '18 AV')
Processing turnstile ('B034', 'R264', '01-05-01', 'OCEAN PKWY')
Processing turnstile ('N001', 'R173', '01-06-01', 'INWOOD-207 ST')
Processing turnstile ('N002A', 'R173', '00-00-00', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-02-22: 10871
Processing turnstile ('N070', 'R012', '04-00-04', '34 ST-PENN STA')
Processing turnstile ('A039', 'R085', '01-03-01', '8 ST-NYU')
Processing turnstile ('B022', 'R229', '00-00-02', 'AVENUE M')
Processing turnstile ('N508', 'R453', '00-00-04', '23 ST')
Processing turnstile ('N300', 'R113', '01-00-00', '7 AV')
Processing turnstile ('A007', 'R079', '01-06-01', '5 AV/59 ST')
Processing turnstile ('B032', 'R264', '00-00-02', 'OCEAN PKWY')
Processing turnstile ('N329', 'R201', '00-03-01', 'WOODHAVEN BLVD')
Processing turnstile ('R612', 'R057', '01-03-04', 'ATL AV-BARCLAY')
Processing turnstile ('R244A', 'R050', '01-06-00', '59 ST')
Processing turnstile ('PTH18', 'R549', '01-00-01', 'NEWARK BM BW')
Processing turnstile ('R415', 'R120', '00-03-01', 'MORISN AV/SNDVW')
Processing turnstile ('H009', 'R235', '00-06-00', 'BEDFORD AV')
Processing turnstile ('R532H', 'R328', '02-00-05', 'METS-WILLETS PT')
Processing turnstile ('R528', 'R097', '00-00-04', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-02-16: 12327
Processing turnstile ('R331', 'R364', '00-05-01', 'GUN HILL RD')
Processing turnstile ('N185', 'R417', '00-00-02', 'BEACH 98 ST')
Processing turnstile ('JFK01', 'R535', '00-00-03', 'HOWARD BCH JFK')
Processing turnstile ('N339A', 'R114', '00-03-00', 'PARSONS BLVD')
Processing turnstile ('N342', 'R019', '01-06-01', 'JAMAICA 179 ST')
Processing turnstile ('H001', 'R175', '00-06-00', '8 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 13920
Processing turnstile ('N141', 'R356', '00-00-00', 'OZONE PK LEFFRT')
Processing turnstile ('N536', 'R270', '00-05-00', 'SMITH-9 ST')
Processing turnstile ('R103', 'R304', '00-00-01', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10011
Processing turnstile ('R110', 'R027', '01-00-01', 'WALL ST')
Processing turnstile ('N067', 'R012', '00-00-00', '34 ST-PENN STA')
Processing turnstile ('A006', 'R079', '00-00-01', '5 AV/59 ST')
Processing turnstile ('N520', 'R240', '00-00-07', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12963
Processing turnstile ('N408A', 'R256', '00-03-00', 'NASSAU ST')
Processing turnstile ('N067', 'R012', '00-03-00', '34 ST-PENN STA')
Processing turnstile ('N311', 'R339', '01-06-01', '36 ST')
Processing turnstile ('N202', 'R315', '00-00-01', '155 ST')
Processing turnstile ('R110', 'R027', '01-03-02', 'WALL ST')
Processing turnstile ('N500', 'R020', '00-03-04', '47-50 STS ROCK')
Processing turnstile ('R600', 'R224', '00-00-00', 'CLARK ST')
Processing turnstile ('N534', 'R220', '01-06-00', 'CARROLL ST')
Processing turnstile ('N305A', 'R016', '00-00-00', 'LEXINGTON AV/53')
Processing turnstile ('N049', 'R084', '01-05-00', '59 ST COLUMBUS')
Processing turnstile ('A031', 'R083', '00-03-02', '23 ST')
Processing turnstile ('A061', 'R142', '00-00-02', 'DELANCEY/ESSEX')
Processing turnstile ('R231', 'R176', '00-00-01', '33 ST')
Processing turnstile ('N408A', 'R256', '00-06-02', 'NASSAU ST')
Processing turnstile ('B029', 'R172', '00-00-01', 'BRIGHTON BEACH')
Processing turnstile ('N071', 'R013', '00-00-01', '34 ST-PENN STA')
Processing turnstile ('N063', 'R011', '02-00-04', '42 ST-PORT AUTH')
Processing turnstile ('H016', 'R250', '00-00-01', 'GRAND ST')
Processing turnstile ('N040', 'R251', '00-00-02', '96 ST')
Processing turnstile ('N128', 'R200', '00-05-00', 'EUCLID AV')
Processing turnstile ('R246', 'R177', '00-00-04', '68ST-HUNTER CO')
Processing turnstile ('R231', 'R176', '00-00-02', '33 ST')
Processing turnstile ('R307', 'R207', '01-00-02', '135 ST')
WARNING. Abnormal entry count found on day 2016-02-29: 10256
Processing turnstile ('R210A', 'R044', '03-03-00', 'BROOKLYN BRIDGE')
Processing turnstile ('N020', 'R101', '00-00-00', '145 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10575
WARNING. Abnormal entry count found on day 2016-02-22: 13661
Processing turnstile ('R204A', 'R043', '03-06-01', 'WALL ST')
Processing turnstile ('S101', 'R070', '00-03-00', 'ST. GEORGE')
Processing turnstile ('N335', 'R158', '01-06-01', 'KEW GARDENS')
Processing turnstile ('N343', 'R019', '00-00-01', 'JAMAICA 179 ST')
Processing turnstile ('N512', 'R163', '00-00-02', '14 ST')
Processing turnstile ('R305', 'R206', '01-00-02', '125 ST')
Processing turnstile ('R151', 'R033', '00-00-00', 'TIMES SQ-42 ST')
Processing turnstile ('N098', 'R028', '00-00-01', 'FULTON ST')
Processing turnstile ('R423', 'R429', '00-00-04', 'PELHAM BAY PARK')
Processing turnstile ('H026', 'R137', '00-03-01', 'MYRTLE-WYCKOFF')
Processing turnstile ('R221', 'R170', '01-06-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 13609
Processing turnstile ('R165', 'R167', '01-00-02', '86 ST')
Processing turnstile ('PTH04', 'R551', '00-01-02', 'GROVE STREET')
Processing turnstile ('A055', 'R227', '00-00-00', 'RECTOR ST')
Processing turnstile ('R250', 'R179', '00-00-07', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12913
Processing turnstile ('R252', 'R180', '00-00-04', '103 ST')
Processing turnstile ('N026', 'R102', '00-00-04', '125 ST')
Processing turnstile ('R306', 'R207', '00-00-00', '135 ST')
Processing turnstile ('R520', 'R223', '01-05-00', '46 ST BLISS ST')
Processing turnstile ('N223', 'R156', '01-06-00', 'BEDFORD PK BLVD')
Processing turnstile ('R138', 'R293', '00-03-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 12464
Processing turnstile ('R160', 'R164', '02-03-01', '66 ST-LINCOLN')
Processing turnstile ('R626', 'R062', '00-05-01', 'CROWN HTS-UTICA')
Processing turnstile ('N511', 'R163', '03-00-02', '14 ST')
Processing turnstile ('N343', 'R019', '00-00-04', 'JAMAICA 179 ST')
Processing turnstile ('R249', 'R179', '01-00-01', '86 ST')
Processing turnstile ('N554', 'R423', '01-06-00', 'AVENUE N')
Processing turnstile ('N026', 'R102', '00-00-01', '125 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12414
Processing turnstile ('N134', 'R385', '00-00-01', 'ROCKAWAY BLVD')
WARNING. Abnormal entry count found on day 2016-02-11: -7541700
Processing turnstile ('B019', 'R149', '00-00-01', 'NEWKIRK PLAZA')
Processing turnstile ('N334B', 'R341', '00-03-02', '75 AV')
Processing turnstile ('R290', 'R161', '00-00-04', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-02-16: 10019
Processing turnstile ('N130', 'R383', '01-06-01', '80 ST')
Processing turnstile ('N525', 'R142', '01-00-04', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-02-16: 11958
Processing turnstile ('N119', 'R199', '00-00-01', 'KINGSTON-THROOP')
Processing turnstile ('N519A', 'R461', '01-00-00', "B'WAY-LAFAYETTE")
Processing turnstile ('N016A', 'R296', '00-00-00', '163 ST-AMSTERDM')
Processing turnstile ('K017', 'R401', '00-00-00', 'CENTRAL AV')
Processing turnstile ('N500', 'R020', '00-03-02', '47-50 STS ROCK')
Processing turnstile ('N121B', 'R438', '00-00-02', 'RALPH AV')
Processing turnstile ('R412', 'R146', '00-00-03', 'HUNTS POINT AV')
Processing turnstile ('R245', 'R051', '00-05-00', '59 ST')
Processing turnstile ('N414A', 'R316', '01-00-02', 'FLUSHING AV')
Processing turnstile ('N182', 'R414', '00-06-00', 'HOWARD BCH JFK')
Processing turnstile ('N070', 'R012', '04-00-01', '34 ST-PENN STA')
Processing turnstile ('J022', 'R435', '00-00-01', 'CLEVELAND ST')
Processing turnstile ('R162', 'R166', '00-00-01', '79 ST')
Processing turnstile ('N130', 'R383', '01-04-01', '80 ST')
Processing turnstile ('R524', 'R347', '00-00-01', '69 ST')
Processing turnstile ('J024', 'R437', '00-00-02', 'CRESCENT ST')
Processing turnstile ('G011', 'R312', '00-00-02', 'W 8 ST-AQUARIUM')
Processing turnstile ('R407', 'R448', '01-00-01', "E 143/ST MARY'S")
Processing turnstile ('A071', 'R044', '02-00-01', 'CHAMBERS ST')
Processing turnstile ('R161B', 'R452', '00-05-02', '72 ST')
Processing turnstile ('N225', 'R157', '01-00-00', 'NORWOOD 205 ST')
Processing turnstile ('N077', 'R111', '02-06-02', '23 ST')
Processing turnstile ('R197', 'R117', '00-00-00', 'V.CORTLANDT PK')
Processing turnstile ('N601', 'R319', '00-00-03', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-02-16: 10022
Processing turnstile ('R253', 'R181', '00-00-00', '110 ST')
Processing turnstile ('N067', 'R012', '00-00-01', '34 ST-PENN STA')
Processing turnstile ('J035', 'R008', '00-00-03', '111 ST')
Processing turnstile ('R257', 'R182', '01-00-00', '116 ST')
Processing turnstile ('PTH10', 'R547', '00-00-03', '9TH STREET')
Processing turnstile ('N342', 'R019', '01-06-00', 'JAMAICA 179 ST')
Processing turnstile ('R210A', 'R044', '03-03-02', 'BROOKLYN BRIDGE')
Processing turnstile ('G001', 'R151', '00-03-01', 'CONEY IS-STILLW')
Processing turnstile ('R138', 'R293', '00-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 17350
Processing turnstile ('N534', 'R220', '01-06-01', 'CARROLL ST')
Processing turnstile ('R229', 'R143', '01-00-03', '28 ST')
Processing turnstile ('N046', 'R281', '00-00-02', '72 ST')
Processing turnstile ('R200A', 'R041', '01-00-07', 'BOWLING GREEN')
Processing turnstile ('R116', 'R030', '00-00-00', 'CHAMBERS ST')
Processing turnstile ('R408', 'R449', '00-00-00', 'E 149 ST')
Processing turnstile ('N605', 'R024', '00-00-06', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-02-16: 10572
Processing turnstile ('R601A', 'R108', '02-00-04', 'BOROUGH HALL')
Processing turnstile ('R200A', 'R041', '01-00-03', 'BOWLING GREEN')
Processing turnstile ('N501A', 'R020', '02-06-02', '47-50 STS ROCK')
Processing turnstile ('N083', 'R138', '01-05-00', 'W 4 ST-WASH SQ')
Processing turnstile ('N043', 'R186', '00-00-02', '86 ST')
Processing turnstile ('R246', 'R177', '00-00-03', '68ST-HUNTER CO')
Processing turnstile ('R169', 'R168', '01-03-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11157
Processing turnstile ('N203', 'R195', '00-03-01', '161/YANKEE STAD')
Processing turnstile ('R231A', 'R176', '01-06-01', '33 ST')
Processing turnstile ('N416', 'R286', '01-05-00', 'MYRTLE-WILLOUGH')
Processing turnstile ('R111', 'R027', '00-00-01', 'WALL ST')
Processing turnstile ('C008', 'R099', '00-03-01', 'DEKALB AV')
Processing turnstile ('R622', 'R123', '00-00-07', 'FRANKLIN AV')
Processing turnstile ('N324', 'R018', '00-00-00', 'JKSN HT-ROOSVLT')
Processing turnstile ('R262A', 'R195', '04-00-00', '161/YANKEE STAD')
Processing turnstile ('N222', 'R156', '00-00-02', 'BEDFORD PK BLVD')
Processing turnstile ('N506', 'R022', '00-00-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 11910
Processing turnstile ('E014', 'R374', '00-00-03', 'BAY PKWY')
Processing turnstile ('R121', 'R290', '01-06-00', 'HOUSTON ST')
Processing turnstile ('R170', 'R191', '00-00-01', '103 ST')
Processing turnstile ('R612', 'R057', '01-03-06', 'ATL AV-BARCLAY')
Processing turnstile ('R600', 'R224', '00-00-02', 'CLARK ST')
Processing turnstile ('B020', 'R263', '00-06-05', 'AVENUE H')
Processing turnstile ('N003', 'R185', '00-00-02', 'DYCKMAN ST')
Processing turnstile ('PTH02', 'R544', '00-00-05', 'HARRISON')
Processing turnstile ('A025', 'R023', '01-06-02', '34 ST-HERALD SQ')
Processing turnstile ('PTH01', 'R549', '00-01-02', 'NEWARK HW BMEBE')
Processing turnstile ('R206', 'R014', '02-03-00', 'FULTON ST')
Processing turnstile ('R626', 'R062', '00-00-02', 'CROWN HTS-UTICA')
Processing turnstile ('N533', 'R129', '02-05-00', 'BERGEN ST')
Processing turnstile ('D008', 'R392', '00-00-00', '18 AV')
Processing turnstile ('B023', 'R211', '01-06-02', 'KINGS HWY')
Processing turnstile ('N553', 'R422', '00-00-01', 'BAY PKWY')
Processing turnstile ('N603', 'R303', '00-00-01', '21 ST-QNSBRIDGE')
Processing turnstile ('N420B', 'R317', '00-00-01', 'CLINTON-WASH AV')
Processing turnstile ('N336', 'R158', '00-00-05', 'KEW GARDENS')
Processing turnstile ('R516', 'R291', '00-00-02', '33 ST-RAWSON ST')
Processing turnstile ('N020', 'R101', '00-00-02', '145 ST')
Processing turnstile ('R612', 'R057', '01-03-00', 'ATL AV-BARCLAY')
Processing turnstile ('R244', 'R050', '00-03-00', '59 ST')
Processing turnstile ('C017', 'R455', '00-00-02', '25 ST')
Processing turnstile ('PTH01', 'R549', '00-00-07', 'NEWARK HW BMEBE')
Processing turnstile ('R610', 'R057', '00-03-02', 'ATL AV-BARCLAY')
Processing turnstile ('D010', 'R394', '00-00-00', 'BAY PKWY')
Processing turnstile ('S101A', 'R070', '01-03-01', 'ST. GEORGE')
Processing turnstile ('R128', 'R105', '01-00-01', '14 ST')
Processing turnstile ('PTH19', 'R549', '02-01-02', 'NEWARK C')
Processing turnstile ('N606', 'R025', '00-00-07', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-02-08: 13819
WARNING. Abnormal entry count found on day 2016-02-16: 17311
WARNING. Abnormal entry count found on day 2016-02-19: 18611
WARNING. Abnormal entry count found on day 2016-02-22: 14565
WARNING. Abnormal entry count found on day 2016-02-29: 14018
Processing turnstile ('R287', 'R244', '00-00-00', 'BURNSIDE AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10435
Processing turnstile ('R208', 'R014', '03-00-01', 'FULTON ST')
Processing turnstile ('A055', 'R227', '00-00-03', 'RECTOR ST')
Processing turnstile ('N120A', 'R153', '01-05-01', 'UTICA AV')
Processing turnstile ('R160', 'R164', '02-00-02', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-02-16: 10348
Processing turnstile ('N086', 'R282', '00-00-00', 'SPRING ST')
Processing turnstile ('H001', 'R175', '00-00-01', '8 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 15457
Processing turnstile ('N134', 'R385', '00-00-00', 'ROCKAWAY BLVD')
Processing turnstile ('N531', 'R129', '01-06-01', 'BERGEN ST')
Processing turnstile ('R159', 'R164', '01-05-01', '66 ST-LINCOLN')
Processing turnstile ('N094', 'R029', '01-06-02', 'WORLD TRADE CTR')
Processing turnstile ('R534', 'R055', '01-03-04', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-16: 11179
Processing turnstile ('R110', 'R027', '01-00-00', 'WALL ST')
Processing turnstile ('R210', 'R044', '00-05-01', 'BROOKLYN BRIDGE')
Processing turnstile ('N343', 'R019', '00-00-02', 'JAMAICA 179 ST')
Processing turnstile ('N333B', 'R141', '02-03-00', 'FOREST HILLS 71')
Processing turnstile ('N306', 'R017', '00-00-04', 'LEXINGTON AV/53')
Processing turnstile ('R226', 'R131', '02-06-01', '23 ST')
Processing turnstile ('J001', 'R460', '01-00-01', 'MARCY AV')
Processing turnstile ('PTH16', 'R550', '01-00-01', 'LACKAWANNA')
Processing turnstile ('TRAM1', 'R468', '00-05-00', 'RIT-MANHATTAN')
Processing turnstile ('B034', 'R264', '01-05-00', 'OCEAN PKWY')
Processing turnstile ('N507', 'R023', '00-03-06', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 17750
WARNING. Abnormal entry count found on day 2016-02-29: 10243
Processing turnstile ('N418', 'R269', '01-06-00', 'BEDFORD-NOSTRAN')
Processing turnstile ('N309A', 'R140', '00-05-01', 'QUEENS PLAZA')
Processing turnstile ('R639', 'R109', '00-00-02', 'CHURCH AV')
Processing turnstile ('N016A', 'R296', '00-00-02', '163 ST-AMSTERDM')
Processing turnstile ('R529', 'R208', '00-00-04', '103 ST-CORONA')
Processing turnstile ('R334', 'R367', '00-05-01', '233 ST')
Processing turnstile ('N139', 'R355', '00-00-01', '111 ST')
Processing turnstile ('D002', 'R390', '00-03-00', '8 AV')
Processing turnstile ('R161B', 'R452', '00-00-01', '72 ST')
Processing turnstile ('A010', 'R080', '00-00-07', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 14430
Processing turnstile ('R262', 'R195', '03-00-01', '161/YANKEE STAD')
Processing turnstile ('E012', 'R372', '00-00-01', '18 AV')
Processing turnstile ('N525', 'R142', '01-00-01', 'DELANCEY/ESSEX')
Processing turnstile ('PTH19', 'R549', '02-02-00', 'NEWARK C')
Processing turnstile ('R601A', 'R108', '02-00-05', 'BOROUGH HALL')
Processing turnstile ('R602', 'R108', '00-06-01', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-02-16: 13677
WARNING. Abnormal entry count found on day 2016-02-29: 10135
Processing turnstile ('R262', 'R195', '03-03-02', '161/YANKEE STAD')
Processing turnstile ('N017', 'R331', '00-00-04', '155 ST')
Processing turnstile ('R322', 'R386', '00-00-01', '174 ST')
Processing turnstile ('N218', 'R112', '01-06-00', 'FORDHAM RD')
Processing turnstile ('R113', 'R028', '01-01-01', 'FULTON ST')
Processing turnstile ('PTH05', 'R543', '00-01-03', 'EXCHANGE PLACE')
Processing turnstile ('PTH03', 'R552', '00-00-00', 'JOURNAL SQUARE')
Processing turnstile ('R645', 'R110', '00-03-01', 'FLATBUSH AV-B.C')
Processing turnstile ('A069', 'R044', '01-00-02', 'CHAMBERS ST')
Processing turnstile ('R728', 'R226', '00-00-02', 'GUN HILL RD')
Processing turnstile ('N548', 'R420', '00-00-00', 'DITMAS AV')
Processing turnstile ('B031', 'R172', '01-00-02', 'BRIGHTON BEACH')
Processing turnstile ('PTH03', 'R552', '00-00-05', 'JOURNAL SQUARE')
Processing turnstile ('PTH13', 'R541', '00-00-04', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-02-08: -77621
Processing turnstile ('R508', 'R346', '00-03-02', 'COURT SQ')
Processing turnstile ('N523', 'R300', '00-00-03', '2 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 13985
WARNING. Abnormal entry count found on day 2016-02-22: 10171
Processing turnstile ('N094', 'R029', '01-06-04', 'WORLD TRADE CTR')
Processing turnstile ('R162', 'R166', '00-00-03', '79 ST')
Processing turnstile ('N325A', 'R218', '00-06-00', 'ELMHURST AV')
Processing turnstile ('R286', 'R309', '00-00-02', '176 ST')
Processing turnstile ('A081', 'R028', '04-05-01', 'FULTON ST')
Processing turnstile ('R158', 'R084', '00-05-03', '59 ST COLUMBUS')
Processing turnstile ('PTH20', 'R549', '03-00-02', 'NEWARK HM HE')
Processing turnstile ('N329', 'R201', '00-00-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-02-16: 11536
Processing turnstile ('N324', 'R018', '00-00-04', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-16: 14501
WARNING. Abnormal entry count found on day 2016-02-29: 10040
Processing turnstile ('N505', 'R022', '02-00-07', '34 ST-HERALD SQ')
Processing turnstile ('PTH01', 'R549', '00-00-08', 'NEWARK HW BMEBE')
Processing turnstile ('N210', 'R253', '00-00-00', '174-175 STS')
Processing turnstile ('R237', 'R046', '01-00-02', 'GRD CNTRL-42 ST')
Processing turnstile ('R423', 'R429', '00-00-00', 'PELHAM BAY PARK')
Processing turnstile ('R246', 'R177', '00-03-02', '68ST-HUNTER CO')
Processing turnstile ('N124', 'R103', '00-03-02', 'BROADWAY JCT')
WARNING. Abnormal entry count found on day 2016-02-16: 14020
WARNING. Abnormal entry count found on day 2016-02-22: 16307
WARNING. Abnormal entry count found on day 2016-02-29: 10997
Processing turnstile ('R418', 'R106', '00-03-01', 'CASTLE HILL AV')
Processing turnstile ('R610', 'R057', '00-03-06', 'ATL AV-BARCLAY')
Processing turnstile ('A033', 'R170', '02-06-01', '14 ST-UNION SQ')
Processing turnstile ('D009', 'R393', '00-00-00', '20 AV')
Processing turnstile ('N117', 'R198', '01-00-00', 'NOSTRAND AV')
Processing turnstile ('K024', 'R403', '00-00-01', 'FOREST AVE')
Processing turnstile ('H001', 'R175', '00-05-01', '8 AV')
Processing turnstile ('R294', 'R052', '00-00-00', 'WOODLAWN')
Processing turnstile ('J028', 'R004', '00-00-02', '75 ST-ELDERTS')
Processing turnstile ('R617', 'R058', '00-00-02', 'BERGEN ST')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('N504', 'R021', '02-00-00', '42 ST-BRYANT PK')
Processing turnstile ('B020', 'R263', '00-00-01', 'AVENUE H')
Processing turnstile ('A043', 'R462', '00-03-00', 'CANAL ST')
Processing turnstile ('R151', 'R033', '00-00-05', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12016
Processing turnstile ('R323', 'R387', '00-06-00', 'WEST FARMS SQ')
Processing turnstile ('R210', 'R044', '00-06-00', 'BROOKLYN BRIDGE')
Processing turnstile ('R550', 'R072', '00-00-03', '34 ST-HUDSON YD')
Processing turnstile ('PTH17', 'R541', '01-01-00', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-02-23: -1792056
Processing turnstile ('N505', 'R022', '02-00-06', '34 ST-HERALD SQ')
Processing turnstile ('R160', 'R164', '02-03-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-02-16: 12326
Processing turnstile ('R128', 'R105', '01-00-00', '14 ST')
Processing turnstile ('N133', 'R384', '00-00-01', '88 ST')
Processing turnstile ('R503', 'R276', '01-00-01', 'VERNON-JACKSON')
Processing turnstile ('B012', 'R196', '00-00-00', 'PROSPECT PARK')
Processing turnstile ('J001', 'R460', '01-06-00', 'MARCY AV')
Processing turnstile ('R506', 'R276', '02-06-00', 'VERNON-JACKSON')
Processing turnstile ('N543', 'R289', '00-00-00', 'FT HAMILTON PKY')
Processing turnstile ('N309A', 'R140', '00-03-01', 'QUEENS PLAZA')
Processing turnstile ('N070', 'R012', '04-05-01', '34 ST-PENN STA')
Processing turnstile ('N102', 'R127', '01-05-00', 'JAY ST-METROTEC')
Processing turnstile ('R323', 'R387', '00-00-02', 'WEST FARMS SQ')
Processing turnstile ('R179', 'R193', '01-00-01', '157 ST')
Processing turnstile ('N138', 'R355', '01-04-00', '111 ST')
Processing turnstile ('N095', 'R014', '00-03-08', 'FULTON ST')
Processing turnstile ('N196', 'R285', '00-00-02', 'FAR ROCKAWAY')
Processing turnstile ('N224', 'R157', '00-00-02', 'NORWOOD 205 ST')
Processing turnstile ('N202', 'R315', '00-00-02', '155 ST')
Processing turnstile ('R202', 'R042', '00-06-01', 'BOWLING GREEN')
Processing turnstile ('R550', 'R072', '00-03-03', '34 ST-HUDSON YD')
Processing turnstile ('R242A', 'R049', '02-00-00', '51 ST')
Processing turnstile ('R310', 'R053', '01-00-03', '3 AV-149 ST')
Processing turnstile ('J002', 'R460', '00-00-01', 'MARCY AV')
Processing turnstile ('R138', 'R293', '00-03-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 11339
Processing turnstile ('R161B', 'R452', '00-00-03', '72 ST')
Processing turnstile ('PTH19', 'R549', '02-00-01', 'NEWARK C')
Processing turnstile ('N525', 'R142', '01-00-03', 'DELANCEY/ESSEX')
Processing turnstile ('R101', 'R001', '02-07-02', 'SOUTH FERRY')
Processing turnstile ('B027', 'R136', '00-00-01', 'SHEEPSHEAD BAY')
Processing turnstile ('PTH02', 'R544', '00-00-04', 'HARRISON')
Processing turnstile ('R237', 'R046', '01-00-06', 'GRD CNTRL-42 ST')
Processing turnstile ('A060', 'R001', '00-00-01', 'WHITEHALL S-FRY')
Processing turnstile ('R127', 'R105', '00-00-01', '14 ST')
Processing turnstile ('R115', 'R029', '00-00-00', 'PARK PLACE')
Processing turnstile ('N016A', 'R296', '00-03-01', '163 ST-AMSTERDM')
Processing turnstile ('B024', 'R211', '00-05-01', 'KINGS HWY')
Processing turnstile ('J024', 'R437', '00-00-00', 'CRESCENT ST')
Processing turnstile ('N305A', 'R016', '00-05-01', 'LEXINGTON AV/53')
Processing turnstile ('E011', 'R371', '00-06-00', '79 ST')
Processing turnstile ('R210A', 'R044', '03-03-01', 'BROOKLYN BRIDGE')
Processing turnstile ('R528', 'R097', '00-00-01', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-02-16: 10755
Processing turnstile ('R605', 'R456', '00-00-03', 'HOYT ST')
Processing turnstile ('N333A', 'R141', '00-00-02', 'FOREST HILLS 71')
Processing turnstile ('B025', 'R150', '00-00-00', 'AVENUE U')
Processing turnstile ('R237B', 'R047', '01-00-01', 'GRD CNTRL-42 ST')
Processing turnstile ('N324', 'R018', '00-03-00', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-16: 11270
Processing turnstile ('R113', 'R028', '01-06-00', 'FULTON ST')
Processing turnstile ('R262B', 'R195', '05-00-00', '161/YANKEE STAD')
Processing turnstile ('A021', 'R032', '01-00-03', 'TIMES SQ-42 ST')
Processing turnstile ('R519', 'R223', '00-00-03', '46 ST BLISS ST')
Processing turnstile ('C028', 'R216', '01-05-01', 'BAY RIDGE AV')
Processing turnstile ('N119', 'R199', '00-00-02', 'KINGSTON-THROOP')
Processing turnstile ('R118', 'R343', '01-00-01', 'FRANKLIN ST')
Processing turnstile ('N520', 'R240', '00-00-03', 'GRAND ST')
Processing turnstile ('N503', 'R021', '00-00-04', '42 ST-BRYANT PK')
Processing turnstile ('R515', 'R095', '00-03-00', 'ASTORIA DITMARS')
Processing turnstile ('N129', 'R382', '00-00-00', 'GRANT AV')
Processing turnstile ('E005', 'R247', '00-00-00', '55 ST')
Processing turnstile ('R418', 'R106', '00-06-00', 'CASTLE HILL AV')
Processing turnstile ('N531', 'R129', '01-00-00', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-02-08: -1353465
Processing turnstile ('H041', 'R152', '00-05-00', 'CANARSIE-ROCKAW')
Processing turnstile ('J030', 'R005', '00-00-01', '85 ST-FOREST PK')
Processing turnstile ('N127', 'R442', '00-00-00', 'SHEPHERD AV')
Processing turnstile ('R504', 'R276', '00-00-01', 'VERNON-JACKSON')
Processing turnstile ('N137', 'R354', '00-00-00', '104 ST')
Processing turnstile ('N606', 'R025', '00-00-06', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-02-08: 10780
WARNING. Abnormal entry count found on day 2016-02-16: 23532
WARNING. Abnormal entry count found on day 2016-02-22: 12029
WARNING. Abnormal entry count found on day 2016-02-29: 11900
Processing turnstile ('R204', 'R043', '02-05-00', 'WALL ST')
Processing turnstile ('N520', 'R240', '00-00-06', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12119
Processing turnstile ('N333B', 'R141', '02-00-03', 'FOREST HILLS 71')
Processing turnstile ('N400A', 'R359', '02-06-04', 'COURT SQ')
Processing turnstile ('R245A', 'R051', '01-00-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 15087
Processing turnstile ('R135', 'R031', '01-00-02', '34 ST-PENN STA')
Processing turnstile ('R403', 'R446', '01-00-01', 'BROOK AV')
Processing turnstile ('R247', 'R178', '01-03-01', '77 ST')
Processing turnstile ('N327', 'R254', '00-05-03', 'GRAND-NEWTOWN')
Processing turnstile ('N600', 'R302', '00-03-03', '57 ST')
Processing turnstile ('B031', 'R172', '01-06-01', 'BRIGHTON BEACH')
Processing turnstile ('J025', 'R003', '00-00-00', 'CYPRESS HILLS')
Processing turnstile ('R533', 'R055', '00-00-01', 'FLUSHING-MAIN')
Processing turnstile ('N507', 'R023', '00-03-02', '34 ST-HERALD SQ')
Processing turnstile ('N531', 'R129', '01-00-02', 'BERGEN ST')
Processing turnstile ('E003', 'R369', '00-03-01', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-02-16: 267935905
Processing turnstile ('N332', 'R219', '01-06-02', '67 AV')
Processing turnstile ('R141', 'R031', '00-00-00', '34 ST-PENN STA')
Processing turnstile ('R621', 'R060', '00-03-02', 'EASTN PKWY-MUSM')
Processing turnstile ('JFK03', 'R536', '00-00-05', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-02-02: -107557
Processing turnstile ('N603', 'R303', '00-00-00', '21 ST-QNSBRIDGE')
Processing turnstile ('R306', 'R207', '00-00-03', '135 ST')
WARNING. Abnormal entry count found on day 2016-02-29: 15559
Processing turnstile ('R609', 'R056', '01-00-00', 'NEVINS ST')
Processing turnstile ('N311', 'R339', '01-00-01', '36 ST')
Processing turnstile ('R238A', 'R046', '02-00-00', 'GRD CNTRL-42 ST')
Processing turnstile ('R112A', 'R027', '03-00-02', 'WALL ST')
Processing turnstile ('R520', 'R223', '01-06-01', '46 ST BLISS ST')
Processing turnstile ('N554', 'R423', '01-06-01', 'AVENUE N')
Processing turnstile ('H026', 'R137', '00-00-00', 'MYRTLE-WYCKOFF')
Processing turnstile ('R600', 'R224', '00-00-03', 'CLARK ST')
Processing turnstile ('N319', 'R298', '01-06-00', 'NORTHERN BLVD')
Processing turnstile ('N314', 'R238', '01-00-00', 'STEINWAY ST')
Processing turnstile ('N317', 'R267', '02-00-01', '46 ST')
Processing turnstile ('N520', 'R240', '00-00-01', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13050
Processing turnstile ('N324', 'R018', '00-00-01', 'JKSN HT-ROOSVLT')
Processing turnstile ('N102', 'R127', '01-00-04', 'JAY ST-METROTEC')
Processing turnstile ('N207', 'R104', '00-00-01', '167 ST')
Processing turnstile ('D015', 'R396', '00-00-00', 'AVENUE U')
Processing turnstile ('R134', 'R272', '01-00-02', '28 ST')
Processing turnstile ('PTH13', 'R541', '00-04-08', 'THIRTY ST')
Processing turnstile ('R169', 'R168', '01-07-00', '96 ST')
Processing turnstile ('C025', 'R215', '00-00-00', '86 ST')
Processing turnstile ('C009', 'R057', '03-03-02', 'ATL AV-BARCLAY')
Processing turnstile ('R310', 'R053', '01-00-04', '3 AV-149 ST')
Processing turnstile ('R240', 'R047', '00-03-04', 'GRD CNTRL-42 ST')
Processing turnstile ('A030', 'R083', '01-06-00', '23 ST')
Processing turnstile ('A058', 'R001', '01-00-01', 'WHITEHALL S-FRY')
Processing turnstile ('N063A', 'R011', '00-00-03', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-16: 17806
Processing turnstile ('N544', 'R289', '01-06-01', 'FT HAMILTON PKY')
Processing turnstile ('R236', 'R045', '00-00-00', 'GRD CNTRL-42 ST')
Processing turnstile ('R626', 'R062', '00-03-01', 'CROWN HTS-UTICA')
Processing turnstile ('H027', 'R137', '01-00-00', 'MYRTLE-WYCKOFF')
Processing turnstile ('A082', 'R028', '05-06-00', 'FULTON ST')
Processing turnstile ('R112A', 'R027', '03-00-00', 'WALL ST')
Processing turnstile ('N539A', 'R288', '00-00-00', '7 AV')
Processing turnstile ('N343', 'R019', '00-00-03', 'JAMAICA 179 ST')
Processing turnstile ('R148', 'R033', '01-03-03', 'TIMES SQ-42 ST')
Processing turnstile ('B022', 'R229', '00-05-02', 'AVENUE M')
Processing turnstile ('R326', 'R389', '00-00-01', 'BRONX PARK EAST')
Processing turnstile ('D005', 'R398', '00-06-00', 'NEW UTRECHT AV')
Processing turnstile ('N102', 'R127', '01-06-02', 'JAY ST-METROTEC')
Processing turnstile ('R203', 'R043', '00-05-00', 'WALL ST')
Processing turnstile ('R530', 'R310', '00-00-00', '111 ST')
Processing turnstile ('R533', 'R055', '00-03-04', 'FLUSHING-MAIN')
Processing turnstile ('PTH04', 'R551', '00-00-00', 'GROVE STREET')
Processing turnstile ('R110', 'R027', '01-03-00', 'WALL ST')
Processing turnstile ('R625', 'R062', '01-06-00', 'CROWN HTS-UTICA')
Processing turnstile ('N070', 'R012', '04-00-02', '34 ST-PENN STA')
Processing turnstile ('H017', 'R265', '00-00-01', 'MONTROSE AV')
Processing turnstile ('N095A', 'R014', '01-00-03', 'FULTON ST')
Processing turnstile ('R206', 'R014', '02-00-00', 'FULTON ST')
Processing turnstile ('A010', 'R080', '00-00-00', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 13182
Processing turnstile ('N607', 'R025', '01-00-01', 'JAMAICA CENTER')
Processing turnstile ('R204A', 'R043', '03-05-01', 'WALL ST')
Processing turnstile ('J028', 'R004', '00-00-00', '75 ST-ELDERTS')
Processing turnstile ('R317', 'R408', '01-05-00', 'SIMPSON ST')
Processing turnstile ('PTH11', 'R545', '00-04-00', '14TH STREET')
Processing turnstile ('N071', 'R013', '00-00-03', '34 ST-PENN STA')
Processing turnstile ('N505', 'R022', '02-00-05', '34 ST-HERALD SQ')
Processing turnstile ('N330', 'R202', '00-03-02', '63 DR-REGO PARK')
Processing turnstile ('J013', 'R380', '00-00-01', 'GATES AV')
Processing turnstile ('R210A', 'R044', '03-06-00', 'BROOKLYN BRIDGE')
Processing turnstile ('A046', 'R463', '00-06-08', 'CANAL ST')
Processing turnstile ('R413', 'R325', '00-03-01', 'WHITLOCK AV')
Processing turnstile ('R111', 'R027', '00-03-01', 'WALL ST')
Processing turnstile ('N323', 'R018', '01-00-03', 'JKSN HT-ROOSVLT')
Processing turnstile ('R604', 'R108', '03-00-04', 'BOROUGH HALL')
Processing turnstile ('B027', 'R136', '00-00-05', 'SHEEPSHEAD BAY')
Processing turnstile ('N067', 'R012', '00-00-03', '34 ST-PENN STA')
Processing turnstile ('A050', 'R088', '00-03-03', 'CORTLANDT ST')
Processing turnstile ('B022', 'R229', '00-00-04', 'AVENUE M')
Processing turnstile ('R148', 'R033', '01-03-01', 'TIMES SQ-42 ST')
Processing turnstile ('R634', 'R069', '00-00-02', 'NEW LOTS AV')
Processing turnstile ('N414', 'R316', '00-00-01', 'FLUSHING AV')
Processing turnstile ('A034', 'R170', '03-03-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 11621
WARNING. Abnormal entry count found on day 2016-02-16: 16917
WARNING. Abnormal entry count found on day 2016-02-22: 12670
WARNING. Abnormal entry count found on day 2016-02-29: 12784
Processing turnstile ('N511', 'R163', '03-06-00', '14 ST')
Processing turnstile ('N337', 'R255', '00-03-00', 'BRIARWOOD')
Processing turnstile ('N325A', 'R218', '00-06-01', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-02-08: 11318
WARNING. Abnormal entry count found on day 2016-02-16: 17731
WARNING. Abnormal entry count found on day 2016-02-22: 11362
WARNING. Abnormal entry count found on day 2016-02-29: 11268
Processing turnstile ('N333A', 'R141', '00-00-01', 'FOREST HILLS 71')
Processing turnstile ('A025', 'R023', '01-00-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 12775
Processing turnstile ('N049', 'R084', '01-06-00', '59 ST COLUMBUS')
Processing turnstile ('R529', 'R208', '00-00-02', '103 ST-CORONA')
Processing turnstile ('N312', 'R339', '00-06-00', '36 ST')
Processing turnstile ('G001', 'R151', '00-06-00', 'CONEY IS-STILLW')
Processing turnstile ('R161B', 'R452', '00-03-03', '72 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 15765
WARNING. Abnormal entry count found on day 2016-02-22: 10782
Processing turnstile ('N060', 'R010', '01-05-01', '42 ST-PORT AUTH')
Processing turnstile ('R624', 'R124', '00-00-02', 'KINGSTON AV')
Processing turnstile ('R205A', 'R014', '04-05-01', 'FULTON ST')
Processing turnstile ('R608', 'R056', '00-00-01', 'NEVINS ST')
Processing turnstile ('N547', 'R420', '01-06-02', 'DITMAS AV')
Processing turnstile ('N329', 'R201', '00-03-02', 'WOODHAVEN BLVD')
Processing turnstile ('N069', 'R013', '01-00-02', '34 ST-PENN STA')
Processing turnstile ('R128', 'R105', '01-03-01', '14 ST')
Processing turnstile ('R244A', 'R050', '01-00-03', '59 ST')
Processing turnstile ('N535', 'R220', '00-03-01', 'CARROLL ST')
Processing turnstile ('R200A', 'R041', '01-00-00', 'BOWLING GREEN')
Processing turnstile ('A038', 'R085', '00-00-04', '8 ST-NYU')
Processing turnstile ('R143', 'R032', '02-00-03', 'TIMES SQ-42 ST')
Processing turnstile ('R103', 'R304', '00-06-01', 'RECTOR ST')
Processing turnstile ('N501', 'R020', '01-03-03', '47-50 STS ROCK')
Processing turnstile ('A054', 'R227', '01-03-00', 'RECTOR ST')
Processing turnstile ('R301', 'R323', '00-00-00', 'CENTRAL PK N110')
Processing turnstile ('R605', 'R456', '00-00-01', 'HOYT ST')
Processing turnstile ('N557', 'R130', '00-03-01', 'KINGS HWY')
Processing turnstile ('R519', 'R223', '00-03-02', '46 ST BLISS ST')
Processing turnstile ('R511', 'R091', '00-00-02', '36 AV')
Processing turnstile ('R138', 'R293', '00-05-01', '34 ST-PENN STA')
Processing turnstile ('N334B', 'R341', '00-06-00', '75 AV')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('K026', 'R100', '00-05-00', 'METROPOLITAN AV')
Processing turnstile ('R135', 'R031', '01-00-01', '34 ST-PENN STA')
Processing turnstile ('N110', 'R283', '00-06-00', 'LAFAYETTE AV')
Processing turnstile ('A033', 'R170', '02-00-01', '14 ST-UNION SQ')
Processing turnstile ('R124', 'R290', '03-00-01', 'HOUSTON ST')
Processing turnstile ('A060', 'R001', '00-00-02', 'WHITEHALL S-FRY')
Processing turnstile ('A050', 'R088', '00-00-01', 'CORTLANDT ST')
Processing turnstile ('R246', 'R177', '00-00-02', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-02-22: -368118
Processing turnstile ('PTH04', 'R551', '00-00-04', 'GROVE STREET')
Processing turnstile ('R416', 'R245', '00-03-00', 'ST LAWRENCE AV')
Processing turnstile ('PTH06', 'R546', '00-00-04', 'PAVONIA/NEWPORT')
Processing turnstile ('N605', 'R024', '00-06-02', 'SUTPHIN-ARCHER')
Processing turnstile ('N181A', 'R464', '00-05-01', 'AQUEDUCT RACETR')
Processing turnstile ('N316', 'R267', '00-00-02', '46 ST')
Processing turnstile ('R334', 'R367', '00-00-02', '233 ST')
Processing turnstile ('C010', 'R231', '00-00-00', 'UNION ST')
Processing turnstile ('R262A', 'R195', '04-00-01', '161/YANKEE STAD')
Processing turnstile ('R533', 'R055', '00-00-05', 'FLUSHING-MAIN')
Processing turnstile ('N501A', 'R020', '02-00-00', '47-50 STS ROCK')
Processing turnstile ('N333B', 'R141', '02-01-02', 'FOREST HILLS 71')
Processing turnstile ('B021', 'R228', '00-00-00', 'AVENUE J')
Processing turnstile ('R610', 'R057', '00-04-01', 'ATL AV-BARCLAY')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('A015', 'R081', '00-00-00', '49 ST')
Processing turnstile ('R219', 'R160', '00-00-04', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-02-16: 10812
Processing turnstile ('N314', 'R238', '01-00-01', 'STEINWAY ST')
Processing turnstile ('A030', 'R083', '01-00-02', '23 ST')
Processing turnstile ('K022', 'R402', '00-00-00', 'SENECA AVE')
Processing turnstile ('R645', 'R110', '00-00-00', 'FLATBUSH AV-B.C')
Processing turnstile ('N007A', 'R174', '00-00-02', '181 ST')
Processing turnstile ('N601', 'R319', '00-05-01', 'LEXINGTON AV/63')
Processing turnstile ('J002', 'R460', '00-06-00', 'MARCY AV')
Processing turnstile ('R122', 'R290', '02-05-00', 'HOUSTON ST')
Processing turnstile ('A025', 'R023', '01-03-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 12588
Processing turnstile ('R110', 'R027', '01-00-02', 'WALL ST')
Processing turnstile ('R158', 'R084', '00-06-00', '59 ST COLUMBUS')
Processing turnstile ('R412', 'R146', '00-06-01', 'HUNTS POINT AV')
Processing turnstile ('R202', 'R042', '00-00-01', 'BOWLING GREEN')
Processing turnstile ('N067', 'R012', '00-06-03', '34 ST-PENN STA')
Processing turnstile ('N076', 'R111', '00-00-00', '23 ST')
Processing turnstile ('N330', 'R202', '00-03-01', '63 DR-REGO PARK')
Processing turnstile ('R221', 'R170', '01-06-02', '14 ST-UNION SQ')
Processing turnstile ('C004', 'R089', '01-05-01', 'JAY ST-METROTEC')
Processing turnstile ('R646', 'R110', '01-00-00', 'FLATBUSH AV-B.C')
Processing turnstile ('B022', 'R229', '00-03-01', 'AVENUE M')
Processing turnstile ('N601', 'R319', '00-03-00', 'LEXINGTON AV/63')
Processing turnstile ('R602', 'R108', '00-03-00', 'BOROUGH HALL')
Processing turnstile ('N116', 'R198', '00-03-01', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-02-16: 12271
Processing turnstile ('R127', 'R105', '00-03-00', '14 ST')
Processing turnstile ('N183', 'R415', '00-00-00', 'BROAD CHANNEL')
Processing turnstile ('R114', 'R028', '02-00-00', 'FULTON ST')
Processing turnstile ('N092', 'R029', '03-00-02', 'CHAMBERS ST')
Processing turnstile ('N606', 'R025', '00-00-00', 'JAMAICA CENTER')
Processing turnstile ('R416', 'R245', '00-05-01', 'ST LAWRENCE AV')
Processing turnstile ('R118', 'R343', '01-06-00', 'FRANKLIN ST')
Processing turnstile ('R170', 'R191', '00-03-01', '103 ST')
Processing turnstile ('N002A', 'R173', '00-00-02', 'INWOOD-207 ST')
Processing turnstile ('R417', 'R222', '00-00-01', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-02-16: 10729
Processing turnstile ('B023', 'R211', '01-06-01', 'KINGS HWY')
Processing turnstile ('PTH12', 'R542', '00-04-00', 'TWENTY THIRD ST')
Processing turnstile ('N408A', 'R256', '00-00-03', 'NASSAU ST')
Processing turnstile ('B025', 'R150', '00-00-03', 'AVENUE U')
Processing turnstile ('R173', 'R159', '00-03-01', '116 ST-COLUMBIA')
WARNING. Abnormal entry count found on day 2016-02-16: 15492
Processing turnstile ('R248', 'R178', '00-00-07', '77 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13546
Processing turnstile ('N602', 'R259', '00-00-01', 'ROOSEVELT ISLND')
Processing turnstile ('R161B', 'R452', '00-03-01', '72 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13158
WARNING. Abnormal entry count found on day 2016-02-22: 10504
Processing turnstile ('A084', 'R125', '01-06-00', 'BROAD ST')
Processing turnstile ('R504', 'R276', '00-00-00', 'VERNON-JACKSON')
Processing turnstile ('R245', 'R051', '00-05-02', '59 ST')
Processing turnstile ('R315', 'R406', '01-00-02', 'PROSPECT AV')
Processing turnstile ('R183', 'R260', '00-00-00', '181 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10124
Processing turnstile ('J031', 'R006', '00-00-00', 'WOODHAVEN BLVD')
Processing turnstile ('R240', 'R047', '00-00-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13884
Processing turnstile ('PTH01', 'R549', '00-01-05', 'NEWARK HW BMEBE')
Processing turnstile ('N303', 'R015', '00-00-02', '5 AV/53 ST')
Processing turnstile ('N301', 'R113', '00-00-02', '7 AV')
Processing turnstile ('R618', 'R058', '01-06-00', 'BERGEN ST')
Processing turnstile ('R262B', 'R195', '05-00-05', '161/YANKEE STAD')
Processing turnstile ('PTH07', 'R550', '00-00-00', 'CITY / BUS')
Processing turnstile ('N400A', 'R359', '02-06-01', 'COURT SQ')
Processing turnstile ('R147', 'R033', '04-00-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10415
Processing turnstile ('N137', 'R354', '00-06-00', '104 ST')
Processing turnstile ('N343', 'R019', '00-00-05', 'JAMAICA 179 ST')
Processing turnstile ('N544', 'R289', '01-05-01', 'FT HAMILTON PKY')
Processing turnstile ('R226', 'R131', '02-06-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 261615
Processing turnstile ('N504', 'R021', '02-06-01', '42 ST-BRYANT PK')
Processing turnstile ('N541', 'R241', '01-06-01', '15 ST-PROSPECT')
Processing turnstile ('R550', 'R072', '00-03-08', '34 ST-HUDSON YD')
Processing turnstile ('R205A', 'R014', '04-02-03', 'FULTON ST')
Processing turnstile ('G009', 'R151', '02-00-00', 'CONEY IS-STILLW')
Processing turnstile ('R208', 'R014', '03-01-01', 'FULTON ST')
Processing turnstile ('R226', 'R131', '02-03-00', '23 ST')
Processing turnstile ('N182', 'R414', '00-00-00', 'HOWARD BCH JFK')
Processing turnstile ('R254', 'R181', '01-00-01', '110 ST')
Processing turnstile ('H005', 'R330', '00-00-00', '3 AV')
Processing turnstile ('R532H', 'R328', '02-00-01', 'METS-WILLETS PT')
Processing turnstile ('N193', 'R337', '00-05-00', 'BEACH 44 ST')
Processing turnstile ('A038', 'R085', '00-00-01', '8 ST-NYU')
Processing turnstile ('R188', 'R037', '00-00-00', '207 ST')
Processing turnstile ('N225', 'R157', '01-00-01', 'NORWOOD 205 ST')
Processing turnstile ('R194', 'R040', '00-05-00', '231 ST')
Processing turnstile ('R610', 'R057', '00-03-07', 'ATL AV-BARCLAY')
Processing turnstile ('A025', 'R023', '01-00-00', '34 ST-HERALD SQ')
Processing turnstile ('R238', 'R046', '00-00-03', 'GRD CNTRL-42 ST')
Processing turnstile ('N095A', 'R014', '01-05-00', 'FULTON ST')
Processing turnstile ('R323', 'R387', '00-00-01', 'WEST FARMS SQ')
Processing turnstile ('R158', 'R084', '00-05-01', '59 ST COLUMBUS')
Processing turnstile ('A013', 'R081', '01-05-01', '49 ST')
Processing turnstile ('PTH06', 'R546', '00-00-06', 'PAVONIA/NEWPORT')
Processing turnstile ('N324', 'R018', '00-06-02', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-16: 14966
Processing turnstile ('R154', 'R116', '00-03-02', '50 ST')
Processing turnstile ('R164', 'R167', '00-00-00', '86 ST')
Processing turnstile ('B021', 'R228', '00-04-01', 'AVENUE J')
Processing turnstile ('PTH05', 'R543', '00-01-04', 'EXCHANGE PLACE')
Processing turnstile ('N010', 'R126', '00-00-00', '175 ST')
Processing turnstile ('N408A', 'R256', '00-06-01', 'NASSAU ST')
Processing turnstile ('E013', 'R373', '00-00-02', '20 AV')
Processing turnstile ('N601', 'R319', '00-00-00', 'LEXINGTON AV/63')
Processing turnstile ('H038', 'R350', '00-00-01', 'LIVONIA AV')
Processing turnstile ('R604', 'R108', '03-00-01', 'BOROUGH HALL')
Processing turnstile ('R203A', 'R043', '01-06-00', 'WALL ST')
Processing turnstile ('R217A', 'R194', '00-05-02', 'BLEECKER ST')
Processing turnstile ('N051', 'R084', '02-00-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-02-08: 11488
WARNING. Abnormal entry count found on day 2016-02-16: 22602
WARNING. Abnormal entry count found on day 2016-02-22: 12456
WARNING. Abnormal entry count found on day 2016-02-29: 12202
Processing turnstile ('R186', 'R036', '00-05-01', 'DYCKMAN ST')
Processing turnstile ('R532', 'R328', '00-06-01', 'METS-WILLETS PT')
Processing turnstile ('R415', 'R120', '00-05-01', 'MORISN AV/SNDVW')
Processing turnstile ('B029', 'R172', '00-00-04', 'BRIGHTON BEACH')
Processing turnstile ('H019', 'R294', '00-06-00', 'MORGAN AV')
Processing turnstile ('PTH16', 'R550', '01-00-08', 'LACKAWANNA')
Processing turnstile ('C012', 'R258', '01-00-01', '4AV-9 ST')
Processing turnstile ('H009', 'R235', '00-03-01', 'BEDFORD AV')
Processing turnstile ('R612', 'R057', '01-05-00', 'ATL AV-BARCLAY')
Processing turnstile ('B021', 'R228', '00-00-03', 'AVENUE J')
Processing turnstile ('R602', 'R108', '00-00-01', 'BOROUGH HALL')
Processing turnstile ('K022', 'R402', '00-03-00', 'SENECA AVE')
Processing turnstile ('N316', 'R267', '00-00-00', '46 ST')
Processing turnstile ('PTH05', 'R543', '00-04-03', 'EXCHANGE PLACE')
Processing turnstile ('R143', 'R032', '02-03-00', 'TIMES SQ-42 ST')
Processing turnstile ('R154', 'R116', '00-03-00', '50 ST')
Processing turnstile ('A050', 'R088', '00-03-02', 'CORTLANDT ST')
Processing turnstile ('R508', 'R346', '00-00-02', 'COURT SQ')
Processing turnstile ('R228', 'R143', '00-00-03', '28 ST')
Processing turnstile ('R612', 'R057', '01-03-03', 'ATL AV-BARCLAY')
Processing turnstile ('H008', 'R248', '01-00-03', '1 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 12022
Processing turnstile ('R421', 'R427', '00-06-00', 'MIDDLETOWN RD')
Processing turnstile ('R111', 'R027', '00-00-02', 'WALL ST')
Processing turnstile ('R606', 'R225', '00-00-02', 'HOYT ST')
Processing turnstile ('PTH04', 'R551', '00-04-03', 'GROVE STREET')
Processing turnstile ('R527', 'R122', '00-03-01', '90 ST-ELMHURST')
Processing turnstile ('R258', 'R132', '00-03-02', '125 ST')
Processing turnstile ('PTH03', 'R552', '00-00-03', 'JOURNAL SQUARE')
Processing turnstile ('B014', 'R148', '00-00-01', 'PARKSIDE AV')
Processing turnstile ('C003', 'R089', '00-03-00', 'JAY ST-METROTEC')
Processing turnstile ('R148', 'R033', '01-06-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 16540
WARNING. Abnormal entry count found on day 2016-02-29: 14067
Processing turnstile ('PTH17', 'R541', '01-01-04', 'THIRTY THIRD ST')
Processing turnstile ('A046', 'R463', '00-03-01', 'CANAL ST')
Processing turnstile ('C027', 'R216', '00-00-02', 'BAY RIDGE AV')
Processing turnstile ('N305A', 'R016', '00-03-01', 'LEXINGTON AV/53')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R197', 'R117', '00-03-00', 'V.CORTLANDT PK')
Processing turnstile ('S101', 'R070', '00-03-02', 'ST. GEORGE')
Processing turnstile ('C008', 'R099', '00-06-01', 'DEKALB AV')
Processing turnstile ('N333A', 'R141', '00-03-00', 'FOREST HILLS 71')
Processing turnstile ('N223', 'R156', '01-05-00', 'BEDFORD PK BLVD')
Processing turnstile ('R236', 'R045', '00-00-05', 'GRD CNTRL-42 ST')
Processing turnstile ('R132', 'R190', '01-00-00', '23 ST')
Processing turnstile ('N325A', 'R218', '00-03-02', 'ELMHURST AV')
Processing turnstile ('R138', 'R293', '00-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-08: 10139
WARNING. Abnormal entry count found on day 2016-02-16: 17689
Processing turnstile ('N103', 'R127', '00-06-03', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-02-16: 12524
Processing turnstile ('N500', 'R020', '00-00-02', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-02-16: 11287
Processing turnstile ('R632', 'R067', '00-00-01', 'PENNSYLVANIA AV')
Processing turnstile ('N184', 'R416', '00-05-00', 'BEACH 90 ST')
Processing turnstile ('N343', 'R019', '00-00-08', 'JAMAICA 179 ST')
Processing turnstile ('PTH19', 'R549', '02-00-02', 'NEWARK C')
Processing turnstile ('R251', 'R144', '00-00-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10740
Processing turnstile ('A060', 'R001', '00-00-04', 'WHITEHALL S-FRY')
Processing turnstile ('N330', 'R202', '00-05-01', '63 DR-REGO PARK')
Processing turnstile ('R182', 'R035', '00-05-01', '168 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12715
Processing turnstile ('N009', 'R174', '01-00-02', '181 ST')
Processing turnstile ('N309A', 'R140', '00-00-03', 'QUEENS PLAZA')
Processing turnstile ('A037', 'R170', '05-00-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 10231
WARNING. Abnormal entry count found on day 2016-02-16: 18741
WARNING. Abnormal entry count found on day 2016-02-22: 11286
WARNING. Abnormal entry count found on day 2016-02-29: 10797
Processing turnstile ('C027', 'R216', '00-00-01', 'BAY RIDGE AV')
Processing turnstile ('B022', 'R229', '00-05-01', 'AVENUE M')
Processing turnstile ('R260', 'R205', '01-06-01', '149/GRAND CONC')
Processing turnstile ('N120A', 'R153', '01-00-02', 'UTICA AV')
Processing turnstile ('H009', 'R235', '00-03-00', 'BEDFORD AV')
Processing turnstile ('R116', 'R030', '00-03-00', 'CHAMBERS ST')
Processing turnstile ('A050', 'R088', '00-05-02', 'CORTLANDT ST')
Processing turnstile ('PTH19', 'R549', '02-01-06', 'NEWARK C')
Processing turnstile ('N501A', 'R020', '02-06-03', '47-50 STS ROCK')
Processing turnstile ('N112A', 'R284', '01-00-02', 'CLINTON-WASH AV')
Processing turnstile ('R115', 'R029', '00-06-00', 'PARK PLACE')
Processing turnstile ('R416', 'R245', '00-03-01', 'ST LAWRENCE AV')
Processing turnstile ('N542', 'R241', '00-00-01', '15 ST-PROSPECT')
Processing turnstile ('R169', 'R168', '01-05-01', '96 ST')
Processing turnstile ('N013', 'R035', '02-00-03', '168 ST')
Processing turnstile ('R182', 'R035', '00-05-00', '168 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11729
Processing turnstile ('R332', 'R365', '00-00-00', '219 ST')
Processing turnstile ('E004', 'R234', '00-00-00', '50 ST')
Processing turnstile ('A083', 'R125', '00-00-02', 'BROAD ST')
Processing turnstile ('R626', 'R062', '00-00-03', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-02-16: 10154
Processing turnstile ('R169', 'R168', '01-03-05', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 15672
WARNING. Abnormal entry count found on day 2016-02-16: 17774
WARNING. Abnormal entry count found on day 2016-02-22: 15300
WARNING. Abnormal entry count found on day 2016-02-29: 15065
Processing turnstile ('PTH08', 'R540', '00-00-00', 'PATH WTC')
Processing turnstile ('R162', 'R166', '00-00-04', '79 ST')
Processing turnstile ('N044', 'R187', '00-03-01', '81 ST-MUSEUM')
Processing turnstile ('R550', 'R072', '00-03-0B', '34 ST-HUDSON YD')
Processing turnstile ('PTH08', 'R540', '00-00-03', 'PATH WTC')
Processing turnstile ('N602', 'R259', '00-00-03', 'ROOSEVELT ISLND')
Processing turnstile ('R141', 'R031', '00-03-01', '34 ST-PENN STA')
Processing turnstile ('N095', 'R014', '00-05-01', 'FULTON ST')
Processing turnstile ('C026', 'R215', '01-05-00', '86 ST')
Processing turnstile ('R317', 'R408', '01-00-00', 'SIMPSON ST')
Processing turnstile ('J035', 'R008', '00-00-02', '111 ST')
Processing turnstile ('R210', 'R044', '00-00-01', 'BROOKLYN BRIDGE')
Processing turnstile ('R336', 'R145', '00-00-00', 'WAKEFIELD/241')
Processing turnstile ('R604', 'R108', '03-00-00', 'BOROUGH HALL')
Processing turnstile ('R175', 'R169', '01-00-04', '137 ST CITY COL')
Processing turnstile ('A030', 'R083', '01-00-00', '23 ST')
Processing turnstile ('R412', 'R146', '00-06-00', 'HUNTS POINT AV')
Processing turnstile ('R309', 'R345', '00-00-02', 'HARLEM 148 ST')
Processing turnstile ('PTH08', 'R540', '00-00-04', 'PATH WTC')
Processing turnstile ('R331', 'R364', '00-00-01', 'GUN HILL RD')
Processing turnstile ('R626', 'R062', '00-00-04', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-02-18: -3653
Processing turnstile ('A025', 'R023', '01-06-00', '34 ST-HERALD SQ')
Processing turnstile ('A027', 'R082', '01-03-00', '28 ST')
Processing turnstile ('E003', 'R369', '00-05-01', 'FT HAMILTON PKY')
Processing turnstile ('R180', 'R193', '00-00-00', '157 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14206
Processing turnstile ('R312', 'R405', '00-05-00', 'JACKSON AV')
Processing turnstile ('R241A', 'R048', '00-00-04', 'GRD CNTRL-42 ST')
Processing turnstile ('R168A', 'R168', '00-00-00', '96 ST')
Processing turnstile ('PTH12', 'R542', '00-04-03', 'TWENTY THIRD ST')
Processing turnstile ('R215', 'R322', '00-00-01', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12149
Processing turnstile ('R418', 'R106', '00-03-00', 'CASTLE HILL AV')
Processing turnstile ('N062A', 'R010', '00-05-00', '42 ST-PORT AUTH')
Processing turnstile ('R504', 'R276', '00-00-02', 'VERNON-JACKSON')
Processing turnstile ('PTH18', 'R549', '01-01-01', 'NEWARK BM BW')
Processing turnstile ('R639', 'R109', '00-00-00', 'CHURCH AV')
Processing turnstile ('C015', 'R454', '00-00-01', 'PROSPECT AV')
Processing turnstile ('R112', 'R027', '02-00-02', 'WALL ST')
Processing turnstile ('N017', 'R331', '00-00-00', '155 ST')
Processing turnstile ('R194', 'R040', '00-03-00', '231 ST')
Processing turnstile ('R147', 'R033', '04-05-01', 'TIMES SQ-42 ST')
Processing turnstile ('H014', 'R249', '00-00-00', 'GRAHAM AV')
Processing turnstile ('R131', 'R190', '00-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11909
Processing turnstile ('R183', 'R260', '00-00-03', '181 ST')
Processing turnstile ('R333', 'R366', '00-00-01', '225 ST')
Processing turnstile ('B009', 'R411', '00-05-01', 'PARK PLACE')
Processing turnstile ('R262A', 'R195', '04-00-05', '161/YANKEE STAD')
Processing turnstile ('N098', 'R028', '00-07-01', 'FULTON ST')
Processing turnstile ('R610', 'R057', '00-04-02', 'ATL AV-BARCLAY')
Processing turnstile ('N604', 'R342', '00-03-01', 'JAMAICA VAN WK')
Processing turnstile ('R413', 'R325', '00-03-00', 'WHITLOCK AV')
Processing turnstile ('R606', 'R225', '00-06-00', 'HOYT ST')
Processing turnstile ('R301', 'R323', '00-03-00', 'CENTRAL PK N110')
Processing turnstile ('R727', 'R430', '00-00-00', 'PELHAM PKWY')
Processing turnstile ('R262A', 'R195', '04-00-04', '161/YANKEE STAD')
Processing turnstile ('R726', 'R329', '00-00-00', 'MORRIS PARK')
Processing turnstile ('N506', 'R022', '00-03-03', '34 ST-HERALD SQ')
Processing turnstile ('R403', 'R446', '01-00-00', 'BROOK AV')
Processing turnstile ('R727', 'R430', '00-00-02', 'PELHAM PKWY')
Processing turnstile ('R158', 'R084', '00-00-00', '59 ST COLUMBUS')
Processing turnstile ('R528', 'R097', '00-03-00', 'JUNCTION BLVD')
Processing turnstile ('N311', 'R339', '01-06-00', '36 ST')
Processing turnstile ('N528', 'R257', '01-05-01', 'EAST BROADWAY')
Processing turnstile ('R519', 'R223', '00-03-00', '46 ST BLISS ST')
Processing turnstile ('R528', 'R097', '00-05-00', 'JUNCTION BLVD')
Processing turnstile ('PTH13', 'R541', '00-00-02', 'THIRTY ST')
Processing turnstile ('N187', 'R419', '00-00-02', 'ROCKAWAY PARK B')
Processing turnstile ('A047', 'R087', '00-03-01', 'CITY HALL')
Processing turnstile ('N193', 'R337', '00-00-02', 'BEACH 44 ST')
Processing turnstile ('R242', 'R049', '01-00-03', '51 ST')
Processing turnstile ('N069', 'R013', '01-00-01', '34 ST-PENN STA')
Processing turnstile ('C008', 'R099', '00-04-00', 'DEKALB AV')
Processing turnstile ('A081', 'R028', '04-00-03', 'FULTON ST')
Processing turnstile ('R335', 'R444', '00-00-00', 'NEREID AV')
Processing turnstile ('R127', 'R105', '00-00-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -2062
WARNING. Abnormal entry count found on day 2016-02-02: -3007
WARNING. Abnormal entry count found on day 2016-02-03: -3208
WARNING. Abnormal entry count found on day 2016-02-04: -3055
WARNING. Abnormal entry count found on day 2016-02-05: -3217
WARNING. Abnormal entry count found on day 2016-02-08: -7311
WARNING. Abnormal entry count found on day 2016-02-09: -2756
WARNING. Abnormal entry count found on day 2016-02-10: -3039
WARNING. Abnormal entry count found on day 2016-02-11: -3137
WARNING. Abnormal entry count found on day 2016-02-16: -11061
WARNING. Abnormal entry count found on day 2016-02-17: -2848
WARNING. Abnormal entry count found on day 2016-02-18: -3077
WARNING. Abnormal entry count found on day 2016-02-19: -3074
WARNING. Abnormal entry count found on day 2016-02-22: -6995
WARNING. Abnormal entry count found on day 2016-02-23: -3111
WARNING. Abnormal entry count found on day 2016-02-24: -2896
WARNING. Abnormal entry count found on day 2016-02-25: -2977
WARNING. Abnormal entry count found on day 2016-02-26: -3201
WARNING. Abnormal entry count found on day 2016-02-29: -7322
Processing turnstile ('R240', 'R047', '00-03-02', 'GRD CNTRL-42 ST')
Processing turnstile ('N117', 'R198', '01-00-02', 'NOSTRAND AV')
Processing turnstile ('K024', 'R403', '00-00-02', 'FOREST AVE')
Processing turnstile ('R161A', 'R452', '01-06-02', '72 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10787
Processing turnstile ('B013', 'R196', '01-05-01', 'PROSPECT PARK')
Processing turnstile ('R331', 'R364', '00-00-03', 'GUN HILL RD')
Processing turnstile ('N343', 'R019', '00-00-0B', 'JAMAICA 179 ST')
Processing turnstile ('R645', 'R110', '00-06-02', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-02-16: 12082
Processing turnstile ('N103', 'R127', '00-00-04', 'JAY ST-METROTEC')
Processing turnstile ('R609', 'R056', '01-00-01', 'NEVINS ST')
Processing turnstile ('N600', 'R302', '00-03-00', '57 ST')
Processing turnstile ('C008', 'R099', '00-03-00', 'DEKALB AV')
Processing turnstile ('A043', 'R462', '00-03-01', 'CANAL ST')
Processing turnstile ('N556', 'R424', '00-00-00', 'AVENUE P')
Processing turnstile ('R242', 'R049', '01-00-01', '51 ST')
Processing turnstile ('N051', 'R084', '02-00-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-02-08: 15275
WARNING. Abnormal entry count found on day 2016-02-16: 22761
WARNING. Abnormal entry count found on day 2016-02-22: 16725
WARNING. Abnormal entry count found on day 2016-02-29: 15702
Processing turnstile ('A041', 'R086', '00-00-03', 'PRINCE ST')
Processing turnstile ('B016', 'R098', '00-00-00', 'CHURCH AV')
Processing turnstile ('H027', 'R137', '01-06-02', 'MYRTLE-WYCKOFF')
Processing turnstile ('R532', 'R328', '00-06-04', 'METS-WILLETS PT')
Processing turnstile ('R601A', 'R108', '02-00-01', 'BOROUGH HALL')
Processing turnstile ('N186', 'R418', '00-05-01', 'BEACH 105 ST')
Processing turnstile ('R175', 'R169', '01-00-00', '137 ST CITY COL')
Processing turnstile ('R238', 'R046', '00-00-06', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 17161
WARNING. Abnormal entry count found on day 2016-02-22: 10693
Processing turnstile ('R204', 'R043', '02-05-01', 'WALL ST')
Processing turnstile ('PTH03', 'R552', '00-00-01', 'JOURNAL SQUARE')
Processing turnstile ('A046', 'R463', '00-00-01', 'CANAL ST')
Processing turnstile ('R113', 'R028', '01-01-00', 'FULTON ST')
Processing turnstile ('N546', 'R204', '00-00-05', 'CHURCH AV')
Processing turnstile ('E011', 'R371', '00-00-01', '79 ST')
Processing turnstile ('R151', 'R033', '00-00-08', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13872
Processing turnstile ('B023', 'R211', '01-05-01', 'KINGS HWY')
Processing turnstile ('J009', 'R378', '00-00-03', 'MYRTLE AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10865
Processing turnstile ('N330C', 'R202', '01-06-00', '63 DR-REGO PARK')
Processing turnstile ('R637', 'R451', '00-00-01', 'WINTHROP ST')
Processing turnstile ('R230', 'R143', '02-06-02', '28 ST')
Processing turnstile ('N034', 'R334', '01-06-01', 'CATHEDRAL PKWY')
Processing turnstile ('N408A', 'R256', '00-06-00', 'NASSAU ST')
Processing turnstile ('R125', 'R189', '00-00-02', 'CHRISTOPHER ST')
Processing turnstile ('N400A', 'R359', '02-03-00', 'COURT SQ')
Processing turnstile ('N512', 'R163', '00-00-01', '14 ST')
Processing turnstile ('H003', 'R163', '01-00-02', '6 AV')
WARNING. Abnormal entry count found on day 2016-02-01: -1646
WARNING. Abnormal entry count found on day 2016-02-02: -2906
WARNING. Abnormal entry count found on day 2016-02-03: -3018
WARNING. Abnormal entry count found on day 2016-02-04: -2874
WARNING. Abnormal entry count found on day 2016-02-05: -2835
WARNING. Abnormal entry count found on day 2016-02-08: -7027
WARNING. Abnormal entry count found on day 2016-02-09: -2678
WARNING. Abnormal entry count found on day 2016-02-10: -2967
WARNING. Abnormal entry count found on day 2016-02-11: -3082
WARNING. Abnormal entry count found on day 2016-02-16: -10267
WARNING. Abnormal entry count found on day 2016-02-17: -2719
WARNING. Abnormal entry count found on day 2016-02-18: -2881
WARNING. Abnormal entry count found on day 2016-02-19: -2983
WARNING. Abnormal entry count found on day 2016-02-22: -6865
WARNING. Abnormal entry count found on day 2016-02-23: -2852
WARNING. Abnormal entry count found on day 2016-02-24: -2865
WARNING. Abnormal entry count found on day 2016-02-25: -2953
WARNING. Abnormal entry count found on day 2016-02-26: -3047
WARNING. Abnormal entry count found on day 2016-02-29: -6873
Processing turnstile ('R291', 'R183', '00-00-00', 'BEDFORD PK BLVD')
Processing turnstile ('N103', 'R127', '00-03-01', 'JAY ST-METROTEC')
Processing turnstile ('A084', 'R125', '01-00-03', 'BROAD ST')
Processing turnstile ('D010', 'R394', '00-00-01', 'BAY PKWY')
Processing turnstile ('A007', 'R079', '01-05-00', '5 AV/59 ST')
Processing turnstile ('R307', 'R207', '01-00-01', '135 ST')
WARNING. Abnormal entry count found on day 2016-02-29: 10126
Processing turnstile ('E001', 'R368', '00-00-00', '9 AV')
Processing turnstile ('N333A', 'R141', '00-00-03', 'FOREST HILLS 71')
Processing turnstile ('N546', 'R204', '00-00-00', 'CHURCH AV')
Processing turnstile ('N011', 'R126', '01-05-00', '175 ST')
Processing turnstile ('S101A', 'R070', '01-05-00', 'ST. GEORGE')
Processing turnstile ('R126', 'R189', '01-00-02', 'CHRISTOPHER ST')
Processing turnstile ('N186', 'R418', '00-05-00', 'BEACH 105 ST')
Processing turnstile ('B021', 'R228', '00-00-04', 'AVENUE J')
Processing turnstile ('N012', 'R035', '01-06-02', '168 ST')
Processing turnstile ('N504', 'R021', '02-06-00', '42 ST-BRYANT PK')
Processing turnstile ('R645', 'R110', '00-05-00', 'FLATBUSH AV-B.C')
Processing turnstile ('N102', 'R127', '01-00-05', 'JAY ST-METROTEC')
Processing turnstile ('R729', 'R292', '00-00-00', 'BAYCHESTER AV')
Processing turnstile ('R173', 'R159', '00-03-00', '116 ST-COLUMBIA')
WARNING. Abnormal entry count found on day 2016-02-16: 12468
Processing turnstile ('N071', 'R013', '00-06-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: -1669190
Processing turnstile ('B024', 'R211', '00-00-03', 'KINGS HWY')
Processing turnstile ('N562', 'R426', '00-00-02', 'NEPTUNE AV')
Processing turnstile ('A013', 'R081', '01-05-00', '49 ST')
Processing turnstile ('R164', 'R167', '00-03-03', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11164
Processing turnstile ('J034', 'R007', '00-00-03', '104 ST')
Processing turnstile ('B009', 'R411', '00-00-00', 'PARK PLACE')
Processing turnstile ('H014', 'R249', '00-00-01', 'GRAHAM AV')
Processing turnstile ('J001', 'R460', '01-00-02', 'MARCY AV')
Processing turnstile ('C018', 'R197', '00-00-05', '36 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11660
Processing turnstile ('R262A', 'R195', '04-00-03', '161/YANKEE STAD')
Processing turnstile ('N510', 'R163', '02-00-01', '14 ST')
Processing turnstile ('N035', 'R334', '00-00-00', 'CATHEDRAL PKWY')
Processing turnstile ('R135', 'R031', '01-00-05', '34 ST-PENN STA')
Processing turnstile ('R201', 'R041', '00-05-00', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-02-17: 67107004
Processing turnstile ('PTH05', 'R543', '00-04-02', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-02-16: -12644
Processing turnstile ('N213', 'R154', '00-00-03', 'TREMONT AV')
Processing turnstile ('N208', 'R443', '01-06-00', '170 ST')
Processing turnstile ('N001', 'R173', '01-06-03', 'INWOOD-207 ST')
Processing turnstile ('C022', 'R212', '01-06-00', '59 ST')
Processing turnstile ('N529', 'R257', '00-00-01', 'EAST BROADWAY')
Processing turnstile ('R192', 'R039', '00-00-03', 'MARBLE HILL-225')
Processing turnstile ('PTH07', 'R550', '00-01-05', 'CITY / BUS')
Processing turnstile ('N203', 'R195', '00-03-00', '161/YANKEE STAD')
Processing turnstile ('N319', 'R298', '01-06-01', 'NORTHERN BLVD')
Processing turnstile ('PTH20', 'R549', '03-00-07', 'NEWARK HM HE')
Processing turnstile ('R514', 'R094', '00-00-01', 'ASTORIA BLVD')
Processing turnstile ('R311', 'R053', '00-00-03', '3 AV-149 ST')
Processing turnstile ('N194', 'R338', '00-00-01', 'BEACH 36 ST')
Processing turnstile ('R289', 'R119', '00-05-01', 'FORDHAM RD')
Processing turnstile ('N026', 'R102', '00-05-01', '125 ST')
Processing turnstile ('R250', 'R179', '00-00-06', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10262
Processing turnstile ('A015', 'R081', '00-03-00', '49 ST')
Processing turnstile ('N110', 'R283', '00-00-00', 'LAFAYETTE AV')
Processing turnstile ('R219', 'R160', '00-00-00', 'ASTOR PL')
Processing turnstile ('R325', 'R388', '00-00-01', 'E 180 ST')
Processing turnstile ('N141', 'R356', '00-00-04', 'OZONE PK LEFFRT')
Processing turnstile ('R231', 'R176', '00-00-04', '33 ST')
Processing turnstile ('N100', 'R252', '00-00-01', 'HIGH ST')
Processing turnstile ('N195', 'R358', '00-00-01', 'BEACH 25 ST')
Processing turnstile ('N062', 'R011', '01-03-00', '42 ST-PORT AUTH')
Processing turnstile ('N191', 'R335', '00-00-00', 'BEACH 67 ST')
Processing turnstile ('R194', 'R040', '00-00-02', '231 ST')
Processing turnstile ('J031', 'R006', '00-00-03', 'WOODHAVEN BLVD')
Processing turnstile ('PTH10', 'R547', '00-00-04', '9TH STREET')
Processing turnstile ('J005', 'R353', '00-06-01', 'LORIMER ST')
Processing turnstile ('A077', 'R028', '03-03-00', 'FULTON ST')
Processing turnstile ('PTH05', 'R543', '00-01-02', 'EXCHANGE PLACE')
Processing turnstile ('N335', 'R158', '01-00-00', 'KEW GARDENS')
Processing turnstile ('J005', 'R353', '00-00-01', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-02-26: -4825970
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N083', 'R138', '01-05-01', 'W 4 ST-WASH SQ')
Processing turnstile ('JFK03', 'R536', '00-00-04', 'JFK JAMAICA CT1')
Processing turnstile ('N020', 'R101', '00-00-04', '145 ST')
Processing turnstile ('R147', 'R033', '04-00-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10561
Processing turnstile ('N193', 'R337', '00-00-00', 'BEACH 44 ST')
Processing turnstile ('B024A', 'R211', '02-00-02', 'KINGS HWY')
Processing turnstile ('N512', 'R163', '00-00-03', '14 ST')
Processing turnstile ('N305', 'R017', '01-03-04', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-02-01: -666
WARNING. Abnormal entry count found on day 2016-02-02: -2656
WARNING. Abnormal entry count found on day 2016-02-03: -2674
WARNING. Abnormal entry count found on day 2016-02-04: -2710
WARNING. Abnormal entry count found on day 2016-02-05: -2708
WARNING. Abnormal entry count found on day 2016-02-08: -2463
WARNING. Abnormal entry count found on day 2016-02-09: -2414
WARNING. Abnormal entry count found on day 2016-02-10: -2673
WARNING. Abnormal entry count found on day 2016-02-11: -2775
WARNING. Abnormal entry count found on day 2016-02-16: -7937
WARNING. Abnormal entry count found on day 2016-02-17: -2516
WARNING. Abnormal entry count found on day 2016-02-18: -2775
WARNING. Abnormal entry count found on day 2016-02-19: -2673
WARNING. Abnormal entry count found on day 2016-02-22: -4129
WARNING. Abnormal entry count found on day 2016-02-23: -2600
WARNING. Abnormal entry count found on day 2016-02-24: -2559
WARNING. Abnormal entry count found on day 2016-02-25: -2621
WARNING. Abnormal entry count found on day 2016-02-26: -2692
WARNING. Abnormal entry count found on day 2016-02-29: -2528
Processing turnstile ('N331', 'R219', '00-00-01', '67 AV')
Processing turnstile ('PTH05', 'R543', '00-01-01', 'EXCHANGE PLACE')
Processing turnstile ('R194', 'R040', '00-05-01', '231 ST')
Processing turnstile ('R532H', 'R328', '02-00-03', 'METS-WILLETS PT')
Processing turnstile ('N067', 'R012', '00-00-05', '34 ST-PENN STA')
Processing turnstile ('R312', 'R405', '00-00-02', 'JACKSON AV')
Processing turnstile ('N336', 'R158', '00-05-01', 'KEW GARDENS')
Processing turnstile ('K025', 'R404', '00-00-02', 'FRESH POND RD')
Processing turnstile ('R142', 'R293', '01-00-00', '34 ST-PENN STA')
Processing turnstile ('N060', 'R010', '01-00-00', '42 ST-PORT AUTH')
Processing turnstile ('N322', 'R340', '00-00-00', '65 ST')
Processing turnstile ('N509', 'R203', '00-00-02', '23 ST')
Processing turnstile ('TRAM2', 'R469', '00-00-00', 'RIT-ROOSEVELT')
Processing turnstile ('R194', 'R040', '00-00-00', '231 ST')
Processing turnstile ('N063', 'R011', '02-00-03', '42 ST-PORT AUTH')
Processing turnstile ('R321', 'R386', '01-00-01', '174 ST')
Processing turnstile ('A049', 'R088', '02-00-02', 'CORTLANDT ST')
Processing turnstile ('R644', 'R135', '01-00-02', 'NEWKIRK AV')
Processing turnstile ('N541', 'R241', '01-05-01', '15 ST-PROSPECT')
Processing turnstile ('R532', 'R328', '00-05-05', 'METS-WILLETS PT')
Processing turnstile ('N415', 'R286', '00-00-00', 'MYRTLE-WILLOUGH')
Processing turnstile ('R238', 'R046', '00-00-04', 'GRD CNTRL-42 ST')
Processing turnstile ('R129', 'R321', '00-00-00', '18 ST')
Processing turnstile ('PTH06', 'R546', '00-00-03', 'PAVONIA/NEWPORT')
Processing turnstile ('N324', 'R018', '00-06-03', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-16: 12029
Processing turnstile ('N062A', 'R010', '00-00-04', '42 ST-PORT AUTH')
Processing turnstile ('B029', 'R172', '00-00-03', 'BRIGHTON BEACH')
Processing turnstile ('R323', 'R387', '00-00-00', 'WEST FARMS SQ')
Processing turnstile ('A066', 'R118', '00-00-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12586
Processing turnstile ('N063A', 'R011', '00-00-08', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-01: -1511
WARNING. Abnormal entry count found on day 2016-02-02: -4968
WARNING. Abnormal entry count found on day 2016-02-03: -5163
WARNING. Abnormal entry count found on day 2016-02-04: -5536
WARNING. Abnormal entry count found on day 2016-02-05: -4566
WARNING. Abnormal entry count found on day 2016-02-08: -8040
WARNING. Abnormal entry count found on day 2016-02-09: -4545
WARNING. Abnormal entry count found on day 2016-02-10: -4997
WARNING. Abnormal entry count found on day 2016-02-11: -5242
WARNING. Abnormal entry count found on day 2016-02-16: -16321
WARNING. Abnormal entry count found on day 2016-02-17: -5198
WARNING. Abnormal entry count found on day 2016-02-18: -4955
WARNING. Abnormal entry count found on day 2016-02-19: -5183
WARNING. Abnormal entry count found on day 2016-02-22: -6083
WARNING. Abnormal entry count found on day 2016-02-23: -4820
WARNING. Abnormal entry count found on day 2016-02-24: -5103
WARNING. Abnormal entry count found on day 2016-02-25: -5033
WARNING. Abnormal entry count found on day 2016-02-26: -3947
WARNING. Abnormal entry count found on day 2016-02-29: -7046
Processing turnstile ('J030', 'R005', '00-00-00', '85 ST-FOREST PK')
Processing turnstile ('N111', 'R284', '00-06-01', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-02-01: -501
WARNING. Abnormal entry count found on day 2016-02-02: -1093
WARNING. Abnormal entry count found on day 2016-02-03: -1031
WARNING. Abnormal entry count found on day 2016-02-04: -1060
WARNING. Abnormal entry count found on day 2016-02-05: -1158
WARNING. Abnormal entry count found on day 2016-02-08: -2194
WARNING. Abnormal entry count found on day 2016-02-09: -926
WARNING. Abnormal entry count found on day 2016-02-10: -1082
WARNING. Abnormal entry count found on day 2016-02-11: -1067
WARNING. Abnormal entry count found on day 2016-02-16: -5065
WARNING. Abnormal entry count found on day 2016-02-17: -996
WARNING. Abnormal entry count found on day 2016-02-18: -1102
WARNING. Abnormal entry count found on day 2016-02-19: -938
WARNING. Abnormal entry count found on day 2016-02-22: -2644
WARNING. Abnormal entry count found on day 2016-02-23: -1074
WARNING. Abnormal entry count found on day 2016-02-24: -1131
WARNING. Abnormal entry count found on day 2016-02-25: -1153
WARNING. Abnormal entry count found on day 2016-02-26: -1146
WARNING. Abnormal entry count found on day 2016-02-29: -2333
Processing turnstile ('N129', 'R382', '00-03-00', 'GRANT AV')
Processing turnstile ('R204', 'R043', '02-03-02', 'WALL ST')
Processing turnstile ('N506', 'R022', '00-03-02', '34 ST-HERALD SQ')
Processing turnstile ('N089', 'R139', '00-03-00', 'CANAL ST')
Processing turnstile ('N521', 'R300', '01-00-01', '2 AV')
Processing turnstile ('R159', 'R164', '01-06-01', '66 ST-LINCOLN')
Processing turnstile ('R514', 'R094', '00-00-03', 'ASTORIA BLVD')
WARNING. Abnormal entry count found on day 2016-02-16: 11364
Processing turnstile ('PTH07', 'R550', '00-00-08', 'CITY / BUS')
Processing turnstile ('N325A', 'R218', '00-00-02', 'ELMHURST AV')
Processing turnstile ('A047', 'R087', '00-03-00', 'CITY HALL')
Processing turnstile ('R402', 'R446', '00-00-00', 'BROOK AV')
Processing turnstile ('D005', 'R398', '00-00-00', 'NEW UTRECHT AV')
Processing turnstile ('J012', 'R379', '00-00-02', 'KOSCIUSZKO ST')
Processing turnstile ('PTH08', 'R540', '00-04-04', 'PATH WTC')
Processing turnstile ('R602', 'R108', '00-00-00', 'BOROUGH HALL')
Processing turnstile ('N508', 'R453', '00-00-00', '23 ST')
Processing turnstile ('N001', 'R173', '01-05-01', 'INWOOD-207 ST')
Processing turnstile ('R192', 'R039', '00-00-00', 'MARBLE HILL-225')
Processing turnstile ('A031', 'R083', '00-00-01', '23 ST')
Processing turnstile ('R116', 'R030', '00-05-03', 'CHAMBERS ST')
Processing turnstile ('R217A', 'R194', '00-03-02', 'BLEECKER ST')
Processing turnstile ('N203', 'R195', '00-03-04', '161/YANKEE STAD')
Processing turnstile ('N536', 'R270', '00-00-01', 'SMITH-9 ST')
Processing turnstile ('A066', 'R118', '00-00-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14185
WARNING. Abnormal entry count found on day 2016-02-29: 11307
Processing turnstile ('H009', 'R235', '00-00-01', 'BEDFORD AV')
Processing turnstile ('N604', 'R342', '00-05-01', 'JAMAICA VAN WK')
Processing turnstile ('PTH19', 'R549', '02-02-01', 'NEWARK C')
Processing turnstile ('N414', 'R316', '00-00-00', 'FLUSHING AV')
Processing turnstile ('N023', 'R332', '01-00-00', '135 ST')
Processing turnstile ('R182', 'R035', '00-03-02', '168 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10963
Processing turnstile ('N020', 'R101', '00-00-05', '145 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11961
WARNING. Abnormal entry count found on day 2016-02-22: 11863
Processing turnstile ('PTH19', 'R549', '02-02-03', 'NEWARK C')
Processing turnstile ('A031', 'R083', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10520
Processing turnstile ('N520', 'R240', '00-00-02', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10892
Processing turnstile ('H005', 'R330', '00-00-01', '3 AV')
Processing turnstile ('R142', 'R293', '01-06-00', '34 ST-PENN STA')
Processing turnstile ('R210', 'R044', '00-03-01', 'BROOKLYN BRIDGE')
Processing turnstile ('N419', 'R287', '00-00-00', 'CLASSON AV')
Processing turnstile ('A084', 'R125', '01-06-01', 'BROAD ST')
Processing turnstile ('N606', 'R025', '00-00-05', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-02-16: 14857
Processing turnstile ('C024', 'R214', '00-00-02', '77 ST')
Processing turnstile ('R301', 'R323', '00-06-00', 'CENTRAL PK N110')
Processing turnstile ('R196', 'R306', '00-00-02', '238 ST')
Processing turnstile ('N601', 'R319', '00-03-01', 'LEXINGTON AV/63')
Processing turnstile ('R204A', 'R043', '03-05-00', 'WALL ST')
Processing turnstile ('N095', 'R014', '00-03-07', 'FULTON ST')
Processing turnstile ('R284', 'R243', '00-00-02', '170 ST')
Processing turnstile ('C018', 'R197', '00-00-02', '36 ST')
Processing turnstile ('R621', 'R060', '00-03-00', 'EASTN PKWY-MUSM')
Processing turnstile ('C018', 'R197', '00-00-01', '36 ST')
Processing turnstile ('R260', 'R205', '01-06-00', '149/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-02-16: 10227
Processing turnstile ('R421', 'R427', '00-00-00', 'MIDDLETOWN RD')
Processing turnstile ('R203', 'R043', '00-05-02', 'WALL ST')
Processing turnstile ('N546', 'R204', '00-05-00', 'CHURCH AV')
Processing turnstile ('N305', 'R017', '01-00-01', 'LEXINGTON AV/53')
Processing turnstile ('PTH07', 'R550', '00-00-01', 'CITY / BUS')
Processing turnstile ('R609', 'R056', '01-03-01', 'NEVINS ST')
Processing turnstile ('B031', 'R172', '01-00-04', 'BRIGHTON BEACH')
Processing turnstile ('N315', 'R238', '00-00-03', 'STEINWAY ST')
Processing turnstile ('R606', 'R225', '00-00-01', 'HOYT ST')
Processing turnstile ('N325A', 'R218', '00-03-00', 'ELMHURST AV')
Processing turnstile ('N045', 'R187', '01-00-01', '81 ST-MUSEUM')
Processing turnstile ('N069', 'R013', '01-06-00', '34 ST-PENN STA')
Processing turnstile ('R534', 'R055', '01-05-01', 'FLUSHING-MAIN')
Processing turnstile ('N325A', 'R218', '00-03-01', 'ELMHURST AV')
Processing turnstile ('N192', 'R336', '00-05-01', 'BEACH 60 ST')
Processing turnstile ('R521', 'R327', '00-00-03', '52 ST')
Processing turnstile ('N307', 'R359', '00-06-00', 'COURT SQ-23 ST')
Processing turnstile ('R159', 'R164', '01-00-01', '66 ST-LINCOLN')
Processing turnstile ('A064', 'R311', '00-00-00', 'BOWERY')
Processing turnstile ('R160A', 'R164', '00-00-01', '66 ST-LINCOLN')
Processing turnstile ('N519A', 'R461', '01-01-00', "B'WAY-LAFAYETTE")
Processing turnstile ('N045', 'R187', '01-06-00', '81 ST-MUSEUM')
Processing turnstile ('N414', 'R316', '00-00-02', 'FLUSHING AV')
Processing turnstile ('R246', 'R177', '00-00-06', '68ST-HUNTER CO')
Processing turnstile ('N009', 'R174', '01-00-00', '181 ST')
Processing turnstile ('R238', 'R046', '00-00-07', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 11408
WARNING. Abnormal entry count found on day 2016-02-16: 23159
WARNING. Abnormal entry count found on day 2016-02-22: 14366
WARNING. Abnormal entry count found on day 2016-02-29: 12757
Processing turnstile ('J032', 'R006', '01-06-01', 'WOODHAVEN BLVD')
Processing turnstile ('N095', 'R014', '00-03-04', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10438
Processing turnstile ('N507', 'R023', '00-03-04', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 12700
Processing turnstile ('C008', 'R099', '00-03-02', 'DEKALB AV')
Processing turnstile ('R259', 'R307', '00-00-00', '138/GRAND CONC')
Processing turnstile ('R102', 'R304', '01-03-00', 'RECTOR ST')
Processing turnstile ('R532H', 'R328', '02-06-01', 'METS-WILLETS PT')
Processing turnstile ('PTH02', 'R544', '00-04-01', 'HARRISON')
Processing turnstile ('R200A', 'R041', '01-00-04', 'BOWLING GREEN')
Processing turnstile ('R227A', 'R131', '01-00-02', '23 ST')
Processing turnstile ('J037', 'R009', '00-00-01', '121 ST')
Processing turnstile ('PTH20', 'R549', '03-01-01', 'NEWARK HM HE')
Processing turnstile ('R533', 'R055', '00-03-00', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-08: 10392
WARNING. Abnormal entry count found on day 2016-02-16: 18302
WARNING. Abnormal entry count found on day 2016-02-29: 11273
Processing turnstile ('R145', 'R032', '00-00-00', 'TIMES SQ-42 ST')
Processing turnstile ('R524', 'R347', '00-05-00', '69 ST')
Processing turnstile ('R312', 'R405', '00-00-01', 'JACKSON AV')
Processing turnstile ('R164', 'R167', '00-00-01', '86 ST')
Processing turnstile ('N539A', 'R288', '00-00-01', '7 AV')
Processing turnstile ('N537', 'R258', '00-03-01', '4 AV-9 ST')
Processing turnstile ('R617', 'R058', '00-00-00', 'BERGEN ST')
Processing turnstile ('R201', 'R041', '00-03-03', 'BOWLING GREEN')
Processing turnstile ('B025', 'R150', '00-05-01', 'AVENUE U')
Processing turnstile ('N187', 'R419', '00-05-01', 'ROCKAWAY PARK B')
Processing turnstile ('R294', 'R052', '00-00-01', 'WOODLAWN')
Processing turnstile ('R260', 'R205', '01-05-01', '149/GRAND CONC')
Processing turnstile ('B027', 'R136', '00-00-04', 'SHEEPSHEAD BAY')
Processing turnstile ('R507', 'R134', '00-03-00', 'HUNTERS PT AV')
Processing turnstile ('N181', 'R357', '00-06-01', 'AQUEDUCT N.COND')
Processing turnstile ('N060', 'R010', '01-03-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-16: 11010
Processing turnstile ('C014', 'R246', '00-00-02', 'PROSPECT AV')
Processing turnstile ('R320', 'R409', '00-00-01', 'FREEMAN ST')
Processing turnstile ('R160', 'R164', '02-00-01', '66 ST-LINCOLN')
Processing turnstile ('R113', 'R028', '01-04-01', 'FULTON ST')
Processing turnstile ('N067', 'R012', '00-05-01', '34 ST-PENN STA')
Processing turnstile ('N311', 'R339', '01-00-00', '36 ST')
Processing turnstile ('N208', 'R443', '01-00-02', '170 ST')
Processing turnstile ('N020', 'R101', '00-00-03', '145 ST')
Processing turnstile ('C012', 'R258', '01-06-01', '4AV-9 ST')
Processing turnstile ('S101A', 'R070', '01-00-01', 'ST. GEORGE')
Processing turnstile ('A081', 'R028', '04-00-00', 'FULTON ST')
Processing turnstile ('R510', 'R090', '00-00-01', '39 AV')
Processing turnstile ('N303', 'R015', '00-00-0A', '5 AV/53 ST')
Processing turnstile ('R248', 'R178', '00-00-05', '77 ST')
Processing turnstile ('N057', 'R188', '00-00-04', '50 ST')
Processing turnstile ('R232', 'R176', '02-00-05', '33 ST')
Processing turnstile ('N182', 'R414', '00-00-01', 'HOWARD BCH JFK')
Processing turnstile ('R113', 'R028', '01-06-01', 'FULTON ST')
Processing turnstile ('R101', 'R001', '02-00-05', 'SOUTH FERRY')
Processing turnstile ('PTH13', 'R541', '00-04-00', 'THIRTY ST')
Processing turnstile ('D012', 'R395', '00-00-00', 'KINGS HWY')
Processing turnstile ('R221', 'R170', '01-06-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-29: 116531654
Processing turnstile ('N217', 'R112', '00-00-00', 'FORDHAM RD')
Processing turnstile ('R409', 'R449', '01-00-00', 'E 149 ST')
Processing turnstile ('R216', 'R322', '01-00-00', 'SPRING ST')
Processing turnstile ('R307', 'R207', '01-05-00', '135 ST')
Processing turnstile ('R507', 'R134', '00-03-04', 'HUNTERS PT AV')
Processing turnstile ('N077', 'R111', '02-00-01', '23 ST')
Processing turnstile ('G001', 'R151', '00-03-02', 'CONEY IS-STILLW')
Processing turnstile ('N550', 'R242', '01-06-01', '18 AV')
Processing turnstile ('PTH08', 'R540', '00-04-05', 'PATH WTC')
WARNING. Abnormal entry count found on day 2016-02-16: 12600
Processing turnstile ('N046', 'R281', '00-06-01', '72 ST')
Processing turnstile ('N338B', 'R128', '00-00-01', 'SUTPHIN BLVD')
Processing turnstile ('N103', 'R127', '00-00-06', 'JAY ST-METROTEC')
Processing turnstile ('R236', 'R045', '00-03-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-18: -916457
Processing turnstile ('N110', 'R283', '00-00-01', 'LAFAYETTE AV')
Processing turnstile ('R186', 'R036', '00-00-01', 'DYCKMAN ST')
Processing turnstile ('A050', 'R088', '00-02-01', 'CORTLANDT ST')
Processing turnstile ('N405', 'R239', '00-06-00', 'GREENPOINT AV')
Processing turnstile ('N336', 'R158', '00-03-02', 'KEW GARDENS')
Processing turnstile ('N011', 'R126', '01-05-01', '175 ST')
Processing turnstile ('N095', 'R014', '00-03-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10531
Processing turnstile ('H008', 'R248', '01-00-02', '1 AV')
Processing turnstile ('B010', 'R412', '00-03-02', 'BOTANIC GARDEN')
Processing turnstile ('A010', 'R080', '00-00-06', '57 ST-7 AV')
Processing turnstile ('R219', 'R160', '00-00-02', 'ASTOR PL')
Processing turnstile ('R129', 'R321', '00-00-02', '18 ST')
Processing turnstile ('N553', 'R422', '00-00-02', 'BAY PKWY')
Processing turnstile ('R228', 'R143', '00-00-02', '28 ST')
Processing turnstile ('N501A', 'R020', '02-03-01', '47-50 STS ROCK')
Processing turnstile ('R524', 'R347', '00-00-02', '69 ST')
Processing turnstile ('N078', 'R175', '01-06-03', '14 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 16562
Processing turnstile ('R336', 'R145', '00-03-00', 'WAKEFIELD/241')
Processing turnstile ('R151', 'R033', '00-00-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-22: 11753
WARNING. Abnormal entry count found on day 2016-02-29: 11787
Processing turnstile ('PTH13', 'R541', '00-00-03', 'THIRTY ST')
Processing turnstile ('PTH02', 'R544', '00-00-06', 'HARRISON')
Processing turnstile ('N078', 'R175', '01-06-00', '14 ST')
Processing turnstile ('S101A', 'R070', '01-05-01', 'ST. GEORGE')
Processing turnstile ('R527', 'R122', '00-00-00', '90 ST-ELMHURST')
Processing turnstile ('R610', 'R057', '00-06-05', 'ATL AV-BARCLAY')
Processing turnstile ('A061', 'R142', '00-03-00', 'DELANCEY/ESSEX')
Processing turnstile ('E009', 'R370', '00-06-00', '71 ST')
Processing turnstile ('PTH06', 'R546', '00-00-00', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-02-16: 10441
Processing turnstile ('R520', 'R223', '01-05-01', '46 ST BLISS ST')
Processing turnstile ('R533', 'R055', '00-00-04', 'FLUSHING-MAIN')
Processing turnstile ('R253', 'R181', '00-00-02', '110 ST')
Processing turnstile ('PTH07', 'R550', '00-00-07', 'CITY / BUS')
Processing turnstile ('N208', 'R443', '01-05-00', '170 ST')
Processing turnstile ('B017', 'R262', '00-00-01', 'BEVERLEY ROAD')
Processing turnstile ('R142', 'R293', '01-00-03', '34 ST-PENN STA')
Processing turnstile ('J003', 'R352', '00-00-02', 'HEWES ST')
Processing turnstile ('N555', 'R423', '00-00-01', 'AVENUE N')
Processing turnstile ('R523', 'R147', '00-00-02', '61 ST WOODSIDE')
Processing turnstile ('H008', 'R248', '01-00-01', '1 AV')
Processing turnstile ('R416', 'R245', '00-00-00', 'ST LAWRENCE AV')
Processing turnstile ('R287', 'R244', '00-05-00', 'BURNSIDE AV')
Processing turnstile ('R231A', 'R176', '01-00-00', '33 ST')
Processing turnstile ('N503', 'R021', '00-00-02', '42 ST-BRYANT PK')
Processing turnstile ('R206', 'R014', '02-05-01', 'FULTON ST')
Processing turnstile ('N013', 'R035', '02-00-02', '168 ST')
Processing turnstile ('PTH12', 'R542', '00-00-02', 'TWENTY THIRD ST')
Processing turnstile ('N024', 'R332', '00-00-02', '135 ST')
Processing turnstile ('N025', 'R102', '01-00-01', '125 ST')
Processing turnstile ('N604', 'R342', '00-00-02', 'JAMAICA VAN WK')
Processing turnstile ('N186', 'R418', '00-00-02', 'BEACH 105 ST')
Processing turnstile ('R126', 'R189', '01-00-00', 'CHRISTOPHER ST')
Processing turnstile ('R173', 'R159', '00-00-03', '116 ST-COLUMBIA')
Processing turnstile ('R293', 'R133', '00-06-00', 'MOSHOLU PKWY')
Processing turnstile ('PTH07', 'R550', '00-01-06', 'CITY / BUS')
Processing turnstile ('N414A', 'R316', '01-00-00', 'FLUSHING AV')
Processing turnstile ('R158', 'R084', '00-05-00', '59 ST COLUMBUS')
Processing turnstile ('R208', 'R014', '03-00-02', 'FULTON ST')
Processing turnstile ('R404', 'R447', '00-00-02', 'CYPRESS AV')
Processing turnstile ('R527', 'R122', '00-03-00', '90 ST-ELMHURST')
Processing turnstile ('H007', 'R248', '00-03-01', '1 AV')
Processing turnstile ('R141', 'R031', '00-03-00', '34 ST-PENN STA')
Processing turnstile ('N094', 'R029', '01-06-00', 'WORLD TRADE CTR')
Processing turnstile ('R602', 'R108', '00-06-00', 'BOROUGH HALL')
Processing turnstile ('N062A', 'R010', '00-00-03', '42 ST-PORT AUTH')
Processing turnstile ('N056', 'R188', '01-00-01', '50 ST')
Processing turnstile ('JFK02', 'R535', '01-00-06', 'HOWARD BCH JFK')
Processing turnstile ('N519A', 'R461', '01-06-01', "B'WAY-LAFAYETTE")
Processing turnstile ('N306', 'R017', '00-00-00', 'LEXINGTON AV/53')
Processing turnstile ('TRAM1', 'R468', '00-00-01', 'RIT-MANHATTAN')
Processing turnstile ('A038', 'R085', '00-00-00', '8 ST-NYU')
Processing turnstile ('N083', 'R138', '01-06-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 15777
WARNING. Abnormal entry count found on day 2016-02-16: 23597
WARNING. Abnormal entry count found on day 2016-02-22: 16776
WARNING. Abnormal entry count found on day 2016-02-29: 15685
Processing turnstile ('N121B', 'R438', '00-00-01', 'RALPH AV')
Processing turnstile ('A055', 'R227', '00-00-01', 'RECTOR ST')
Processing turnstile ('B019', 'R149', '00-00-00', 'NEWKIRK PLAZA')
Processing turnstile ('N558', 'R130', '01-06-00', 'KINGS HWY')
Processing turnstile ('B026', 'R230', '00-00-02', 'NECK RD')
Processing turnstile ('R318', 'R408', '00-00-00', 'SIMPSON ST')
Processing turnstile ('A031', 'R083', '00-03-00', '23 ST')
Processing turnstile ('JFK02', 'R535', '01-00-04', 'HOWARD BCH JFK')
Processing turnstile ('N506', 'R022', '00-03-00', '34 ST-HERALD SQ')
Processing turnstile ('N049', 'R084', '01-03-03', '59 ST COLUMBUS')
Processing turnstile ('N217', 'R112', '00-03-01', 'FORDHAM RD')
Processing turnstile ('R208', 'R014', '03-03-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-02-03: 33430341
Processing turnstile ('N521', 'R300', '01-06-02', '2 AV')
Processing turnstile ('A015', 'R081', '00-00-02', '49 ST')
Processing turnstile ('R412', 'R146', '00-03-02', 'HUNTS POINT AV')
Processing turnstile ('G009', 'R151', '02-00-02', 'CONEY IS-STILLW')
Processing turnstile ('N330', 'R202', '00-06-00', '63 DR-REGO PARK')
Processing turnstile ('A011', 'R080', '01-00-00', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-02-01: -1327
WARNING. Abnormal entry count found on day 2016-02-02: -3043
WARNING. Abnormal entry count found on day 2016-02-03: -3298
WARNING. Abnormal entry count found on day 2016-02-04: -3261
WARNING. Abnormal entry count found on day 2016-02-05: -3303
WARNING. Abnormal entry count found on day 2016-02-08: -6298
WARNING. Abnormal entry count found on day 2016-02-09: -2960
WARNING. Abnormal entry count found on day 2016-02-10: -3220
WARNING. Abnormal entry count found on day 2016-02-11: -3425
WARNING. Abnormal entry count found on day 2016-02-16: -11054
WARNING. Abnormal entry count found on day 2016-02-17: -3015
WARNING. Abnormal entry count found on day 2016-02-18: -3223
WARNING. Abnormal entry count found on day 2016-02-19: -3278
WARNING. Abnormal entry count found on day 2016-02-22: -6459
WARNING. Abnormal entry count found on day 2016-02-23: -3178
WARNING. Abnormal entry count found on day 2016-02-24: -3297
WARNING. Abnormal entry count found on day 2016-02-25: -3391
WARNING. Abnormal entry count found on day 2016-02-26: -3418
WARNING. Abnormal entry count found on day 2016-02-29: -6638
Processing turnstile ('PTH21', 'R540', '01-03-00', 'PATH WTC 2')
Processing turnstile ('A061', 'R142', '00-03-03', 'DELANCEY/ESSEX')
Processing turnstile ('H023', 'R236', '00-06-00', 'DEKALB AV')
Processing turnstile ('N539A', 'R288', '00-00-02', '7 AV')
Processing turnstile ('A014', 'R081', '02-00-00', '49 ST')
Processing turnstile ('R526', 'R096', '00-05-01', '82 ST-JACKSON H')
Processing turnstile ('H019', 'R294', '00-06-01', 'MORGAN AV')
Processing turnstile ('R262B', 'R195', '05-00-04', '161/YANKEE STAD')
Processing turnstile ('R210', 'R044', '00-06-01', 'BROOKLYN BRIDGE')
Processing turnstile ('R256', 'R182', '00-00-02', '116 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11299
Processing turnstile ('PTH16', 'R550', '01-01-00', 'LACKAWANNA')
Processing turnstile ('R516', 'R291', '00-00-00', '33 ST-RAWSON ST')
Processing turnstile ('N017', 'R331', '00-00-01', '155 ST')
Processing turnstile ('R606', 'R225', '00-00-04', 'HOYT ST')
Processing turnstile ('H007', 'R248', '00-00-01', '1 AV')
WARNING. Abnormal entry count found on day 2016-02-08: 13154
WARNING. Abnormal entry count found on day 2016-02-16: 21854
WARNING. Abnormal entry count found on day 2016-02-22: 13058
WARNING. Abnormal entry count found on day 2016-02-29: 13365
Processing turnstile ('TRAM1', 'R468', '00-00-00', 'RIT-MANHATTAN')
Processing turnstile ('N077', 'R111', '02-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10817
Processing turnstile ('N095', 'R014', '00-03-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10224
Processing turnstile ('R160A', 'R164', '00-06-01', '66 ST-LINCOLN')
Processing turnstile ('N067', 'R012', '00-05-02', '34 ST-PENN STA')
Processing turnstile ('B016', 'R098', '00-03-00', 'CHURCH AV')
Processing turnstile ('R250', 'R179', '00-00-09', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 10101
WARNING. Abnormal entry count found on day 2016-02-16: 17658
WARNING. Abnormal entry count found on day 2016-02-29: 10003
Processing turnstile ('N520', 'R240', '00-00-05', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10427
Processing turnstile ('R327', 'R361', '01-06-00', 'PELHAM PKWY')
Processing turnstile ('N063', 'R011', '02-00-01', '42 ST-PORT AUTH')
Processing turnstile ('N213', 'R154', '00-00-05', 'TREMONT AV')
Processing turnstile ('A034', 'R170', '03-06-00', '14 ST-UNION SQ')
Processing turnstile ('R627', 'R063', '00-00-00', 'SUTTER AV-RUTLD')
WARNING. Abnormal entry count found on day 2016-02-16: 10936
Processing turnstile ('A055', 'R227', '00-00-02', 'RECTOR ST')
Processing turnstile ('R293', 'R133', '00-00-00', 'MOSHOLU PKWY')
Processing turnstile ('N507', 'R023', '00-03-01', '34 ST-HERALD SQ')
Processing turnstile ('R127', 'R105', '00-06-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10811
Processing turnstile ('N327', 'R254', '00-05-04', 'GRAND-NEWTOWN')
Processing turnstile ('R601A', 'R108', '02-00-03', 'BOROUGH HALL')
Processing turnstile ('N063A', 'R011', '00-00-07', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-02-16: 17806
Processing turnstile ('N541', 'R241', '01-06-00', '15 ST-PROSPECT')
Processing turnstile ('N519', 'R461', '00-00-02', "B'WAY-LAFAYETTE")
Processing turnstile ('R730', 'R431', '00-00-00', 'EASTCHSTER/DYRE')
Processing turnstile ('A030', 'R083', '01-00-01', '23 ST')
Processing turnstile ('N063', 'R011', '02-03-00', '42 ST-PORT AUTH')
Processing turnstile ('R527', 'R122', '00-03-04', '90 ST-ELMHURST')
Processing turnstile ('N205', 'R195', '02-00-02', '161/YANKEE STAD')
Processing turnstile ('E009', 'R370', '00-06-01', '71 ST')
Processing turnstile ('R294', 'R052', '00-00-03', 'WOODLAWN')
Processing turnstile ('R412', 'R146', '00-00-02', 'HUNTS POINT AV')
Processing turnstile ('R236', 'R045', '00-06-01', 'GRD CNTRL-42 ST')
Processing turnstile ('H009', 'R235', '00-06-03', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-02-01: -1045
WARNING. Abnormal entry count found on day 2016-02-02: -1610
WARNING. Abnormal entry count found on day 2016-02-03: -1677
WARNING. Abnormal entry count found on day 2016-02-04: -1623
WARNING. Abnormal entry count found on day 2016-02-05: -1667
WARNING. Abnormal entry count found on day 2016-02-08: -4340
WARNING. Abnormal entry count found on day 2016-02-09: -1358
WARNING. Abnormal entry count found on day 2016-02-10: -1635
WARNING. Abnormal entry count found on day 2016-02-11: -1790
WARNING. Abnormal entry count found on day 2016-02-16: -6667
WARNING. Abnormal entry count found on day 2016-02-17: -1352
WARNING. Abnormal entry count found on day 2016-02-18: -1530
WARNING. Abnormal entry count found on day 2016-02-19: -1447
WARNING. Abnormal entry count found on day 2016-02-22: -4017
WARNING. Abnormal entry count found on day 2016-02-23: -1298
WARNING. Abnormal entry count found on day 2016-02-24: -1557
WARNING. Abnormal entry count found on day 2016-02-25: -1539
WARNING. Abnormal entry count found on day 2016-02-26: -1715
WARNING. Abnormal entry count found on day 2016-02-29: -4113
Processing turnstile ('R127', 'R105', '00-03-01', '14 ST')
Processing turnstile ('N305A', 'R016', '00-03-00', 'LEXINGTON AV/53')
Processing turnstile ('R293', 'R133', '00-00-01', 'MOSHOLU PKWY')
Processing turnstile ('R139', 'R031', '04-00-00', '34 ST-PENN STA')
Processing turnstile ('R534', 'R055', '01-00-01', 'FLUSHING-MAIN')
Processing turnstile ('R521', 'R327', '00-06-00', '52 ST')
Processing turnstile ('S101', 'R070', '00-00-08', 'ST. GEORGE')
Processing turnstile ('R625', 'R062', '01-00-02', 'CROWN HTS-UTICA')
Processing turnstile ('R612', 'R057', '01-00-00', 'ATL AV-BARCLAY')
Processing turnstile ('R728', 'R226', '00-00-03', 'GUN HILL RD')
Processing turnstile ('N337', 'R255', '00-03-02', 'BRIARWOOD')
Processing turnstile ('J032', 'R006', '01-06-00', 'WOODHAVEN BLVD')
Processing turnstile ('R550', 'R072', '00-00-00', '34 ST-HUDSON YD')
Processing turnstile ('N505', 'R022', '02-00-04', '34 ST-HERALD SQ')
Processing turnstile ('N523', 'R300', '00-00-02', '2 AV')
Processing turnstile ('R501', 'R054', '00-00-01', '5 AVE')
Processing turnstile ('PTH20', 'R549', '03-01-05', 'NEWARK HM HE')
Processing turnstile ('N123B', 'R439', '01-05-00', 'ROCKAWAY AV')
Processing turnstile ('R262B', 'R195', '05-00-02', '161/YANKEE STAD')
Processing turnstile ('N605', 'R024', '00-00-05', 'SUTPHIN-ARCHER')
Processing turnstile ('H019', 'R294', '00-00-02', 'MORGAN AV')
Processing turnstile ('H016', 'R250', '00-00-00', 'GRAND ST')
Processing turnstile ('R507', 'R134', '00-03-02', 'HUNTERS PT AV')
Processing turnstile ('N555', 'R423', '00-00-02', 'AVENUE N')
Processing turnstile ('N091', 'R029', '02-05-04', 'CHAMBERS ST')
Processing turnstile ('N333', 'R141', '01-00-02', 'FOREST HILLS 71')
Processing turnstile ('C009', 'R057', '03-05-01', 'ATL AV-BARCLAY')
Processing turnstile ('R174', 'R034', '00-00-01', '125 ST')
Processing turnstile ('N332', 'R219', '01-06-01', '67 AV')
Processing turnstile ('N338', 'R128', '01-06-00', 'SUTPHIN BLVD')
Processing turnstile ('PTH08', 'R540', '00-04-07', 'PATH WTC')
Processing turnstile ('R517', 'R291', '01-05-00', '33 ST-RAWSON ST')
Processing turnstile ('N137', 'R354', '00-00-02', '104 ST')
Processing turnstile ('N317', 'R267', '02-00-02', '46 ST')
Processing turnstile ('N030', 'R333', '00-00-02', '116 ST')
Processing turnstile ('N077', 'R111', '02-00-00', '23 ST')
Processing turnstile ('N419', 'R287', '00-00-02', 'CLASSON AV')
Processing turnstile ('R138', 'R293', '00-06-00', '34 ST-PENN STA')
Processing turnstile ('R305', 'R206', '01-00-01', '125 ST')
Processing turnstile ('R645', 'R110', '00-05-01', 'FLATBUSH AV-B.C')
Processing turnstile ('N409', 'R268', '00-00-02', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-02-16: 13047
Processing turnstile ('R194', 'R040', '00-06-01', '231 ST')
Processing turnstile ('PTH10', 'R547', '00-00-00', '9TH STREET')
Processing turnstile ('R414', 'R162', '00-03-00', 'ELDER AV')
Processing turnstile ('H033', 'R313', '00-00-01', 'BUSHWICK AV')
Processing turnstile ('N316A', 'R267', '01-00-01', '46 ST')
Processing turnstile ('R115', 'R029', '00-00-01', 'PARK PLACE')
Processing turnstile ('N118', 'R199', '01-00-01', 'KINGSTON-THROOP')
Processing turnstile ('R619', 'R059', '00-03-00', 'GRAND ARMY PLAZ')
Processing turnstile ('R252', 'R180', '00-00-03', '103 ST')
Processing turnstile ('R232', 'R176', '02-00-06', '33 ST')
Processing turnstile ('N558', 'R130', '01-06-01', 'KINGS HWY')
Processing turnstile ('N095', 'R014', '00-05-00', 'FULTON ST')
Processing turnstile ('A022', 'R022', '01-00-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 17678
WARNING. Abnormal entry count found on day 2016-02-29: 10296
Processing turnstile ('N070', 'R012', '04-00-00', '34 ST-PENN STA')
Processing turnstile ('R237', 'R046', '01-00-04', 'GRD CNTRL-42 ST')
Processing turnstile ('K019', 'R413', '00-00-01', 'KNICKERBOCKER')
Processing turnstile ('N083', 'R138', '01-00-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 14725
Processing turnstile ('R143', 'R032', '02-00-02', 'TIMES SQ-42 ST')
Processing turnstile ('R506', 'R276', '02-05-00', 'VERNON-JACKSON')
Processing turnstile ('R258', 'R132', '00-05-00', '125 ST')
Processing turnstile ('R410', 'R450', '00-00-02', 'LONGWOOD AV')
Processing turnstile ('R625', 'R062', '01-00-01', 'CROWN HTS-UTICA')
Processing turnstile ('N049', 'R084', '01-03-02', '59 ST COLUMBUS')
Processing turnstile ('R250', 'R179', '00-00-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 11045
WARNING. Abnormal entry count found on day 2016-02-16: 17800
WARNING. Abnormal entry count found on day 2016-02-22: 11591
WARNING. Abnormal entry count found on day 2016-02-29: 10969
Processing turnstile ('N605', 'R024', '00-00-01', 'SUTPHIN-ARCHER')
Processing turnstile ('N224', 'R157', '00-00-03', 'NORWOOD 205 ST')
Processing turnstile ('N520', 'R240', '00-00-00', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14461
WARNING. Abnormal entry count found on day 2016-02-22: 10815
WARNING. Abnormal entry count found on day 2016-02-29: 10516
Processing turnstile ('R145', 'R032', '00-00-02', 'TIMES SQ-42 ST')
Processing turnstile ('N550', 'R242', '01-06-00', '18 AV')
Processing turnstile ('C025', 'R215', '00-03-02', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12373
Processing turnstile ('R112A', 'R027', '03-00-01', 'WALL ST')
Processing turnstile ('A011', 'R080', '01-00-05', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-02-01: -1045
WARNING. Abnormal entry count found on day 2016-02-02: -2687
WARNING. Abnormal entry count found on day 2016-02-03: -2851
WARNING. Abnormal entry count found on day 2016-02-04: -2869
WARNING. Abnormal entry count found on day 2016-02-05: -2843
WARNING. Abnormal entry count found on day 2016-02-08: -5024
WARNING. Abnormal entry count found on day 2016-02-09: -2457
WARNING. Abnormal entry count found on day 2016-02-10: -2627
WARNING. Abnormal entry count found on day 2016-02-11: -2824
WARNING. Abnormal entry count found on day 2016-02-16: -9606
WARNING. Abnormal entry count found on day 2016-02-17: -2647
WARNING. Abnormal entry count found on day 2016-02-18: -2669
WARNING. Abnormal entry count found on day 2016-02-19: -2677
WARNING. Abnormal entry count found on day 2016-02-22: -4970
WARNING. Abnormal entry count found on day 2016-02-23: -2540
WARNING. Abnormal entry count found on day 2016-02-24: -2709
WARNING. Abnormal entry count found on day 2016-02-25: -2915
WARNING. Abnormal entry count found on day 2016-02-26: -2626
WARNING. Abnormal entry count found on day 2016-02-29: -4847
Processing turnstile ('N102', 'R127', '01-06-00', 'JAY ST-METROTEC')
Processing turnstile ('R204', 'R043', '02-00-01', 'WALL ST')
Processing turnstile ('R206', 'R014', '02-03-02', 'FULTON ST')
Processing turnstile ('B020', 'R263', '00-06-01', 'AVENUE H')
Processing turnstile ('S102', 'R165', '00-00-01', 'TOMPKINSVILLE')
Processing turnstile ('J023', 'R436', '00-00-02', 'NORWOOD AV')
Processing turnstile ('R175', 'R169', '01-00-02', '137 ST CITY COL')
Processing turnstile ('N330C', 'R202', '01-06-02', '63 DR-REGO PARK')
Processing turnstile ('N062', 'R011', '01-03-02', '42 ST-PORT AUTH')
Processing turnstile ('PTH05', 'R543', '00-04-01', 'EXCHANGE PLACE')
Processing turnstile ('N315', 'R238', '00-00-00', 'STEINWAY ST')
Processing turnstile ('R622', 'R123', '00-00-03', 'FRANKLIN AV')
Processing turnstile ('N521', 'R300', '01-00-02', '2 AV')
Processing turnstile ('JFK02', 'R535', '01-00-01', 'HOWARD BCH JFK')
Processing turnstile ('D015', 'R396', '00-00-02', 'AVENUE U')
Processing turnstile ('R533', 'R055', '00-03-03', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-16: 10027
Processing turnstile ('PTH03', 'R552', '00-00-04', 'JOURNAL SQUARE')
Processing turnstile ('B020', 'R263', '00-06-03', 'AVENUE H')
Processing turnstile ('H035', 'R348', '00-00-01', 'ATLANTIC AV')
Processing turnstile ('G009', 'R151', '02-00-04', 'CONEY IS-STILLW')
Processing turnstile ('H007', 'R248', '00-03-00', '1 AV')
Processing turnstile ('K026', 'R100', '00-05-01', 'METROPOLITAN AV')
Processing turnstile ('N505', 'R022', '02-06-00', '34 ST-HERALD SQ')
Processing turnstile ('C021', 'R212', '00-00-02', '59 ST')
Processing turnstile ('N195', 'R358', '00-00-02', 'BEACH 25 ST')
Processing turnstile ('R200A', 'R041', '01-05-01', 'BOWLING GREEN')
Processing turnstile ('R145', 'R032', '00-06-00', 'TIMES SQ-42 ST')
Processing turnstile ('R507', 'R134', '00-00-01', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-02-17: -1492547516
Processing turnstile ('A046', 'R463', '00-06-06', 'CANAL ST')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A046', 'R463', '00-06-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12108
Processing turnstile ('N400A', 'R359', '02-06-03', 'COURT SQ')
Processing turnstile ('R251', 'R144', '00-03-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 12731
WARNING. Abnormal entry count found on day 2016-02-16: 18961
WARNING. Abnormal entry count found on day 2016-02-22: 11795
WARNING. Abnormal entry count found on day 2016-02-29: 11951
Processing turnstile ('R519', 'R223', '00-00-02', '46 ST BLISS ST')
Processing turnstile ('PTH04', 'R551', '00-00-03', 'GROVE STREET')
Processing turnstile ('R515', 'R095', '00-03-02', 'ASTORIA DITMARS')
Processing turnstile ('N528', 'R257', '01-00-01', 'EAST BROADWAY')
Processing turnstile ('R159', 'R164', '01-05-00', '66 ST-LINCOLN')
Processing turnstile ('PTH20', 'R549', '03-00-01', 'NEWARK HM HE')
Processing turnstile ('R317', 'R408', '01-00-02', 'SIMPSON ST')
Processing turnstile ('N108', 'R217', '00-00-01', 'HOYT-SCHER')
Processing turnstile ('PTH17', 'R541', '01-01-01', 'THIRTY THIRD ST')
Processing turnstile ('PTH19', 'R549', '02-01-05', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-02-11: -247380
Processing turnstile ('A042', 'R086', '01-00-02', 'PRINCE ST')
Processing turnstile ('R501', 'R054', '00-00-07', '5 AVE')
Processing turnstile ('C001', 'R108', '01-00-00', 'BOROUGH HALL')
Processing turnstile ('N332', 'R219', '01-06-00', '67 AV')
Processing turnstile ('N076', 'R111', '00-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 16616
WARNING. Abnormal entry count found on day 2016-02-22: 10741
WARNING. Abnormal entry count found on day 2016-02-29: 10308
Processing turnstile ('J020', 'R433', '00-00-00', 'ALABAMA AV')
Processing turnstile ('R404', 'R447', '00-00-01', 'CYPRESS AV')
Processing turnstile ('N319', 'R298', '01-00-02', 'NORTHERN BLVD')
Processing turnstile ('N600', 'R302', '00-06-02', '57 ST')
Processing turnstile ('R244A', 'R050', '01-00-02', '59 ST')
Processing turnstile ('R526', 'R096', '00-03-00', '82 ST-JACKSON H')
Processing turnstile ('N530', 'R301', '00-00-02', 'YORK ST')
Processing turnstile ('N092', 'R029', '03-03-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10849
Processing turnstile ('PTH01', 'R549', '00-01-04', 'NEWARK HW BMEBE')
Processing turnstile ('N546', 'R204', '00-00-01', 'CHURCH AV')
Processing turnstile ('R307', 'R207', '01-00-00', '135 ST')
WARNING. Abnormal entry count found on day 2016-02-29: 11603
Processing turnstile ('N095A', 'R014', '01-03-04', 'FULTON ST')
Processing turnstile ('N327', 'R254', '00-05-02', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-02-16: 11140
Processing turnstile ('N022', 'R332', '02-05-00', '135 ST')
Processing turnstile ('B031', 'R172', '01-00-01', 'BRIGHTON BEACH')
Processing turnstile ('N506', 'R022', '00-05-05', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 10223
WARNING. Abnormal entry count found on day 2016-02-16: 17397
WARNING. Abnormal entry count found on day 2016-02-22: 10758
WARNING. Abnormal entry count found on day 2016-02-29: 11293
Processing turnstile ('R135', 'R031', '01-00-00', '34 ST-PENN STA')
Processing turnstile ('N550', 'R242', '01-05-01', '18 AV')
WARNING. Abnormal entry count found on day 2016-02-10: 1675034616
Processing turnstile ('PTH05', 'R543', '00-01-06', 'EXCHANGE PLACE')
Processing turnstile ('R610', 'R057', '00-05-00', 'ATL AV-BARCLAY')
Processing turnstile ('N525', 'R142', '01-00-02', 'DELANCEY/ESSEX')
Processing turnstile ('R238A', 'R046', '02-00-04', 'GRD CNTRL-42 ST')
Processing turnstile ('R188', 'R037', '00-06-02', '207 ST')
Processing turnstile ('N073', 'R013', '02-00-03', '34 ST-PENN STA')
Processing turnstile ('N416', 'R286', '01-06-01', 'MYRTLE-WILLOUGH')
Processing turnstile ('N019', 'R101', '01-00-00', '145 ST')
WARNING. Abnormal entry count found on day 2016-02-29: 17931
Processing turnstile ('N092', 'R029', '03-06-00', 'CHAMBERS ST')
Processing turnstile ('N224', 'R157', '00-00-00', 'NORWOOD 205 ST')
Processing turnstile ('R171', 'R192', '01-00-01', 'CATHEDRAL PKWY')
Processing turnstile ('C001', 'R108', '01-06-01', 'BOROUGH HALL')
Processing turnstile ('R612', 'R057', '01-03-02', 'ATL AV-BARCLAY')
Processing turnstile ('N343', 'R019', '00-00-07', 'JAMAICA 179 ST')
Processing turnstile ('R172', 'R192', '00-00-03', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-02-16: 10543
Processing turnstile ('A069', 'R044', '01-06-00', 'CHAMBERS ST')
Processing turnstile ('N102', 'R127', '01-00-02', 'JAY ST-METROTEC')
Processing turnstile ('R247', 'R178', '01-03-02', '77 ST')
Processing turnstile ('N526', 'R142', '02-00-02', 'DELANCEY/ESSEX')
Processing turnstile ('N506', 'R022', '00-05-00', '34 ST-HERALD SQ')
Processing turnstile ('N513', 'R163', '04-00-01', '14 ST')
Processing turnstile ('J021', 'R434', '00-00-02', 'VAN SICLEN AV')
Processing turnstile ('N073', 'R013', '02-00-06', '34 ST-PENN STA')
Processing turnstile ('R506', 'R276', '02-06-01', 'VERNON-JACKSON')
Processing turnstile ('R161A', 'R452', '01-00-02', '72 ST')
Processing turnstile ('N544', 'R289', '01-05-00', 'FT HAMILTON PKY')
Processing turnstile ('PTH06', 'R546', '00-00-08', 'PAVONIA/NEWPORT')
Processing turnstile ('R232', 'R176', '02-00-04', '33 ST')
Processing turnstile ('R417', 'R222', '00-03-04', 'PARKCHESTER')
Processing turnstile ('PTH08', 'R540', '00-00-05', 'PATH WTC')
Processing turnstile ('N337', 'R255', '00-00-02', 'BRIARWOOD')
Processing turnstile ('R238', 'R046', '00-00-09', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-08: 11092
WARNING. Abnormal entry count found on day 2016-02-16: 24647
WARNING. Abnormal entry count found on day 2016-02-22: 17660
WARNING. Abnormal entry count found on day 2016-02-29: 16686
Processing turnstile ('R230', 'R143', '02-06-00', '28 ST')
Processing turnstile ('N304', 'R015', '01-06-02', '5 AV/53 ST')
Processing turnstile ('R524', 'R347', '00-03-00', '69 ST')
Processing turnstile ('R259', 'R307', '00-00-01', '138/GRAND CONC')
Processing turnstile ('R254', 'R181', '01-00-00', '110 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 14124
Processing turnstile ('R117', 'R343', '00-00-02', 'FRANKLIN ST')
Processing turnstile ('E012', 'R372', '00-00-00', '18 AV')
Processing turnstile ('D003', 'R391', '00-00-00', 'FT HAMILTON PKY')
Processing turnstile ('N602', 'R259', '00-05-00', 'ROOSEVELT ISLND')
Processing turnstile ('R160A', 'R164', '00-05-00', '66 ST-LINCOLN')
Processing turnstile ('R413', 'R325', '00-05-01', 'WHITLOCK AV')
Processing turnstile ('N098', 'R028', '00-06-00', 'FULTON ST')
Processing turnstile ('H040', 'R376', '00-00-00', 'EAST 105 ST')
Processing turnstile ('R401', 'R445', '00-00-00', '3 AV 138 ST')
Processing turnstile ('R113', 'R028', '01-06-02', 'FULTON ST')
Processing turnstile ('B016', 'R098', '00-00-03', 'CHURCH AV')
Processing turnstile ('N209', 'R443', '00-00-00', '170 ST')
Processing turnstile ('N607', 'R025', '01-06-00', 'JAMAICA CENTER')
Processing turnstile ('R208', 'R014', '03-03-01', 'FULTON ST')
Processing turnstile ('E014', 'R374', '00-00-04', 'BAY PKWY')
Processing turnstile ('N110', 'R283', '00-00-02', 'LAFAYETTE AV')
Processing turnstile ('N087', 'R282', '01-06-00', 'SPRING ST')
Processing turnstile ('S102', 'R165', '00-00-00', 'TOMPKINSVILLE')
Processing turnstile ('R227A', 'R131', '01-06-00', '23 ST')
Processing turnstile ('R249', 'R179', '01-00-00', '86 ST')
Processing turnstile ('N073', 'R013', '02-00-00', '34 ST-PENN STA')
Processing turnstile ('B021', 'R228', '00-03-02', 'AVENUE J')
Processing turnstile ('R215', 'R322', '00-00-00', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12481
Processing turnstile ('R101', 'R001', '02-00-04', 'SOUTH FERRY')
Processing turnstile ('N502', 'R021', '01-00-01', '42 ST-BRYANT PK')
Processing turnstile ('N545', 'R204', '01-06-02', 'CHURCH AV')
Processing turnstile ('N600', 'R302', '00-03-02', '57 ST')
Processing turnstile ('R168A', 'R168', '00-00-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-22: 10640
Processing turnstile ('N108', 'R217', '00-00-04', 'HOYT-SCHER')
Processing turnstile ('N063', 'R011', '02-06-00', '42 ST-PORT AUTH')
Processing turnstile ('D005', 'R398', '00-00-02', 'NEW UTRECHT AV')
Processing turnstile ('B024', 'R211', '00-05-00', 'KINGS HWY')
Processing turnstile ('R129', 'R321', '00-00-01', '18 ST')
Processing turnstile ('R242A', 'R049', '02-03-00', '51 ST')
Processing turnstile ('N325A', 'R218', '00-06-02', 'ELMHURST AV')
Processing turnstile ('N220', 'R155', '01-00-01', 'KINGSBRIDGE RD')
Processing turnstile ('N332', 'R219', '01-05-01', '67 AV')
Processing turnstile ('R240', 'R047', '00-03-06', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12125
Processing turnstile ('N310', 'R140', '01-06-01', 'QUEENS PLAZA')
Processing turnstile ('N221', 'R155', '00-00-03', 'KINGSBRIDGE RD')
Processing turnstile ('R205A', 'R014', '04-05-00', 'FULTON ST')
Processing turnstile ('N070', 'R012', '04-05-00', '34 ST-PENN STA')
Processing turnstile ('N519', 'R461', '00-00-00', "B'WAY-LAFAYETTE")
Processing turnstile ('R166', 'R167', '02-00-02', '86 ST')
Processing turnstile ('N409', 'R268', '00-06-00', 'METROPOLITAN AV')
Processing turnstile ('N500', 'R020', '00-06-00', '47-50 STS ROCK')
Processing turnstile ('J024', 'R437', '00-00-01', 'CRESCENT ST')
Processing turnstile ('R245A', 'R051', '01-00-02', '59 ST')
Processing turnstile ('R625', 'R062', '01-00-00', 'CROWN HTS-UTICA')
Processing turnstile ('PTH08', 'R540', '00-04-00', 'PATH WTC')
Processing turnstile ('R532H', 'R328', '02-03-04', 'METS-WILLETS PT')
Processing turnstile ('C018', 'R197', '00-00-04', '36 ST')
Processing turnstile ('R246', 'R177', '00-00-00', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-02-16: 11663
Processing turnstile ('N503', 'R021', '00-00-00', '42 ST-BRYANT PK')
Processing turnstile ('N039', 'R251', '01-00-00', '96 ST')
Processing turnstile ('N072', 'R012', '05-00-03', '34 ST-PENN STA')
Processing turnstile ('N220', 'R155', '01-00-04', 'KINGSBRIDGE RD')
Processing turnstile ('R250', 'R179', '00-00-08', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 15994
Processing turnstile ('R303', 'R324', '00-00-00', '116 ST')
Processing turnstile ('R612', 'R057', '01-05-01', 'ATL AV-BARCLAY')
Processing turnstile ('PTH11', 'R545', '00-04-01', '14TH STREET')
Processing turnstile ('N339A', 'R114', '00-00-00', 'PARSONS BLVD')
Processing turnstile ('C025', 'R215', '00-03-01', '86 ST')
Processing turnstile ('N087', 'R282', '01-05-01', 'SPRING ST')
Processing turnstile ('N401', 'R360', '00-00-01', '21 ST')
Processing turnstile ('R532', 'R328', '00-00-04', 'METS-WILLETS PT')
Processing turnstile ('N534', 'R220', '01-00-00', 'CARROLL ST')
Processing turnstile ('N089', 'R139', '00-03-02', 'CANAL ST')
Processing turnstile ('N114', 'R297', '01-00-00', 'FRANKLIN AV')
Processing turnstile ('N121B', 'R438', '00-00-00', 'RALPH AV')
Processing turnstile ('A042', 'R086', '01-00-03', 'PRINCE ST')
Processing turnstile ('N218', 'R112', '01-05-01', 'FORDHAM RD')
Processing turnstile ('N217', 'R112', '00-03-02', 'FORDHAM RD')
Processing turnstile ('N213', 'R154', '00-00-01', 'TREMONT AV')
Processing turnstile ('R256', 'R182', '00-00-01', '116 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10253
Processing turnstile ('R188', 'R037', '00-00-02', '207 ST')
Processing turnstile ('N521', 'R300', '01-06-00', '2 AV')
Processing turnstile ('PTH05', 'R543', '00-04-07', 'EXCHANGE PLACE')
Processing turnstile ('B010', 'R412', '00-00-00', 'BOTANIC GARDEN')
Processing turnstile ('R507', 'R134', '00-00-00', 'HUNTERS PT AV')
Processing turnstile ('PTH03', 'R552', '00-00-02', 'JOURNAL SQUARE')
Processing turnstile ('R610', 'R057', '00-06-00', 'ATL AV-BARCLAY')
Processing turnstile ('R509', 'R121', '00-00-02', 'QUEENSBORO PLZ')
Processing turnstile ('PTH09', 'R548', '00-00-00', 'CHRISTOPHER ST')
Processing turnstile ('R610', 'R057', '00-04-05', 'ATL AV-BARCLAY')
Processing turnstile ('N307', 'R359', '00-00-00', 'COURT SQ-23 ST')
Processing turnstile ('R622', 'R123', '00-00-00', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-02-01: -2412
WARNING. Abnormal entry count found on day 2016-02-02: -3769
WARNING. Abnormal entry count found on day 2016-02-03: -4025
WARNING. Abnormal entry count found on day 2016-02-04: -2626
WARNING. Abnormal entry count found on day 2016-02-05: -2894
WARNING. Abnormal entry count found on day 2016-02-08: -9756
WARNING. Abnormal entry count found on day 2016-02-09: -3872
WARNING. Abnormal entry count found on day 2016-02-10: -4079
WARNING. Abnormal entry count found on day 2016-02-11: -4210
WARNING. Abnormal entry count found on day 2016-02-16: -15068
WARNING. Abnormal entry count found on day 2016-02-17: -3816
WARNING. Abnormal entry count found on day 2016-02-18: -3953
WARNING. Abnormal entry count found on day 2016-02-19: -4096
WARNING. Abnormal entry count found on day 2016-02-22: -9254
WARNING. Abnormal entry count found on day 2016-02-23: -4081
WARNING. Abnormal entry count found on day 2016-02-24: -4052
WARNING. Abnormal entry count found on day 2016-02-25: -3949
WARNING. Abnormal entry count found on day 2016-02-26: -4270
WARNING. Abnormal entry count found on day 2016-02-29: -9836
Processing turnstile ('A046', 'R463', '00-06-00', 'CANAL ST')
Processing turnstile ('B015', 'R098', '01-00-03', 'CHURCH AV')
Processing turnstile ('N183', 'R415', '00-00-02', 'BROAD CHANNEL')
Processing turnstile ('N551', 'R421', '00-06-00', 'AVENUE I')
Processing turnstile ('R182', 'R035', '00-00-01', '168 ST')
Processing turnstile ('K017', 'R401', '00-00-01', 'CENTRAL AV')
Processing turnstile ('PTH08', 'R540', '00-01-07', 'PATH WTC')
Processing turnstile ('A022', 'R022', '01-06-01', '34 ST-HERALD SQ')
Processing turnstile ('R176', 'R169', '00-00-02', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-02-16: 12071
Processing turnstile ('N046', 'R281', '00-00-01', '72 ST')
Processing turnstile ('N202', 'R315', '00-00-00', '155 ST')
Processing turnstile ('R238A', 'R046', '02-03-00', 'GRD CNTRL-42 ST')
Processing turnstile ('A041', 'R086', '00-00-04', 'PRINCE ST')
Processing turnstile ('R238', 'R046', '00-06-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-17: -1877466424
Processing turnstile ('PTH13', 'R541', '00-04-06', 'THIRTY ST')
Processing turnstile ('N092', 'R029', '03-03-03', 'CHAMBERS ST')
Processing turnstile ('R250', 'R179', '00-00-04', '86 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11141
Processing turnstile ('N519A', 'R461', '01-01-01', "B'WAY-LAFAYETTE")
Processing turnstile ('R227', 'R131', '00-00-05', '23 ST')
Processing turnstile ('H001', 'R175', '00-05-00', '8 AV')
Processing turnstile ('N186', 'R418', '00-00-00', 'BEACH 105 ST')
Processing turnstile ('H037', 'R349', '00-00-01', 'SUTTER AV')
Processing turnstile ('R521', 'R327', '00-00-01', '52 ST')
Processing turnstile ('R147', 'R033', '04-00-04', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10614
Processing turnstile ('PTH18', 'R549', '01-00-07', 'NEWARK BM BW')
Processing turnstile ('A084', 'R125', '01-00-02', 'BROAD ST')
Processing turnstile ('PTH11', 'R545', '00-00-03', '14TH STREET')
Processing turnstile ('E004', 'R234', '00-00-02', '50 ST')
Processing turnstile ('R147', 'R033', '04-00-05', 'TIMES SQ-42 ST')
Processing turnstile ('N333A', 'R141', '00-00-00', 'FOREST HILLS 71')
Processing turnstile ('A049', 'R088', '02-03-01', 'CORTLANDT ST')
Processing turnstile ('A046', 'R463', '00-05-03', 'CANAL ST')
Processing turnstile ('N117', 'R198', '01-00-01', 'NOSTRAND AV')
Processing turnstile ('R726', 'R329', '00-00-01', 'MORRIS PARK')
Processing turnstile ('R132', 'R190', '01-00-02', '23 ST')
Processing turnstile ('R523', 'R147', '00-00-03', '61 ST WOODSIDE')
Processing turnstile ('N043', 'R186', '00-06-01', '86 ST')
Processing turnstile ('PTH06', 'R546', '00-00-07', 'PAVONIA/NEWPORT')
Processing turnstile ('R644', 'R135', '01-06-00', 'NEWKIRK AV')
Processing turnstile ('S101', 'R070', '00-00-07', 'ST. GEORGE')
Processing turnstile ('H026', 'R137', '00-03-03', 'MYRTLE-WYCKOFF')
Processing turnstile ('N500', 'R020', '00-00-01', '47-50 STS ROCK')
Processing turnstile ('R509', 'R121', '00-00-00', 'QUEENSBORO PLZ')
WARNING. Abnormal entry count found on day 2016-02-16: 13083
Processing turnstile ('A047', 'R087', '00-06-02', 'CITY HALL')
Processing turnstile ('R534', 'R055', '01-03-02', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-16: 10144
Processing turnstile ('A047', 'R087', '00-03-02', 'CITY HALL')
Processing turnstile ('R169', 'R168', '01-03-04', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 12958
WARNING. Abnormal entry count found on day 2016-02-22: 13190
Processing turnstile ('R130', 'R321', '01-00-00', '18 ST')
Processing turnstile ('N525', 'R142', '01-00-00', 'DELANCEY/ESSEX')
Processing turnstile ('A061', 'R142', '00-03-02', 'DELANCEY/ESSEX')
Processing turnstile ('R102', 'R304', '01-06-01', 'RECTOR ST')
Processing turnstile ('R508', 'R346', '00-05-00', 'COURT SQ')
Processing turnstile ('N336', 'R158', '00-00-00', 'KEW GARDENS')
Processing turnstile ('R246', 'R177', '00-03-00', '68ST-HUNTER CO')
Processing turnstile ('E015', 'R399', '00-00-02', '25 AV')
Processing turnstile ('R530', 'R310', '00-00-04', '111 ST')
Processing turnstile ('R412', 'R146', '00-00-00', 'HUNTS POINT AV')
Processing turnstile ('R417', 'R222', '00-00-03', 'PARKCHESTER')
Processing turnstile ('N309A', 'R140', '00-00-02', 'QUEENS PLAZA')
Processing turnstile ('R258', 'R132', '00-03-03', '125 ST')
Processing turnstile ('A022', 'R022', '01-06-00', '34 ST-HERALD SQ')
Processing turnstile ('N181', 'R357', '00-00-02', 'AQUEDUCT N.COND')
Processing turnstile ('R405', 'R447', '01-00-02', 'CYPRESS AV')
Processing turnstile ('B015', 'R098', '01-06-00', 'CHURCH AV')
Processing turnstile ('N203', 'R195', '00-00-04', '161/YANKEE STAD')
Processing turnstile ('N098', 'R028', '00-02-01', 'FULTON ST')
Processing turnstile ('R501', 'R054', '00-00-00', '5 AVE')
Processing turnstile ('H028', 'R266', '00-06-01', 'HALSEY ST')
Processing turnstile ('R618', 'R058', '01-00-02', 'BERGEN ST')
Processing turnstile ('R509', 'R121', '00-00-01', 'QUEENSBORO PLZ')
WARNING. Abnormal entry count found on day 2016-02-16: 10227
Processing turnstile ('N521', 'R300', '01-06-01', '2 AV')
WARNING. Abnormal entry count found on day 2016-02-29: -15864
Processing turnstile ('A069', 'R044', '01-00-01', 'CHAMBERS ST')
Processing turnstile ('N110', 'R283', '00-03-00', 'LAFAYETTE AV')
Processing turnstile ('R526', 'R096', '00-03-01', '82 ST-JACKSON H')
Processing turnstile ('H016', 'R250', '00-00-02', 'GRAND ST')
Processing turnstile ('R210', 'R044', '00-03-03', 'BROOKLYN BRIDGE')
Processing turnstile ('N501A', 'R020', '02-00-03', '47-50 STS ROCK')
Processing turnstile ('H035', 'R348', '00-00-00', 'ATLANTIC AV')
Processing turnstile ('R727', 'R430', '00-00-01', 'PELHAM PKWY')
Processing turnstile ('C025', 'R215', '00-00-01', '86 ST')
Processing turnstile ('PTH20', 'R549', '03-00-04', 'NEWARK HM HE')
Processing turnstile ('H009', 'R235', '00-00-00', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-02-16: 11499
Processing turnstile ('N306', 'R017', '00-00-03', 'LEXINGTON AV/53')
Processing turnstile ('R262B', 'R195', '05-00-03', '161/YANKEE STAD')
Processing turnstile ('N067', 'R012', '00-05-03', '34 ST-PENN STA')
Processing turnstile ('R102', 'R304', '01-06-00', 'RECTOR ST')
Processing turnstile ('N314', 'R238', '01-00-02', 'STEINWAY ST')
Processing turnstile ('R210', 'R044', '00-03-05', 'BROOKLYN BRIDGE')
Processing turnstile ('H023', 'R236', '00-06-01', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-02-16: 13531
Processing turnstile ('PTH16', 'R550', '01-00-00', 'LACKAWANNA')
Processing turnstile ('A042', 'R086', '01-00-04', 'PRINCE ST')
Processing turnstile ('R408', 'R449', '00-00-01', 'E 149 ST')
Processing turnstile ('N220', 'R155', '01-06-01', 'KINGSBRIDGE RD')
Processing turnstile ('N556', 'R424', '00-00-01', 'AVENUE P')
Processing turnstile ('R227', 'R131', '00-00-04', '23 ST')
Processing turnstile ('S101', 'R070', '00-03-01', 'ST. GEORGE')
Processing turnstile ('R512', 'R092', '00-00-02', 'BROADWAY')
Processing turnstile ('A054', 'R227', '01-00-02', 'RECTOR ST')
Processing turnstile ('A013', 'R081', '01-00-00', '49 ST')
Processing turnstile ('R628', 'R064', '00-00-02', 'SARATOGA AV')
Processing turnstile ('R101', 'R001', '02-00-07', 'SOUTH FERRY')
Processing turnstile ('N512', 'R163', '00-00-00', '14 ST')
Processing turnstile ('R532H', 'R328', '02-05-00', 'METS-WILLETS PT')
Processing turnstile ('R307', 'R207', '01-05-01', '135 ST')
Processing turnstile ('A013', 'R081', '01-03-00', '49 ST')
Processing turnstile ('N319', 'R298', '01-00-00', 'NORTHERN BLVD')
Processing turnstile ('R291', 'R183', '00-00-01', 'BEDFORD PK BLVD')
Processing turnstile ('B014', 'R148', '00-00-02', 'PARKSIDE AV')
Processing turnstile ('N530', 'R301', '00-00-01', 'YORK ST')
WARNING. Abnormal entry count found on day 2016-02-16: 11014
Processing turnstile ('N501', 'R020', '01-00-02', '47-50 STS ROCK')
Processing turnstile ('A006', 'R079', '00-03-01', '5 AV/59 ST')
Processing turnstile ('R170', 'R191', '00-00-03', '103 ST')
Processing turnstile ('R246', 'R177', '00-03-06', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-02-16: 10856
Processing turnstile ('N191', 'R335', '00-05-00', 'BEACH 67 ST')
Processing turnstile ('R170', 'R191', '00-03-00', '103 ST')
Processing turnstile ('C019', 'R232', '00-00-02', '45 ST')
WARNING. Abnormal entry count found on day 2016-02-10: 283178957
WARNING. Abnormal entry count found on day 2016-02-11: -469
WARNING. Abnormal entry count found on day 2016-02-16: -6211
WARNING. Abnormal entry count found on day 2016-02-17: -1490
WARNING. Abnormal entry count found on day 2016-02-18: -1607
WARNING. Abnormal entry count found on day 2016-02-19: -1639
WARNING. Abnormal entry count found on day 2016-02-22: -3468
WARNING. Abnormal entry count found on day 2016-02-23: -1719
WARNING. Abnormal entry count found on day 2016-02-24: -1658
WARNING. Abnormal entry count found on day 2016-02-25: -1692
WARNING. Abnormal entry count found on day 2016-02-26: -1693
WARNING. Abnormal entry count found on day 2016-02-29: -3700
Processing turnstile ('PTH04', 'R551', '00-01-03', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-02-02: -591674
Processing turnstile ('R621', 'R060', '00-00-01', 'EASTN PKWY-MUSM')
Processing turnstile ('R507', 'R134', '00-03-01', 'HUNTERS PT AV')
Processing turnstile ('PTH20', 'R549', '03-01-04', 'NEWARK HM HE')
Processing turnstile ('R183', 'R260', '00-00-04', '181 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13080
Processing turnstile ('R321', 'R386', '01-00-00', '174 ST')
Processing turnstile ('N043', 'R186', '00-00-00', '86 ST')
Processing turnstile ('C008', 'R099', '00-03-04', 'DEKALB AV')
Processing turnstile ('N080', 'R138', '00-03-01', 'W 4 ST-WASH SQ')
Processing turnstile ('N305', 'R017', '01-03-01', 'LEXINGTON AV/53')
Processing turnstile ('R645', 'R110', '00-00-02', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-02-16: -162462
Processing turnstile ('A038', 'R085', '00-06-00', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-02-16: 14979
Processing turnstile ('N127', 'R442', '00-00-02', 'SHEPHERD AV')
Processing turnstile ('R637', 'R451', '00-06-00', 'WINTHROP ST')
Processing turnstile ('N330C', 'R202', '01-06-03', '63 DR-REGO PARK')
Processing turnstile ('H019', 'R294', '00-00-00', 'MORGAN AV')
Processing turnstile ('N314', 'R238', '01-06-00', 'STEINWAY ST')
Processing turnstile ('PTH20', 'R549', '03-01-00', 'NEWARK HM HE')
Processing turnstile ('N016A', 'R296', '00-00-01', '163 ST-AMSTERDM')
Processing turnstile ('R138', 'R293', '00-00-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 16507
Processing turnstile ('N559', 'R425', '00-00-01', 'AVENUE U')
Processing turnstile ('N192', 'R336', '00-00-02', 'BEACH 60 ST')
Processing turnstile ('J034', 'R007', '00-00-02', '104 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -154
WARNING. Abnormal entry count found on day 2016-02-02: -366
WARNING. Abnormal entry count found on day 2016-02-03: -443
WARNING. Abnormal entry count found on day 2016-02-04: -447
WARNING. Abnormal entry count found on day 2016-02-05: -445
WARNING. Abnormal entry count found on day 2016-02-08: -831
WARNING. Abnormal entry count found on day 2016-02-09: -414
WARNING. Abnormal entry count found on day 2016-02-10: -432
WARNING. Abnormal entry count found on day 2016-02-11: -472
WARNING. Abnormal entry count found on day 2016-02-16: -1485
WARNING. Abnormal entry count found on day 2016-02-17: -393
WARNING. Abnormal entry count found on day 2016-02-18: -381
WARNING. Abnormal entry count found on day 2016-02-19: -396
WARNING. Abnormal entry count found on day 2016-02-22: -739
WARNING. Abnormal entry count found on day 2016-02-23: -420
WARNING. Abnormal entry count found on day 2016-02-24: -441
WARNING. Abnormal entry count found on day 2016-02-25: -433
WARNING. Abnormal entry count found on day 2016-02-26: -390
WARNING. Abnormal entry count found on day 2016-02-29: -784
Processing turnstile ('N125', 'R440', '00-00-00', 'LIBERTY AV')
Processing turnstile ('H030', 'R266', '01-00-01', 'HALSEY ST')
Processing turnstile ('R513', 'R093', '00-03-00', '30 AV')
WARNING. Abnormal entry count found on day 2016-02-08: 15303
WARNING. Abnormal entry count found on day 2016-02-16: 22394
WARNING. Abnormal entry count found on day 2016-02-22: 15372
WARNING. Abnormal entry count found on day 2016-02-29: 21138
Processing turnstile ('H017', 'R265', '00-00-00', 'MONTROSE AV')
Processing turnstile ('R289', 'R119', '00-00-00', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-02-16: 11911
Processing turnstile ('R226A', 'R131', '03-06-01', '23 ST')
Processing turnstile ('R550', 'R072', '00-05-00', '34 ST-HUDSON YD')
Processing turnstile ('N120A', 'R153', '01-00-00', 'UTICA AV')
Processing turnstile ('PTH06', 'R546', '00-00-09', 'PAVONIA/NEWPORT')
Processing turnstile ('N414A', 'R316', '01-06-00', 'FLUSHING AV')
Processing turnstile ('PTH07', 'R550', '00-01-07', 'CITY / BUS')
Processing turnstile ('PTH09', 'R548', '00-00-02', 'CHRISTOPHER ST')
Processing turnstile ('R232', 'R176', '02-00-03', '33 ST')
Processing turnstile ('J021', 'R434', '00-00-01', 'VAN SICLEN AV')
Processing turnstile ('A058', 'R001', '01-00-00', 'WHITEHALL S-FRY')
Processing turnstile ('N010', 'R126', '00-00-01', '175 ST')
Processing turnstile ('PTH05', 'R543', '00-01-07', 'EXCHANGE PLACE')
Processing turnstile ('R203', 'R043', '00-05-01', 'WALL ST')
Processing turnstile ('N120', 'R153', '00-05-00', 'UTICA AV')
Processing turnstile ('N039', 'R251', '01-06-00', '96 ST')
Processing turnstile ('A002', 'R051', '02-00-01', '59 ST')
Processing turnstile ('R608', 'R056', '00-03-01', 'NEVINS ST')
Processing turnstile ('R405', 'R447', '01-00-01', 'CYPRESS AV')
Processing turnstile ('N217', 'R112', '00-00-01', 'FORDHAM RD')
Processing turnstile ('PTH17', 'R541', '01-00-0A', 'THIRTY THIRD ST')
Processing turnstile ('J037', 'R009', '00-00-00', '121 ST')
Processing turnstile ('R171', 'R192', '01-00-00', 'CATHEDRAL PKWY')
Processing turnstile ('R118', 'R343', '01-00-00', 'FRANKLIN ST')
Processing turnstile ('C012', 'R258', '01-06-00', '4AV-9 ST')
Processing turnstile ('R515', 'R095', '00-00-02', 'ASTORIA DITMARS')
Processing turnstile ('JFK03', 'R536', '00-03-02', 'JFK JAMAICA CT1')
Processing turnstile ('N605', 'R024', '00-06-01', 'SUTPHIN-ARCHER')
Processing turnstile ('A022', 'R022', '01-00-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 17294
Processing turnstile ('R226A', 'R131', '03-06-00', '23 ST')
Processing turnstile ('R290', 'R161', '00-00-02', 'KINGSBRIDGE RD')
Processing turnstile ('R185', 'R274', '00-00-01', '191 ST')
Processing turnstile ('H039', 'R375', '00-00-01', 'NEW LOTS')
Processing turnstile ('PTH01', 'R549', '00-00-09', 'NEWARK HW BMEBE')
Processing turnstile ('A035', 'R170', '00-00-01', '14 ST-UNION SQ')
Processing turnstile ('N091', 'R029', '02-00-04', 'CHAMBERS ST')
Processing turnstile ('R634', 'R069', '00-00-00', 'NEW LOTS AV')
Processing turnstile ('N336', 'R158', '00-05-00', 'KEW GARDENS')
Processing turnstile ('R148', 'R033', '01-03-02', 'TIMES SQ-42 ST')
Processing turnstile ('PTH11', 'R545', '00-00-02', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-02-16: 10436
Processing turnstile ('R155', 'R116', '01-00-02', '50 ST')
Processing turnstile ('N603', 'R303', '00-05-01', '21 ST-QNSBRIDGE')
Processing turnstile ('N327', 'R254', '00-03-00', 'GRAND-NEWTOWN')
Processing turnstile ('N535', 'R220', '00-00-00', 'CARROLL ST')
Processing turnstile ('N501A', 'R020', '02-03-03', '47-50 STS ROCK')
Processing turnstile ('N319', 'R298', '01-00-01', 'NORTHERN BLVD')
Processing turnstile ('R416', 'R245', '00-00-01', 'ST LAWRENCE AV')
Processing turnstile ('PTH11', 'R545', '00-04-02', '14TH STREET')
Processing turnstile ('N062', 'R011', '01-03-04', '42 ST-PORT AUTH')
Processing turnstile ('R243', 'R049', '00-05-01', '51 ST')
Processing turnstile ('R242A', 'R049', '02-03-02', '51 ST')
Processing turnstile ('N340A', 'R115', '01-03-02', '169 ST')
Processing turnstile ('A006', 'R079', '00-03-00', '5 AV/59 ST')
Processing turnstile ('N095A', 'R014', '01-00-02', 'FULTON ST')
Processing turnstile ('A006', 'R079', '00-00-00', '5 AV/59 ST')
Processing turnstile ('R645', 'R110', '00-06-00', 'FLATBUSH AV-B.C')
Processing turnstile ('R630', 'R066', '00-00-01', 'JUNIUS ST')
Processing turnstile ('R417', 'R222', '00-03-02', 'PARKCHESTER')
Processing turnstile ('N506', 'R022', '00-05-02', '34 ST-HERALD SQ')
Processing turnstile ('N128', 'R200', '00-00-01', 'EUCLID AV')
Processing turnstile ('R160A', 'R164', '00-06-00', '66 ST-LINCOLN')
Processing turnstile ('N098', 'R028', '00-07-00', 'FULTON ST')
Processing turnstile ('A034', 'R170', '03-06-01', '14 ST-UNION SQ')
Processing turnstile ('R512', 'R092', '00-00-00', 'BROADWAY')
Processing turnstile ('R178', 'R273', '00-00-02', '145 ST')
Processing turnstile ('A030', 'R083', '01-03-00', '23 ST')
Processing turnstile ('N091', 'R029', '02-05-00', 'CHAMBERS ST')
Processing turnstile ('N500', 'R020', '00-00-00', '47-50 STS ROCK')
Processing turnstile ('S101', 'R070', '00-00-02', 'ST. GEORGE')
Processing turnstile ('N309A', 'R140', '00-06-02', 'QUEENS PLAZA')
Processing turnstile ('N040', 'R251', '00-00-00', '96 ST')
Processing turnstile ('R257', 'R182', '01-03-01', '116 ST')
Processing turnstile ('PTH08', 'R540', '00-01-02', 'PATH WTC')
Processing turnstile ('R103', 'R304', '00-00-00', 'RECTOR ST')
Processing turnstile ('H022', 'R279', '00-00-00', 'JEFFERSON ST')
Processing turnstile ('N122', 'R439', '00-00-01', 'ROCKAWAY AV')
Processing turnstile ('R621', 'R060', '00-06-00', 'EASTN PKWY-MUSM')
Processing turnstile ('N101', 'R252', '01-00-00', 'HIGH ST')
Processing turnstile ('J001', 'R460', '01-06-01', 'MARCY AV')
Processing turnstile ('R422', 'R428', '00-03-00', 'BUHRE AV')
Processing turnstile ('N600', 'R302', '00-00-02', '57 ST')
Processing turnstile ('H013', 'R249', '01-00-00', 'GRAHAM AV')
WARNING. Abnormal entry count found on day 2016-02-16: 12959
Processing turnstile ('H009', 'R235', '00-06-02', 'BEDFORD AV')
Processing turnstile ('R240', 'R047', '00-03-05', 'GRD CNTRL-42 ST')
Processing turnstile ('PTH18', 'R549', '01-00-06', 'NEWARK BM BW')
Processing turnstile ('R622', 'R123', '00-00-04', 'FRANKLIN AV')
Processing turnstile ('N075', 'R111', '01-06-00', '23 ST')
Processing turnstile ('JFK01', 'R535', '00-00-01', 'HOWARD BCH JFK')
Processing turnstile ('R311', 'R053', '00-00-00', '3 AV-149 ST')
Processing turnstile ('G011', 'R312', '00-00-01', 'W 8 ST-AQUARIUM')
Processing turnstile ('D005', 'R398', '00-00-01', 'NEW UTRECHT AV')
Processing turnstile ('N519', 'R461', '00-03-02', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-02-16: 11088
Processing turnstile ('N181A', 'R464', '00-05-00', 'AQUEDUCT RACETR')
Processing turnstile ('R335', 'R444', '00-00-02', 'NEREID AV')
Processing turnstile ('R532', 'R328', '00-05-03', 'METS-WILLETS PT')
Processing turnstile ('PTH16', 'R550', '01-01-01', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-02-24: -7353
Processing turnstile ('N408A', 'R256', '00-03-01', 'NASSAU ST')
Processing turnstile ('N141', 'R356', '00-00-01', 'OZONE PK LEFFRT')
Processing turnstile ('R183', 'R260', '00-00-01', '181 ST')
Processing turnstile ('N013', 'R035', '02-05-00', '168 ST')
Processing turnstile ('N098', 'R028', '00-02-00', 'FULTON ST')
Processing turnstile ('N338B', 'R128', '00-00-02', 'SUTPHIN BLVD')
Processing turnstile ('PTH18', 'R549', '01-00-02', 'NEWARK BM BW')
Processing turnstile ('N506', 'R022', '00-06-00', '34 ST-HERALD SQ')
Processing turnstile ('R311', 'R053', '00-05-01', '3 AV-149 ST')
Processing turnstile ('B015', 'R098', '01-00-00', 'CHURCH AV')
Processing turnstile ('N339A', 'R114', '00-03-03', 'PARSONS BLVD')
Processing turnstile ('N520', 'R240', '00-00-04', 'GRAND ST')
Processing turnstile ('R509', 'R121', '00-00-04', 'QUEENSBORO PLZ')
Processing turnstile ('N408A', 'R256', '00-00-02', 'NASSAU ST')
Processing turnstile ('R513', 'R093', '00-00-00', '30 AV')
Processing turnstile ('J017', 'R432', '00-00-01', 'CHAUNCEY ST')
Processing turnstile ('N120', 'R153', '00-00-02', 'UTICA AV')
Processing turnstile ('E003', 'R369', '00-03-00', 'FT HAMILTON PKY')
Processing turnstile ('A039', 'R085', '01-00-01', '8 ST-NYU')
Processing turnstile ('R309', 'R345', '00-00-01', 'HARLEM 148 ST')
Processing turnstile ('PTH01', 'R549', '00-01-06', 'NEWARK HW BMEBE')
Processing turnstile ('R610', 'R057', '00-05-01', 'ATL AV-BARCLAY')
Processing turnstile ('R229', 'R143', '01-00-02', '28 ST')
Processing turnstile ('PTH07', 'R550', '00-00-05', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-02-08: -37282
Processing turnstile ('PTH13', 'R541', '00-04-05', 'THIRTY ST')
Processing turnstile ('R310', 'R053', '01-05-01', '3 AV-149 ST')
Processing turnstile ('N083', 'R138', '01-06-00', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-02-16: 16178
WARNING. Abnormal entry count found on day 2016-02-22: 10869
WARNING. Abnormal entry count found on day 2016-02-29: 11170
Processing turnstile ('N558', 'R130', '01-05-01', 'KINGS HWY')
Processing turnstile ('PTH03', 'R552', '00-01-04', 'JOURNAL SQUARE')
Processing turnstile ('R244', 'R050', '00-00-03', '59 ST')
Processing turnstile ('R172', 'R192', '00-00-02', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-02-16: 11581
Processing turnstile ('R308', 'R344', '00-00-02', '145 ST')
Processing turnstile ('A035', 'R170', '00-00-00', '14 ST-UNION SQ')
Processing turnstile ('A049', 'R088', '02-01-01', 'CORTLANDT ST')
Processing turnstile ('R248', 'R178', '00-00-04', '77 ST')
Processing turnstile ('N343', 'R019', '00-00-00', 'JAMAICA 179 ST')
Processing turnstile ('N141', 'R356', '00-00-03', 'OZONE PK LEFFRT')
Processing turnstile ('H001', 'R175', '00-00-02', '8 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 12867
Processing turnstile ('R288', 'R275', '00-00-01', '183 ST')
Processing turnstile ('N312', 'R339', '00-00-01', '36 ST')
Processing turnstile ('N010', 'R126', '00-03-03', '175 ST')
Processing turnstile ('B029', 'R172', '00-00-02', 'BRIGHTON BEACH')
Processing turnstile ('R423', 'R429', '00-00-02', 'PELHAM BAY PARK')
Processing turnstile ('R242', 'R049', '01-00-00', '51 ST')
Processing turnstile ('H012', 'R268', '01-06-01', 'LORIMER ST')
Processing turnstile ('PTH18', 'R549', '01-02-04', 'NEWARK BM BW')
Processing turnstile ('PTH07', 'R550', '00-01-02', 'CITY / BUS')
Processing turnstile ('R501', 'R054', '00-00-02', '5 AVE')
Processing turnstile ('N305', 'R017', '01-03-03', 'LEXINGTON AV/53')
Processing turnstile ('N114', 'R297', '01-00-02', 'FRANKLIN AV')
Processing turnstile ('R294', 'R052', '00-00-04', 'WOODLAWN')
Processing turnstile ('R246', 'R177', '00-00-01', '68ST-HUNTER CO')
Processing turnstile ('R643', 'R135', '00-00-01', 'NEWKIRK AV')
Processing turnstile ('N329', 'R201', '00-00-01', 'WOODHAVEN BLVD')
Processing turnstile ('N063A', 'R011', '00-05-00', '42 ST-PORT AUTH')
Processing turnstile ('R515', 'R095', '00-03-01', 'ASTORIA DITMARS')
Processing turnstile ('A033', 'R170', '02-00-05', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 12791
WARNING. Abnormal entry count found on day 2016-02-16: 21427
WARNING. Abnormal entry count found on day 2016-02-22: 13382
WARNING. Abnormal entry count found on day 2016-02-29: 13553
Processing turnstile ('S102', 'R165', '00-03-00', 'TOMPKINSVILLE')
Processing turnstile ('N512', 'R163', '00-00-04', '14 ST')
Processing turnstile ('R532H', 'R328', '02-03-02', 'METS-WILLETS PT')
Processing turnstile ('N044', 'R187', '00-03-00', '81 ST-MUSEUM')
Processing turnstile ('H023', 'R236', '00-00-01', 'DEKALB AV')
Processing turnstile ('A002', 'R051', '02-03-00', '59 ST')
Processing turnstile ('C004', 'R089', '01-06-01', 'JAY ST-METROTEC')
Processing turnstile ('C027', 'R216', '00-03-01', 'BAY RIDGE AV')
Processing turnstile ('N078', 'R175', '01-03-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 15838
Processing turnstile ('R221', 'R170', '01-00-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-02-08: 14798
WARNING. Abnormal entry count found on day 2016-02-16: 23088
WARNING. Abnormal entry count found on day 2016-02-22: 15158
WARNING. Abnormal entry count found on day 2016-02-29: 15268
Processing turnstile ('N303', 'R015', '00-00-07', '5 AV/53 ST')
Processing turnstile ('N528', 'R257', '01-00-02', 'EAST BROADWAY')
Processing turnstile ('N309A', 'R140', '00-02-00', 'QUEENS PLAZA')
Processing turnstile ('PTH07', 'R550', '00-00-06', 'CITY / BUS')
Processing turnstile ('N546', 'R204', '00-05-01', 'CHURCH AV')
Processing turnstile ('R247', 'R178', '01-03-00', '77 ST')
Processing turnstile ('R283', 'R221', '00-00-02', '167 ST')
Processing turnstile ('A058', 'R001', '01-06-02', 'WHITEHALL S-FRY')
Processing turnstile ('R330', 'R363', '00-00-00', 'BURKE AV')
Processing turnstile ('N023', 'R332', '01-06-00', '135 ST')
Processing turnstile ('B015', 'R098', '01-03-01', 'CHURCH AV')
Processing turnstile ('N327', 'R254', '00-00-00', 'GRAND-NEWTOWN')
Processing turnstile ('R534', 'R055', '01-03-05', 'FLUSHING-MAIN')
Processing turnstile ('R610', 'R057', '00-06-04', 'ATL AV-BARCLAY')
Processing turnstile ('S101', 'R070', '00-00-05', 'ST. GEORGE')
Processing turnstile ('C011', 'R231', '01-00-00', 'UNION ST')
Processing turnstile ('N305', 'R017', '01-03-00', 'LEXINGTON AV/53')
Processing turnstile ('B016', 'R098', '00-00-02', 'CHURCH AV')
Processing turnstile ('R417', 'R222', '00-00-04', 'PARKCHESTER')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('R605', 'R456', '00-00-00', 'HOYT ST')
Processing turnstile ('N306', 'R017', '00-03-00', 'LEXINGTON AV/53')
Processing turnstile ('R137', 'R031', '02-00-00', '34 ST-PENN STA')
Processing turnstile ('N108', 'R217', '00-00-02', 'HOYT-SCHER')
Processing turnstile ('R246', 'R177', '00-03-04', '68ST-HUNTER CO')
Processing turnstile ('R513', 'R093', '00-03-02', '30 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 10457
Processing turnstile ('PTH03', 'R552', '00-00-0A', 'JOURNAL SQUARE')
Processing turnstile ('N401', 'R360', '00-00-02', '21 ST')
Processing turnstile ('N333B', 'R141', '02-00-00', 'FOREST HILLS 71')
Processing turnstile ('R406', 'R448', '00-00-02', "E 143/ST MARY'S")
Processing turnstile ('R612', 'R057', '01-00-04', 'ATL AV-BARCLAY')
Processing turnstile ('R730', 'R431', '00-00-03', 'EASTCHSTER/DYRE')
Processing turnstile ('N519A', 'R461', '01-05-01', "B'WAY-LAFAYETTE")
Processing turnstile ('D003', 'R391', '00-00-02', 'FT HAMILTON PKY')
Processing turnstile ('A016', 'R081', '03-00-02', '49 ST')
Processing turnstile ('N103', 'R127', '00-00-01', 'JAY ST-METROTEC')
Processing turnstile ('PTH12', 'R542', '00-00-03', 'TWENTY THIRD ST')
Processing turnstile ('N600', 'R302', '00-00-00', '57 ST')
Processing turnstile ('R249', 'R179', '01-00-02', '86 ST')
Processing turnstile ('N067', 'R012', '00-06-00', '34 ST-PENN STA')
Processing turnstile ('A007', 'R079', '01-05-01', '5 AV/59 ST')
Processing turnstile ('R509', 'R121', '00-00-03', 'QUEENSBORO PLZ')
Processing turnstile ('R326', 'R389', '00-00-02', 'BRONX PARK EAST')
Processing turnstile ('R121', 'R290', '01-05-01', 'HOUSTON ST')
Processing turnstile ('D009', 'R393', '00-00-02', '20 AV')
Processing turnstile ('N124', 'R103', '00-00-03', 'BROADWAY JCT')
Processing turnstile ('N137', 'R354', '00-06-01', '104 ST')
WARNING. Abnormal entry count found on day 2016-02-01: -4
WARNING. Abnormal entry count found on day 2016-02-02: -266
WARNING. Abnormal entry count found on day 2016-02-03: -312
WARNING. Abnormal entry count found on day 2016-02-04: -321
WARNING. Abnormal entry count found on day 2016-02-05: -321
WARNING. Abnormal entry count found on day 2016-02-08: -254
WARNING. Abnormal entry count found on day 2016-02-09: -224
WARNING. Abnormal entry count found on day 2016-02-10: -294
WARNING. Abnormal entry count found on day 2016-02-11: -320
WARNING. Abnormal entry count found on day 2016-02-16: -749
WARNING. Abnormal entry count found on day 2016-02-17: -250
WARNING. Abnormal entry count found on day 2016-02-18: -261
WARNING. Abnormal entry count found on day 2016-02-19: -273
WARNING. Abnormal entry count found on day 2016-02-22: -263
WARNING. Abnormal entry count found on day 2016-02-23: -275
WARNING. Abnormal entry count found on day 2016-02-24: -311
WARNING. Abnormal entry count found on day 2016-02-25: -312
WARNING. Abnormal entry count found on day 2016-02-26: -318
WARNING. Abnormal entry count found on day 2016-02-29: -284
Processing turnstile ('A061', 'R142', '00-00-00', 'DELANCEY/ESSEX')
Processing turnstile ('N303', 'R015', '00-00-09', '5 AV/53 ST')
Processing turnstile ('N327', 'R254', '00-03-01', 'GRAND-NEWTOWN')
Processing turnstile ('PTH07', 'R550', '00-02-00', 'CITY / BUS')
Processing turnstile ('N049', 'R084', '01-02-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-02-16: 12204
Processing turnstile ('N212', 'R253', '01-06-00', '174-175 STS')
Processing turnstile ('A077', 'R028', '03-03-01', 'FULTON ST')
Processing turnstile ('N604', 'R342', '00-00-00', 'JAMAICA VAN WK')
Processing turnstile ('N330C', 'R202', '01-04-00', '63 DR-REGO PARK')
Processing turnstile ('N526', 'R142', '02-00-00', 'DELANCEY/ESSEX')
Processing turnstile ('N102', 'R127', '01-00-00', 'JAY ST-METROTEC')
Processing turnstile ('R550', 'R072', '00-03-05', '34 ST-HUDSON YD')
Processing turnstile ('N330', 'R202', '00-00-02', '63 DR-REGO PARK')
Processing turnstile ('PTH05', 'R543', '00-00-05', 'EXCHANGE PLACE')
Processing turnstile ('N072', 'R012', '05-00-01', '34 ST-PENN STA')
Processing turnstile ('A029', 'R082', '00-03-01', '28 ST')
Processing turnstile ('R325', 'R388', '00-00-00', 'E 180 ST')
Processing turnstile ('A050', 'R088', '00-03-01', 'CORTLANDT ST')
Processing turnstile ('A083', 'R125', '00-00-04', 'BROAD ST')
Processing turnstile ('N203', 'R195', '00-00-01', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-02-01: -913
WARNING. Abnormal entry count found on day 2016-02-02: -1683
WARNING. Abnormal entry count found on day 2016-02-03: -1745
WARNING. Abnormal entry count found on day 2016-02-04: -1553
WARNING. Abnormal entry count found on day 2016-02-05: -1708
WARNING. Abnormal entry count found on day 2016-02-08: -3788
WARNING. Abnormal entry count found on day 2016-02-09: -1567
WARNING. Abnormal entry count found on day 2016-02-10: -1723
WARNING. Abnormal entry count found on day 2016-02-11: -1593
WARNING. Abnormal entry count found on day 2016-02-16: -7484
WARNING. Abnormal entry count found on day 2016-02-17: -1484
WARNING. Abnormal entry count found on day 2016-02-18: -1706
WARNING. Abnormal entry count found on day 2016-02-19: -1660
WARNING. Abnormal entry count found on day 2016-02-22: -3902
WARNING. Abnormal entry count found on day 2016-02-23: -1718
WARNING. Abnormal entry count found on day 2016-02-24: -1712
WARNING. Abnormal entry count found on day 2016-02-25: -1632
WARNING. Abnormal entry count found on day 2016-02-26: -1845
WARNING. Abnormal entry count found on day 2016-02-29: -4009
Processing turnstile ('N026', 'R102', '00-05-00', '125 ST')
Processing turnstile ('C008', 'R099', '00-00-01', 'DEKALB AV')
Processing turnstile ('N078', 'R175', '01-00-01', '14 ST')
Processing turnstile ('N120A', 'R153', '01-06-00', 'UTICA AV')
Processing turnstile ('PTH17', 'R541', '01-00-01', 'THIRTY THIRD ST')
Processing turnstile ('N083', 'R138', '01-02-00', 'W 4 ST-WASH SQ')
Processing turnstile ('K019', 'R413', '00-00-00', 'KNICKERBOCKER')
Processing turnstile ('H041', 'R152', '00-00-04', 'CANARSIE-ROCKAW')
Processing turnstile ('J022', 'R435', '00-00-00', 'CLEVELAND ST')
Processing turnstile ('R188', 'R037', '00-00-01', '207 ST')
Processing turnstile ('R230', 'R143', '02-06-01', '28 ST')
Processing turnstile ('R291', 'R183', '00-00-02', 'BEDFORD PK BLVD')
Processing turnstile ('R219', 'R160', '00-00-03', 'ASTOR PL')
Processing turnstile ('H013', 'R249', '01-00-01', 'GRAHAM AV')
Processing turnstile ('JFK03', 'R536', '00-00-02', 'JFK JAMAICA CT1')
Processing turnstile ('N022', 'R332', '02-05-01', '135 ST')
Processing turnstile ('N141', 'R356', '00-00-02', 'OZONE PK LEFFRT')
Processing turnstile ('H038', 'R350', '00-00-02', 'LIVONIA AV')
Processing turnstile ('R523', 'R147', '00-06-00', '61 ST WOODSIDE')
Processing turnstile ('R237B', 'R047', '01-00-00', 'GRD CNTRL-42 ST')
Processing turnstile ('R245', 'R051', '00-05-01', '59 ST')
Processing turnstile ('PTH07', 'R550', '00-01-03', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-02-19: -103271
Processing turnstile ('R134', 'R272', '01-06-02', '28 ST')
Processing turnstile ('N090', 'R139', '01-00-01', 'CANAL ST')
Processing turnstile ('N037', 'R314', '00-00-01', '103 ST')
Processing turnstile ('R262', 'R195', '03-03-00', '161/YANKEE STAD')
Processing turnstile ('N094', 'R029', '01-06-03', 'WORLD TRADE CTR')
Processing turnstile ('N192', 'R336', '00-00-01', 'BEACH 60 ST')
Processing turnstile ('R529', 'R208', '00-00-01', '103 ST-CORONA')
Processing turnstile ('B031', 'R172', '01-06-02', 'BRIGHTON BEACH')
Processing turnstile ('N208', 'R443', '01-00-01', '170 ST')
Processing turnstile ('H022', 'R279', '00-00-02', 'JEFFERSON ST')
Processing turnstile ('E009', 'R370', '00-00-02', '71 ST')
Processing turnstile ('N087', 'R282', '01-06-01', 'SPRING ST')
Processing turnstile ('N333B', 'R141', '02-00-02', 'FOREST HILLS 71')
Processing turnstile ('R605', 'R456', '00-03-00', 'HOYT ST')
Processing turnstile ('R508', 'R346', '00-03-01', 'COURT SQ')
Processing turnstile ('R155', 'R116', '01-00-00', '50 ST')
Processing turnstile ('R238', 'R046', '00-03-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 18353
WARNING. Abnormal entry count found on day 2016-02-22: 15073
WARNING. Abnormal entry count found on day 2016-02-29: 12469
Processing turnstile ('N215', 'R237', '00-00-00', '182-183 STS')
Processing turnstile ('R201', 'R041', '00-03-02', 'BOWLING GREEN')
Processing turnstile ('R196', 'R306', '00-00-00', '238 ST')
Processing turnstile ('N557', 'R130', '00-03-00', 'KINGS HWY')
Processing turnstile ('H026', 'R137', '00-05-00', 'MYRTLE-WYCKOFF')
Processing turnstile ('N340A', 'R115', '01-03-00', '169 ST')
Processing turnstile ('R238A', 'R046', '02-00-01', 'GRD CNTRL-42 ST')
Processing turnstile ('N539A', 'R288', '00-00-03', '7 AV')
Processing turnstile ('R155', 'R116', '01-00-01', '50 ST')
Processing turnstile ('R533', 'R055', '00-00-00', 'FLUSHING-MAIN')
Processing turnstile ('G009', 'R151', '02-00-01', 'CONEY IS-STILLW')
Processing turnstile ('N223', 'R156', '01-05-01', 'BEDFORD PK BLVD')
Processing turnstile ('R513', 'R093', '00-03-01', '30 AV')
WARNING. Abnormal entry count found on day 2016-02-16: 15592
WARNING. Abnormal entry count found on day 2016-02-29: 14166
Processing turnstile ('R258', 'R132', '00-06-01', '125 ST')
Processing turnstile ('N531', 'R129', '01-00-01', 'BERGEN ST')
Processing turnstile ('N203', 'R195', '00-03-03', '161/YANKEE STAD')
Processing turnstile ('R230', 'R143', '02-05-00', '28 ST')
Processing turnstile ('R130', 'R321', '01-00-01', '18 ST')
Processing turnstile ('N405', 'R239', '00-00-01', 'GREENPOINT AV')
Processing turnstile ('R414', 'R162', '00-00-00', 'ELDER AV')
Processing turnstile ('A027', 'R082', '01-03-03', '28 ST')
Processing turnstile ('A058', 'R001', '01-06-01', 'WHITEHALL S-FRY')
Processing turnstile ('A015', 'R081', '00-00-01', '49 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 10173
Processing turnstile ('R244A', 'R050', '01-06-01', '59 ST')
Processing turnstile ('PTH07', 'R550', '00-02-04', 'CITY / BUS')
Processing turnstile ('A013', 'R081', '01-03-01', '49 ST')
Processing turnstile ('R261', 'R205', '00-00-02', '149/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-02-16: 17358
WARNING. Abnormal entry count found on day 2016-02-22: 11449
WARNING. Abnormal entry count found on day 2016-02-29: 11654
Processing turnstile ('N001', 'R173', '01-05-00', 'INWOOD-207 ST')
Processing turnstile ('J021', 'R434', '00-00-00', 'VAN SICLEN AV')
Processing turnstile ('B016', 'R098', '00-03-02', 'CHURCH AV')
Processing turnstile ('N196', 'R285', '00-00-01', 'FAR ROCKAWAY')
Processing turnstile ('N076', 'R111', '00-06-00', '23 ST')
Processing turnstile ('N135', 'R385', '01-06-00', 'ROCKAWAY BLVD')
Processing turnstile ('N194', 'R338', '00-05-00', 'BEACH 36 ST')
Processing turnstile ('PTH12', 'R542', '00-04-01', 'TWENTY THIRD ST')
Processing turnstile ('A060', 'R001', '00-00-06', 'WHITEHALL S-FRY')
Processing turnstile ('R728', 'R226', '00-00-01', 'GUN HILL RD')
Processing turnstile ('H041', 'R152', '00-00-02', 'CANARSIE-ROCKAW')
Processing turnstile ('R134', 'R272', '01-06-01', '28 ST')
Processing turnstile ('PTH08', 'R540', '00-04-06', 'PATH WTC')
Processing turnstile ('N301', 'R113', '00-00-01', '7 AV')
Processing turnstile ('R251', 'R144', '00-00-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-02-16: 13517
Processing turnstile ('N502', 'R021', '01-00-04', '42 ST-BRYANT PK')
Processing turnstile ('R417', 'R222', '00-03-01', 'PARKCHESTER')
Processing turnstile ('N503', 'R021', '00-00-03', '42 ST-BRYANT PK')
Processing turnstile ('R138', 'R293', '00-03-06', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 11190
Processing turnstile ('N337', 'R255', '00-00-04', 'BRIARWOOD')
Processing turnstile ('PTH20', 'R549', '03-00-06', 'NEWARK HM HE')
Processing turnstile ('N126', 'R441', '00-00-00', 'VAN SICLEN AVE')
Processing turnstile ('R220', 'R160', '01-00-01', 'ASTOR PL')
Processing turnstile ('R511', 'R091', '00-00-01', '36 AV')
Processing turnstile ('A035', 'R170', '00-00-03', '14 ST-UNION SQ')
Processing turnstile ('R622', 'R123', '00-00-02', 'FRANKLIN AV')
Processing turnstile ('N208', 'R443', '01-05-01', '170 ST')
Processing turnstile ('N129', 'R382', '00-00-01', 'GRANT AV')
Processing turnstile ('PTH05', 'R543', '00-04-04', 'EXCHANGE PLACE')
Processing turnstile ('R533', 'R055', '00-03-02', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-02-16: 12463
Processing turnstile ('C009', 'R057', '03-03-00', 'ATL AV-BARCLAY')
Processing turnstile ('R116', 'R030', '00-02-00', 'CHAMBERS ST')
Processing turnstile ('N129', 'R382', '00-03-01', 'GRANT AV')
Processing turnstile ('N114', 'R297', '01-00-01', 'FRANKLIN AV')
Processing turnstile ('R138', 'R293', '00-03-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-02-16: 11340
Processing turnstile ('PTH17', 'R541', '01-01-03', 'THIRTY THIRD ST')
Processing turnstile ('R127', 'R105', '00-03-02', '14 ST')
Processing turnstile ('E014', 'R374', '00-00-00', 'BAY PKWY')
Processing turnstile ('B013', 'R196', '01-00-00', 'PROSPECT PARK')
Processing turnstile ('A060', 'R001', '00-00-03', 'WHITEHALL S-FRY')
Processing turnstile ('C023', 'R213', '00-00-00', 'BAY RIDGE AV')
Processing turnstile ('N138', 'R355', '01-06-01', '111 ST')
Processing turnstile ('R116', 'R030', '00-02-01', 'CHAMBERS ST')
Processing turnstile ('R641', 'R210', '00-00-00', 'BEVERLY RD')
Processing turnstile ('N089', 'R139', '00-04-00', 'CANAL ST')
Processing turnstile ('N507', 'R023', '00-03-03', '34 ST-HERALD SQ')
Processing turnstile ('PTH04', 'R551', '00-00-02', 'GROVE STREET')
Processing turnstile ('N323', 'R018', '01-00-01', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-02-16: 10198
Processing turnstile ('N209', 'R443', '00-00-01', '170 ST')
Processing turnstile ('R323', 'R387', '00-00-04', 'WEST FARMS SQ')
Processing turnstile ('R418', 'R106', '00-00-01', 'CASTLE HILL AV')
Processing turnstile ('N068', 'R012', '03-00-02', '34 ST-PENN STA')
Processing turnstile ('R647', 'R110', '02-05-01', 'FLATBUSH AV-B.C')
Processing turnstile ('N069', 'R013', '01-00-00', '34 ST-PENN STA')
Processing turnstile ('R155', 'R116', '01-00-08', '50 ST')
Processing turnstile ('C003', 'R089', '00-00-01', 'JAY ST-METROTEC')
Processing turnstile ('PTH02', 'R544', '00-04-00', 'HARRISON')
Processing turnstile ('H006', 'R330', '01-00-01', '3 AV')
Processing turnstile ('R178', 'R273', '00-00-00', '145 ST')
Processing turnstile ('R401', 'R445', '00-06-00', '3 AV 138 ST')
Processing turnstile ('C020', 'R233', '00-00-03', '53 ST')
Processing turnstile ('N123B', 'R439', '01-05-01', 'ROCKAWAY AV')
Processing turnstile ('N606', 'R025', '00-00-04', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-02-16: 10528
Processing turnstile ('C012', 'R258', '01-00-02', '4AV-9 ST')
Processing turnstile ('PTH08', 'R540', '00-04-02', 'PATH WTC')
WARNING. Abnormal entry count found on day 2016-02-16: 12160
Processing turnstile ('N113', 'R297', '00-00-00', 'FRANKLIN AV')
Processing turnstile ('PTH05', 'R543', '00-04-05', 'EXCHANGE PLACE')
Processing turnstile ('R323', 'R387', '00-05-01', 'WEST FARMS SQ')
Processing turnstile ('R529', 'R208', '00-06-00', '103 ST-CORONA')
Processing turnstile ('C012', 'R258', '01-03-00', '4AV-9 ST')
Processing turnstile ('R410', 'R450', '00-00-01', 'LONGWOOD AV')
Processing turnstile ('C023', 'R213', '00-00-02', 'BAY RIDGE AV')
Processing turnstile ('R507', 'R134', '00-03-03', 'HUNTERS PT AV')
Processing turnstile ('R154', 'R116', '00-00-04', '50 ST')
Processing turnstile ('C028', 'R216', '01-05-00', 'BAY RIDGE AV')
Processing turnstile ('R421', 'R427', '00-03-00', 'MIDDLETOWN RD')
Processing turnstile ('R208', 'R014', '03-01-02', 'FULTON ST')
Processing turnstile ('N606', 'R025', '00-05-00', 'JAMAICA CENTER')

In [16]:
turnstile_to_daily_time_series[('N300', 'R113', '01-00-04', '7 AV')]


Out[16]:
[(datetime.date(2016, 1, 31), None),
 (datetime.date(2016, 2, 1), 2205),
 (datetime.date(2016, 2, 2), 2392),
 (datetime.date(2016, 2, 3), 2570),
 (datetime.date(2016, 2, 4), 2551),
 (datetime.date(2016, 2, 5), 2444),
 (datetime.date(2016, 2, 8), 3690),
 (datetime.date(2016, 2, 9), 2235),
 (datetime.date(2016, 2, 10), 2394),
 (datetime.date(2016, 2, 11), 2510),
 (datetime.date(2016, 2, 16), 7517),
 (datetime.date(2016, 2, 17), 2366),
 (datetime.date(2016, 2, 18), 2263),
 (datetime.date(2016, 2, 19), 2417),
 (datetime.date(2016, 2, 22), 4181),
 (datetime.date(2016, 2, 23), 2397),
 (datetime.date(2016, 2, 24), 2455),
 (datetime.date(2016, 2, 25), 2440),
 (datetime.date(2016, 2, 26), 2280),
 (datetime.date(2016, 2, 29), 3564)]

So far we've been operating on a single turnstile level, let's combine turnstiles in the same ControlArea/Unit/Station combo.


In [17]:
from collections import Counter

def booth_of_a_time_series_item(item):
    turnstile, time_series = item
    control_area, unit, device_id, station = turnstile
    return (control_area, unit, station)

def reduce_turnstile_time_series_to_booths(turnstile_to_daily_time_series):
    turnstile_time_series_items = sorted(turnstile_to_daily_time_series.items())
    booth_to_time_series = {}
    
    for booth, item_list_of_booth in groupby(turnstile_time_series_items, 
                                             key=booth_of_a_time_series_item):
        daily_counter = Counter()
        for turnstile, time_series in item_list_of_booth:
            for day, count in time_series:
                if count is not None:
                    daily_counter[day] += count
        
        booth_to_time_series[booth] = sorted(daily_counter.items())
        
    return booth_to_time_series

booth_to_daily_time_series = reduce_turnstile_time_series_to_booths(turnstile_to_daily_time_series)

In [18]:
booth_to_daily_time_series[('N300', 'R113', '7 AV')]


Out[18]:
[(datetime.date(2016, 2, 1), 6519),
 (datetime.date(2016, 2, 2), 7243),
 (datetime.date(2016, 2, 3), 7688),
 (datetime.date(2016, 2, 4), 7365),
 (datetime.date(2016, 2, 5), 7176),
 (datetime.date(2016, 2, 8), 11344),
 (datetime.date(2016, 2, 9), 6965),
 (datetime.date(2016, 2, 10), 7591),
 (datetime.date(2016, 2, 11), 7714),
 (datetime.date(2016, 2, 16), 23320),
 (datetime.date(2016, 2, 17), 7322),
 (datetime.date(2016, 2, 18), 7378),
 (datetime.date(2016, 2, 19), 7483),
 (datetime.date(2016, 2, 22), 13378),
 (datetime.date(2016, 2, 23), 7403),
 (datetime.date(2016, 2, 24), 7632),
 (datetime.date(2016, 2, 25), 7572),
 (datetime.date(2016, 2, 26), 7422),
 (datetime.date(2016, 2, 29), 11361)]

Similarly, we will combine everything in each station, and come up with a time series for each station by adding up all the turnstiles in a station.


In [19]:
def station_of_a_booth(booth):
    control_area, unit, station = booth
    return station

def station_of_a_time_series_item(item):
    booth, time_series = item
    return station_of_a_booth(booth)

def reduce_booth_time_series_to_stations(booth_to_daily_time_series):
    booth_time_series_items = sorted(booth_to_daily_time_series.items())
    station_to_time_series = {}
    for station, item_list_of_station in groupby(booth_time_series_items,
                                             key=station_of_a_time_series_item):
        daily_counter = Counter()
        for turnstile, time_series in item_list_of_station:
            for day, count in time_series:
                daily_counter[day] += count
        station_to_time_series[station] = sorted(daily_counter.items())
    return station_to_time_series


station_to_daily_time_series = reduce_booth_time_series_to_stations(booth_to_daily_time_series)

In [20]:
station_to_daily_time_series['7 AV']


Out[20]:
[(datetime.date(2016, 2, 1), 11696),
 (datetime.date(2016, 2, 2), 12941),
 (datetime.date(2016, 2, 3), 13104),
 (datetime.date(2016, 2, 4), 13131),
 (datetime.date(2016, 2, 5), 12552),
 (datetime.date(2016, 2, 8), 25172),
 (datetime.date(2016, 2, 9), 12738),
 (datetime.date(2016, 2, 10), 13036),
 (datetime.date(2016, 2, 11), 12954),
 (datetime.date(2016, 2, 16), 12473),
 (datetime.date(2016, 2, 17), 10949),
 (datetime.date(2016, 2, 18), 11009),
 (datetime.date(2016, 2, 19), 10545),
 (datetime.date(2016, 2, 22), 25132),
 (datetime.date(2016, 2, 23), 12567),
 (datetime.date(2016, 2, 24), 12719),
 (datetime.date(2016, 2, 25), 12625),
 (datetime.date(2016, 2, 26), 12370),
 (datetime.date(2016, 2, 29), 25311)]

We'll now make a list of the average ridership values per station and plot it to get an idea about its distribution among different stations.


In [21]:
feb_business_days = len(station_to_daily_time_series['7 AV'])

def station_time_series_item_to_station_avg_traffic(item):
    station, time_series = item
    avg_traffic = sum([count for day, count in time_series]) // feb_business_days
    return avg_traffic, station

traffic = list(map(station_time_series_item_to_station_avg_traffic, 
                   station_to_daily_time_series.items()))
traffic_report = sorted(traffic, reverse=True)

for avg_traffic, station in traffic_report[:30]:
    print('{:<18} {:.0f}'.format(station, avg_traffic))


GRD CNTRL-42 ST    158625
42 ST-PORT AUTH    112739
34 ST-PENN STA     107514
TIMES SQ-42 ST     93595
34 ST-HERALD SQ    87825
47-50 STS ROCK     71111
FLUSHING-MAIN      70011
86 ST              67614
59 ST              59147
JKSN HT-ROOSVLT    58594
PATH WTC           54862
JAY ST-METROTEC    51762
LEXINGTON AV/53    51369
W 4 ST-WASH SQ     51012
72 ST              49478
42 ST-BRYANT PK    48248
BOROUGH HALL       45425
68ST-HUNTER CO     43720
ATL AV-BARCLAY     42502
77 ST              40686
33 ST              39430
JAMAICA CENTER     39196
BOWLING GREEN      38956
23 ST              35203
CROWN HTS-UTICA    34864
14 ST-UNION SQ     34546
KEW GARDENS        33808
FOREST HILLS 71    33785
49 ST              33092
50 ST              32767

In [53]:
%matplotlib inline
import matplotlib.pyplot as plt
import seaborn as sns

avg_ridership_counts = [ridership for ridership, station in traffic_report]

fig, ax = plt.subplots(figsize=(20, 10))
sns.distplot(avg_ridership_counts, bins=range(0, 165000, 5000), ax=ax)
ax.set_xlim(0, 165000)


Out[53]:
(0, 165000)

We can see that most stations have a small traffic and the histogram bins for large traffic volumes have small bars.

Let's plot a histogram with logarithmic scale instead.


In [120]:
import math

log_counts = []

for count in avg_ridership_counts:
    try:
        log_result = math.log10(count)
    except:
        pass
    
    log_counts.append(log_result)

fig, ax = plt.subplots(figsize=(20, 10))
sns.distplot(log_counts, bins=15)

def log_count_to_label(log_count):
    if log_count <= 3:
        return '{0:.0f} Hundred'.format(10 ** (log_count))
    else:
        return '{0:.1f} Thousand'.format(10 ** (log_count-3))

tick_labels = map(log_count_to_label, bins)
ticks = plt.xticks(bins, tick_labels, rotation=70)
plt.xlabel('Average Ridership per Day (log 10)')
plt.ylabel('Number of Stations with this Total Count')
plt.title('Distribution of ridership among NYC Subway Stations')

plt.savefig('figures/log.png', bbox_inches='tight')


Since we are interested in filtering out at least 90% of stations let's select the top 30.


In [66]:
import pandas as pd

top_stations = traffic_report[:30]
avgs, stations = zip(*top_stations)
indices = range(len(avgs))

df = pd.DataFrame([stations, avgs]).T
df.columns = ['Station', 'Average Daily Entries']
df.head(20)


Out[66]:
Station Average Daily Entries
0 GRD CNTRL-42 ST 158625
1 42 ST-PORT AUTH 112739
2 34 ST-PENN STA 107514
3 TIMES SQ-42 ST 93595
4 34 ST-HERALD SQ 87825
5 47-50 STS ROCK 71111
6 FLUSHING-MAIN 70011
7 86 ST 67614
8 59 ST 59147
9 JKSN HT-ROOSVLT 58594
10 PATH WTC 54862
11 JAY ST-METROTEC 51762
12 LEXINGTON AV/53 51369
13 W 4 ST-WASH SQ 51012
14 72 ST 49478
15 42 ST-BRYANT PK 48248
16 BOROUGH HALL 45425
17 68ST-HUNTER CO 43720
18 ATL AV-BARCLAY 42502
19 77 ST 40686

In [119]:
fig, ax = plt.subplots(figsize=(20, 10))
sns.barplot(x='Station', y='Average Daily Entries', data=df, 
            palette=sns.diverging_palette(255, 240, n=len(df)))

ticks = plt.xticks(indices, stations, rotation = 70)
plt.title('Top 30 NYC Subway Stations by Traffic in February Weekdays')

plt.savefig('figures/mvp.png', bbox_inches='tight')


This could be our MVP. Let's save the traffic report as a binary pickle file and take a break to figure out how to improve the recommendations.


In [25]:
import pandas as pd

reversed_traffic_report = [reversed(t) for t in traffic_report]
df_to_pickle = pd.DataFrame(reversed_traffic_report, columns=['station', 'avg_daily_traffic_feb'])
df_to_pickle.head()


Out[25]:
station avg_daily_traffic_feb
0 GRD CNTRL-42 ST 158625
1 42 ST-PORT AUTH 112739
2 34 ST-PENN STA 107514
3 TIMES SQ-42 ST 93595
4 34 ST-HERALD SQ 87825

In [26]:
df_to_pickle.to_pickle('pickle/stations_traffic.p')