Exploratory Data Analysis with Python

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

Here is an example of what you could do with the data. James Kao investigates how subway ridership is affected by incidence of rain.

Exercise 1

  • Download a few MTA turnstile data files
  • Open up a file, use csv reader to read it, make a python dict where there is a key for each (C/A, UNIT, SCP, STATION). These are the first four columns. The value for this key should be a list of lists. Each list in the list is the rest of the columns in a row. For example, one key-value pair should look like
    {    ('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 [1]:
!pip install wget


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

In [2]:
import wget

url_template = "http://web.mta.info/developers/data/nyct/turnstile/turnstile_%s.txt"
for date in ['161231', '161224', '161217', '161210']:
    url = url_template % date
    wget.download(url)
    print(date, 'file downloaded')


161231 file downloaded
161224 file downloaded
161217 file downloaded
161210 file downloaded

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('turnstile_*.txt')]
sample_dict = list(weekly_data_dicts[0].items())[:2]
sample_dict


Out[4]:
[(('D009', 'R393', '00-00-01', '20 AV'),
  [['N',
    'BMT',
    '12/03/2016',
    '00:00:00',
    'REGULAR',
    '0005321420',
    '0004667060                                                  '],
   ['N',
    'BMT',
    '12/03/2016',
    '04:00:00',
    'REGULAR',
    '0005321420',
    '0004667060                                                  '],
   ['N',
    'BMT',
    '12/03/2016',
    '08:00:00',
    'REGULAR',
    '0005321426',
    '0004667060                                                  '],
   ['N',
    'BMT',
    '12/03/2016',
    '12:00:00',
    'REGULAR',
    '0005321452',
    '0004667064                                                  '],
   ['N',
    'BMT',
    '12/03/2016',
    '16:00:00',
    'REGULAR',
    '0005321474',
    '0004667066                                                  '],
   ['N',
    'BMT',
    '12/03/2016',
    '20:00:00',
    'REGULAR',
    '0005321493',
    '0004667066                                                  '],
   ['N',
    'BMT',
    '12/04/2016',
    '00:00:00',
    'REGULAR',
    '0005321498',
    '0004667069                                                  '],
   ['N',
    'BMT',
    '12/04/2016',
    '04:00:00',
    'REGULAR',
    '0005321498',
    '0004667069                                                  '],
   ['N',
    'BMT',
    '12/04/2016',
    '08:00:00',
    'REGULAR',
    '0005321502',
    '0004667069                                                  '],
   ['N',
    'BMT',
    '12/04/2016',
    '12:00:00',
    'REGULAR',
    '0005321524',
    '0004667070                                                  '],
   ['N',
    'BMT',
    '12/04/2016',
    '16:00:00',
    'REGULAR',
    '0005321536',
    '0004667075                                                  '],
   ['N',
    'BMT',
    '12/04/2016',
    '20:00:00',
    'REGULAR',
    '0005321544',
    '0004667077                                                  '],
   ['N',
    'BMT',
    '12/05/2016',
    '00:00:00',
    'REGULAR',
    '0005321544',
    '0004667080                                                  '],
   ['N',
    'BMT',
    '12/05/2016',
    '04:00:00',
    'REGULAR',
    '0005321544',
    '0004667080                                                  '],
   ['N',
    'BMT',
    '12/05/2016',
    '08:00:00',
    'REGULAR',
    '0005321595',
    '0004667081                                                  '],
   ['N',
    'BMT',
    '12/05/2016',
    '12:00:00',
    'REGULAR',
    '0005321642',
    '0004667085                                                  '],
   ['N',
    'BMT',
    '12/05/2016',
    '16:00:00',
    'REGULAR',
    '0005321661',
    '0004667087                                                  '],
   ['N',
    'BMT',
    '12/05/2016',
    '20:00:00',
    'REGULAR',
    '0005321686',
    '0004667089                                                  '],
   ['N',
    'BMT',
    '12/06/2016',
    '00:00:00',
    'REGULAR',
    '0005321689',
    '0004667095                                                  '],
   ['N',
    'BMT',
    '12/06/2016',
    '04:00:00',
    'REGULAR',
    '0005321689',
    '0004667096                                                  '],
   ['N',
    'BMT',
    '12/06/2016',
    '08:00:00',
    'REGULAR',
    '0005321730',
    '0004667097                                                  '],
   ['N',
    'BMT',
    '12/06/2016',
    '12:00:00',
    'REGULAR',
    '0005321783',
    '0004667105                                                  '],
   ['N',
    'BMT',
    '12/06/2016',
    '16:00:00',
    'REGULAR',
    '0005321800',
    '0004667108                                                  '],
   ['N',
    'BMT',
    '12/06/2016',
    '20:00:00',
    'REGULAR',
    '0005321823',
    '0004667114                                                  '],
   ['N',
    'BMT',
    '12/07/2016',
    '00:00:00',
    'REGULAR',
    '0005321830',
    '0004667117                                                  '],
   ['N',
    'BMT',
    '12/07/2016',
    '04:00:00',
    'REGULAR',
    '0005321830',
    '0004667117                                                  '],
   ['N',
    'BMT',
    '12/07/2016',
    '08:00:00',
    'REGULAR',
    '0005321869',
    '0004667117                                                  '],
   ['N',
    'BMT',
    '12/07/2016',
    '12:00:00',
    'REGULAR',
    '0005321914',
    '0004667128                                                  '],
   ['N',
    'BMT',
    '12/07/2016',
    '16:00:00',
    'REGULAR',
    '0005321938',
    '0004667131                                                  '],
   ['N',
    'BMT',
    '12/07/2016',
    '20:00:00',
    'REGULAR',
    '0005321959',
    '0004667135                                                  '],
   ['N',
    'BMT',
    '12/08/2016',
    '00:00:00',
    'REGULAR',
    '0005321963',
    '0004667138                                                  '],
   ['N',
    'BMT',
    '12/08/2016',
    '04:00:00',
    'REGULAR',
    '0005321963',
    '0004667138                                                  '],
   ['N',
    'BMT',
    '12/08/2016',
    '08:00:00',
    'REGULAR',
    '0005321985',
    '0004667138                                                  '],
   ['N',
    'BMT',
    '12/08/2016',
    '12:00:00',
    'REGULAR',
    '0005322076',
    '0004667160                                                  '],
   ['N',
    'BMT',
    '12/08/2016',
    '16:00:00',
    'REGULAR',
    '0005322128',
    '0004667164                                                  '],
   ['N',
    'BMT',
    '12/08/2016',
    '20:00:00',
    'REGULAR',
    '0005322142',
    '0004667169                                                  '],
   ['N',
    'BMT',
    '12/09/2016',
    '00:00:00',
    'REGULAR',
    '0005322146',
    '0004667169                                                  '],
   ['N',
    'BMT',
    '12/09/2016',
    '04:00:00',
    'REGULAR',
    '0005322146',
    '0004667169                                                  '],
   ['N',
    'BMT',
    '12/09/2016',
    '08:00:00',
    'REGULAR',
    '0005322176',
    '0004667171                                                  '],
   ['N',
    'BMT',
    '12/09/2016',
    '12:00:00',
    'REGULAR',
    '0005322216',
    '0004667177                                                  '],
   ['N',
    'BMT',
    '12/09/2016',
    '16:00:00',
    'REGULAR',
    '0005322251',
    '0004667183                                                  '],
   ['N',
    'BMT',
    '12/09/2016',
    '20:00:00',
    'REGULAR',
    '0005322274',
    '0004667184                                                  ']]),
 (('A050', 'R088', '00-05-00', 'CORTLANDT ST'),
  [['RNW',
    'BMT',
    '12/03/2016',
    '00:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/03/2016',
    '04:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/03/2016',
    '08:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/03/2016',
    '12:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/03/2016',
    '16:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/03/2016',
    '20:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/04/2016',
    '00:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/04/2016',
    '04:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/04/2016',
    '08:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/04/2016',
    '16:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/04/2016',
    '20:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/05/2016',
    '00:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/05/2016',
    '04:00:00',
    'REGULAR',
    '0000054159',
    '0000474568                                         '],
   ['RNW',
    'BMT',
    '12/05/2016',
    '08:00:00',
    'REGULAR',
    '0000054159',
    '0000474587                                         '],
   ['RNW',
    'BMT',
    '12/05/2016',
    '12:00:00',
    'REGULAR',
    '0000054160',
    '0000474833                                         '],
   ['RNW',
    'BMT',
    '12/05/2016',
    '16:00:00',
    'REGULAR',
    '0000054188',
    '0000474986                                         '],
   ['RNW',
    'BMT',
    '12/05/2016',
    '20:00:00',
    'REGULAR',
    '0000054221',
    '0000475050                                         '],
   ['RNW',
    'BMT',
    '12/06/2016',
    '00:00:00',
    'REGULAR',
    '0000054221',
    '0000475050                                         '],
   ['RNW',
    'BMT',
    '12/06/2016',
    '04:00:00',
    'REGULAR',
    '0000054221',
    '0000475050                                         '],
   ['RNW',
    'BMT',
    '12/06/2016',
    '08:00:00',
    'REGULAR',
    '0000054221',
    '0000475078                                         '],
   ['RNW',
    'BMT',
    '12/06/2016',
    '12:00:00',
    'REGULAR',
    '0000054223',
    '0000475313                                         '],
   ['RNW',
    'BMT',
    '12/06/2016',
    '16:00:00',
    'REGULAR',
    '0000054242',
    '0000475453                                         '],
   ['RNW',
    'BMT',
    '12/06/2016',
    '20:00:00',
    'REGULAR',
    '0000054279',
    '0000475513                                         '],
   ['RNW',
    'BMT',
    '12/07/2016',
    '00:00:00',
    'REGULAR',
    '0000054279',
    '0000475513                                         '],
   ['RNW',
    'BMT',
    '12/07/2016',
    '04:00:00',
    'REGULAR',
    '0000054279',
    '0000475513                                         '],
   ['RNW',
    'BMT',
    '12/07/2016',
    '08:00:00',
    'REGULAR',
    '0000054279',
    '0000475541                                         '],
   ['RNW',
    'BMT',
    '12/07/2016',
    '12:00:00',
    'REGULAR',
    '0000054286',
    '0000475846                                         '],
   ['RNW',
    'BMT',
    '12/07/2016',
    '16:00:00',
    'REGULAR',
    '0000054308',
    '0000475980                                         '],
   ['RNW',
    'BMT',
    '12/07/2016',
    '20:00:00',
    'REGULAR',
    '0000054341',
    '0000476045                                         '],
   ['RNW',
    'BMT',
    '12/08/2016',
    '00:00:00',
    'REGULAR',
    '0000054341',
    '0000476045                                         '],
   ['RNW',
    'BMT',
    '12/08/2016',
    '04:00:00',
    'REGULAR',
    '0000054341',
    '0000476045                                         '],
   ['RNW',
    'BMT',
    '12/08/2016',
    '08:00:00',
    'REGULAR',
    '0000054341',
    '0000476076                                         '],
   ['RNW',
    'BMT',
    '12/08/2016',
    '12:00:00',
    'REGULAR',
    '0000054349',
    '0000476335                                         '],
   ['RNW',
    'BMT',
    '12/08/2016',
    '16:00:00',
    'REGULAR',
    '0000054366',
    '0000476476                                         '],
   ['RNW',
    'BMT',
    '12/08/2016',
    '20:00:00',
    'REGULAR',
    '0000054398',
    '0000476544                                         '],
   ['RNW',
    'BMT',
    '12/09/2016',
    '00:00:00',
    'REGULAR',
    '0000054398',
    '0000476544                                         '],
   ['RNW',
    'BMT',
    '12/09/2016',
    '04:00:00',
    'REGULAR',
    '0000054398',
    '0000476544                                         '],
   ['RNW',
    'BMT',
    '12/09/2016',
    '08:00:00',
    'REGULAR',
    '0000054398',
    '0000476572                                         '],
   ['RNW',
    'BMT',
    '12/09/2016',
    '12:00:00',
    'REGULAR',
    '0000054403',
    '0000476874                                         '],
   ['RNW',
    'BMT',
    '12/09/2016',
    '16:00:00',
    'REGULAR',
    '0000054421',
    '0000477035                                         '],
   ['RNW',
    'BMT',
    '12/09/2016',
    '20:00:00',
    'REGULAR',
    '0000054453',
    '0000477085                                         ']])]

Exercise 2

  • Let's turn this into a time series.

    For each key (basically the control area, unit, device address and station of a specific turnstile), have a list again, but let the list be comprised of just the point in time and the cumulative count of entries.

This basically means keeping only the date, time, and entries fields in each list. You can convert the date and time into datetime objects -- That is a python class that represents a point in time. You can combine the date and time fields into a string and use the dateutil module to convert it into a datetime object.

Your new dict should look 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 [5]:
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 [6]:
weekly_time_series = list(map(convert_week_data_to_time_series, weekly_data_dicts))


Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R326', 'R389', '00-00-00', 'BRONX PARK EAST')
Processing turnstile ('PTH18', 'R549', '01-00-07', 'NEWARK BM BW')
Processing turnstile ('N213', 'R154', '00-06-01', 'TREMONT AV')
Processing turnstile ('N306', 'R017', '00-03-03', 'LEXINGTON AV/53')
Processing turnstile ('R301', 'R323', '00-03-01', 'CENTRAL PK N110')
Processing turnstile ('N134', 'R385', '00-03-01', 'ROCKAWAY BLVD')
Processing turnstile ('N094', 'R029', '01-06-02', 'WORLD TRADE CTR')
Processing turnstile ('H039', 'R375', '00-00-00', 'NEW LOTS')
Processing turnstile ('N196', 'R285', '00-03-00', 'FAR ROCKAWAY')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R326', 'R389', '00-00-00', 'BRONX PARK EAST')
Processing turnstile ('PTH18', 'R549', '01-00-07', 'NEWARK BM BW')
Processing turnstile ('N213', 'R154', '00-06-01', 'TREMONT AV')
Processing turnstile ('N306', 'R017', '00-03-03', 'LEXINGTON AV/53')
Processing turnstile ('R301', 'R323', '00-03-01', 'CENTRAL PK N110')
Processing turnstile ('N134', 'R385', '00-03-01', 'ROCKAWAY BLVD')
Processing turnstile ('N094', 'R029', '01-06-02', 'WORLD TRADE CTR')
Processing turnstile ('H039', 'R375', '00-00-00', 'NEW LOTS')
Processing turnstile ('N196', 'R285', '00-03-00', 'FAR ROCKAWAY')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R326', 'R389', '00-00-00', 'BRONX PARK EAST')
Processing turnstile ('PTH18', 'R549', '01-00-07', 'NEWARK BM BW')
Processing turnstile ('N213', 'R154', '00-06-01', 'TREMONT AV')
Processing turnstile ('N306', 'R017', '00-03-03', 'LEXINGTON AV/53')
Processing turnstile ('R301', 'R323', '00-03-01', 'CENTRAL PK N110')
Processing turnstile ('N134', 'R385', '00-03-01', 'ROCKAWAY BLVD')
Processing turnstile ('N094', 'R029', '01-06-02', 'WORLD TRADE CTR')
Processing turnstile ('H039', 'R375', '00-00-00', 'NEW LOTS')
Processing turnstile ('N196', 'R285', '00-03-00', 'FAR ROCKAWAY')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R327', 'R361', '01-05-01', 'PELHAM PKWY')
Processing turnstile ('R330', 'R363', '00-00-02', 'BURKE AV')
Processing turnstile ('R166', 'R167', '02-00-02', '86 ST')
Processing turnstile ('B014', 'R148', '00-00-01', 'PARKSIDE AV')
Processing turnstile ('N513', 'R163', '04-00-00', '14 ST')
Processing turnstile ('H009', 'R235', '00-06-03', 'BEDFORD AV')
Processing turnstile ('N119', 'R199', '00-00-02', 'KINGSTON-THROOP')
Processing turnstile ('A071', 'R044', '02-00-02', 'CHAMBERS ST')
Processing turnstile ('B032', 'R264', '00-00-00', 'OCEAN PKWY')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R327', 'R361', '01-05-01', 'PELHAM PKWY')
Processing turnstile ('R330', 'R363', '00-00-02', 'BURKE AV')
Processing turnstile ('R166', 'R167', '02-00-02', '86 ST')
Processing turnstile ('B014', 'R148', '00-00-01', 'PARKSIDE AV')
Processing turnstile ('N513', 'R163', '04-00-00', '14 ST')
Processing turnstile ('H009', 'R235', '00-06-03', 'BEDFORD AV')
Processing turnstile ('N119', 'R199', '00-00-02', 'KINGSTON-THROOP')
Processing turnstile ('A071', 'R044', '02-00-02', 'CHAMBERS ST')
Processing turnstile ('B032', 'R264', '00-00-00', 'OCEAN PKWY')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R327', 'R361', '01-05-01', 'PELHAM PKWY')
Processing turnstile ('R330', 'R363', '00-00-02', 'BURKE AV')
Processing turnstile ('R166', 'R167', '02-00-02', '86 ST')
Processing turnstile ('B014', 'R148', '00-00-01', 'PARKSIDE AV')
Processing turnstile ('N513', 'R163', '04-00-00', '14 ST')
Processing turnstile ('H009', 'R235', '00-06-03', 'BEDFORD AV')
Processing turnstile ('N119', 'R199', '00-00-02', 'KINGSTON-THROOP')
Processing turnstile ('A071', 'R044', '02-00-02', 'CHAMBERS ST')
Processing turnstile ('B032', 'R264', '00-00-00', 'OCEAN PKWY')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R327', 'R361', '01-05-01', 'PELHAM PKWY')
Processing turnstile ('R330', 'R363', '00-00-02', 'BURKE AV')
Processing turnstile ('R166', 'R167', '02-00-02', '86 ST')
Processing turnstile ('B014', 'R148', '00-00-01', 'PARKSIDE AV')
Processing turnstile ('N513', 'R163', '04-00-00', '14 ST')
Processing turnstile ('H009', 'R235', '00-06-03', 'BEDFORD AV')
Processing turnstile ('N119', 'R199', '00-00-02', 'KINGSTON-THROOP')
Processing turnstile ('A071', 'R044', '02-00-02', 'CHAMBERS ST')
Processing turnstile ('B032', 'R264', '00-00-00', 'OCEAN PKWY')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R327', 'R361', '01-05-01', 'PELHAM PKWY')
Processing turnstile ('R330', 'R363', '00-00-02', 'BURKE AV')
Processing turnstile ('R166', 'R167', '02-00-02', '86 ST')
Processing turnstile ('B014', 'R148', '00-00-01', 'PARKSIDE AV')
Processing turnstile ('N513', 'R163', '04-00-00', '14 ST')
Processing turnstile ('H009', 'R235', '00-06-03', 'BEDFORD AV')
Processing turnstile ('N119', 'R199', '00-00-02', 'KINGSTON-THROOP')
Processing turnstile ('A071', 'R044', '02-00-02', 'CHAMBERS ST')
Processing turnstile ('B032', 'R264', '00-00-00', 'OCEAN PKWY')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
Processing turnstile ('R327', 'R361', '01-05-01', 'PELHAM PKWY')
Processing turnstile ('R330', 'R363', '00-00-02', 'BURKE AV')
Processing turnstile ('R166', 'R167', '02-00-02', '86 ST')
Processing turnstile ('B014', 'R148', '00-00-01', 'PARKSIDE AV')
Processing turnstile ('N513', 'R163', '04-00-00', '14 ST')
Processing turnstile ('H009', 'R235', '00-06-03', 'BEDFORD AV')
Processing turnstile ('N119', 'R199', '00-00-02', 'KINGSTON-THROOP')
Processing turnstile ('A071', 'R044', '02-00-02', 'CHAMBERS ST')
Processing turnstile ('B032', 'R264', '00-00-00', 'OCEAN PKWY')
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R188', 'R037', '00-06-00', '207 ST')
Processing turnstile ('R501', 'R054', '00-00-07', '5 AVE')
Processing turnstile ('R323', 'R387', '00-00-03', 'WEST FARMS SQ')
Processing turnstile ('R241A', 'R048', '00-00-04', 'GRD CNTRL-42 ST')
Processing turnstile ('R730', 'R431', '00-00-02', 'EASTCHSTER/DYRE')
Processing turnstile ('G009', 'R151', '02-05-00', 'CONEY IS-STILLW')
Processing turnstile ('N400A', 'R359', '02-06-01', 'COURT SQ')
Processing turnstile ('N126', 'R441', '00-00-02', 'VAN SICLEN AVE')
Processing turnstile ('N301', 'R113', '00-00-00', '7 AV')
Processing turnstile ('N339', 'R114', '01-06-01', 'PARSONS BLVD')
Processing turnstile ('N547', 'R420', '01-06-00', 'DITMAS AV')
Processing turnstile ('PTH19', 'R549', '02-02-04', 'NEWARK C')
Processing turnstile ('R621', 'R060', '00-00-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N117', 'R198', '01-00-01', 'NOSTRAND AV')
Processing turnstile ('N092', 'R029', '03-06-00', 'CHAMBERS ST')
Processing turnstile ('R110', 'R027', '01-03-01', 'WALL ST')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R188', 'R037', '00-06-00', '207 ST')
Processing turnstile ('R501', 'R054', '00-00-07', '5 AVE')
Processing turnstile ('R323', 'R387', '00-00-03', 'WEST FARMS SQ')
Processing turnstile ('R241A', 'R048', '00-00-04', 'GRD CNTRL-42 ST')
Processing turnstile ('R730', 'R431', '00-00-02', 'EASTCHSTER/DYRE')
Processing turnstile ('G009', 'R151', '02-05-00', 'CONEY IS-STILLW')
Processing turnstile ('N400A', 'R359', '02-06-01', 'COURT SQ')
Processing turnstile ('N126', 'R441', '00-00-02', 'VAN SICLEN AVE')
Processing turnstile ('N301', 'R113', '00-00-00', '7 AV')
Processing turnstile ('N339', 'R114', '01-06-01', 'PARSONS BLVD')
Processing turnstile ('N547', 'R420', '01-06-00', 'DITMAS AV')
Processing turnstile ('PTH19', 'R549', '02-02-04', 'NEWARK C')
Processing turnstile ('R621', 'R060', '00-00-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N117', 'R198', '01-00-01', 'NOSTRAND AV')
Processing turnstile ('N092', 'R029', '03-06-00', 'CHAMBERS ST')
Processing turnstile ('R110', 'R027', '01-03-01', 'WALL ST')
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
Processing turnstile ('R188', 'R037', '00-06-00', '207 ST')
Processing turnstile ('R501', 'R054', '00-00-07', '5 AVE')
Processing turnstile ('R323', 'R387', '00-00-03', 'WEST FARMS SQ')
Processing turnstile ('R241A', 'R048', '00-00-04', 'GRD CNTRL-42 ST')
Processing turnstile ('R730', 'R431', '00-00-02', 'EASTCHSTER/DYRE')
Processing turnstile ('G009', 'R151', '02-05-00', 'CONEY IS-STILLW')
Processing turnstile ('N400A', 'R359', '02-06-01', 'COURT SQ')
Processing turnstile ('N126', 'R441', '00-00-02', 'VAN SICLEN AVE')
Processing turnstile ('N301', 'R113', '00-00-00', '7 AV')
Processing turnstile ('N339', 'R114', '01-06-01', 'PARSONS BLVD')
Processing turnstile ('N547', 'R420', '01-06-00', 'DITMAS AV')
Processing turnstile ('PTH19', 'R549', '02-02-04', 'NEWARK C')
Processing turnstile ('R621', 'R060', '00-00-01', 'EASTN PKWY-MUSM')
Processing turnstile ('N117', 'R198', '01-00-01', 'NOSTRAND AV')
Processing turnstile ('N092', 'R029', '03-06-00', 'CHAMBERS ST')
Processing turnstile ('R110', 'R027', '01-03-01', 'WALL ST')

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


Out[7]:
[(('D009', 'R393', '00-00-01', '20 AV'),
  [[datetime.datetime(2016, 12, 3, 0, 0), 5321420],
   [datetime.datetime(2016, 12, 3, 4, 0), 5321420],
   [datetime.datetime(2016, 12, 3, 8, 0), 5321426],
   [datetime.datetime(2016, 12, 3, 12, 0), 5321452],
   [datetime.datetime(2016, 12, 3, 16, 0), 5321474],
   [datetime.datetime(2016, 12, 3, 20, 0), 5321493],
   [datetime.datetime(2016, 12, 4, 0, 0), 5321498],
   [datetime.datetime(2016, 12, 4, 4, 0), 5321498],
   [datetime.datetime(2016, 12, 4, 8, 0), 5321502],
   [datetime.datetime(2016, 12, 4, 12, 0), 5321524],
   [datetime.datetime(2016, 12, 4, 16, 0), 5321536],
   [datetime.datetime(2016, 12, 4, 20, 0), 5321544],
   [datetime.datetime(2016, 12, 5, 0, 0), 5321544],
   [datetime.datetime(2016, 12, 5, 4, 0), 5321544],
   [datetime.datetime(2016, 12, 5, 8, 0), 5321595],
   [datetime.datetime(2016, 12, 5, 12, 0), 5321642],
   [datetime.datetime(2016, 12, 5, 16, 0), 5321661],
   [datetime.datetime(2016, 12, 5, 20, 0), 5321686],
   [datetime.datetime(2016, 12, 6, 0, 0), 5321689],
   [datetime.datetime(2016, 12, 6, 4, 0), 5321689],
   [datetime.datetime(2016, 12, 6, 8, 0), 5321730],
   [datetime.datetime(2016, 12, 6, 12, 0), 5321783],
   [datetime.datetime(2016, 12, 6, 16, 0), 5321800],
   [datetime.datetime(2016, 12, 6, 20, 0), 5321823],
   [datetime.datetime(2016, 12, 7, 0, 0), 5321830],
   [datetime.datetime(2016, 12, 7, 4, 0), 5321830],
   [datetime.datetime(2016, 12, 7, 8, 0), 5321869],
   [datetime.datetime(2016, 12, 7, 12, 0), 5321914],
   [datetime.datetime(2016, 12, 7, 16, 0), 5321938],
   [datetime.datetime(2016, 12, 7, 20, 0), 5321959],
   [datetime.datetime(2016, 12, 8, 0, 0), 5321963],
   [datetime.datetime(2016, 12, 8, 4, 0), 5321963],
   [datetime.datetime(2016, 12, 8, 8, 0), 5321985],
   [datetime.datetime(2016, 12, 8, 12, 0), 5322076],
   [datetime.datetime(2016, 12, 8, 16, 0), 5322128],
   [datetime.datetime(2016, 12, 8, 20, 0), 5322142],
   [datetime.datetime(2016, 12, 9, 0, 0), 5322146],
   [datetime.datetime(2016, 12, 9, 4, 0), 5322146],
   [datetime.datetime(2016, 12, 9, 8, 0), 5322176],
   [datetime.datetime(2016, 12, 9, 12, 0), 5322216],
   [datetime.datetime(2016, 12, 9, 16, 0), 5322251],
   [datetime.datetime(2016, 12, 9, 20, 0), 5322274]]),
 (('A050', 'R088', '00-05-00', 'CORTLANDT ST'),
  [[datetime.datetime(2016, 12, 3, 0, 0), 54159],
   [datetime.datetime(2016, 12, 3, 4, 0), 54159],
   [datetime.datetime(2016, 12, 3, 8, 0), 54159],
   [datetime.datetime(2016, 12, 3, 12, 0), 54159],
   [datetime.datetime(2016, 12, 3, 16, 0), 54159],
   [datetime.datetime(2016, 12, 3, 20, 0), 54159],
   [datetime.datetime(2016, 12, 4, 0, 0), 54159],
   [datetime.datetime(2016, 12, 4, 4, 0), 54159],
   [datetime.datetime(2016, 12, 4, 8, 0), 54159],
   [datetime.datetime(2016, 12, 4, 16, 0), 54159],
   [datetime.datetime(2016, 12, 4, 20, 0), 54159],
   [datetime.datetime(2016, 12, 5, 0, 0), 54159],
   [datetime.datetime(2016, 12, 5, 4, 0), 54159],
   [datetime.datetime(2016, 12, 5, 8, 0), 54159],
   [datetime.datetime(2016, 12, 5, 12, 0), 54160],
   [datetime.datetime(2016, 12, 5, 16, 0), 54188],
   [datetime.datetime(2016, 12, 5, 20, 0), 54221],
   [datetime.datetime(2016, 12, 6, 0, 0), 54221],
   [datetime.datetime(2016, 12, 6, 4, 0), 54221],
   [datetime.datetime(2016, 12, 6, 8, 0), 54221],
   [datetime.datetime(2016, 12, 6, 12, 0), 54223],
   [datetime.datetime(2016, 12, 6, 16, 0), 54242],
   [datetime.datetime(2016, 12, 6, 20, 0), 54279],
   [datetime.datetime(2016, 12, 7, 0, 0), 54279],
   [datetime.datetime(2016, 12, 7, 4, 0), 54279],
   [datetime.datetime(2016, 12, 7, 8, 0), 54279],
   [datetime.datetime(2016, 12, 7, 12, 0), 54286],
   [datetime.datetime(2016, 12, 7, 16, 0), 54308],
   [datetime.datetime(2016, 12, 7, 20, 0), 54341],
   [datetime.datetime(2016, 12, 8, 0, 0), 54341],
   [datetime.datetime(2016, 12, 8, 4, 0), 54341],
   [datetime.datetime(2016, 12, 8, 8, 0), 54341],
   [datetime.datetime(2016, 12, 8, 12, 0), 54349],
   [datetime.datetime(2016, 12, 8, 16, 0), 54366],
   [datetime.datetime(2016, 12, 8, 20, 0), 54398],
   [datetime.datetime(2016, 12, 9, 0, 0), 54398],
   [datetime.datetime(2016, 12, 9, 4, 0), 54398],
   [datetime.datetime(2016, 12, 9, 8, 0), 54398],
   [datetime.datetime(2016, 12, 9, 12, 0), 54403],
   [datetime.datetime(2016, 12, 9, 16, 0), 54421],
   [datetime.datetime(2016, 12, 9, 20, 0), 54453]])]

Exercise 3

  • These counts are cumulative every n hours. We want total daily entries.

Now make it that we again have the same keys, but now we 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 [8]:
from itertools import groupby
from operator import itemgetter

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 = []
    # I can define a function WITHIN another function. It will only
    # be defined within the scope of the mother function
    def day_of_timestamp(time_series_entry):
        timestamp, tot_entries = time_series_entry
        # the .date() method of a datetime object returns the day
        #(as another datetime object)
        return timestamp.date()
    # groupby() requires data to be sorted. It is sorted already here,
    # but if it wasn't, we would have to sort it first
    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 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 but if not you would want to sort
    # the dates first before retiurning it
    return combined_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_full_time_series = combine_multiple_weeks_into_single_high_res_timeseries(weekly_time_series)
turnstile_to_daily_time_series = convert_turnstile_to_high_res_time_series_to_daily(turnstile_to_full_time_series)


Processing turnstile ('R250', 'R179', '00-00-03', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24129
WARNING. Abnormal entry count found on day 2016-12-03: -24129
WARNING. Abnormal entry count found on day 2016-12-10: -24903
WARNING. Abnormal entry count found on day 2016-12-10: -24903
WARNING. Abnormal entry count found on day 2016-12-17: -21482
WARNING. Abnormal entry count found on day 2016-12-17: -21482
WARNING. Abnormal entry count found on day 2016-12-24: -15391
WARNING. Abnormal entry count found on day 2016-12-24: -15391
Processing turnstile ('D009', 'R393', '00-00-01', '20 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -781
WARNING. Abnormal entry count found on day 2016-12-03: -781
WARNING. Abnormal entry count found on day 2016-12-10: -773
WARNING. Abnormal entry count found on day 2016-12-10: -773
WARNING. Abnormal entry count found on day 2016-12-17: -745
WARNING. Abnormal entry count found on day 2016-12-17: -745
WARNING. Abnormal entry count found on day 2016-12-24: -475
WARNING. Abnormal entry count found on day 2016-12-24: -475
Processing turnstile ('A050', 'R088', '00-05-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -294
WARNING. Abnormal entry count found on day 2016-12-03: -294
WARNING. Abnormal entry count found on day 2016-12-10: -251
WARNING. Abnormal entry count found on day 2016-12-10: -251
WARNING. Abnormal entry count found on day 2016-12-17: -302
WARNING. Abnormal entry count found on day 2016-12-17: -302
WARNING. Abnormal entry count found on day 2016-12-24: -380
WARNING. Abnormal entry count found on day 2016-12-24: -380
Processing turnstile ('N044', 'R187', '00-00-00', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -16021
WARNING. Abnormal entry count found on day 2016-12-03: -16021
WARNING. Abnormal entry count found on day 2016-12-10: -14683
WARNING. Abnormal entry count found on day 2016-12-10: -14683
WARNING. Abnormal entry count found on day 2016-12-17: -14486
WARNING. Abnormal entry count found on day 2016-12-17: -14486
WARNING. Abnormal entry count found on day 2016-12-24: -13395
WARNING. Abnormal entry count found on day 2016-12-24: -13395
Processing turnstile ('PTH07', 'R550', '00-01-01', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -1513
WARNING. Abnormal entry count found on day 2016-12-03: -1513
WARNING. Abnormal entry count found on day 2016-12-10: -1596
WARNING. Abnormal entry count found on day 2016-12-10: -1596
WARNING. Abnormal entry count found on day 2016-12-17: -1368
WARNING. Abnormal entry count found on day 2016-12-17: -1368
WARNING. Abnormal entry count found on day 2016-12-24: -891
WARNING. Abnormal entry count found on day 2016-12-24: -891
Processing turnstile ('R412', 'R146', '00-00-01', 'HUNTS POINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11802
WARNING. Abnormal entry count found on day 2016-12-03: -11802
WARNING. Abnormal entry count found on day 2016-12-10: -10675
WARNING. Abnormal entry count found on day 2016-12-10: -10675
WARNING. Abnormal entry count found on day 2016-12-17: -10555
WARNING. Abnormal entry count found on day 2016-12-17: -10555
WARNING. Abnormal entry count found on day 2016-12-24: -8105
WARNING. Abnormal entry count found on day 2016-12-24: -8105
Processing turnstile ('A025', 'R023', '01-00-03', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -19104
WARNING. Abnormal entry count found on day 2016-12-03: -19104
WARNING. Abnormal entry count found on day 2016-12-10: -20490
WARNING. Abnormal entry count found on day 2016-12-10: -20490
WARNING. Abnormal entry count found on day 2016-12-17: -19727
WARNING. Abnormal entry count found on day 2016-12-17: -19727
WARNING. Abnormal entry count found on day 2016-12-24: -16550
WARNING. Abnormal entry count found on day 2016-12-24: -16550
Processing turnstile ('PTH09', 'R548', '00-00-01', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4647
WARNING. Abnormal entry count found on day 2016-12-03: -4647
WARNING. Abnormal entry count found on day 2016-12-10: -9313
WARNING. Abnormal entry count found on day 2016-12-10: -9313
WARNING. Abnormal entry count found on day 2016-12-17: -8551
WARNING. Abnormal entry count found on day 2016-12-17: -8551
WARNING. Abnormal entry count found on day 2016-12-24: -6169
WARNING. Abnormal entry count found on day 2016-12-24: -6169
Processing turnstile ('A058', 'R001', '01-06-02', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -465
WARNING. Abnormal entry count found on day 2016-12-03: -465
WARNING. Abnormal entry count found on day 2016-12-10: -433
WARNING. Abnormal entry count found on day 2016-12-10: -433
WARNING. Abnormal entry count found on day 2016-12-17: -432
WARNING. Abnormal entry count found on day 2016-12-17: -432
WARNING. Abnormal entry count found on day 2016-12-24: -344
WARNING. Abnormal entry count found on day 2016-12-24: -344
Processing turnstile ('R135', 'R031', '01-00-05', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11902
WARNING. Abnormal entry count found on day 2016-12-03: -11902
WARNING. Abnormal entry count found on day 2016-12-10: -12147
WARNING. Abnormal entry count found on day 2016-12-10: -12147
WARNING. Abnormal entry count found on day 2016-12-17: -10076
WARNING. Abnormal entry count found on day 2016-12-17: -10076
WARNING. Abnormal entry count found on day 2016-12-24: -5358
WARNING. Abnormal entry count found on day 2016-12-24: -5358
Processing turnstile ('K024', 'R403', '00-00-00', 'FOREST AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -5290
WARNING. Abnormal entry count found on day 2016-12-03: -5290
WARNING. Abnormal entry count found on day 2016-12-10: -4926
WARNING. Abnormal entry count found on day 2016-12-10: -4926
WARNING. Abnormal entry count found on day 2016-12-17: -4535
WARNING. Abnormal entry count found on day 2016-12-17: -4535
WARNING. Abnormal entry count found on day 2016-12-24: -3200
WARNING. Abnormal entry count found on day 2016-12-24: -3200
Processing turnstile ('A046', 'R463', '00-06-08', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2657
WARNING. Abnormal entry count found on day 2016-12-03: -2657
WARNING. Abnormal entry count found on day 2016-12-10: -2492
WARNING. Abnormal entry count found on day 2016-12-10: -2492
WARNING. Abnormal entry count found on day 2016-12-17: -2694
WARNING. Abnormal entry count found on day 2016-12-17: -2694
WARNING. Abnormal entry count found on day 2016-12-24: -2676
WARNING. Abnormal entry count found on day 2016-12-24: -2676
Processing turnstile ('A030', 'R083', '01-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11730
WARNING. Abnormal entry count found on day 2016-12-03: -11730
WARNING. Abnormal entry count found on day 2016-12-10: -11220
WARNING. Abnormal entry count found on day 2016-12-10: -11220
WARNING. Abnormal entry count found on day 2016-12-17: -10136
WARNING. Abnormal entry count found on day 2016-12-17: -10136
WARNING. Abnormal entry count found on day 2016-12-24: -7069
WARNING. Abnormal entry count found on day 2016-12-24: -7069
Processing turnstile ('R115', 'R029', '00-00-01', 'PARK PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -5862
WARNING. Abnormal entry count found on day 2016-12-03: -5862
WARNING. Abnormal entry count found on day 2016-12-10: -5612
WARNING. Abnormal entry count found on day 2016-12-10: -5612
WARNING. Abnormal entry count found on day 2016-12-17: -5057
WARNING. Abnormal entry count found on day 2016-12-17: -5057
WARNING. Abnormal entry count found on day 2016-12-24: -3733
WARNING. Abnormal entry count found on day 2016-12-24: -3733
Processing turnstile ('A035', 'R170', '00-00-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -5173
WARNING. Abnormal entry count found on day 2016-12-03: -5173
WARNING. Abnormal entry count found on day 2016-12-10: -6449
WARNING. Abnormal entry count found on day 2016-12-10: -6449
WARNING. Abnormal entry count found on day 2016-12-17: -6098
WARNING. Abnormal entry count found on day 2016-12-17: -6098
WARNING. Abnormal entry count found on day 2016-12-24: -3291
WARNING. Abnormal entry count found on day 2016-12-24: -3291
Processing turnstile ('PTH01', 'R549', '00-00-04', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -1434
WARNING. Abnormal entry count found on day 2016-12-03: -1434
WARNING. Abnormal entry count found on day 2016-12-10: -1113
WARNING. Abnormal entry count found on day 2016-12-10: -1113
WARNING. Abnormal entry count found on day 2016-12-17: -1024
WARNING. Abnormal entry count found on day 2016-12-17: -1024
WARNING. Abnormal entry count found on day 2016-12-24: -354
WARNING. Abnormal entry count found on day 2016-12-24: -354
Processing turnstile ('A016', 'R081', '03-00-01', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9987
WARNING. Abnormal entry count found on day 2016-12-03: -9987
WARNING. Abnormal entry count found on day 2016-12-10: -9424
WARNING. Abnormal entry count found on day 2016-12-10: -9424
WARNING. Abnormal entry count found on day 2016-12-17: -9358
WARNING. Abnormal entry count found on day 2016-12-17: -9358
WARNING. Abnormal entry count found on day 2016-12-24: -8930
WARNING. Abnormal entry count found on day 2016-12-24: -8930
Processing turnstile ('R169', 'R168', '01-03-05', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -26547
WARNING. Abnormal entry count found on day 2016-12-03: -26547
WARNING. Abnormal entry count found on day 2016-12-10: -28791
WARNING. Abnormal entry count found on day 2016-12-10: -28791
WARNING. Abnormal entry count found on day 2016-12-17: -31009
WARNING. Abnormal entry count found on day 2016-12-17: -31009
WARNING. Abnormal entry count found on day 2016-12-24: -18057
WARNING. Abnormal entry count found on day 2016-12-24: -18057
Processing turnstile ('N340A', 'R115', '01-00-00', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2268
WARNING. Abnormal entry count found on day 2016-12-03: -2268
WARNING. Abnormal entry count found on day 2016-12-10: -2258
WARNING. Abnormal entry count found on day 2016-12-10: -2258
WARNING. Abnormal entry count found on day 2016-12-17: -2167
WARNING. Abnormal entry count found on day 2016-12-17: -2167
WARNING. Abnormal entry count found on day 2016-12-24: -1499
WARNING. Abnormal entry count found on day 2016-12-24: -1499
Processing turnstile ('PTH20', 'R549', '03-01-01', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -181
WARNING. Abnormal entry count found on day 2016-12-03: -181
WARNING. Abnormal entry count found on day 2016-12-10: -74
WARNING. Abnormal entry count found on day 2016-12-10: -74
WARNING. Abnormal entry count found on day 2016-12-17: -177
WARNING. Abnormal entry count found on day 2016-12-17: -177
WARNING. Abnormal entry count found on day 2016-12-24: -216
WARNING. Abnormal entry count found on day 2016-12-24: -216
Processing turnstile ('N528', 'R257', '01-05-01', 'EAST BROADWAY')
Processing turnstile ('A007', 'R079', '01-05-00', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-24: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
Processing turnstile ('N508', 'R453', '00-00-03', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15789
WARNING. Abnormal entry count found on day 2016-12-03: -15789
WARNING. Abnormal entry count found on day 2016-12-10: -15966
WARNING. Abnormal entry count found on day 2016-12-10: -15966
WARNING. Abnormal entry count found on day 2016-12-17: -14102
WARNING. Abnormal entry count found on day 2016-12-17: -14102
WARNING. Abnormal entry count found on day 2016-12-24: -8790
WARNING. Abnormal entry count found on day 2016-12-24: -8790
Processing turnstile ('N422', 'R318', '00-05-01', 'FULTON ST')
Processing turnstile ('N117', 'R198', '01-00-02', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9122
WARNING. Abnormal entry count found on day 2016-12-03: -9122
WARNING. Abnormal entry count found on day 2016-12-10: -8390
WARNING. Abnormal entry count found on day 2016-12-10: -8390
WARNING. Abnormal entry count found on day 2016-12-17: -8196
WARNING. Abnormal entry count found on day 2016-12-17: -8196
WARNING. Abnormal entry count found on day 2016-12-24: -6356
WARNING. Abnormal entry count found on day 2016-12-24: -6356
Processing turnstile ('JFK02', 'R535', '01-00-04', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -806
WARNING. Abnormal entry count found on day 2016-12-03: -806
WARNING. Abnormal entry count found on day 2016-12-10: -719
WARNING. Abnormal entry count found on day 2016-12-10: -719
WARNING. Abnormal entry count found on day 2016-12-17: -937
WARNING. Abnormal entry count found on day 2016-12-17: -937
WARNING. Abnormal entry count found on day 2016-12-24: -1316
WARNING. Abnormal entry count found on day 2016-12-24: -1316
Processing turnstile ('R626', 'R062', '00-00-04', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -9090
WARNING. Abnormal entry count found on day 2016-12-03: -9090
WARNING. Abnormal entry count found on day 2016-12-10: -9038
WARNING. Abnormal entry count found on day 2016-12-10: -9038
WARNING. Abnormal entry count found on day 2016-12-17: -8781
WARNING. Abnormal entry count found on day 2016-12-17: -8781
WARNING. Abnormal entry count found on day 2016-12-24: -7347
WARNING. Abnormal entry count found on day 2016-12-24: -7347
Processing turnstile ('N509', 'R203', '00-00-03', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18772
WARNING. Abnormal entry count found on day 2016-12-03: -18772
WARNING. Abnormal entry count found on day 2016-12-10: -18719
WARNING. Abnormal entry count found on day 2016-12-10: -18719
WARNING. Abnormal entry count found on day 2016-12-17: -17027
WARNING. Abnormal entry count found on day 2016-12-17: -17027
WARNING. Abnormal entry count found on day 2016-12-24: -11048
WARNING. Abnormal entry count found on day 2016-12-24: -11048
Processing turnstile ('R619', 'R059', '00-00-00', 'GRAND ARMY PLAZ')
WARNING. Abnormal entry count found on day 2016-12-03: -13650
WARNING. Abnormal entry count found on day 2016-12-03: -13650
WARNING. Abnormal entry count found on day 2016-12-10: -13357
WARNING. Abnormal entry count found on day 2016-12-10: -13357
WARNING. Abnormal entry count found on day 2016-12-17: -11590
WARNING. Abnormal entry count found on day 2016-12-17: -11590
WARNING. Abnormal entry count found on day 2016-12-24: -7459
WARNING. Abnormal entry count found on day 2016-12-24: -7459
Processing turnstile ('R621', 'R060', '00-03-01', 'EASTN PKWY-MUSM')
WARNING. Abnormal entry count found on day 2016-12-03: -3363
WARNING. Abnormal entry count found on day 2016-12-03: -3363
WARNING. Abnormal entry count found on day 2016-12-10: -3454
WARNING. Abnormal entry count found on day 2016-12-10: -3454
WARNING. Abnormal entry count found on day 2016-12-17: -3261
WARNING. Abnormal entry count found on day 2016-12-17: -3261
WARNING. Abnormal entry count found on day 2016-12-24: -2365
WARNING. Abnormal entry count found on day 2016-12-24: -2365
Processing turnstile ('N111', 'R284', '00-06-01', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-04: -803
WARNING. Abnormal entry count found on day 2016-12-05: -586
WARNING. Abnormal entry count found on day 2016-12-06: -1195
WARNING. Abnormal entry count found on day 2016-12-07: -1137
WARNING. Abnormal entry count found on day 2016-12-08: -1304
WARNING. Abnormal entry count found on day 2016-12-09: -1310
WARNING. Abnormal entry count found on day 2016-12-04: -803
WARNING. Abnormal entry count found on day 2016-12-05: -586
WARNING. Abnormal entry count found on day 2016-12-06: -1195
WARNING. Abnormal entry count found on day 2016-12-07: -1137
WARNING. Abnormal entry count found on day 2016-12-08: -1304
WARNING. Abnormal entry count found on day 2016-12-09: -1310
WARNING. Abnormal entry count found on day 2016-12-04: -803
WARNING. Abnormal entry count found on day 2016-12-05: -586
WARNING. Abnormal entry count found on day 2016-12-06: -1195
WARNING. Abnormal entry count found on day 2016-12-07: -1137
WARNING. Abnormal entry count found on day 2016-12-08: -1304
WARNING. Abnormal entry count found on day 2016-12-09: -1310
WARNING. Abnormal entry count found on day 2016-12-10: -1621
WARNING. Abnormal entry count found on day 2016-12-11: -916
WARNING. Abnormal entry count found on day 2016-12-12: -624
WARNING. Abnormal entry count found on day 2016-12-13: -1276
WARNING. Abnormal entry count found on day 2016-12-14: -1848
WARNING. Abnormal entry count found on day 2016-12-15: -1478
WARNING. Abnormal entry count found on day 2016-12-16: -1429
WARNING. Abnormal entry count found on day 2016-12-11: -916
WARNING. Abnormal entry count found on day 2016-12-12: -624
WARNING. Abnormal entry count found on day 2016-12-13: -1276
WARNING. Abnormal entry count found on day 2016-12-14: -1848
WARNING. Abnormal entry count found on day 2016-12-15: -1478
WARNING. Abnormal entry count found on day 2016-12-16: -1429
WARNING. Abnormal entry count found on day 2016-12-11: -916
WARNING. Abnormal entry count found on day 2016-12-12: -624
WARNING. Abnormal entry count found on day 2016-12-13: -1276
WARNING. Abnormal entry count found on day 2016-12-14: -1848
WARNING. Abnormal entry count found on day 2016-12-15: -1478
WARNING. Abnormal entry count found on day 2016-12-16: -1429
WARNING. Abnormal entry count found on day 2016-12-17: -1499
WARNING. Abnormal entry count found on day 2016-12-18: -774
WARNING. Abnormal entry count found on day 2016-12-19: -637
WARNING. Abnormal entry count found on day 2016-12-20: -2070
WARNING. Abnormal entry count found on day 2016-12-21: -1210
WARNING. Abnormal entry count found on day 2016-12-22: -1107
WARNING. Abnormal entry count found on day 2016-12-23: -999
WARNING. Abnormal entry count found on day 2016-12-18: -774
WARNING. Abnormal entry count found on day 2016-12-19: -637
WARNING. Abnormal entry count found on day 2016-12-20: -2070
WARNING. Abnormal entry count found on day 2016-12-21: -1210
WARNING. Abnormal entry count found on day 2016-12-22: -1107
WARNING. Abnormal entry count found on day 2016-12-23: -999
WARNING. Abnormal entry count found on day 2016-12-18: -774
WARNING. Abnormal entry count found on day 2016-12-19: -637
WARNING. Abnormal entry count found on day 2016-12-20: -2070
WARNING. Abnormal entry count found on day 2016-12-21: -1210
WARNING. Abnormal entry count found on day 2016-12-22: -1107
WARNING. Abnormal entry count found on day 2016-12-23: -999
WARNING. Abnormal entry count found on day 2016-12-24: -817
WARNING. Abnormal entry count found on day 2016-12-25: -441
WARNING. Abnormal entry count found on day 2016-12-26: -239
WARNING. Abnormal entry count found on day 2016-12-27: -381
WARNING. Abnormal entry count found on day 2016-12-28: -708
WARNING. Abnormal entry count found on day 2016-12-29: -802
WARNING. Abnormal entry count found on day 2016-12-30: -806
WARNING. Abnormal entry count found on day 2016-12-25: -441
WARNING. Abnormal entry count found on day 2016-12-26: -239
WARNING. Abnormal entry count found on day 2016-12-27: -381
WARNING. Abnormal entry count found on day 2016-12-28: -708
WARNING. Abnormal entry count found on day 2016-12-29: -802
WARNING. Abnormal entry count found on day 2016-12-30: -806
WARNING. Abnormal entry count found on day 2016-12-25: -441
WARNING. Abnormal entry count found on day 2016-12-26: -239
WARNING. Abnormal entry count found on day 2016-12-27: -381
WARNING. Abnormal entry count found on day 2016-12-28: -708
WARNING. Abnormal entry count found on day 2016-12-29: -802
WARNING. Abnormal entry count found on day 2016-12-30: -806
Processing turnstile ('R220', 'R160', '01-03-01', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -4693
WARNING. Abnormal entry count found on day 2016-12-03: -4693
WARNING. Abnormal entry count found on day 2016-12-10: -4891
WARNING. Abnormal entry count found on day 2016-12-10: -4891
WARNING. Abnormal entry count found on day 2016-12-17: -4315
WARNING. Abnormal entry count found on day 2016-12-17: -4315
WARNING. Abnormal entry count found on day 2016-12-24: -3121
WARNING. Abnormal entry count found on day 2016-12-24: -3121
Processing turnstile ('N519A', 'R461', '01-01-03', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -11384
WARNING. Abnormal entry count found on day 2016-12-03: -11384
WARNING. Abnormal entry count found on day 2016-12-10: -11775
WARNING. Abnormal entry count found on day 2016-12-10: -11775
WARNING. Abnormal entry count found on day 2016-12-17: -11687
WARNING. Abnormal entry count found on day 2016-12-17: -11687
WARNING. Abnormal entry count found on day 2016-12-24: -8544
WARNING. Abnormal entry count found on day 2016-12-24: -8544
Processing turnstile ('R532H', 'R328', '02-00-02', 'METS-WILLETS PT')
Processing turnstile ('N203', 'R195', '00-03-03', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-24: -712
WARNING. Abnormal entry count found on day 2016-12-24: -712
Processing turnstile ('R243', 'R049', '00-03-01', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6748
WARNING. Abnormal entry count found on day 2016-12-03: -6748
WARNING. Abnormal entry count found on day 2016-12-10: -6715
WARNING. Abnormal entry count found on day 2016-12-10: -6715
WARNING. Abnormal entry count found on day 2016-12-17: -6232
WARNING. Abnormal entry count found on day 2016-12-17: -6232
WARNING. Abnormal entry count found on day 2016-12-24: -5491
WARNING. Abnormal entry count found on day 2016-12-24: -5491
Processing turnstile ('R232', 'R176', '02-00-01', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6684
WARNING. Abnormal entry count found on day 2016-12-03: -6684
WARNING. Abnormal entry count found on day 2016-12-10: -6775
WARNING. Abnormal entry count found on day 2016-12-10: -6775
WARNING. Abnormal entry count found on day 2016-12-17: -6264
WARNING. Abnormal entry count found on day 2016-12-17: -6264
WARNING. Abnormal entry count found on day 2016-12-24: -4283
WARNING. Abnormal entry count found on day 2016-12-24: -4283
Processing turnstile ('R101', 'R001', '02-00-05', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -4129
WARNING. Abnormal entry count found on day 2016-12-03: -4129
WARNING. Abnormal entry count found on day 2016-12-10: -4111
WARNING. Abnormal entry count found on day 2016-12-10: -4111
WARNING. Abnormal entry count found on day 2016-12-17: -3945
WARNING. Abnormal entry count found on day 2016-12-17: -3945
WARNING. Abnormal entry count found on day 2016-12-24: -4234
WARNING. Abnormal entry count found on day 2016-12-24: -4234
Processing turnstile ('R403', 'R446', '01-00-01', 'BROOK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1807
WARNING. Abnormal entry count found on day 2016-12-03: -1807
WARNING. Abnormal entry count found on day 2016-12-10: -1752
WARNING. Abnormal entry count found on day 2016-12-10: -1752
WARNING. Abnormal entry count found on day 2016-12-17: -1806
WARNING. Abnormal entry count found on day 2016-12-17: -1806
WARNING. Abnormal entry count found on day 2016-12-24: -1336
WARNING. Abnormal entry count found on day 2016-12-24: -1336
Processing turnstile ('N507', 'R023', '00-03-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -2483
WARNING. Abnormal entry count found on day 2016-12-03: -2483
WARNING. Abnormal entry count found on day 2016-12-10: -1932
WARNING. Abnormal entry count found on day 2016-12-10: -1932
WARNING. Abnormal entry count found on day 2016-12-17: -633
WARNING. Abnormal entry count found on day 2016-12-17: -633
WARNING. Abnormal entry count found on day 2016-12-24: -848
WARNING. Abnormal entry count found on day 2016-12-24: -848
Processing turnstile ('R159', 'R164', '01-05-01', '66 ST-LINCOLN')
Processing turnstile ('N208', 'R443', '01-00-00', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5438
WARNING. Abnormal entry count found on day 2016-12-03: -5438
WARNING. Abnormal entry count found on day 2016-12-10: -5424
WARNING. Abnormal entry count found on day 2016-12-10: -5424
WARNING. Abnormal entry count found on day 2016-12-17: -5687
WARNING. Abnormal entry count found on day 2016-12-17: -5687
WARNING. Abnormal entry count found on day 2016-12-24: -4908
WARNING. Abnormal entry count found on day 2016-12-24: -4908
Processing turnstile ('R323', 'R387', '00-05-00', 'WEST FARMS SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('N123B', 'R439', '01-06-00', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4720
WARNING. Abnormal entry count found on day 2016-12-03: -4720
WARNING. Abnormal entry count found on day 2016-12-10: -4267
WARNING. Abnormal entry count found on day 2016-12-10: -4267
WARNING. Abnormal entry count found on day 2016-12-17: -4064
WARNING. Abnormal entry count found on day 2016-12-17: -4064
WARNING. Abnormal entry count found on day 2016-12-24: -3381
WARNING. Abnormal entry count found on day 2016-12-24: -3381
Processing turnstile ('N013', 'R035', '02-00-01', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6189
WARNING. Abnormal entry count found on day 2016-12-03: -6189
WARNING. Abnormal entry count found on day 2016-12-10: -6096
WARNING. Abnormal entry count found on day 2016-12-10: -6096
WARNING. Abnormal entry count found on day 2016-12-17: -5938
WARNING. Abnormal entry count found on day 2016-12-17: -5938
WARNING. Abnormal entry count found on day 2016-12-24: -4258
WARNING. Abnormal entry count found on day 2016-12-24: -4258
Processing turnstile ('H032', 'R295', '00-05-01', 'WILSON AV')
Processing turnstile ('N541', 'R241', '01-05-01', '15 ST-PROSPECT')
Processing turnstile ('R206', 'R014', '02-00-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4538
WARNING. Abnormal entry count found on day 2016-12-03: -4538
WARNING. Abnormal entry count found on day 2016-12-10: -4504
WARNING. Abnormal entry count found on day 2016-12-10: -4504
WARNING. Abnormal entry count found on day 2016-12-17: -4560
WARNING. Abnormal entry count found on day 2016-12-17: -4560
WARNING. Abnormal entry count found on day 2016-12-24: -4132
WARNING. Abnormal entry count found on day 2016-12-24: -4132
Processing turnstile ('PTH01', 'R549', '00-00-09', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -5145
WARNING. Abnormal entry count found on day 2016-12-03: -5145
WARNING. Abnormal entry count found on day 2016-12-10: -4866
WARNING. Abnormal entry count found on day 2016-12-10: -4866
WARNING. Abnormal entry count found on day 2016-12-17: -3622
WARNING. Abnormal entry count found on day 2016-12-17: -3622
WARNING. Abnormal entry count found on day 2016-12-24: -3541
WARNING. Abnormal entry count found on day 2016-12-24: -3541
Processing turnstile ('A021', 'R032', '01-00-05', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4521
WARNING. Abnormal entry count found on day 2016-12-03: -4521
WARNING. Abnormal entry count found on day 2016-12-10: -4778
WARNING. Abnormal entry count found on day 2016-12-10: -4778
WARNING. Abnormal entry count found on day 2016-12-17: -4163
WARNING. Abnormal entry count found on day 2016-12-17: -4163
WARNING. Abnormal entry count found on day 2016-12-24: -2746
WARNING. Abnormal entry count found on day 2016-12-24: -2746
Processing turnstile ('N012', 'R035', '01-06-03', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -23396
WARNING. Abnormal entry count found on day 2016-12-03: -23396
WARNING. Abnormal entry count found on day 2016-12-10: -23163
WARNING. Abnormal entry count found on day 2016-12-10: -23163
WARNING. Abnormal entry count found on day 2016-12-17: -21549
WARNING. Abnormal entry count found on day 2016-12-17: -21549
WARNING. Abnormal entry count found on day 2016-12-24: -16655
WARNING. Abnormal entry count found on day 2016-12-24: -16655
Processing turnstile ('R510', 'R090', '00-00-02', '39 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3846
WARNING. Abnormal entry count found on day 2016-12-03: -3846
WARNING. Abnormal entry count found on day 2016-12-10: -3267
WARNING. Abnormal entry count found on day 2016-12-10: -3267
WARNING. Abnormal entry count found on day 2016-12-17: -3076
WARNING. Abnormal entry count found on day 2016-12-17: -3076
WARNING. Abnormal entry count found on day 2016-12-24: -3002
WARNING. Abnormal entry count found on day 2016-12-24: -3002
Processing turnstile ('N300', 'R113', '01-00-00', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3723
WARNING. Abnormal entry count found on day 2016-12-03: -3723
WARNING. Abnormal entry count found on day 2016-12-10: -4002
WARNING. Abnormal entry count found on day 2016-12-10: -4002
WARNING. Abnormal entry count found on day 2016-12-17: -3326
WARNING. Abnormal entry count found on day 2016-12-17: -3326
WARNING. Abnormal entry count found on day 2016-12-24: -2776
WARNING. Abnormal entry count found on day 2016-12-24: -2776
Processing turnstile ('C025', 'R215', '00-00-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13936
WARNING. Abnormal entry count found on day 2016-12-03: -13936
WARNING. Abnormal entry count found on day 2016-12-10: -13128
WARNING. Abnormal entry count found on day 2016-12-10: -13128
WARNING. Abnormal entry count found on day 2016-12-17: -12984
WARNING. Abnormal entry count found on day 2016-12-17: -12984
WARNING. Abnormal entry count found on day 2016-12-24: -10085
WARNING. Abnormal entry count found on day 2016-12-24: -10085
Processing turnstile ('R206', 'R014', '02-00-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6397
WARNING. Abnormal entry count found on day 2016-12-03: -6397
WARNING. Abnormal entry count found on day 2016-12-10: -6267
WARNING. Abnormal entry count found on day 2016-12-10: -6267
WARNING. Abnormal entry count found on day 2016-12-17: -6258
WARNING. Abnormal entry count found on day 2016-12-17: -6258
WARNING. Abnormal entry count found on day 2016-12-24: -5520
WARNING. Abnormal entry count found on day 2016-12-24: -5520
Processing turnstile ('R238A', 'R046', '02-00-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12225
WARNING. Abnormal entry count found on day 2016-12-03: -12225
WARNING. Abnormal entry count found on day 2016-12-10: -13386
WARNING. Abnormal entry count found on day 2016-12-10: -13386
WARNING. Abnormal entry count found on day 2016-12-17: -12365
WARNING. Abnormal entry count found on day 2016-12-17: -12365
WARNING. Abnormal entry count found on day 2016-12-24: -9566
WARNING. Abnormal entry count found on day 2016-12-24: -9566
Processing turnstile ('R626', 'R062', '00-03-03', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -22817
WARNING. Abnormal entry count found on day 2016-12-03: -22817
WARNING. Abnormal entry count found on day 2016-12-10: -22022
WARNING. Abnormal entry count found on day 2016-12-10: -22022
WARNING. Abnormal entry count found on day 2016-12-17: -21648
WARNING. Abnormal entry count found on day 2016-12-17: -21648
WARNING. Abnormal entry count found on day 2016-12-24: -16392
WARNING. Abnormal entry count found on day 2016-12-24: -16392
Processing turnstile ('N062A', 'R010', '00-05-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -14460
WARNING. Abnormal entry count found on day 2016-12-03: -14460
WARNING. Abnormal entry count found on day 2016-12-10: -13846
WARNING. Abnormal entry count found on day 2016-12-10: -13846
WARNING. Abnormal entry count found on day 2016-12-17: -12540
WARNING. Abnormal entry count found on day 2016-12-17: -12540
WARNING. Abnormal entry count found on day 2016-12-24: -9826
WARNING. Abnormal entry count found on day 2016-12-24: -9826
Processing turnstile ('R515', 'R095', '00-00-02', 'ASTORIA DITMARS')
WARNING. Abnormal entry count found on day 2016-12-03: -10449
WARNING. Abnormal entry count found on day 2016-12-03: -10449
WARNING. Abnormal entry count found on day 2016-12-10: -10366
WARNING. Abnormal entry count found on day 2016-12-10: -10366
WARNING. Abnormal entry count found on day 2016-12-17: -9893
WARNING. Abnormal entry count found on day 2016-12-17: -9893
WARNING. Abnormal entry count found on day 2016-12-24: -6961
WARNING. Abnormal entry count found on day 2016-12-24: -6961
Processing turnstile ('N601', 'R319', '00-00-02', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-03: -16554
WARNING. Abnormal entry count found on day 2016-12-03: -16554
WARNING. Abnormal entry count found on day 2016-12-10: -15366
WARNING. Abnormal entry count found on day 2016-12-10: -15366
WARNING. Abnormal entry count found on day 2016-12-17: -13204
WARNING. Abnormal entry count found on day 2016-12-17: -13204
WARNING. Abnormal entry count found on day 2016-12-24: -10120
WARNING. Abnormal entry count found on day 2016-12-24: -10120
Processing turnstile ('TRAM1', 'R468', '00-00-01', 'RIT-MANHATTAN')
WARNING. Abnormal entry count found on day 2016-12-03: -11094
WARNING. Abnormal entry count found on day 2016-12-03: -11094
WARNING. Abnormal entry count found on day 2016-12-10: -10008
WARNING. Abnormal entry count found on day 2016-12-10: -10008
WARNING. Abnormal entry count found on day 2016-12-17: -10561
WARNING. Abnormal entry count found on day 2016-12-17: -10561
WARNING. Abnormal entry count found on day 2016-12-24: -10157
WARNING. Abnormal entry count found on day 2016-12-24: -10157
Processing turnstile ('A041', 'R086', '00-00-01', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13920
WARNING. Abnormal entry count found on day 2016-12-03: -13920
WARNING. Abnormal entry count found on day 2016-12-10: -14164
WARNING. Abnormal entry count found on day 2016-12-10: -14164
WARNING. Abnormal entry count found on day 2016-12-17: -15210
WARNING. Abnormal entry count found on day 2016-12-17: -15210
WARNING. Abnormal entry count found on day 2016-12-24: -12868
WARNING. Abnormal entry count found on day 2016-12-24: -12868
Processing turnstile ('A027', 'R082', '01-03-02', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7888
WARNING. Abnormal entry count found on day 2016-12-03: -7888
WARNING. Abnormal entry count found on day 2016-12-10: -7861
WARNING. Abnormal entry count found on day 2016-12-10: -7861
WARNING. Abnormal entry count found on day 2016-12-17: -7052
WARNING. Abnormal entry count found on day 2016-12-17: -7052
WARNING. Abnormal entry count found on day 2016-12-24: -5327
WARNING. Abnormal entry count found on day 2016-12-24: -5327
Processing turnstile ('A050', 'R088', '00-06-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4262
WARNING. Abnormal entry count found on day 2016-12-03: -4262
WARNING. Abnormal entry count found on day 2016-12-10: -4062
WARNING. Abnormal entry count found on day 2016-12-10: -4062
WARNING. Abnormal entry count found on day 2016-12-17: -3234
WARNING. Abnormal entry count found on day 2016-12-17: -3234
WARNING. Abnormal entry count found on day 2016-12-24: -5282
WARNING. Abnormal entry count found on day 2016-12-24: -5282
Processing turnstile ('R240', 'R047', '00-03-07', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -32385
WARNING. Abnormal entry count found on day 2016-12-03: -32385
WARNING. Abnormal entry count found on day 2016-12-10: -33007
WARNING. Abnormal entry count found on day 2016-12-10: -33007
WARNING. Abnormal entry count found on day 2016-12-17: -29189
WARNING. Abnormal entry count found on day 2016-12-17: -29189
WARNING. Abnormal entry count found on day 2016-12-24: -17792
WARNING. Abnormal entry count found on day 2016-12-24: -17792
Processing turnstile ('N541', 'R241', '01-06-03', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -443
WARNING. Abnormal entry count found on day 2016-12-03: -443
WARNING. Abnormal entry count found on day 2016-12-10: -861
WARNING. Abnormal entry count found on day 2016-12-10: -861
WARNING. Abnormal entry count found on day 2016-12-17: -661
WARNING. Abnormal entry count found on day 2016-12-17: -661
WARNING. Abnormal entry count found on day 2016-12-24: -326
WARNING. Abnormal entry count found on day 2016-12-24: -326
Processing turnstile ('R238', 'R046', '00-05-01', 'GRD CNTRL-42 ST')
Processing turnstile ('N551', 'R421', '00-00-02', 'AVENUE I')
WARNING. Abnormal entry count found on day 2016-12-03: -556
WARNING. Abnormal entry count found on day 2016-12-03: -556
WARNING. Abnormal entry count found on day 2016-12-10: -566
WARNING. Abnormal entry count found on day 2016-12-10: -566
WARNING. Abnormal entry count found on day 2016-12-17: -651
WARNING. Abnormal entry count found on day 2016-12-17: -651
WARNING. Abnormal entry count found on day 2016-12-24: -393
WARNING. Abnormal entry count found on day 2016-12-24: -393
Processing turnstile ('C024', 'R214', '00-00-01', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7033
WARNING. Abnormal entry count found on day 2016-12-03: -7033
WARNING. Abnormal entry count found on day 2016-12-10: -7013
WARNING. Abnormal entry count found on day 2016-12-10: -7013
WARNING. Abnormal entry count found on day 2016-12-17: -6713
WARNING. Abnormal entry count found on day 2016-12-17: -6713
WARNING. Abnormal entry count found on day 2016-12-24: -4820
WARNING. Abnormal entry count found on day 2016-12-24: -4820
Processing turnstile ('R220', 'R160', '01-03-02', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -9789
WARNING. Abnormal entry count found on day 2016-12-03: -9789
WARNING. Abnormal entry count found on day 2016-12-10: -9371
WARNING. Abnormal entry count found on day 2016-12-10: -9371
WARNING. Abnormal entry count found on day 2016-12-17: -8556
WARNING. Abnormal entry count found on day 2016-12-17: -8556
WARNING. Abnormal entry count found on day 2016-12-24: -5366
WARNING. Abnormal entry count found on day 2016-12-24: -5366
Processing turnstile ('R404', 'R447', '00-00-01', 'CYPRESS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4972
WARNING. Abnormal entry count found on day 2016-12-03: -4972
WARNING. Abnormal entry count found on day 2016-12-10: -5033
WARNING. Abnormal entry count found on day 2016-12-10: -5033
WARNING. Abnormal entry count found on day 2016-12-17: -4729
WARNING. Abnormal entry count found on day 2016-12-17: -4729
WARNING. Abnormal entry count found on day 2016-12-24: -3553
WARNING. Abnormal entry count found on day 2016-12-24: -3553
Processing turnstile ('A077', 'R028', '03-03-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4155
WARNING. Abnormal entry count found on day 2016-12-03: -4155
WARNING. Abnormal entry count found on day 2016-12-10: -3872
WARNING. Abnormal entry count found on day 2016-12-10: -3872
WARNING. Abnormal entry count found on day 2016-12-17: -3658
WARNING. Abnormal entry count found on day 2016-12-17: -3658
WARNING. Abnormal entry count found on day 2016-12-24: -2710
WARNING. Abnormal entry count found on day 2016-12-24: -2710
Processing turnstile ('N095', 'R014', '00-03-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17420
WARNING. Abnormal entry count found on day 2016-12-03: -17420
WARNING. Abnormal entry count found on day 2016-12-10: -17942
WARNING. Abnormal entry count found on day 2016-12-10: -17942
WARNING. Abnormal entry count found on day 2016-12-17: -16150
WARNING. Abnormal entry count found on day 2016-12-17: -16150
WARNING. Abnormal entry count found on day 2016-12-24: -11313
WARNING. Abnormal entry count found on day 2016-12-24: -11313
Processing turnstile ('N098', 'R028', '00-00-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9038
WARNING. Abnormal entry count found on day 2016-12-03: -9038
WARNING. Abnormal entry count found on day 2016-12-10: -8707
WARNING. Abnormal entry count found on day 2016-12-10: -8707
WARNING. Abnormal entry count found on day 2016-12-17: -8110
WARNING. Abnormal entry count found on day 2016-12-17: -8110
WARNING. Abnormal entry count found on day 2016-12-24: -6022
WARNING. Abnormal entry count found on day 2016-12-24: -6022
Processing turnstile ('PTH03', 'R552', '00-00-00', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -1953
WARNING. Abnormal entry count found on day 2016-12-03: -1953
WARNING. Abnormal entry count found on day 2016-12-10: -1788
WARNING. Abnormal entry count found on day 2016-12-10: -1788
WARNING. Abnormal entry count found on day 2016-12-17: -1741
WARNING. Abnormal entry count found on day 2016-12-17: -1741
WARNING. Abnormal entry count found on day 2016-12-24: -1198
WARNING. Abnormal entry count found on day 2016-12-24: -1198
Processing turnstile ('R411', 'R450', '01-00-01', 'LONGWOOD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1272
WARNING. Abnormal entry count found on day 2016-12-03: -1272
WARNING. Abnormal entry count found on day 2016-12-10: -1251
WARNING. Abnormal entry count found on day 2016-12-10: -1251
WARNING. Abnormal entry count found on day 2016-12-17: -1262
WARNING. Abnormal entry count found on day 2016-12-17: -1262
WARNING. Abnormal entry count found on day 2016-12-24: -796
WARNING. Abnormal entry count found on day 2016-12-24: -796
Processing turnstile ('R286', 'R309', '00-00-03', '176 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11256
WARNING. Abnormal entry count found on day 2016-12-03: -11256
WARNING. Abnormal entry count found on day 2016-12-10: -10711
WARNING. Abnormal entry count found on day 2016-12-10: -10711
WARNING. Abnormal entry count found on day 2016-12-17: -10890
WARNING. Abnormal entry count found on day 2016-12-17: -10890
WARNING. Abnormal entry count found on day 2016-12-24: -8570
WARNING. Abnormal entry count found on day 2016-12-24: -8570
Processing turnstile ('R524', 'R347', '00-03-00', '69 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2214
WARNING. Abnormal entry count found on day 2016-12-03: -2214
WARNING. Abnormal entry count found on day 2016-12-10: -2458
WARNING. Abnormal entry count found on day 2016-12-10: -2458
WARNING. Abnormal entry count found on day 2016-12-17: -2470
WARNING. Abnormal entry count found on day 2016-12-17: -2470
WARNING. Abnormal entry count found on day 2016-12-24: -1789
WARNING. Abnormal entry count found on day 2016-12-24: -1789
Processing turnstile ('R601A', 'R108', '02-00-04', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -6069
WARNING. Abnormal entry count found on day 2016-12-03: -6069
WARNING. Abnormal entry count found on day 2016-12-10: -5809
WARNING. Abnormal entry count found on day 2016-12-10: -5809
WARNING. Abnormal entry count found on day 2016-12-17: -4860
WARNING. Abnormal entry count found on day 2016-12-17: -4860
WARNING. Abnormal entry count found on day 2016-12-24: -3185
WARNING. Abnormal entry count found on day 2016-12-24: -3185
Processing turnstile ('R161B', 'R452', '00-05-03', '72 ST')
Processing turnstile ('A043', 'R462', '00-03-03', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3683
WARNING. Abnormal entry count found on day 2016-12-03: -3683
WARNING. Abnormal entry count found on day 2016-12-10: -3735
WARNING. Abnormal entry count found on day 2016-12-10: -3735
WARNING. Abnormal entry count found on day 2016-12-17: -3853
WARNING. Abnormal entry count found on day 2016-12-17: -3853
WARNING. Abnormal entry count found on day 2016-12-24: -4200
WARNING. Abnormal entry count found on day 2016-12-24: -4200
Processing turnstile ('N304', 'R015', '01-06-01', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11619
WARNING. Abnormal entry count found on day 2016-12-03: -11619
WARNING. Abnormal entry count found on day 2016-12-10: -11390
WARNING. Abnormal entry count found on day 2016-12-10: -11390
WARNING. Abnormal entry count found on day 2016-12-17: -7537
WARNING. Abnormal entry count found on day 2016-12-17: -7537
WARNING. Abnormal entry count found on day 2016-12-24: -5659
WARNING. Abnormal entry count found on day 2016-12-24: -5659
Processing turnstile ('R188', 'R037', '00-00-02', '207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12294
WARNING. Abnormal entry count found on day 2016-12-03: -12294
WARNING. Abnormal entry count found on day 2016-12-10: -11838
WARNING. Abnormal entry count found on day 2016-12-10: -11838
WARNING. Abnormal entry count found on day 2016-12-17: -11811
WARNING. Abnormal entry count found on day 2016-12-17: -11811
WARNING. Abnormal entry count found on day 2016-12-24: -9358
WARNING. Abnormal entry count found on day 2016-12-24: -9358
Processing turnstile ('N601', 'R319', '00-05-01', 'LEXINGTON AV/63')
Processing turnstile ('N519', 'R461', '00-00-02', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -15333
WARNING. Abnormal entry count found on day 2016-12-03: -15333
WARNING. Abnormal entry count found on day 2016-12-10: -15697
WARNING. Abnormal entry count found on day 2016-12-10: -15697
WARNING. Abnormal entry count found on day 2016-12-17: -16169
WARNING. Abnormal entry count found on day 2016-12-17: -16169
WARNING. Abnormal entry count found on day 2016-12-24: -11396
WARNING. Abnormal entry count found on day 2016-12-24: -11396
Processing turnstile ('R519', 'R223', '00-00-03', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6481
WARNING. Abnormal entry count found on day 2016-12-03: -6481
WARNING. Abnormal entry count found on day 2016-12-10: -5585
WARNING. Abnormal entry count found on day 2016-12-10: -5585
WARNING. Abnormal entry count found on day 2016-12-17: -5920
WARNING. Abnormal entry count found on day 2016-12-17: -5920
WARNING. Abnormal entry count found on day 2016-12-24: -4698
WARNING. Abnormal entry count found on day 2016-12-24: -4698
Processing turnstile ('N089', 'R139', '00-06-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9205
WARNING. Abnormal entry count found on day 2016-12-03: -9205
WARNING. Abnormal entry count found on day 2016-12-10: -8985
WARNING. Abnormal entry count found on day 2016-12-10: -8985
WARNING. Abnormal entry count found on day 2016-12-17: -7853
WARNING. Abnormal entry count found on day 2016-12-17: -7853
WARNING. Abnormal entry count found on day 2016-12-24: -4974
WARNING. Abnormal entry count found on day 2016-12-24: -4974
Processing turnstile ('E001', 'R368', '00-05-01', '9 AV')
Processing turnstile ('R226', 'R131', '02-03-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8243
WARNING. Abnormal entry count found on day 2016-12-03: -8243
WARNING. Abnormal entry count found on day 2016-12-10: -8050
WARNING. Abnormal entry count found on day 2016-12-10: -8050
WARNING. Abnormal entry count found on day 2016-12-17: -6388
WARNING. Abnormal entry count found on day 2016-12-17: -6388
WARNING. Abnormal entry count found on day 2016-12-24: -3807
WARNING. Abnormal entry count found on day 2016-12-24: -3807
Processing turnstile ('N343', 'R019', '00-00-06', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3016
WARNING. Abnormal entry count found on day 2016-12-03: -3016
WARNING. Abnormal entry count found on day 2016-12-10: -3207
WARNING. Abnormal entry count found on day 2016-12-10: -3207
WARNING. Abnormal entry count found on day 2016-12-17: -3041
WARNING. Abnormal entry count found on day 2016-12-17: -3041
WARNING. Abnormal entry count found on day 2016-12-24: -2020
WARNING. Abnormal entry count found on day 2016-12-24: -2020
Processing turnstile ('R227A', 'R131', '01-06-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1132
WARNING. Abnormal entry count found on day 2016-12-03: -1132
WARNING. Abnormal entry count found on day 2016-12-10: -1161
WARNING. Abnormal entry count found on day 2016-12-10: -1161
WARNING. Abnormal entry count found on day 2016-12-17: -1185
WARNING. Abnormal entry count found on day 2016-12-17: -1185
WARNING. Abnormal entry count found on day 2016-12-24: -523
WARNING. Abnormal entry count found on day 2016-12-24: -523
Processing turnstile ('N508', 'R453', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15212
WARNING. Abnormal entry count found on day 2016-12-03: -15212
WARNING. Abnormal entry count found on day 2016-12-10: -13590
WARNING. Abnormal entry count found on day 2016-12-10: -13590
WARNING. Abnormal entry count found on day 2016-12-17: -12318
WARNING. Abnormal entry count found on day 2016-12-17: -12318
WARNING. Abnormal entry count found on day 2016-12-24: -7237
WARNING. Abnormal entry count found on day 2016-12-24: -7237
Processing turnstile ('N203', 'R195', '00-03-04', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-24: -951
WARNING. Abnormal entry count found on day 2016-12-24: -951
Processing turnstile ('R532H', 'R328', '02-00-03', 'METS-WILLETS PT')
Processing turnstile ('E014', 'R374', '00-00-00', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -15168
WARNING. Abnormal entry count found on day 2016-12-03: -15168
WARNING. Abnormal entry count found on day 2016-12-10: -13353
WARNING. Abnormal entry count found on day 2016-12-10: -13353
WARNING. Abnormal entry count found on day 2016-12-17: -13879
WARNING. Abnormal entry count found on day 2016-12-17: -13879
WARNING. Abnormal entry count found on day 2016-12-24: -12294
WARNING. Abnormal entry count found on day 2016-12-24: -12294
Processing turnstile ('R417', 'R222', '00-03-03', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -1640
WARNING. Abnormal entry count found on day 2016-12-03: -1640
WARNING. Abnormal entry count found on day 2016-12-10: -1546
WARNING. Abnormal entry count found on day 2016-12-10: -1546
WARNING. Abnormal entry count found on day 2016-12-17: -1660
WARNING. Abnormal entry count found on day 2016-12-17: -1660
WARNING. Abnormal entry count found on day 2016-12-24: -1228
WARNING. Abnormal entry count found on day 2016-12-24: -1228
Processing turnstile ('N073', 'R013', '02-00-08', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -1845
WARNING. Abnormal entry count found on day 2016-12-03: -1845
WARNING. Abnormal entry count found on day 2016-12-10: -1762
WARNING. Abnormal entry count found on day 2016-12-10: -1762
WARNING. Abnormal entry count found on day 2016-12-17: -1403
WARNING. Abnormal entry count found on day 2016-12-17: -1403
WARNING. Abnormal entry count found on day 2016-12-24: -1215
WARNING. Abnormal entry count found on day 2016-12-24: -1215
Processing turnstile ('B022', 'R229', '00-00-03', 'AVENUE M')
WARNING. Abnormal entry count found on day 2016-12-03: -6124
WARNING. Abnormal entry count found on day 2016-12-03: -6124
WARNING. Abnormal entry count found on day 2016-12-10: -6170
WARNING. Abnormal entry count found on day 2016-12-10: -6170
WARNING. Abnormal entry count found on day 2016-12-17: -6153
WARNING. Abnormal entry count found on day 2016-12-17: -6153
WARNING. Abnormal entry count found on day 2016-12-24: -4081
WARNING. Abnormal entry count found on day 2016-12-24: -4081
Processing turnstile ('N504', 'R021', '02-06-02', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -8653
WARNING. Abnormal entry count found on day 2016-12-03: -8653
WARNING. Abnormal entry count found on day 2016-12-10: -8478
WARNING. Abnormal entry count found on day 2016-12-10: -8478
WARNING. Abnormal entry count found on day 2016-12-17: -8116
WARNING. Abnormal entry count found on day 2016-12-17: -8116
WARNING. Abnormal entry count found on day 2016-12-24: -5734
WARNING. Abnormal entry count found on day 2016-12-24: -5734
Processing turnstile ('R519', 'R223', '00-03-02', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5741
WARNING. Abnormal entry count found on day 2016-12-03: -5741
WARNING. Abnormal entry count found on day 2016-12-10: -5910
WARNING. Abnormal entry count found on day 2016-12-10: -5910
WARNING. Abnormal entry count found on day 2016-12-17: -5770
WARNING. Abnormal entry count found on day 2016-12-17: -5770
WARNING. Abnormal entry count found on day 2016-12-24: -4440
WARNING. Abnormal entry count found on day 2016-12-24: -4440
Processing turnstile ('R221', 'R170', '01-05-01', '14 ST-UNION SQ')
Processing turnstile ('R128', 'R105', '01-06-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6281
WARNING. Abnormal entry count found on day 2016-12-03: -6281
WARNING. Abnormal entry count found on day 2016-12-10: -5911
WARNING. Abnormal entry count found on day 2016-12-10: -5911
WARNING. Abnormal entry count found on day 2016-12-17: -5148
WARNING. Abnormal entry count found on day 2016-12-17: -5148
WARNING. Abnormal entry count found on day 2016-12-24: -3154
WARNING. Abnormal entry count found on day 2016-12-24: -3154
Processing turnstile ('H019', 'R294', '00-06-00', 'MORGAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8274
WARNING. Abnormal entry count found on day 2016-12-03: -8274
WARNING. Abnormal entry count found on day 2016-12-10: -8290
WARNING. Abnormal entry count found on day 2016-12-10: -8290
WARNING. Abnormal entry count found on day 2016-12-17: -7429
WARNING. Abnormal entry count found on day 2016-12-17: -7429
WARNING. Abnormal entry count found on day 2016-12-24: -6396
WARNING. Abnormal entry count found on day 2016-12-24: -6396
Processing turnstile ('R210A', 'R044', '03-03-01', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -7613
WARNING. Abnormal entry count found on day 2016-12-03: -7613
WARNING. Abnormal entry count found on day 2016-12-10: -8018
WARNING. Abnormal entry count found on day 2016-12-10: -8018
WARNING. Abnormal entry count found on day 2016-12-17: -6733
WARNING. Abnormal entry count found on day 2016-12-17: -6733
WARNING. Abnormal entry count found on day 2016-12-24: -4041
WARNING. Abnormal entry count found on day 2016-12-24: -4041
Processing turnstile ('N400A', 'R359', '02-03-01', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -5713
WARNING. Abnormal entry count found on day 2016-12-03: -5713
WARNING. Abnormal entry count found on day 2016-12-10: -5777
WARNING. Abnormal entry count found on day 2016-12-10: -5777
WARNING. Abnormal entry count found on day 2016-12-17: -4510
WARNING. Abnormal entry count found on day 2016-12-17: -4510
WARNING. Abnormal entry count found on day 2016-12-24: -2427
WARNING. Abnormal entry count found on day 2016-12-24: -2427
Processing turnstile ('R249', 'R179', '01-00-02', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9294
WARNING. Abnormal entry count found on day 2016-12-03: -9294
WARNING. Abnormal entry count found on day 2016-12-10: -9570
WARNING. Abnormal entry count found on day 2016-12-10: -9570
WARNING. Abnormal entry count found on day 2016-12-17: -9671
WARNING. Abnormal entry count found on day 2016-12-17: -9671
WARNING. Abnormal entry count found on day 2016-12-24: -7464
WARNING. Abnormal entry count found on day 2016-12-24: -7464
Processing turnstile ('H019', 'R294', '00-06-01', 'MORGAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7900
WARNING. Abnormal entry count found on day 2016-12-03: -7900
WARNING. Abnormal entry count found on day 2016-12-10: -7286
WARNING. Abnormal entry count found on day 2016-12-10: -7286
WARNING. Abnormal entry count found on day 2016-12-17: -7121
WARNING. Abnormal entry count found on day 2016-12-17: -7121
WARNING. Abnormal entry count found on day 2016-12-24: -5119
WARNING. Abnormal entry count found on day 2016-12-24: -5119
Processing turnstile ('B004', 'R171', '00-00-01', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10936
WARNING. Abnormal entry count found on day 2016-12-03: -10936
WARNING. Abnormal entry count found on day 2016-12-10: -11166
WARNING. Abnormal entry count found on day 2016-12-10: -11166
WARNING. Abnormal entry count found on day 2016-12-17: -10053
WARNING. Abnormal entry count found on day 2016-12-17: -10053
WARNING. Abnormal entry count found on day 2016-12-24: -5640
WARNING. Abnormal entry count found on day 2016-12-24: -5640
Processing turnstile ('R101', 'R001', '02-00-03', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -3131
WARNING. Abnormal entry count found on day 2016-12-03: -3131
WARNING. Abnormal entry count found on day 2016-12-10: -2947
WARNING. Abnormal entry count found on day 2016-12-10: -2947
WARNING. Abnormal entry count found on day 2016-12-17: -3211
WARNING. Abnormal entry count found on day 2016-12-17: -3211
WARNING. Abnormal entry count found on day 2016-12-24: -4031
WARNING. Abnormal entry count found on day 2016-12-24: -4031
Processing turnstile ('R320', 'R409', '00-00-00', 'FREEMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9055
WARNING. Abnormal entry count found on day 2016-12-03: -9055
WARNING. Abnormal entry count found on day 2016-12-10: -10319
WARNING. Abnormal entry count found on day 2016-12-10: -10319
WARNING. Abnormal entry count found on day 2016-12-17: -10425
WARNING. Abnormal entry count found on day 2016-12-17: -10425
WARNING. Abnormal entry count found on day 2016-12-24: -8709
WARNING. Abnormal entry count found on day 2016-12-24: -8709
Processing turnstile ('E001', 'R368', '00-00-04', '9 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8058
WARNING. Abnormal entry count found on day 2016-12-03: -8058
WARNING. Abnormal entry count found on day 2016-12-10: -7763
WARNING. Abnormal entry count found on day 2016-12-10: -7763
WARNING. Abnormal entry count found on day 2016-12-17: -7443
WARNING. Abnormal entry count found on day 2016-12-17: -7443
WARNING. Abnormal entry count found on day 2016-12-24: -6458
WARNING. Abnormal entry count found on day 2016-12-24: -6458
Processing turnstile ('N602', 'R259', '00-00-03', 'ROOSEVELT ISLND')
WARNING. Abnormal entry count found on day 2016-12-03: -15595
WARNING. Abnormal entry count found on day 2016-12-03: -15595
WARNING. Abnormal entry count found on day 2016-12-10: -15143
WARNING. Abnormal entry count found on day 2016-12-10: -15143
WARNING. Abnormal entry count found on day 2016-12-17: -14844
WARNING. Abnormal entry count found on day 2016-12-17: -14844
WARNING. Abnormal entry count found on day 2016-12-24: -12293
WARNING. Abnormal entry count found on day 2016-12-24: -12293
Processing turnstile ('N336', 'R158', '00-03-01', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -16246
WARNING. Abnormal entry count found on day 2016-12-03: -16246
WARNING. Abnormal entry count found on day 2016-12-10: -15431
WARNING. Abnormal entry count found on day 2016-12-10: -15431
WARNING. Abnormal entry count found on day 2016-12-17: -15108
WARNING. Abnormal entry count found on day 2016-12-17: -15108
WARNING. Abnormal entry count found on day 2016-12-24: -10758
WARNING. Abnormal entry count found on day 2016-12-24: -10758
Processing turnstile ('R227A', 'R131', '01-06-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3077
WARNING. Abnormal entry count found on day 2016-12-03: -3077
WARNING. Abnormal entry count found on day 2016-12-10: -2701
WARNING. Abnormal entry count found on day 2016-12-10: -2701
WARNING. Abnormal entry count found on day 2016-12-17: -2312
WARNING. Abnormal entry count found on day 2016-12-17: -2312
WARNING. Abnormal entry count found on day 2016-12-24: -1198
WARNING. Abnormal entry count found on day 2016-12-24: -1198
Processing turnstile ('N606', 'R025', '00-05-00', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-24: -9
WARNING. Abnormal entry count found on day 2016-12-24: -9
Processing turnstile ('R729', 'R292', '00-00-02', 'BAYCHESTER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7857
WARNING. Abnormal entry count found on day 2016-12-03: -7857
WARNING. Abnormal entry count found on day 2016-12-10: -7443
WARNING. Abnormal entry count found on day 2016-12-10: -7443
WARNING. Abnormal entry count found on day 2016-12-17: -7296
WARNING. Abnormal entry count found on day 2016-12-17: -7296
WARNING. Abnormal entry count found on day 2016-12-24: -4861
WARNING. Abnormal entry count found on day 2016-12-24: -4861
Processing turnstile ('N069', 'R013', '01-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -7998
WARNING. Abnormal entry count found on day 2016-12-03: -7998
WARNING. Abnormal entry count found on day 2016-12-10: -8255
WARNING. Abnormal entry count found on day 2016-12-10: -8255
WARNING. Abnormal entry count found on day 2016-12-17: -7188
WARNING. Abnormal entry count found on day 2016-12-17: -7188
WARNING. Abnormal entry count found on day 2016-12-24: -5124
WARNING. Abnormal entry count found on day 2016-12-24: -5124
Processing turnstile ('PTH04', 'R551', '00-00-03', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -2827
WARNING. Abnormal entry count found on day 2016-12-03: -2827
WARNING. Abnormal entry count found on day 2016-12-10: -3230
WARNING. Abnormal entry count found on day 2016-12-10: -3230
WARNING. Abnormal entry count found on day 2016-12-17: -2122
WARNING. Abnormal entry count found on day 2016-12-17: -2122
WARNING. Abnormal entry count found on day 2016-12-24: -2288
WARNING. Abnormal entry count found on day 2016-12-24: -2288
Processing turnstile ('B013', 'R196', '01-05-00', 'PROSPECT PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -12
WARNING. Abnormal entry count found on day 2016-12-24: -12
Processing turnstile ('N307', 'R359', '00-00-00', 'COURT SQ-23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3651
WARNING. Abnormal entry count found on day 2016-12-03: -3651
WARNING. Abnormal entry count found on day 2016-12-10: -3792
WARNING. Abnormal entry count found on day 2016-12-10: -3792
WARNING. Abnormal entry count found on day 2016-12-17: -3326
WARNING. Abnormal entry count found on day 2016-12-17: -3326
WARNING. Abnormal entry count found on day 2016-12-24: -2197
WARNING. Abnormal entry count found on day 2016-12-24: -2197
Processing turnstile ('R168A', 'R168', '00-03-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5632
WARNING. Abnormal entry count found on day 2016-12-03: -5632
WARNING. Abnormal entry count found on day 2016-12-10: -13344
WARNING. Abnormal entry count found on day 2016-12-10: -13344
WARNING. Abnormal entry count found on day 2016-12-17: -12287
WARNING. Abnormal entry count found on day 2016-12-17: -12287
WARNING. Abnormal entry count found on day 2016-12-24: -8495
WARNING. Abnormal entry count found on day 2016-12-24: -8495
Processing turnstile ('R250', 'R179', '00-00-05', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15686
WARNING. Abnormal entry count found on day 2016-12-03: -15686
WARNING. Abnormal entry count found on day 2016-12-10: -15624
WARNING. Abnormal entry count found on day 2016-12-10: -15624
WARNING. Abnormal entry count found on day 2016-12-17: -12591
WARNING. Abnormal entry count found on day 2016-12-17: -12591
WARNING. Abnormal entry count found on day 2016-12-24: -7261
WARNING. Abnormal entry count found on day 2016-12-24: -7261
Processing turnstile ('N020', 'R101', '00-00-02', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13463
WARNING. Abnormal entry count found on day 2016-12-03: -13463
WARNING. Abnormal entry count found on day 2016-12-10: -12093
WARNING. Abnormal entry count found on day 2016-12-10: -12093
WARNING. Abnormal entry count found on day 2016-12-17: -10607
WARNING. Abnormal entry count found on day 2016-12-17: -10607
WARNING. Abnormal entry count found on day 2016-12-24: -7805
WARNING. Abnormal entry count found on day 2016-12-24: -7805
Processing turnstile ('R509', 'R121', '00-00-01', 'QUEENSBORO PLZ')
WARNING. Abnormal entry count found on day 2016-12-03: -17161
WARNING. Abnormal entry count found on day 2016-12-03: -17161
WARNING. Abnormal entry count found on day 2016-12-10: -16452
WARNING. Abnormal entry count found on day 2016-12-10: -16452
WARNING. Abnormal entry count found on day 2016-12-17: -15350
WARNING. Abnormal entry count found on day 2016-12-17: -15350
WARNING. Abnormal entry count found on day 2016-12-24: -12312
WARNING. Abnormal entry count found on day 2016-12-24: -12312
Processing turnstile ('N044', 'R187', '00-03-02', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -8667
WARNING. Abnormal entry count found on day 2016-12-03: -8667
WARNING. Abnormal entry count found on day 2016-12-10: -8542
WARNING. Abnormal entry count found on day 2016-12-10: -8542
WARNING. Abnormal entry count found on day 2016-12-17: -8458
WARNING. Abnormal entry count found on day 2016-12-17: -8458
WARNING. Abnormal entry count found on day 2016-12-24: -10870
WARNING. Abnormal entry count found on day 2016-12-24: -10870
Processing turnstile ('R293', 'R133', '00-06-01', 'MOSHOLU PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -2382
WARNING. Abnormal entry count found on day 2016-12-03: -2382
WARNING. Abnormal entry count found on day 2016-12-10: -2273
WARNING. Abnormal entry count found on day 2016-12-10: -2273
WARNING. Abnormal entry count found on day 2016-12-17: -1792
WARNING. Abnormal entry count found on day 2016-12-17: -1792
WARNING. Abnormal entry count found on day 2016-12-24: -1184
WARNING. Abnormal entry count found on day 2016-12-24: -1184
Processing turnstile ('R532', 'R328', '00-00-00', 'METS-WILLETS PT')
WARNING. Abnormal entry count found on day 2016-12-03: -2611
WARNING. Abnormal entry count found on day 2016-12-03: -2611
WARNING. Abnormal entry count found on day 2016-12-10: -2518
WARNING. Abnormal entry count found on day 2016-12-10: -2518
WARNING. Abnormal entry count found on day 2016-12-17: -2421
WARNING. Abnormal entry count found on day 2016-12-17: -2421
WARNING. Abnormal entry count found on day 2016-12-24: -2181
WARNING. Abnormal entry count found on day 2016-12-24: -2181
Processing turnstile ('R228', 'R143', '00-00-03', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9146
WARNING. Abnormal entry count found on day 2016-12-03: -9146
WARNING. Abnormal entry count found on day 2016-12-10: -8946
WARNING. Abnormal entry count found on day 2016-12-10: -8946
WARNING. Abnormal entry count found on day 2016-12-17: -7993
WARNING. Abnormal entry count found on day 2016-12-17: -7993
WARNING. Abnormal entry count found on day 2016-12-24: -5367
WARNING. Abnormal entry count found on day 2016-12-24: -5367
Processing turnstile ('H014', 'R249', '00-00-00', 'GRAHAM AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2457
WARNING. Abnormal entry count found on day 2016-12-03: -2457
WARNING. Abnormal entry count found on day 2016-12-10: -2491
WARNING. Abnormal entry count found on day 2016-12-10: -2491
WARNING. Abnormal entry count found on day 2016-12-17: -2480
WARNING. Abnormal entry count found on day 2016-12-17: -2480
WARNING. Abnormal entry count found on day 2016-12-24: -1571
WARNING. Abnormal entry count found on day 2016-12-24: -1571
Processing turnstile ('N006A', 'R280', '00-00-00', '190 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10730
WARNING. Abnormal entry count found on day 2016-12-03: -10730
WARNING. Abnormal entry count found on day 2016-12-10: -10478
WARNING. Abnormal entry count found on day 2016-12-10: -10478
WARNING. Abnormal entry count found on day 2016-12-17: -9824
WARNING. Abnormal entry count found on day 2016-12-17: -9824
WARNING. Abnormal entry count found on day 2016-12-24: -7517
WARNING. Abnormal entry count found on day 2016-12-24: -7517
Processing turnstile ('N141', 'R356', '00-00-03', 'OZONE PK LEFFRT')
WARNING. Abnormal entry count found on day 2016-12-03: -10441
WARNING. Abnormal entry count found on day 2016-12-03: -10441
WARNING. Abnormal entry count found on day 2016-12-10: -10154
WARNING. Abnormal entry count found on day 2016-12-10: -10154
WARNING. Abnormal entry count found on day 2016-12-17: -10146
WARNING. Abnormal entry count found on day 2016-12-17: -10146
WARNING. Abnormal entry count found on day 2016-12-24: -5971
WARNING. Abnormal entry count found on day 2016-12-24: -5971
Processing turnstile ('R285', 'R308', '00-00-00', 'MT EDEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8205
WARNING. Abnormal entry count found on day 2016-12-03: -8205
WARNING. Abnormal entry count found on day 2016-12-10: -8176
WARNING. Abnormal entry count found on day 2016-12-10: -8176
WARNING. Abnormal entry count found on day 2016-12-17: -8279
WARNING. Abnormal entry count found on day 2016-12-17: -8279
WARNING. Abnormal entry count found on day 2016-12-24: -6787
WARNING. Abnormal entry count found on day 2016-12-24: -6787
Processing turnstile ('R190', 'R038', '00-00-01', '215 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2658
WARNING. Abnormal entry count found on day 2016-12-03: -2658
WARNING. Abnormal entry count found on day 2016-12-10: -2503
WARNING. Abnormal entry count found on day 2016-12-10: -2503
WARNING. Abnormal entry count found on day 2016-12-17: -2314
WARNING. Abnormal entry count found on day 2016-12-17: -2314
WARNING. Abnormal entry count found on day 2016-12-24: -1803
WARNING. Abnormal entry count found on day 2016-12-24: -1803
Processing turnstile ('N043', 'R186', '00-00-02', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16968
WARNING. Abnormal entry count found on day 2016-12-03: -16968
WARNING. Abnormal entry count found on day 2016-12-10: -16306
WARNING. Abnormal entry count found on day 2016-12-10: -16306
WARNING. Abnormal entry count found on day 2016-12-17: -14084
WARNING. Abnormal entry count found on day 2016-12-17: -14084
WARNING. Abnormal entry count found on day 2016-12-24: -9791
WARNING. Abnormal entry count found on day 2016-12-24: -9791
Processing turnstile ('R322', 'R386', '00-00-01', '174 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9816
WARNING. Abnormal entry count found on day 2016-12-03: -9816
WARNING. Abnormal entry count found on day 2016-12-10: -11266
WARNING. Abnormal entry count found on day 2016-12-10: -11266
WARNING. Abnormal entry count found on day 2016-12-17: -11206
WARNING. Abnormal entry count found on day 2016-12-17: -11206
WARNING. Abnormal entry count found on day 2016-12-24: -8846
WARNING. Abnormal entry count found on day 2016-12-24: -8846
Processing turnstile ('R116', 'R030', '00-05-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('R634', 'R069', '00-03-01', 'NEW LOTS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10073
WARNING. Abnormal entry count found on day 2016-12-03: -10073
WARNING. Abnormal entry count found on day 2016-12-10: -7717
WARNING. Abnormal entry count found on day 2016-12-10: -7717
WARNING. Abnormal entry count found on day 2016-12-17: -7705
WARNING. Abnormal entry count found on day 2016-12-17: -7705
WARNING. Abnormal entry count found on day 2016-12-24: -5593
WARNING. Abnormal entry count found on day 2016-12-24: -5593
Processing turnstile ('J034', 'R007', '00-00-02', '104 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -245
WARNING. Abnormal entry count found on day 2016-12-05: -166
WARNING. Abnormal entry count found on day 2016-12-06: -467
WARNING. Abnormal entry count found on day 2016-12-07: -440
WARNING. Abnormal entry count found on day 2016-12-08: -440
WARNING. Abnormal entry count found on day 2016-12-09: -467
WARNING. Abnormal entry count found on day 2016-12-04: -245
WARNING. Abnormal entry count found on day 2016-12-05: -166
WARNING. Abnormal entry count found on day 2016-12-06: -467
WARNING. Abnormal entry count found on day 2016-12-07: -440
WARNING. Abnormal entry count found on day 2016-12-08: -440
WARNING. Abnormal entry count found on day 2016-12-09: -467
WARNING. Abnormal entry count found on day 2016-12-04: -245
WARNING. Abnormal entry count found on day 2016-12-05: -166
WARNING. Abnormal entry count found on day 2016-12-06: -467
WARNING. Abnormal entry count found on day 2016-12-07: -440
WARNING. Abnormal entry count found on day 2016-12-08: -440
WARNING. Abnormal entry count found on day 2016-12-09: -467
WARNING. Abnormal entry count found on day 2016-12-10: -491
WARNING. Abnormal entry count found on day 2016-12-11: -251
WARNING. Abnormal entry count found on day 2016-12-12: -178
WARNING. Abnormal entry count found on day 2016-12-13: -467
WARNING. Abnormal entry count found on day 2016-12-14: -490
WARNING. Abnormal entry count found on day 2016-12-15: -441
WARNING. Abnormal entry count found on day 2016-12-16: -458
WARNING. Abnormal entry count found on day 2016-12-11: -251
WARNING. Abnormal entry count found on day 2016-12-12: -178
WARNING. Abnormal entry count found on day 2016-12-13: -467
WARNING. Abnormal entry count found on day 2016-12-14: -490
WARNING. Abnormal entry count found on day 2016-12-15: -441
WARNING. Abnormal entry count found on day 2016-12-16: -458
WARNING. Abnormal entry count found on day 2016-12-11: -251
WARNING. Abnormal entry count found on day 2016-12-12: -178
WARNING. Abnormal entry count found on day 2016-12-13: -467
WARNING. Abnormal entry count found on day 2016-12-14: -490
WARNING. Abnormal entry count found on day 2016-12-15: -441
WARNING. Abnormal entry count found on day 2016-12-16: -458
WARNING. Abnormal entry count found on day 2016-12-17: -465
WARNING. Abnormal entry count found on day 2016-12-18: -250
WARNING. Abnormal entry count found on day 2016-12-19: -163
WARNING. Abnormal entry count found on day 2016-12-20: -508
WARNING. Abnormal entry count found on day 2016-12-21: -455
WARNING. Abnormal entry count found on day 2016-12-22: -451
WARNING. Abnormal entry count found on day 2016-12-23: -429
WARNING. Abnormal entry count found on day 2016-12-18: -250
WARNING. Abnormal entry count found on day 2016-12-19: -163
WARNING. Abnormal entry count found on day 2016-12-20: -508
WARNING. Abnormal entry count found on day 2016-12-21: -455
WARNING. Abnormal entry count found on day 2016-12-22: -451
WARNING. Abnormal entry count found on day 2016-12-23: -429
WARNING. Abnormal entry count found on day 2016-12-18: -250
WARNING. Abnormal entry count found on day 2016-12-19: -163
WARNING. Abnormal entry count found on day 2016-12-20: -508
WARNING. Abnormal entry count found on day 2016-12-21: -455
WARNING. Abnormal entry count found on day 2016-12-22: -451
WARNING. Abnormal entry count found on day 2016-12-23: -429
WARNING. Abnormal entry count found on day 2016-12-24: -422
WARNING. Abnormal entry count found on day 2016-12-25: -219
WARNING. Abnormal entry count found on day 2016-12-26: -132
WARNING. Abnormal entry count found on day 2016-12-27: -226
WARNING. Abnormal entry count found on day 2016-12-28: -316
WARNING. Abnormal entry count found on day 2016-12-29: -348
WARNING. Abnormal entry count found on day 2016-12-30: -299
WARNING. Abnormal entry count found on day 2016-12-25: -219
WARNING. Abnormal entry count found on day 2016-12-26: -132
WARNING. Abnormal entry count found on day 2016-12-27: -226
WARNING. Abnormal entry count found on day 2016-12-28: -316
WARNING. Abnormal entry count found on day 2016-12-29: -348
WARNING. Abnormal entry count found on day 2016-12-30: -299
WARNING. Abnormal entry count found on day 2016-12-25: -219
WARNING. Abnormal entry count found on day 2016-12-26: -132
WARNING. Abnormal entry count found on day 2016-12-27: -226
WARNING. Abnormal entry count found on day 2016-12-28: -316
WARNING. Abnormal entry count found on day 2016-12-29: -348
WARNING. Abnormal entry count found on day 2016-12-30: -299
Processing turnstile ('R622', 'R123', '00-00-06', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9582
WARNING. Abnormal entry count found on day 2016-12-03: -9582
WARNING. Abnormal entry count found on day 2016-12-10: -8866
WARNING. Abnormal entry count found on day 2016-12-10: -8866
WARNING. Abnormal entry count found on day 2016-12-17: -7990
WARNING. Abnormal entry count found on day 2016-12-17: -7990
WARNING. Abnormal entry count found on day 2016-12-24: -5144
WARNING. Abnormal entry count found on day 2016-12-24: -5144
Processing turnstile ('J007', 'R377', '00-05-00', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('H007', 'R248', '00-03-01', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5815
WARNING. Abnormal entry count found on day 2016-12-03: -5815
WARNING. Abnormal entry count found on day 2016-12-10: -6519
WARNING. Abnormal entry count found on day 2016-12-10: -6519
WARNING. Abnormal entry count found on day 2016-12-17: -5702
WARNING. Abnormal entry count found on day 2016-12-17: -5702
WARNING. Abnormal entry count found on day 2016-12-24: -3708
WARNING. Abnormal entry count found on day 2016-12-24: -3708
Processing turnstile ('D008', 'R392', '00-00-02', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3876
WARNING. Abnormal entry count found on day 2016-12-03: -3876
WARNING. Abnormal entry count found on day 2016-12-10: -3798
WARNING. Abnormal entry count found on day 2016-12-10: -3798
WARNING. Abnormal entry count found on day 2016-12-17: -3741
WARNING. Abnormal entry count found on day 2016-12-17: -3741
WARNING. Abnormal entry count found on day 2016-12-24: -3323
WARNING. Abnormal entry count found on day 2016-12-24: -3323
Processing turnstile ('A021', 'R032', '01-00-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11824
WARNING. Abnormal entry count found on day 2016-12-03: -11824
WARNING. Abnormal entry count found on day 2016-12-10: -12678
WARNING. Abnormal entry count found on day 2016-12-10: -12678
WARNING. Abnormal entry count found on day 2016-12-17: -11195
WARNING. Abnormal entry count found on day 2016-12-17: -11195
WARNING. Abnormal entry count found on day 2016-12-24: -7886
WARNING. Abnormal entry count found on day 2016-12-24: -7886
Processing turnstile ('C001', 'R108', '01-06-00', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -745
WARNING. Abnormal entry count found on day 2016-12-03: -745
WARNING. Abnormal entry count found on day 2016-12-10: -805
WARNING. Abnormal entry count found on day 2016-12-10: -805
WARNING. Abnormal entry count found on day 2016-12-17: -734
WARNING. Abnormal entry count found on day 2016-12-17: -734
WARNING. Abnormal entry count found on day 2016-12-24: -646
WARNING. Abnormal entry count found on day 2016-12-24: -646
Processing turnstile ('R604', 'R108', '03-00-05', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -12061
WARNING. Abnormal entry count found on day 2016-12-03: -12061
WARNING. Abnormal entry count found on day 2016-12-10: -10003
WARNING. Abnormal entry count found on day 2016-12-10: -10003
WARNING. Abnormal entry count found on day 2016-12-17: -10165
WARNING. Abnormal entry count found on day 2016-12-17: -10165
WARNING. Abnormal entry count found on day 2016-12-24: -6975
WARNING. Abnormal entry count found on day 2016-12-24: -6975
Processing turnstile ('R227', 'R131', '00-05-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('N303', 'R015', '00-00-06', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9190
WARNING. Abnormal entry count found on day 2016-12-03: -9190
WARNING. Abnormal entry count found on day 2016-12-10: -8834
WARNING. Abnormal entry count found on day 2016-12-10: -8834
WARNING. Abnormal entry count found on day 2016-12-17: -8885
WARNING. Abnormal entry count found on day 2016-12-17: -8885
WARNING. Abnormal entry count found on day 2016-12-24: -8735
WARNING. Abnormal entry count found on day 2016-12-24: -8735
Processing turnstile ('PTH17', 'R541', '01-01-05', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8761
WARNING. Abnormal entry count found on day 2016-12-03: -8761
WARNING. Abnormal entry count found on day 2016-12-10: -9226
WARNING. Abnormal entry count found on day 2016-12-10: -9226
WARNING. Abnormal entry count found on day 2016-12-17: -8200
WARNING. Abnormal entry count found on day 2016-12-17: -8200
WARNING. Abnormal entry count found on day 2016-12-24: -8236
WARNING. Abnormal entry count found on day 2016-12-24: -8236
Processing turnstile ('R333', 'R366', '00-00-01', '225 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6919
WARNING. Abnormal entry count found on day 2016-12-03: -6919
WARNING. Abnormal entry count found on day 2016-12-10: -6842
WARNING. Abnormal entry count found on day 2016-12-10: -6842
WARNING. Abnormal entry count found on day 2016-12-17: -7078
WARNING. Abnormal entry count found on day 2016-12-17: -7078
WARNING. Abnormal entry count found on day 2016-12-24: -4990
WARNING. Abnormal entry count found on day 2016-12-24: -4990
Processing turnstile ('R194', 'R040', '00-00-01', '231 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11320
WARNING. Abnormal entry count found on day 2016-12-03: -11320
WARNING. Abnormal entry count found on day 2016-12-10: -10869
WARNING. Abnormal entry count found on day 2016-12-10: -10869
WARNING. Abnormal entry count found on day 2016-12-17: -11202
WARNING. Abnormal entry count found on day 2016-12-17: -11202
WARNING. Abnormal entry count found on day 2016-12-24: -8591
WARNING. Abnormal entry count found on day 2016-12-24: -8591
Processing turnstile ('N546', 'R204', '00-05-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('N309A', 'R140', '00-03-00', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -410
WARNING. Abnormal entry count found on day 2016-12-03: -410
WARNING. Abnormal entry count found on day 2016-12-10: -327
WARNING. Abnormal entry count found on day 2016-12-10: -327
WARNING. Abnormal entry count found on day 2016-12-17: -303
WARNING. Abnormal entry count found on day 2016-12-17: -303
WARNING. Abnormal entry count found on day 2016-12-24: -248
WARNING. Abnormal entry count found on day 2016-12-24: -248
Processing turnstile ('H015', 'R250', '01-00-00', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8400
WARNING. Abnormal entry count found on day 2016-12-03: -8400
WARNING. Abnormal entry count found on day 2016-12-10: -8301
WARNING. Abnormal entry count found on day 2016-12-10: -8301
WARNING. Abnormal entry count found on day 2016-12-17: -7557
WARNING. Abnormal entry count found on day 2016-12-17: -7557
WARNING. Abnormal entry count found on day 2016-12-24: -4859
WARNING. Abnormal entry count found on day 2016-12-24: -4859
Processing turnstile ('A049', 'R088', '02-03-01', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4290
WARNING. Abnormal entry count found on day 2016-12-03: -4290
WARNING. Abnormal entry count found on day 2016-12-10: -4347
WARNING. Abnormal entry count found on day 2016-12-10: -4347
WARNING. Abnormal entry count found on day 2016-12-17: -5045
WARNING. Abnormal entry count found on day 2016-12-17: -5045
WARNING. Abnormal entry count found on day 2016-12-24: -6576
WARNING. Abnormal entry count found on day 2016-12-24: -6576
Processing turnstile ('R159', 'R164', '01-00-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -6473
WARNING. Abnormal entry count found on day 2016-12-03: -6473
WARNING. Abnormal entry count found on day 2016-12-10: -5606
WARNING. Abnormal entry count found on day 2016-12-10: -5606
WARNING. Abnormal entry count found on day 2016-12-17: -6041
WARNING. Abnormal entry count found on day 2016-12-17: -6041
WARNING. Abnormal entry count found on day 2016-12-24: -4462
WARNING. Abnormal entry count found on day 2016-12-24: -4462
Processing turnstile ('N309A', 'R140', '00-03-01', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -809
WARNING. Abnormal entry count found on day 2016-12-03: -809
WARNING. Abnormal entry count found on day 2016-12-10: -690
WARNING. Abnormal entry count found on day 2016-12-10: -690
WARNING. Abnormal entry count found on day 2016-12-17: -696
WARNING. Abnormal entry count found on day 2016-12-17: -696
WARNING. Abnormal entry count found on day 2016-12-24: -619
WARNING. Abnormal entry count found on day 2016-12-24: -619
Processing turnstile ('J013', 'R380', '00-00-02', 'GATES AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12004
WARNING. Abnormal entry count found on day 2016-12-03: -12004
WARNING. Abnormal entry count found on day 2016-12-10: -10588
WARNING. Abnormal entry count found on day 2016-12-10: -10588
WARNING. Abnormal entry count found on day 2016-12-17: -9703
WARNING. Abnormal entry count found on day 2016-12-17: -9703
WARNING. Abnormal entry count found on day 2016-12-24: -8069
WARNING. Abnormal entry count found on day 2016-12-24: -8069
Processing turnstile ('A084', 'R125', '01-00-02', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2713
WARNING. Abnormal entry count found on day 2016-12-03: -2713
WARNING. Abnormal entry count found on day 2016-12-10: -2754
WARNING. Abnormal entry count found on day 2016-12-10: -2754
WARNING. Abnormal entry count found on day 2016-12-17: -2322
WARNING. Abnormal entry count found on day 2016-12-17: -2322
WARNING. Abnormal entry count found on day 2016-12-24: -1629
WARNING. Abnormal entry count found on day 2016-12-24: -1629
Processing turnstile ('J002', 'R460', '00-00-02', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4710
WARNING. Abnormal entry count found on day 2016-12-03: -4710
WARNING. Abnormal entry count found on day 2016-12-10: -4374
WARNING. Abnormal entry count found on day 2016-12-10: -4374
WARNING. Abnormal entry count found on day 2016-12-17: -4323
WARNING. Abnormal entry count found on day 2016-12-17: -4323
WARNING. Abnormal entry count found on day 2016-12-24: -3426
WARNING. Abnormal entry count found on day 2016-12-24: -3426
Processing turnstile ('G001', 'R151', '00-03-02', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -1746
WARNING. Abnormal entry count found on day 2016-12-03: -1746
WARNING. Abnormal entry count found on day 2016-12-10: -1630
WARNING. Abnormal entry count found on day 2016-12-10: -1630
WARNING. Abnormal entry count found on day 2016-12-17: -1657
WARNING. Abnormal entry count found on day 2016-12-17: -1657
WARNING. Abnormal entry count found on day 2016-12-24: -1797
WARNING. Abnormal entry count found on day 2016-12-24: -1797
Processing turnstile ('H001', 'R175', '00-05-01', '8 AV')
Processing turnstile ('E012', 'R372', '00-00-02', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10458
WARNING. Abnormal entry count found on day 2016-12-03: -10458
WARNING. Abnormal entry count found on day 2016-12-10: -10322
WARNING. Abnormal entry count found on day 2016-12-10: -10322
WARNING. Abnormal entry count found on day 2016-12-17: -10878
WARNING. Abnormal entry count found on day 2016-12-17: -10878
WARNING. Abnormal entry count found on day 2016-12-24: -8817
WARNING. Abnormal entry count found on day 2016-12-24: -8817
Processing turnstile ('N335', 'R158', '01-06-00', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -5205
WARNING. Abnormal entry count found on day 2016-12-03: -5205
WARNING. Abnormal entry count found on day 2016-12-10: -5040
WARNING. Abnormal entry count found on day 2016-12-10: -5040
WARNING. Abnormal entry count found on day 2016-12-17: -4696
WARNING. Abnormal entry count found on day 2016-12-17: -4696
WARNING. Abnormal entry count found on day 2016-12-24: -3180
WARNING. Abnormal entry count found on day 2016-12-24: -3180
Processing turnstile ('R604', 'R108', '03-00-03', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -6817
WARNING. Abnormal entry count found on day 2016-12-03: -6817
WARNING. Abnormal entry count found on day 2016-12-10: -8155
WARNING. Abnormal entry count found on day 2016-12-10: -8155
WARNING. Abnormal entry count found on day 2016-12-17: -5999
WARNING. Abnormal entry count found on day 2016-12-17: -5999
WARNING. Abnormal entry count found on day 2016-12-24: -3652
WARNING. Abnormal entry count found on day 2016-12-24: -3652
Processing turnstile ('C001', 'R108', '01-00-01', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -2572
WARNING. Abnormal entry count found on day 2016-12-03: -2572
WARNING. Abnormal entry count found on day 2016-12-10: -2534
WARNING. Abnormal entry count found on day 2016-12-10: -2534
WARNING. Abnormal entry count found on day 2016-12-17: -2302
WARNING. Abnormal entry count found on day 2016-12-17: -2302
WARNING. Abnormal entry count found on day 2016-12-24: -2211
WARNING. Abnormal entry count found on day 2016-12-24: -2211
Processing turnstile ('R534', 'R055', '01-03-01', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -12574
WARNING. Abnormal entry count found on day 2016-12-03: -12574
WARNING. Abnormal entry count found on day 2016-12-10: -12832
WARNING. Abnormal entry count found on day 2016-12-10: -12832
WARNING. Abnormal entry count found on day 2016-12-17: -13502
WARNING. Abnormal entry count found on day 2016-12-17: -13502
WARNING. Abnormal entry count found on day 2016-12-24: -10694
WARNING. Abnormal entry count found on day 2016-12-24: -10694
Processing turnstile ('R134', 'R272', '01-06-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -340
WARNING. Abnormal entry count found on day 2016-12-03: -340
WARNING. Abnormal entry count found on day 2016-12-10: -514
WARNING. Abnormal entry count found on day 2016-12-10: -514
WARNING. Abnormal entry count found on day 2016-12-17: -349
WARNING. Abnormal entry count found on day 2016-12-17: -349
WARNING. Abnormal entry count found on day 2016-12-24: -259
WARNING. Abnormal entry count found on day 2016-12-24: -259
Processing turnstile ('C008', 'R099', '00-03-01', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4912
WARNING. Abnormal entry count found on day 2016-12-03: -4912
WARNING. Abnormal entry count found on day 2016-12-10: -5054
WARNING. Abnormal entry count found on day 2016-12-10: -5054
WARNING. Abnormal entry count found on day 2016-12-17: -4395
WARNING. Abnormal entry count found on day 2016-12-17: -4395
WARNING. Abnormal entry count found on day 2016-12-24: -2417
WARNING. Abnormal entry count found on day 2016-12-24: -2417
Processing turnstile ('H008', 'R248', '01-00-02', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9262
WARNING. Abnormal entry count found on day 2016-12-03: -9262
WARNING. Abnormal entry count found on day 2016-12-10: -8684
WARNING. Abnormal entry count found on day 2016-12-10: -8684
WARNING. Abnormal entry count found on day 2016-12-17: -8693
WARNING. Abnormal entry count found on day 2016-12-17: -8693
WARNING. Abnormal entry count found on day 2016-12-24: -5701
WARNING. Abnormal entry count found on day 2016-12-24: -5701
Processing turnstile ('R415', 'R120', '00-00-00', 'MORISN AV/SNDVW')
WARNING. Abnormal entry count found on day 2016-12-03: -6316
WARNING. Abnormal entry count found on day 2016-12-03: -6316
WARNING. Abnormal entry count found on day 2016-12-10: -5901
WARNING. Abnormal entry count found on day 2016-12-10: -5901
WARNING. Abnormal entry count found on day 2016-12-17: -6078
WARNING. Abnormal entry count found on day 2016-12-17: -6078
WARNING. Abnormal entry count found on day 2016-12-24: -4731
WARNING. Abnormal entry count found on day 2016-12-24: -4731
Processing turnstile ('R121', 'R290', '01-03-00', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10182
WARNING. Abnormal entry count found on day 2016-12-03: -10182
WARNING. Abnormal entry count found on day 2016-12-10: -10953
WARNING. Abnormal entry count found on day 2016-12-10: -10953
WARNING. Abnormal entry count found on day 2016-12-17: -8626
WARNING. Abnormal entry count found on day 2016-12-17: -8626
WARNING. Abnormal entry count found on day 2016-12-24: -4437
WARNING. Abnormal entry count found on day 2016-12-24: -4437
Processing turnstile ('N087', 'R282', '01-06-00', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9752
WARNING. Abnormal entry count found on day 2016-12-03: -9752
WARNING. Abnormal entry count found on day 2016-12-10: -9793
WARNING. Abnormal entry count found on day 2016-12-10: -9793
WARNING. Abnormal entry count found on day 2016-12-17: -8497
WARNING. Abnormal entry count found on day 2016-12-17: -8497
WARNING. Abnormal entry count found on day 2016-12-24: -6099
WARNING. Abnormal entry count found on day 2016-12-24: -6099
Processing turnstile ('R417', 'R222', '00-00-00', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -27725
WARNING. Abnormal entry count found on day 2016-12-03: -27725
WARNING. Abnormal entry count found on day 2016-12-10: -26773
WARNING. Abnormal entry count found on day 2016-12-10: -26773
WARNING. Abnormal entry count found on day 2016-12-17: -26391
WARNING. Abnormal entry count found on day 2016-12-17: -26391
WARNING. Abnormal entry count found on day 2016-12-24: -20391
WARNING. Abnormal entry count found on day 2016-12-24: -20391
Processing turnstile ('PTH12', 'R542', '00-00-04', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9132
WARNING. Abnormal entry count found on day 2016-12-03: -9132
WARNING. Abnormal entry count found on day 2016-12-10: -7317
WARNING. Abnormal entry count found on day 2016-12-10: -7317
WARNING. Abnormal entry count found on day 2016-12-17: -6409
WARNING. Abnormal entry count found on day 2016-12-17: -6409
WARNING. Abnormal entry count found on day 2016-12-24: -4056
WARNING. Abnormal entry count found on day 2016-12-24: -4056
Processing turnstile ('N072', 'R012', '05-03-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -22153
WARNING. Abnormal entry count found on day 2016-12-03: -22153
WARNING. Abnormal entry count found on day 2016-12-10: -22605
WARNING. Abnormal entry count found on day 2016-12-10: -22605
WARNING. Abnormal entry count found on day 2016-12-17: -20854
WARNING. Abnormal entry count found on day 2016-12-17: -20854
WARNING. Abnormal entry count found on day 2016-12-24: -17136
WARNING. Abnormal entry count found on day 2016-12-24: -17136
Processing turnstile ('A007', 'R079', '01-06-01', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9126
WARNING. Abnormal entry count found on day 2016-12-03: -9126
WARNING. Abnormal entry count found on day 2016-12-10: -7084
WARNING. Abnormal entry count found on day 2016-12-10: -7084
WARNING. Abnormal entry count found on day 2016-12-17: -4575
WARNING. Abnormal entry count found on day 2016-12-17: -4575
WARNING. Abnormal entry count found on day 2016-12-24: -6882
WARNING. Abnormal entry count found on day 2016-12-24: -6882
Processing turnstile ('N330', 'R202', '00-03-00', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -5556
WARNING. Abnormal entry count found on day 2016-12-03: -5556
WARNING. Abnormal entry count found on day 2016-12-10: -5390
WARNING. Abnormal entry count found on day 2016-12-10: -5390
WARNING. Abnormal entry count found on day 2016-12-17: -5408
WARNING. Abnormal entry count found on day 2016-12-17: -5408
WARNING. Abnormal entry count found on day 2016-12-24: -3981
WARNING. Abnormal entry count found on day 2016-12-24: -3981
Processing turnstile ('N114', 'R297', '01-00-00', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2013
WARNING. Abnormal entry count found on day 2016-12-03: -2013
WARNING. Abnormal entry count found on day 2016-12-10: -1842
WARNING. Abnormal entry count found on day 2016-12-10: -1842
WARNING. Abnormal entry count found on day 2016-12-17: -1881
WARNING. Abnormal entry count found on day 2016-12-17: -1881
WARNING. Abnormal entry count found on day 2016-12-24: -1339
WARNING. Abnormal entry count found on day 2016-12-24: -1339
Processing turnstile ('N203', 'R195', '00-00-04', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -12926
WARNING. Abnormal entry count found on day 2016-12-03: -12926
WARNING. Abnormal entry count found on day 2016-12-10: -12507
WARNING. Abnormal entry count found on day 2016-12-10: -12507
WARNING. Abnormal entry count found on day 2016-12-17: -12735
WARNING. Abnormal entry count found on day 2016-12-17: -12735
WARNING. Abnormal entry count found on day 2016-12-24: -11051
WARNING. Abnormal entry count found on day 2016-12-24: -11051
Processing turnstile ('R524', 'R347', '00-03-01', '69 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3307
WARNING. Abnormal entry count found on day 2016-12-03: -3307
WARNING. Abnormal entry count found on day 2016-12-10: -3501
WARNING. Abnormal entry count found on day 2016-12-10: -3501
WARNING. Abnormal entry count found on day 2016-12-17: -3571
WARNING. Abnormal entry count found on day 2016-12-17: -3571
WARNING. Abnormal entry count found on day 2016-12-24: -2911
WARNING. Abnormal entry count found on day 2016-12-24: -2911
Processing turnstile ('N057', 'R188', '00-00-02', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7974
WARNING. Abnormal entry count found on day 2016-12-03: -7974
WARNING. Abnormal entry count found on day 2016-12-10: -8136
WARNING. Abnormal entry count found on day 2016-12-10: -8136
WARNING. Abnormal entry count found on day 2016-12-17: -7621
WARNING. Abnormal entry count found on day 2016-12-17: -7621
WARNING. Abnormal entry count found on day 2016-12-24: -6762
WARNING. Abnormal entry count found on day 2016-12-24: -6762
Processing turnstile ('R247', 'R178', '01-03-01', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4444
WARNING. Abnormal entry count found on day 2016-12-03: -4444
WARNING. Abnormal entry count found on day 2016-12-10: -4410
WARNING. Abnormal entry count found on day 2016-12-10: -4410
WARNING. Abnormal entry count found on day 2016-12-17: -4018
WARNING. Abnormal entry count found on day 2016-12-17: -4018
WARNING. Abnormal entry count found on day 2016-12-24: -2904
WARNING. Abnormal entry count found on day 2016-12-24: -2904
Processing turnstile ('G011', 'R312', '00-00-00', 'W 8 ST-AQUARIUM')
WARNING. Abnormal entry count found on day 2016-12-03: -488
WARNING. Abnormal entry count found on day 2016-12-03: -488
WARNING. Abnormal entry count found on day 2016-12-10: -450
WARNING. Abnormal entry count found on day 2016-12-10: -450
WARNING. Abnormal entry count found on day 2016-12-17: -497
WARNING. Abnormal entry count found on day 2016-12-17: -497
WARNING. Abnormal entry count found on day 2016-12-24: -530
WARNING. Abnormal entry count found on day 2016-12-24: -530
Processing turnstile ('S101A', 'R070', '01-03-01', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -5882
WARNING. Abnormal entry count found on day 2016-12-03: -5882
WARNING. Abnormal entry count found on day 2016-12-10: -5342
WARNING. Abnormal entry count found on day 2016-12-10: -5342
WARNING. Abnormal entry count found on day 2016-12-17: -5156
WARNING. Abnormal entry count found on day 2016-12-17: -5156
WARNING. Abnormal entry count found on day 2016-12-24: -4088
WARNING. Abnormal entry count found on day 2016-12-24: -4088
Processing turnstile ('N422', 'R318', '00-06-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1823
WARNING. Abnormal entry count found on day 2016-12-03: -1823
WARNING. Abnormal entry count found on day 2016-12-10: -1778
WARNING. Abnormal entry count found on day 2016-12-10: -1778
WARNING. Abnormal entry count found on day 2016-12-17: -1647
WARNING. Abnormal entry count found on day 2016-12-17: -1647
WARNING. Abnormal entry count found on day 2016-12-24: -964
WARNING. Abnormal entry count found on day 2016-12-24: -964
Processing turnstile ('R306', 'R207', '00-00-01', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11982
WARNING. Abnormal entry count found on day 2016-12-03: -11982
WARNING. Abnormal entry count found on day 2016-12-10: -11608
WARNING. Abnormal entry count found on day 2016-12-10: -11608
WARNING. Abnormal entry count found on day 2016-12-17: -11102
WARNING. Abnormal entry count found on day 2016-12-17: -11102
WARNING. Abnormal entry count found on day 2016-12-24: -8450
WARNING. Abnormal entry count found on day 2016-12-24: -8450
Processing turnstile ('B009', 'R411', '00-00-00', 'PARK PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -4771
WARNING. Abnormal entry count found on day 2016-12-03: -4771
WARNING. Abnormal entry count found on day 2016-12-10: -4610
WARNING. Abnormal entry count found on day 2016-12-10: -4610
WARNING. Abnormal entry count found on day 2016-12-17: -4173
WARNING. Abnormal entry count found on day 2016-12-17: -4173
WARNING. Abnormal entry count found on day 2016-12-24: -2955
WARNING. Abnormal entry count found on day 2016-12-24: -2955
Processing turnstile ('N060', 'R010', '01-00-02', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -9130
WARNING. Abnormal entry count found on day 2016-12-03: -9130
WARNING. Abnormal entry count found on day 2016-12-10: -9854
WARNING. Abnormal entry count found on day 2016-12-10: -9854
WARNING. Abnormal entry count found on day 2016-12-17: -9041
WARNING. Abnormal entry count found on day 2016-12-17: -9041
WARNING. Abnormal entry count found on day 2016-12-24: -9017
WARNING. Abnormal entry count found on day 2016-12-24: -9017
Processing turnstile ('A034', 'R170', '03-03-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -10095
WARNING. Abnormal entry count found on day 2016-12-03: -10095
WARNING. Abnormal entry count found on day 2016-12-10: -10463
WARNING. Abnormal entry count found on day 2016-12-10: -10463
WARNING. Abnormal entry count found on day 2016-12-17: -12081
WARNING. Abnormal entry count found on day 2016-12-17: -12081
WARNING. Abnormal entry count found on day 2016-12-24: -7116
WARNING. Abnormal entry count found on day 2016-12-24: -7116
Processing turnstile ('N020', 'R101', '00-00-05', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22893
WARNING. Abnormal entry count found on day 2016-12-03: -22893
WARNING. Abnormal entry count found on day 2016-12-10: -21013
WARNING. Abnormal entry count found on day 2016-12-10: -21013
WARNING. Abnormal entry count found on day 2016-12-17: -19929
WARNING. Abnormal entry count found on day 2016-12-17: -19929
WARNING. Abnormal entry count found on day 2016-12-24: -15734
WARNING. Abnormal entry count found on day 2016-12-24: -15734
Processing turnstile ('PTH16', 'R550', '01-02-02', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -707
WARNING. Abnormal entry count found on day 2016-12-03: -707
WARNING. Abnormal entry count found on day 2016-12-10: -1330
WARNING. Abnormal entry count found on day 2016-12-10: -1330
WARNING. Abnormal entry count found on day 2016-12-17: -1221
WARNING. Abnormal entry count found on day 2016-12-17: -1221
WARNING. Abnormal entry count found on day 2016-12-24: -397
WARNING. Abnormal entry count found on day 2016-12-24: -397
Processing turnstile ('R240', 'R047', '00-03-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6722
WARNING. Abnormal entry count found on day 2016-12-03: -6722
WARNING. Abnormal entry count found on day 2016-12-10: -7052
WARNING. Abnormal entry count found on day 2016-12-10: -7052
WARNING. Abnormal entry count found on day 2016-12-17: -5992
WARNING. Abnormal entry count found on day 2016-12-17: -5992
WARNING. Abnormal entry count found on day 2016-12-24: -3839
WARNING. Abnormal entry count found on day 2016-12-24: -3839
Processing turnstile ('N039', 'R251', '01-00-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5204
WARNING. Abnormal entry count found on day 2016-12-03: -5204
WARNING. Abnormal entry count found on day 2016-12-10: -10205
WARNING. Abnormal entry count found on day 2016-12-10: -10205
WARNING. Abnormal entry count found on day 2016-12-17: -9209
WARNING. Abnormal entry count found on day 2016-12-17: -9209
WARNING. Abnormal entry count found on day 2016-12-24: -6063
WARNING. Abnormal entry count found on day 2016-12-24: -6063
Processing turnstile ('PTH05', 'R543', '00-04-07', 'EXCHANGE PLACE')
Processing turnstile ('N526', 'R142', '02-00-00', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -6531
WARNING. Abnormal entry count found on day 2016-12-03: -6531
WARNING. Abnormal entry count found on day 2016-12-10: -6212
WARNING. Abnormal entry count found on day 2016-12-10: -6212
WARNING. Abnormal entry count found on day 2016-12-17: -6202
WARNING. Abnormal entry count found on day 2016-12-17: -6202
WARNING. Abnormal entry count found on day 2016-12-24: -4384
WARNING. Abnormal entry count found on day 2016-12-24: -4384
Processing turnstile ('R612', 'R057', '01-03-06', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -11106
WARNING. Abnormal entry count found on day 2016-12-03: -11106
WARNING. Abnormal entry count found on day 2016-12-10: -10274
WARNING. Abnormal entry count found on day 2016-12-10: -10274
WARNING. Abnormal entry count found on day 2016-12-17: -8229
WARNING. Abnormal entry count found on day 2016-12-17: -8229
WARNING. Abnormal entry count found on day 2016-12-24: -7589
WARNING. Abnormal entry count found on day 2016-12-24: -7589
Processing turnstile ('N305A', 'R016', '00-00-00', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -4164
WARNING. Abnormal entry count found on day 2016-12-03: -4164
WARNING. Abnormal entry count found on day 2016-12-10: -3932
WARNING. Abnormal entry count found on day 2016-12-10: -3932
WARNING. Abnormal entry count found on day 2016-12-17: -3145
WARNING. Abnormal entry count found on day 2016-12-17: -3145
WARNING. Abnormal entry count found on day 2016-12-24: -2012
WARNING. Abnormal entry count found on day 2016-12-24: -2012
Processing turnstile ('R246', 'R177', '00-00-05', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -8572
WARNING. Abnormal entry count found on day 2016-12-03: -8572
WARNING. Abnormal entry count found on day 2016-12-10: -8197
WARNING. Abnormal entry count found on day 2016-12-10: -8197
WARNING. Abnormal entry count found on day 2016-12-17: -6634
WARNING. Abnormal entry count found on day 2016-12-17: -6634
WARNING. Abnormal entry count found on day 2016-12-24: -3800
WARNING. Abnormal entry count found on day 2016-12-24: -3800
Processing turnstile ('B014', 'R148', '00-00-02', 'PARKSIDE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12420
WARNING. Abnormal entry count found on day 2016-12-03: -12420
WARNING. Abnormal entry count found on day 2016-12-10: -12178
WARNING. Abnormal entry count found on day 2016-12-10: -12178
WARNING. Abnormal entry count found on day 2016-12-17: -11782
WARNING. Abnormal entry count found on day 2016-12-17: -11782
WARNING. Abnormal entry count found on day 2016-12-24: -9519
WARNING. Abnormal entry count found on day 2016-12-24: -9519
Processing turnstile ('B031', 'R172', '01-00-00', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -4726
WARNING. Abnormal entry count found on day 2016-12-03: -4726
WARNING. Abnormal entry count found on day 2016-12-10: -4619
WARNING. Abnormal entry count found on day 2016-12-10: -4619
WARNING. Abnormal entry count found on day 2016-12-17: -4621
WARNING. Abnormal entry count found on day 2016-12-17: -4621
WARNING. Abnormal entry count found on day 2016-12-24: -3586
WARNING. Abnormal entry count found on day 2016-12-24: -3586
Processing turnstile ('D012', 'R395', '00-00-01', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -1918
WARNING. Abnormal entry count found on day 2016-12-03: -1918
WARNING. Abnormal entry count found on day 2016-12-10: -1990
WARNING. Abnormal entry count found on day 2016-12-10: -1990
WARNING. Abnormal entry count found on day 2016-12-17: -1991
WARNING. Abnormal entry count found on day 2016-12-17: -1991
WARNING. Abnormal entry count found on day 2016-12-24: -1693
WARNING. Abnormal entry count found on day 2016-12-24: -1693
Processing turnstile ('N046', 'R281', '00-06-00', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5488
WARNING. Abnormal entry count found on day 2016-12-03: -5488
WARNING. Abnormal entry count found on day 2016-12-10: -6205
WARNING. Abnormal entry count found on day 2016-12-10: -6205
WARNING. Abnormal entry count found on day 2016-12-17: -4435
WARNING. Abnormal entry count found on day 2016-12-17: -4435
WARNING. Abnormal entry count found on day 2016-12-24: -3154
WARNING. Abnormal entry count found on day 2016-12-24: -3154
Processing turnstile ('R120', 'R320', '01-00-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2982
WARNING. Abnormal entry count found on day 2016-12-03: -2982
WARNING. Abnormal entry count found on day 2016-12-10: -3056
WARNING. Abnormal entry count found on day 2016-12-10: -3056
WARNING. Abnormal entry count found on day 2016-12-17: -2566
WARNING. Abnormal entry count found on day 2016-12-17: -2566
WARNING. Abnormal entry count found on day 2016-12-24: -1774
WARNING. Abnormal entry count found on day 2016-12-24: -1774
Processing turnstile ('N195', 'R358', '00-00-01', 'BEACH 25 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3430
WARNING. Abnormal entry count found on day 2016-12-03: -3430
WARNING. Abnormal entry count found on day 2016-12-10: -3309
WARNING. Abnormal entry count found on day 2016-12-10: -3309
WARNING. Abnormal entry count found on day 2016-12-17: -3148
WARNING. Abnormal entry count found on day 2016-12-17: -3148
WARNING. Abnormal entry count found on day 2016-12-24: -2244
WARNING. Abnormal entry count found on day 2016-12-24: -2244
Processing turnstile ('N185', 'R417', '00-05-00', 'BEACH 98 ST')
Processing turnstile ('N083', 'R138', '01-03-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -9582
WARNING. Abnormal entry count found on day 2016-12-03: -9582
WARNING. Abnormal entry count found on day 2016-12-10: -10567
WARNING. Abnormal entry count found on day 2016-12-10: -10567
WARNING. Abnormal entry count found on day 2016-12-17: -8781
WARNING. Abnormal entry count found on day 2016-12-17: -8781
WARNING. Abnormal entry count found on day 2016-12-24: -6156
WARNING. Abnormal entry count found on day 2016-12-24: -6156
Processing turnstile ('B019', 'R149', '00-00-03', 'NEWKIRK PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -10301
WARNING. Abnormal entry count found on day 2016-12-03: -10301
WARNING. Abnormal entry count found on day 2016-12-10: -10530
WARNING. Abnormal entry count found on day 2016-12-10: -10530
WARNING. Abnormal entry count found on day 2016-12-17: -9960
WARNING. Abnormal entry count found on day 2016-12-17: -9960
WARNING. Abnormal entry count found on day 2016-12-24: -7523
WARNING. Abnormal entry count found on day 2016-12-24: -7523
Processing turnstile ('N525', 'R142', '01-00-04', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -17047
WARNING. Abnormal entry count found on day 2016-12-03: -17047
WARNING. Abnormal entry count found on day 2016-12-10: -16566
WARNING. Abnormal entry count found on day 2016-12-10: -16566
WARNING. Abnormal entry count found on day 2016-12-17: -15985
WARNING. Abnormal entry count found on day 2016-12-17: -15985
WARNING. Abnormal entry count found on day 2016-12-24: -11602
WARNING. Abnormal entry count found on day 2016-12-24: -11602
Processing turnstile ('N095', 'R014', '00-05-01', 'FULTON ST')
Processing turnstile ('R528', 'R097', '00-00-01', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -12781
WARNING. Abnormal entry count found on day 2016-12-03: -12781
WARNING. Abnormal entry count found on day 2016-12-10: -12507
WARNING. Abnormal entry count found on day 2016-12-10: -12507
WARNING. Abnormal entry count found on day 2016-12-17: -14194
WARNING. Abnormal entry count found on day 2016-12-17: -14194
WARNING. Abnormal entry count found on day 2016-12-24: -10525
WARNING. Abnormal entry count found on day 2016-12-24: -10525
Processing turnstile ('PTH06', 'R546', '00-00-05', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -3961
WARNING. Abnormal entry count found on day 2016-12-03: -3961
WARNING. Abnormal entry count found on day 2016-12-10: -4238
WARNING. Abnormal entry count found on day 2016-12-10: -4238
WARNING. Abnormal entry count found on day 2016-12-17: -4230
WARNING. Abnormal entry count found on day 2016-12-17: -4230
WARNING. Abnormal entry count found on day 2016-12-24: -2874
WARNING. Abnormal entry count found on day 2016-12-24: -2874
Processing turnstile ('N196', 'R285', '00-03-01', 'FAR ROCKAWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -6000
WARNING. Abnormal entry count found on day 2016-12-03: -6000
WARNING. Abnormal entry count found on day 2016-12-10: -5685
WARNING. Abnormal entry count found on day 2016-12-10: -5685
WARNING. Abnormal entry count found on day 2016-12-17: -5910
WARNING. Abnormal entry count found on day 2016-12-17: -5910
WARNING. Abnormal entry count found on day 2016-12-24: -5160
WARNING. Abnormal entry count found on day 2016-12-24: -5160
Processing turnstile ('C019', 'R232', '00-00-03', '45 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16241
WARNING. Abnormal entry count found on day 2016-12-03: -16241
WARNING. Abnormal entry count found on day 2016-12-10: -15575
WARNING. Abnormal entry count found on day 2016-12-10: -15575
WARNING. Abnormal entry count found on day 2016-12-17: -15468
WARNING. Abnormal entry count found on day 2016-12-17: -15468
WARNING. Abnormal entry count found on day 2016-12-24: -12712
WARNING. Abnormal entry count found on day 2016-12-24: -12712
Processing turnstile ('R227', 'R131', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -1400
WARNING. Abnormal entry count found on day 2016-12-05: -933
WARNING. Abnormal entry count found on day 2016-12-06: -2624
WARNING. Abnormal entry count found on day 2016-12-07: -2929
WARNING. Abnormal entry count found on day 2016-12-08: -2890
WARNING. Abnormal entry count found on day 2016-12-09: -2956
WARNING. Abnormal entry count found on day 2016-12-03: 13732
WARNING. Abnormal entry count found on day 2016-12-04: -1400
WARNING. Abnormal entry count found on day 2016-12-05: -933
WARNING. Abnormal entry count found on day 2016-12-06: -2624
WARNING. Abnormal entry count found on day 2016-12-07: -2929
WARNING. Abnormal entry count found on day 2016-12-08: -2890
WARNING. Abnormal entry count found on day 2016-12-09: -2956
WARNING. Abnormal entry count found on day 2016-12-03: 13732
WARNING. Abnormal entry count found on day 2016-12-04: -1400
WARNING. Abnormal entry count found on day 2016-12-05: -933
WARNING. Abnormal entry count found on day 2016-12-06: -2624
WARNING. Abnormal entry count found on day 2016-12-07: -2929
WARNING. Abnormal entry count found on day 2016-12-08: -2890
WARNING. Abnormal entry count found on day 2016-12-09: -2956
WARNING. Abnormal entry count found on day 2016-12-10: -2458
WARNING. Abnormal entry count found on day 2016-12-11: -1510
WARNING. Abnormal entry count found on day 2016-12-12: -945
WARNING. Abnormal entry count found on day 2016-12-13: -2535
WARNING. Abnormal entry count found on day 2016-12-14: -2469
WARNING. Abnormal entry count found on day 2016-12-15: -2399
WARNING. Abnormal entry count found on day 2016-12-16: -2506
WARNING. Abnormal entry count found on day 2016-12-10: 12364
WARNING. Abnormal entry count found on day 2016-12-11: -1510
WARNING. Abnormal entry count found on day 2016-12-12: -945
WARNING. Abnormal entry count found on day 2016-12-13: -2535
WARNING. Abnormal entry count found on day 2016-12-14: -2469
WARNING. Abnormal entry count found on day 2016-12-15: -2399
WARNING. Abnormal entry count found on day 2016-12-16: -2506
WARNING. Abnormal entry count found on day 2016-12-10: 12364
WARNING. Abnormal entry count found on day 2016-12-11: -1510
WARNING. Abnormal entry count found on day 2016-12-12: -945
WARNING. Abnormal entry count found on day 2016-12-13: -2535
WARNING. Abnormal entry count found on day 2016-12-14: -2469
WARNING. Abnormal entry count found on day 2016-12-15: -2399
WARNING. Abnormal entry count found on day 2016-12-16: -2506
WARNING. Abnormal entry count found on day 2016-12-17: -2207
WARNING. Abnormal entry count found on day 2016-12-18: -1029
WARNING. Abnormal entry count found on day 2016-12-19: -848
WARNING. Abnormal entry count found on day 2016-12-20: -2253
WARNING. Abnormal entry count found on day 2016-12-21: -2263
WARNING. Abnormal entry count found on day 2016-12-22: -1998
WARNING. Abnormal entry count found on day 2016-12-23: -1869
WARNING. Abnormal entry count found on day 2016-12-17: 10260
WARNING. Abnormal entry count found on day 2016-12-18: -1029
WARNING. Abnormal entry count found on day 2016-12-19: -848
WARNING. Abnormal entry count found on day 2016-12-20: -2253
WARNING. Abnormal entry count found on day 2016-12-21: -2263
WARNING. Abnormal entry count found on day 2016-12-22: -1998
WARNING. Abnormal entry count found on day 2016-12-23: -1869
WARNING. Abnormal entry count found on day 2016-12-17: 10260
WARNING. Abnormal entry count found on day 2016-12-18: -1029
WARNING. Abnormal entry count found on day 2016-12-19: -848
WARNING. Abnormal entry count found on day 2016-12-20: -2253
WARNING. Abnormal entry count found on day 2016-12-21: -2263
WARNING. Abnormal entry count found on day 2016-12-22: -1998
WARNING. Abnormal entry count found on day 2016-12-23: -1869
WARNING. Abnormal entry count found on day 2016-12-24: -1482
WARNING. Abnormal entry count found on day 2016-12-25: -596
WARNING. Abnormal entry count found on day 2016-12-26: -278
WARNING. Abnormal entry count found on day 2016-12-27: -684
WARNING. Abnormal entry count found on day 2016-12-28: -1421
WARNING. Abnormal entry count found on day 2016-12-29: -1524
WARNING. Abnormal entry count found on day 2016-12-30: -1425
WARNING. Abnormal entry count found on day 2016-12-25: -596
WARNING. Abnormal entry count found on day 2016-12-26: -278
WARNING. Abnormal entry count found on day 2016-12-27: -684
WARNING. Abnormal entry count found on day 2016-12-28: -1421
WARNING. Abnormal entry count found on day 2016-12-29: -1524
WARNING. Abnormal entry count found on day 2016-12-30: -1425
WARNING. Abnormal entry count found on day 2016-12-25: -596
WARNING. Abnormal entry count found on day 2016-12-26: -278
WARNING. Abnormal entry count found on day 2016-12-27: -684
WARNING. Abnormal entry count found on day 2016-12-28: -1421
WARNING. Abnormal entry count found on day 2016-12-29: -1524
WARNING. Abnormal entry count found on day 2016-12-30: -1425
Processing turnstile ('N547', 'R420', '01-04-01', 'DITMAS AV')
Processing turnstile ('R259', 'R307', '00-00-00', '138/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-12-03: -9001
WARNING. Abnormal entry count found on day 2016-12-03: -9001
WARNING. Abnormal entry count found on day 2016-12-10: -8737
WARNING. Abnormal entry count found on day 2016-12-10: -8737
WARNING. Abnormal entry count found on day 2016-12-17: -7781
WARNING. Abnormal entry count found on day 2016-12-17: -7781
WARNING. Abnormal entry count found on day 2016-12-24: -6515
WARNING. Abnormal entry count found on day 2016-12-24: -6515
Processing turnstile ('A083', 'R125', '00-00-02', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1682
WARNING. Abnormal entry count found on day 2016-12-03: -1682
WARNING. Abnormal entry count found on day 2016-12-10: -1712
WARNING. Abnormal entry count found on day 2016-12-10: -1712
WARNING. Abnormal entry count found on day 2016-12-17: -1716
WARNING. Abnormal entry count found on day 2016-12-17: -1716
WARNING. Abnormal entry count found on day 2016-12-24: -1383
WARNING. Abnormal entry count found on day 2016-12-24: -1383
Processing turnstile ('R524', 'R347', '00-00-01', '69 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3259
WARNING. Abnormal entry count found on day 2016-12-03: -3259
WARNING. Abnormal entry count found on day 2016-12-10: -3163
WARNING. Abnormal entry count found on day 2016-12-10: -3163
WARNING. Abnormal entry count found on day 2016-12-17: -3108
WARNING. Abnormal entry count found on day 2016-12-17: -3108
WARNING. Abnormal entry count found on day 2016-12-24: -2505
WARNING. Abnormal entry count found on day 2016-12-24: -2505
Processing turnstile ('N414A', 'R316', '01-06-01', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2656
WARNING. Abnormal entry count found on day 2016-12-03: -2656
WARNING. Abnormal entry count found on day 2016-12-10: -2592
WARNING. Abnormal entry count found on day 2016-12-10: -2592
WARNING. Abnormal entry count found on day 2016-12-17: -2434
WARNING. Abnormal entry count found on day 2016-12-17: -2434
WARNING. Abnormal entry count found on day 2016-12-24: -1752
WARNING. Abnormal entry count found on day 2016-12-24: -1752
Processing turnstile ('N329', 'R201', '00-03-01', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -12327
WARNING. Abnormal entry count found on day 2016-12-03: -12327
WARNING. Abnormal entry count found on day 2016-12-10: -18033
WARNING. Abnormal entry count found on day 2016-12-10: -18033
WARNING. Abnormal entry count found on day 2016-12-17: -25294
WARNING. Abnormal entry count found on day 2016-12-17: -25294
WARNING. Abnormal entry count found on day 2016-12-24: -16100
WARNING. Abnormal entry count found on day 2016-12-24: -16100
Processing turnstile ('R421', 'R427', '00-03-01', 'MIDDLETOWN RD')
WARNING. Abnormal entry count found on day 2016-12-03: -2718
WARNING. Abnormal entry count found on day 2016-12-03: -2718
WARNING. Abnormal entry count found on day 2016-12-10: -3138
WARNING. Abnormal entry count found on day 2016-12-10: -3138
WARNING. Abnormal entry count found on day 2016-12-17: -2799
WARNING. Abnormal entry count found on day 2016-12-17: -2799
WARNING. Abnormal entry count found on day 2016-12-24: -2043
WARNING. Abnormal entry count found on day 2016-12-24: -2043
Processing turnstile ('N604', 'R342', '00-03-00', 'JAMAICA VAN WK')
WARNING. Abnormal entry count found on day 2016-12-03: -913
WARNING. Abnormal entry count found on day 2016-12-03: -913
WARNING. Abnormal entry count found on day 2016-12-10: -860
WARNING. Abnormal entry count found on day 2016-12-10: -860
WARNING. Abnormal entry count found on day 2016-12-17: -840
WARNING. Abnormal entry count found on day 2016-12-17: -840
WARNING. Abnormal entry count found on day 2016-12-24: -715
WARNING. Abnormal entry count found on day 2016-12-24: -715
Processing turnstile ('H001', 'R175', '00-06-00', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -18881
WARNING. Abnormal entry count found on day 2016-12-03: -18881
WARNING. Abnormal entry count found on day 2016-12-10: -19302
WARNING. Abnormal entry count found on day 2016-12-10: -19302
WARNING. Abnormal entry count found on day 2016-12-17: -15985
WARNING. Abnormal entry count found on day 2016-12-17: -15985
WARNING. Abnormal entry count found on day 2016-12-24: -11167
WARNING. Abnormal entry count found on day 2016-12-24: -11167
Processing turnstile ('R529', 'R208', '00-06-00', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-12-03: -7228
WARNING. Abnormal entry count found on day 2016-12-03: -7228
WARNING. Abnormal entry count found on day 2016-12-10: -7089
WARNING. Abnormal entry count found on day 2016-12-10: -7089
WARNING. Abnormal entry count found on day 2016-12-17: -7530
WARNING. Abnormal entry count found on day 2016-12-17: -7530
WARNING. Abnormal entry count found on day 2016-12-24: -5787
WARNING. Abnormal entry count found on day 2016-12-24: -5787
Processing turnstile ('N098', 'R028', '00-07-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -704
WARNING. Abnormal entry count found on day 2016-12-03: -704
WARNING. Abnormal entry count found on day 2016-12-10: -655
WARNING. Abnormal entry count found on day 2016-12-10: -655
WARNING. Abnormal entry count found on day 2016-12-17: -586
WARNING. Abnormal entry count found on day 2016-12-17: -586
WARNING. Abnormal entry count found on day 2016-12-24: -429
WARNING. Abnormal entry count found on day 2016-12-24: -429
Processing turnstile ('N329', 'R201', '00-03-04', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -11938
WARNING. Abnormal entry count found on day 2016-12-03: -11938
WARNING. Abnormal entry count found on day 2016-12-10: -12709
WARNING. Abnormal entry count found on day 2016-12-10: -12709
WARNING. Abnormal entry count found on day 2016-12-17: -15491
WARNING. Abnormal entry count found on day 2016-12-17: -15491
WARNING. Abnormal entry count found on day 2016-12-24: -11539
WARNING. Abnormal entry count found on day 2016-12-24: -11539
Processing turnstile ('N182', 'R414', '00-05-00', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
Processing turnstile ('R169', 'R168', '01-03-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10982
WARNING. Abnormal entry count found on day 2016-12-03: -10982
WARNING. Abnormal entry count found on day 2016-12-10: -12299
WARNING. Abnormal entry count found on day 2016-12-10: -12299
WARNING. Abnormal entry count found on day 2016-12-17: -11436
WARNING. Abnormal entry count found on day 2016-12-17: -11436
WARNING. Abnormal entry count found on day 2016-12-24: -8742
WARNING. Abnormal entry count found on day 2016-12-24: -8742
Processing turnstile ('N067', 'R012', '00-06-01', '34 ST-PENN STA')
Processing turnstile ('R227', 'R131', '00-00-05', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12759
WARNING. Abnormal entry count found on day 2016-12-03: -12759
WARNING. Abnormal entry count found on day 2016-12-10: -13111
WARNING. Abnormal entry count found on day 2016-12-10: -13111
WARNING. Abnormal entry count found on day 2016-12-17: -10732
WARNING. Abnormal entry count found on day 2016-12-17: -10732
WARNING. Abnormal entry count found on day 2016-12-24: -6216
WARNING. Abnormal entry count found on day 2016-12-24: -6216
Processing turnstile ('B017', 'R262', '00-00-00', 'BEVERLEY ROAD')
WARNING. Abnormal entry count found on day 2016-12-03: -7729
WARNING. Abnormal entry count found on day 2016-12-03: -7729
WARNING. Abnormal entry count found on day 2016-12-10: -8136
WARNING. Abnormal entry count found on day 2016-12-10: -8136
WARNING. Abnormal entry count found on day 2016-12-17: -7273
WARNING. Abnormal entry count found on day 2016-12-17: -7273
WARNING. Abnormal entry count found on day 2016-12-24: -5294
WARNING. Abnormal entry count found on day 2016-12-24: -5294
Processing turnstile ('A013', 'R081', '01-05-01', '49 ST')
Processing turnstile ('N343', 'R019', '00-00-04', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2826
WARNING. Abnormal entry count found on day 2016-12-03: -2826
WARNING. Abnormal entry count found on day 2016-12-10: -2710
WARNING. Abnormal entry count found on day 2016-12-10: -2710
WARNING. Abnormal entry count found on day 2016-12-17: -2744
WARNING. Abnormal entry count found on day 2016-12-17: -2744
WARNING. Abnormal entry count found on day 2016-12-24: -2134
WARNING. Abnormal entry count found on day 2016-12-24: -2134
Processing turnstile ('N224', 'R157', '00-00-03', 'NORWOOD 205 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3570
WARNING. Abnormal entry count found on day 2016-12-03: -3570
WARNING. Abnormal entry count found on day 2016-12-10: -3685
WARNING. Abnormal entry count found on day 2016-12-10: -3685
WARNING. Abnormal entry count found on day 2016-12-17: -3513
WARNING. Abnormal entry count found on day 2016-12-17: -3513
WARNING. Abnormal entry count found on day 2016-12-24: -3117
WARNING. Abnormal entry count found on day 2016-12-24: -3117
Processing turnstile ('N126', 'R441', '00-00-01', 'VAN SICLEN AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -4394
WARNING. Abnormal entry count found on day 2016-12-03: -4394
WARNING. Abnormal entry count found on day 2016-12-10: -4293
WARNING. Abnormal entry count found on day 2016-12-10: -4293
WARNING. Abnormal entry count found on day 2016-12-17: -4184
WARNING. Abnormal entry count found on day 2016-12-17: -4184
WARNING. Abnormal entry count found on day 2016-12-24: -3195
WARNING. Abnormal entry count found on day 2016-12-24: -3195
Processing turnstile ('N193', 'R337', '00-00-00', 'BEACH 44 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -923
WARNING. Abnormal entry count found on day 2016-12-03: -923
WARNING. Abnormal entry count found on day 2016-12-10: -851
WARNING. Abnormal entry count found on day 2016-12-10: -851
WARNING. Abnormal entry count found on day 2016-12-17: -847
WARNING. Abnormal entry count found on day 2016-12-17: -847
WARNING. Abnormal entry count found on day 2016-12-24: -727
WARNING. Abnormal entry count found on day 2016-12-24: -727
Processing turnstile ('B020', 'R263', '00-00-02', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -3588
WARNING. Abnormal entry count found on day 2016-12-03: -3588
WARNING. Abnormal entry count found on day 2016-12-10: -3246
WARNING. Abnormal entry count found on day 2016-12-10: -3246
WARNING. Abnormal entry count found on day 2016-12-17: -2724
WARNING. Abnormal entry count found on day 2016-12-17: -2724
WARNING. Abnormal entry count found on day 2016-12-24: -1434
WARNING. Abnormal entry count found on day 2016-12-24: -1434
Processing turnstile ('N016A', 'R296', '00-03-00', '163 ST-AMSTERDM')
WARNING. Abnormal entry count found on day 2016-12-03: -420
WARNING. Abnormal entry count found on day 2016-12-03: -420
WARNING. Abnormal entry count found on day 2016-12-10: -452
WARNING. Abnormal entry count found on day 2016-12-10: -452
WARNING. Abnormal entry count found on day 2016-12-17: -429
WARNING. Abnormal entry count found on day 2016-12-17: -429
WARNING. Abnormal entry count found on day 2016-12-24: -385
WARNING. Abnormal entry count found on day 2016-12-24: -385
Processing turnstile ('R246', 'R177', '00-00-04', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -10134
WARNING. Abnormal entry count found on day 2016-12-03: -10134
WARNING. Abnormal entry count found on day 2016-12-10: -9299
WARNING. Abnormal entry count found on day 2016-12-10: -9299
WARNING. Abnormal entry count found on day 2016-12-17: -7559
WARNING. Abnormal entry count found on day 2016-12-17: -7559
WARNING. Abnormal entry count found on day 2016-12-24: -4367
WARNING. Abnormal entry count found on day 2016-12-24: -4367
Processing turnstile ('R236', 'R045', '00-06-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11519
WARNING. Abnormal entry count found on day 2016-12-03: -11519
WARNING. Abnormal entry count found on day 2016-12-10: -11416
WARNING. Abnormal entry count found on day 2016-12-10: -11416
WARNING. Abnormal entry count found on day 2016-12-17: -10205
WARNING. Abnormal entry count found on day 2016-12-17: -10205
WARNING. Abnormal entry count found on day 2016-12-24: -6381
WARNING. Abnormal entry count found on day 2016-12-24: -6381
Processing turnstile ('N010', 'R126', '00-00-04', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3761
WARNING. Abnormal entry count found on day 2016-12-03: -3761
WARNING. Abnormal entry count found on day 2016-12-10: -3526
WARNING. Abnormal entry count found on day 2016-12-10: -3526
WARNING. Abnormal entry count found on day 2016-12-17: -3467
WARNING. Abnormal entry count found on day 2016-12-17: -3467
WARNING. Abnormal entry count found on day 2016-12-24: -3094
WARNING. Abnormal entry count found on day 2016-12-24: -3094
Processing turnstile ('N133', 'R384', '00-00-00', '88 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7518
WARNING. Abnormal entry count found on day 2016-12-03: -7518
WARNING. Abnormal entry count found on day 2016-12-10: -7310
WARNING. Abnormal entry count found on day 2016-12-10: -7310
WARNING. Abnormal entry count found on day 2016-12-17: -7011
WARNING. Abnormal entry count found on day 2016-12-17: -7011
WARNING. Abnormal entry count found on day 2016-12-24: -5489
WARNING. Abnormal entry count found on day 2016-12-24: -5489
Processing turnstile ('A046', 'R463', '00-03-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5863
WARNING. Abnormal entry count found on day 2016-12-03: -5863
WARNING. Abnormal entry count found on day 2016-12-10: -5568
WARNING. Abnormal entry count found on day 2016-12-10: -5568
WARNING. Abnormal entry count found on day 2016-12-17: -6575
WARNING. Abnormal entry count found on day 2016-12-17: -6575
WARNING. Abnormal entry count found on day 2016-12-24: -7413
WARNING. Abnormal entry count found on day 2016-12-24: -7413
Processing turnstile ('PTH12', 'R542', '00-04-03', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -179
WARNING. Abnormal entry count found on day 2016-12-03: -179
WARNING. Abnormal entry count found on day 2016-12-10: -103
WARNING. Abnormal entry count found on day 2016-12-10: -103
WARNING. Abnormal entry count found on day 2016-12-17: -96
WARNING. Abnormal entry count found on day 2016-12-17: -96
WARNING. Abnormal entry count found on day 2016-12-24: -92
WARNING. Abnormal entry count found on day 2016-12-24: -92
Processing turnstile ('N416', 'R286', '01-05-00', 'MYRTLE-WILLOUGH')
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N051', 'R084', '02-00-03', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -27430
WARNING. Abnormal entry count found on day 2016-12-03: -27430
WARNING. Abnormal entry count found on day 2016-12-10: -26922
WARNING. Abnormal entry count found on day 2016-12-10: -26922
WARNING. Abnormal entry count found on day 2016-12-17: -19364
WARNING. Abnormal entry count found on day 2016-12-17: -19364
WARNING. Abnormal entry count found on day 2016-12-24: -15418
WARNING. Abnormal entry count found on day 2016-12-24: -15418
Processing turnstile ('N220', 'R155', '01-06-00', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
Processing turnstile ('PTH07', 'R550', '00-02-03', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -136
WARNING. Abnormal entry count found on day 2016-12-03: -136
WARNING. Abnormal entry count found on day 2016-12-10: -144
WARNING. Abnormal entry count found on day 2016-12-10: -144
WARNING. Abnormal entry count found on day 2016-12-17: -136
WARNING. Abnormal entry count found on day 2016-12-17: -136
WARNING. Abnormal entry count found on day 2016-12-24: -86
WARNING. Abnormal entry count found on day 2016-12-24: -86
Processing turnstile ('N045', 'R187', '01-00-01', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -6372
WARNING. Abnormal entry count found on day 2016-12-03: -6372
WARNING. Abnormal entry count found on day 2016-12-10: -6211
WARNING. Abnormal entry count found on day 2016-12-10: -6211
WARNING. Abnormal entry count found on day 2016-12-17: -7147
WARNING. Abnormal entry count found on day 2016-12-17: -7147
WARNING. Abnormal entry count found on day 2016-12-24: -9468
WARNING. Abnormal entry count found on day 2016-12-24: -9468
Processing turnstile ('PTH20', 'R549', '03-00-05', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -311
WARNING. Abnormal entry count found on day 2016-12-03: -311
WARNING. Abnormal entry count found on day 2016-12-10: -546
WARNING. Abnormal entry count found on day 2016-12-10: -546
WARNING. Abnormal entry count found on day 2016-12-17: -670
WARNING. Abnormal entry count found on day 2016-12-17: -670
WARNING. Abnormal entry count found on day 2016-12-24: -278
WARNING. Abnormal entry count found on day 2016-12-24: -278
Processing turnstile ('R112A', 'R027', '03-00-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6029
WARNING. Abnormal entry count found on day 2016-12-03: -6029
WARNING. Abnormal entry count found on day 2016-12-10: -6058
WARNING. Abnormal entry count found on day 2016-12-10: -6058
WARNING. Abnormal entry count found on day 2016-12-17: -5099
WARNING. Abnormal entry count found on day 2016-12-17: -5099
WARNING. Abnormal entry count found on day 2016-12-24: -2687
WARNING. Abnormal entry count found on day 2016-12-24: -2687
Processing turnstile ('E013', 'R373', '00-00-02', '20 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8616
WARNING. Abnormal entry count found on day 2016-12-03: -8616
WARNING. Abnormal entry count found on day 2016-12-10: -8509
WARNING. Abnormal entry count found on day 2016-12-10: -8509
WARNING. Abnormal entry count found on day 2016-12-17: -8832
WARNING. Abnormal entry count found on day 2016-12-17: -8832
WARNING. Abnormal entry count found on day 2016-12-24: -7243
WARNING. Abnormal entry count found on day 2016-12-24: -7243
Processing turnstile ('N071', 'R013', '00-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -4584
WARNING. Abnormal entry count found on day 2016-12-03: -4584
WARNING. Abnormal entry count found on day 2016-12-10: -4531
WARNING. Abnormal entry count found on day 2016-12-10: -4531
WARNING. Abnormal entry count found on day 2016-12-17: -4599
WARNING. Abnormal entry count found on day 2016-12-17: -4599
WARNING. Abnormal entry count found on day 2016-12-24: -4289
WARNING. Abnormal entry count found on day 2016-12-24: -4289
Processing turnstile ('R333', 'R366', '00-00-00', '225 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10841
WARNING. Abnormal entry count found on day 2016-12-03: -10841
WARNING. Abnormal entry count found on day 2016-12-10: -10426
WARNING. Abnormal entry count found on day 2016-12-10: -10426
WARNING. Abnormal entry count found on day 2016-12-17: -10231
WARNING. Abnormal entry count found on day 2016-12-17: -10231
WARNING. Abnormal entry count found on day 2016-12-24: -8256
WARNING. Abnormal entry count found on day 2016-12-24: -8256
Processing turnstile ('R141', 'R031', '00-03-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -8040
WARNING. Abnormal entry count found on day 2016-12-03: -8040
WARNING. Abnormal entry count found on day 2016-12-10: -8216
WARNING. Abnormal entry count found on day 2016-12-10: -8216
WARNING. Abnormal entry count found on day 2016-12-17: -9995
WARNING. Abnormal entry count found on day 2016-12-17: -9995
WARNING. Abnormal entry count found on day 2016-12-24: -7745
WARNING. Abnormal entry count found on day 2016-12-24: -7745
Processing turnstile ('R138', 'R293', '00-03-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -2377
WARNING. Abnormal entry count found on day 2016-12-03: -2377
WARNING. Abnormal entry count found on day 2016-12-10: -2937
WARNING. Abnormal entry count found on day 2016-12-10: -2937
WARNING. Abnormal entry count found on day 2016-12-17: -3795
WARNING. Abnormal entry count found on day 2016-12-17: -3795
WARNING. Abnormal entry count found on day 2016-12-24: -912
WARNING. Abnormal entry count found on day 2016-12-24: -912
Processing turnstile ('R110', 'R027', '01-00-02', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8545
WARNING. Abnormal entry count found on day 2016-12-03: -8545
WARNING. Abnormal entry count found on day 2016-12-10: -8746
WARNING. Abnormal entry count found on day 2016-12-10: -8746
WARNING. Abnormal entry count found on day 2016-12-17: -7572
WARNING. Abnormal entry count found on day 2016-12-17: -7572
WARNING. Abnormal entry count found on day 2016-12-24: -4666
WARNING. Abnormal entry count found on day 2016-12-24: -4666
Processing turnstile ('N336', 'R158', '00-00-00', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -5039
WARNING. Abnormal entry count found on day 2016-12-03: -5039
WARNING. Abnormal entry count found on day 2016-12-10: -4820
WARNING. Abnormal entry count found on day 2016-12-10: -4820
WARNING. Abnormal entry count found on day 2016-12-17: -4779
WARNING. Abnormal entry count found on day 2016-12-17: -4779
WARNING. Abnormal entry count found on day 2016-12-24: -3524
WARNING. Abnormal entry count found on day 2016-12-24: -3524
Processing turnstile ('A029', 'R082', '00-00-01', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8781
WARNING. Abnormal entry count found on day 2016-12-03: -8781
WARNING. Abnormal entry count found on day 2016-12-10: -7586
WARNING. Abnormal entry count found on day 2016-12-10: -7586
WARNING. Abnormal entry count found on day 2016-12-17: -7406
WARNING. Abnormal entry count found on day 2016-12-17: -7406
WARNING. Abnormal entry count found on day 2016-12-24: -5400
WARNING. Abnormal entry count found on day 2016-12-24: -5400
Processing turnstile ('J002', 'R460', '00-00-01', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2965
WARNING. Abnormal entry count found on day 2016-12-03: -2965
WARNING. Abnormal entry count found on day 2016-12-10: -2847
WARNING. Abnormal entry count found on day 2016-12-10: -2847
WARNING. Abnormal entry count found on day 2016-12-17: -2816
WARNING. Abnormal entry count found on day 2016-12-17: -2816
WARNING. Abnormal entry count found on day 2016-12-24: -2280
WARNING. Abnormal entry count found on day 2016-12-24: -2280
Processing turnstile ('R227A', 'R131', '01-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10307
WARNING. Abnormal entry count found on day 2016-12-03: -10307
WARNING. Abnormal entry count found on day 2016-12-10: -10428
WARNING. Abnormal entry count found on day 2016-12-10: -10428
WARNING. Abnormal entry count found on day 2016-12-17: -9989
WARNING. Abnormal entry count found on day 2016-12-17: -9989
WARNING. Abnormal entry count found on day 2016-12-24: -4151
WARNING. Abnormal entry count found on day 2016-12-24: -4151
Processing turnstile ('TRAM1', 'R468', '00-05-00', 'RIT-MANHATTAN')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('N304', 'R015', '01-01-01', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4620
WARNING. Abnormal entry count found on day 2016-12-03: -4620
WARNING. Abnormal entry count found on day 2016-12-10: -4257
WARNING. Abnormal entry count found on day 2016-12-10: -4257
WARNING. Abnormal entry count found on day 2016-12-17: -3579
WARNING. Abnormal entry count found on day 2016-12-17: -3579
WARNING. Abnormal entry count found on day 2016-12-24: -1810
WARNING. Abnormal entry count found on day 2016-12-24: -1810
Processing turnstile ('G011', 'R312', '00-00-02', 'W 8 ST-AQUARIUM')
WARNING. Abnormal entry count found on day 2016-12-03: -1608
WARNING. Abnormal entry count found on day 2016-12-03: -1608
WARNING. Abnormal entry count found on day 2016-12-10: -1522
WARNING. Abnormal entry count found on day 2016-12-10: -1522
WARNING. Abnormal entry count found on day 2016-12-17: -1616
WARNING. Abnormal entry count found on day 2016-12-17: -1616
WARNING. Abnormal entry count found on day 2016-12-24: -1555
WARNING. Abnormal entry count found on day 2016-12-24: -1555
Processing turnstile ('N203', 'R195', '00-00-01', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-04: -1302
WARNING. Abnormal entry count found on day 2016-12-05: -1041
WARNING. Abnormal entry count found on day 2016-12-06: -1841
WARNING. Abnormal entry count found on day 2016-12-07: -1725
WARNING. Abnormal entry count found on day 2016-12-08: -1735
WARNING. Abnormal entry count found on day 2016-12-09: -1563
WARNING. Abnormal entry count found on day 2016-12-04: -1302
WARNING. Abnormal entry count found on day 2016-12-05: -1041
WARNING. Abnormal entry count found on day 2016-12-06: -1841
WARNING. Abnormal entry count found on day 2016-12-07: -1725
WARNING. Abnormal entry count found on day 2016-12-08: -1735
WARNING. Abnormal entry count found on day 2016-12-09: -1563
WARNING. Abnormal entry count found on day 2016-12-04: -1302
WARNING. Abnormal entry count found on day 2016-12-05: -1041
WARNING. Abnormal entry count found on day 2016-12-06: -1841
WARNING. Abnormal entry count found on day 2016-12-07: -1725
WARNING. Abnormal entry count found on day 2016-12-08: -1735
WARNING. Abnormal entry count found on day 2016-12-09: -1563
WARNING. Abnormal entry count found on day 2016-12-10: -1811
WARNING. Abnormal entry count found on day 2016-12-11: -1299
WARNING. Abnormal entry count found on day 2016-12-12: -974
WARNING. Abnormal entry count found on day 2016-12-13: -1696
WARNING. Abnormal entry count found on day 2016-12-14: -1774
WARNING. Abnormal entry count found on day 2016-12-15: -1705
WARNING. Abnormal entry count found on day 2016-12-16: -1794
WARNING. Abnormal entry count found on day 2016-12-11: -1299
WARNING. Abnormal entry count found on day 2016-12-12: -974
WARNING. Abnormal entry count found on day 2016-12-13: -1696
WARNING. Abnormal entry count found on day 2016-12-14: -1774
WARNING. Abnormal entry count found on day 2016-12-15: -1705
WARNING. Abnormal entry count found on day 2016-12-16: -1794
WARNING. Abnormal entry count found on day 2016-12-11: -1299
WARNING. Abnormal entry count found on day 2016-12-12: -974
WARNING. Abnormal entry count found on day 2016-12-13: -1696
WARNING. Abnormal entry count found on day 2016-12-14: -1774
WARNING. Abnormal entry count found on day 2016-12-15: -1705
WARNING. Abnormal entry count found on day 2016-12-16: -1794
WARNING. Abnormal entry count found on day 2016-12-17: -1750
WARNING. Abnormal entry count found on day 2016-12-18: -1021
WARNING. Abnormal entry count found on day 2016-12-19: -950
WARNING. Abnormal entry count found on day 2016-12-20: -1785
WARNING. Abnormal entry count found on day 2016-12-21: -1842
WARNING. Abnormal entry count found on day 2016-12-22: -1867
WARNING. Abnormal entry count found on day 2016-12-23: -1773
WARNING. Abnormal entry count found on day 2016-12-18: -1021
WARNING. Abnormal entry count found on day 2016-12-19: -950
WARNING. Abnormal entry count found on day 2016-12-20: -1785
WARNING. Abnormal entry count found on day 2016-12-21: -1842
WARNING. Abnormal entry count found on day 2016-12-22: -1867
WARNING. Abnormal entry count found on day 2016-12-23: -1773
WARNING. Abnormal entry count found on day 2016-12-18: -1021
WARNING. Abnormal entry count found on day 2016-12-19: -950
WARNING. Abnormal entry count found on day 2016-12-20: -1785
WARNING. Abnormal entry count found on day 2016-12-21: -1842
WARNING. Abnormal entry count found on day 2016-12-22: -1867
WARNING. Abnormal entry count found on day 2016-12-23: -1773
WARNING. Abnormal entry count found on day 2016-12-24: -1775
WARNING. Abnormal entry count found on day 2016-12-25: -1082
WARNING. Abnormal entry count found on day 2016-12-26: -804
WARNING. Abnormal entry count found on day 2016-12-27: -1194
WARNING. Abnormal entry count found on day 2016-12-28: -1633
WARNING. Abnormal entry count found on day 2016-12-29: -1891
WARNING. Abnormal entry count found on day 2016-12-30: -1540
WARNING. Abnormal entry count found on day 2016-12-25: -1082
WARNING. Abnormal entry count found on day 2016-12-26: -804
WARNING. Abnormal entry count found on day 2016-12-27: -1194
WARNING. Abnormal entry count found on day 2016-12-28: -1633
WARNING. Abnormal entry count found on day 2016-12-29: -1891
WARNING. Abnormal entry count found on day 2016-12-30: -1540
WARNING. Abnormal entry count found on day 2016-12-25: -1082
WARNING. Abnormal entry count found on day 2016-12-26: -804
WARNING. Abnormal entry count found on day 2016-12-27: -1194
WARNING. Abnormal entry count found on day 2016-12-28: -1633
WARNING. Abnormal entry count found on day 2016-12-29: -1891
WARNING. Abnormal entry count found on day 2016-12-30: -1540
Processing turnstile ('R643', 'R135', '00-03-00', 'NEWKIRK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4229
WARNING. Abnormal entry count found on day 2016-12-03: -4229
WARNING. Abnormal entry count found on day 2016-12-10: -2471
WARNING. Abnormal entry count found on day 2016-12-10: -2471
WARNING. Abnormal entry count found on day 2016-12-17: -3005
WARNING. Abnormal entry count found on day 2016-12-17: -3005
WARNING. Abnormal entry count found on day 2016-12-24: -2650
WARNING. Abnormal entry count found on day 2016-12-24: -2650
Processing turnstile ('N532', 'R129', '00-00-00', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11427
WARNING. Abnormal entry count found on day 2016-12-03: -11427
WARNING. Abnormal entry count found on day 2016-12-10: -11174
WARNING. Abnormal entry count found on day 2016-12-10: -11174
WARNING. Abnormal entry count found on day 2016-12-17: -10384
WARNING. Abnormal entry count found on day 2016-12-17: -10384
WARNING. Abnormal entry count found on day 2016-12-24: -6862
WARNING. Abnormal entry count found on day 2016-12-24: -6862
Processing turnstile ('R162', 'R166', '00-00-03', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7603
WARNING. Abnormal entry count found on day 2016-12-03: -7603
WARNING. Abnormal entry count found on day 2016-12-10: -7669
WARNING. Abnormal entry count found on day 2016-12-10: -7669
WARNING. Abnormal entry count found on day 2016-12-17: -7053
WARNING. Abnormal entry count found on day 2016-12-17: -7053
WARNING. Abnormal entry count found on day 2016-12-24: -5361
WARNING. Abnormal entry count found on day 2016-12-24: -5361
Processing turnstile ('PTH07', 'R550', '00-01-06', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -872
WARNING. Abnormal entry count found on day 2016-12-03: -872
WARNING. Abnormal entry count found on day 2016-12-10: -857
WARNING. Abnormal entry count found on day 2016-12-10: -857
WARNING. Abnormal entry count found on day 2016-12-17: -804
WARNING. Abnormal entry count found on day 2016-12-17: -804
WARNING. Abnormal entry count found on day 2016-12-24: -432
WARNING. Abnormal entry count found on day 2016-12-24: -432
Processing turnstile ('N095A', 'R014', '01-03-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10290
WARNING. Abnormal entry count found on day 2016-12-03: -10290
WARNING. Abnormal entry count found on day 2016-12-10: -10262
WARNING. Abnormal entry count found on day 2016-12-10: -10262
WARNING. Abnormal entry count found on day 2016-12-17: -12118
WARNING. Abnormal entry count found on day 2016-12-17: -12118
WARNING. Abnormal entry count found on day 2016-12-24: -9587
WARNING. Abnormal entry count found on day 2016-12-24: -9587
Processing turnstile ('R155', 'R116', '01-00-07', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7738
WARNING. Abnormal entry count found on day 2016-12-03: -7738
WARNING. Abnormal entry count found on day 2016-12-10: -8135
WARNING. Abnormal entry count found on day 2016-12-10: -8135
WARNING. Abnormal entry count found on day 2016-12-17: -7578
WARNING. Abnormal entry count found on day 2016-12-17: -7578
WARNING. Abnormal entry count found on day 2016-12-24: -5799
WARNING. Abnormal entry count found on day 2016-12-24: -5799
Processing turnstile ('G015', 'R312', '01-06-01', 'W 8 ST-AQUARIUM')
WARNING. Abnormal entry count found on day 2016-12-03: -1735
WARNING. Abnormal entry count found on day 2016-12-03: -1735
WARNING. Abnormal entry count found on day 2016-12-10: -1765
WARNING. Abnormal entry count found on day 2016-12-10: -1765
WARNING. Abnormal entry count found on day 2016-12-17: -1714
WARNING. Abnormal entry count found on day 2016-12-17: -1714
WARNING. Abnormal entry count found on day 2016-12-24: -1347
WARNING. Abnormal entry count found on day 2016-12-24: -1347
Processing turnstile ('R726', 'R329', '00-00-01', 'MORRIS PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -3843
WARNING. Abnormal entry count found on day 2016-12-03: -3843
WARNING. Abnormal entry count found on day 2016-12-10: -3974
WARNING. Abnormal entry count found on day 2016-12-10: -3974
WARNING. Abnormal entry count found on day 2016-12-17: -3861
WARNING. Abnormal entry count found on day 2016-12-17: -3861
WARNING. Abnormal entry count found on day 2016-12-24: -3066
WARNING. Abnormal entry count found on day 2016-12-24: -3066
Processing turnstile ('R306', 'R207', '00-00-00', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14883
WARNING. Abnormal entry count found on day 2016-12-03: -14883
WARNING. Abnormal entry count found on day 2016-12-10: -14522
WARNING. Abnormal entry count found on day 2016-12-10: -14522
WARNING. Abnormal entry count found on day 2016-12-17: -13820
WARNING. Abnormal entry count found on day 2016-12-17: -13820
WARNING. Abnormal entry count found on day 2016-12-24: -10446
WARNING. Abnormal entry count found on day 2016-12-24: -10446
Processing turnstile ('R532H', 'R328', '02-03-06', 'METS-WILLETS PT')
Processing turnstile ('N534', 'R220', '01-06-00', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6591
WARNING. Abnormal entry count found on day 2016-12-03: -6591
WARNING. Abnormal entry count found on day 2016-12-10: -6499
WARNING. Abnormal entry count found on day 2016-12-10: -6499
WARNING. Abnormal entry count found on day 2016-12-17: -5737
WARNING. Abnormal entry count found on day 2016-12-17: -5737
WARNING. Abnormal entry count found on day 2016-12-24: -3058
WARNING. Abnormal entry count found on day 2016-12-24: -3058
Processing turnstile ('PTH17', 'R541', '01-00-01', 'THIRTY THIRD ST')
Processing turnstile ('R165', 'R167', '01-00-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5712
WARNING. Abnormal entry count found on day 2016-12-03: -5712
WARNING. Abnormal entry count found on day 2016-12-10: -5860
WARNING. Abnormal entry count found on day 2016-12-10: -5860
WARNING. Abnormal entry count found on day 2016-12-17: -5557
WARNING. Abnormal entry count found on day 2016-12-17: -5557
WARNING. Abnormal entry count found on day 2016-12-24: -3882
WARNING. Abnormal entry count found on day 2016-12-24: -3882
Processing turnstile ('N422', 'R318', '00-05-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
Processing turnstile ('E014', 'R374', '00-00-01', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -9083
WARNING. Abnormal entry count found on day 2016-12-03: -9083
WARNING. Abnormal entry count found on day 2016-12-10: -9576
WARNING. Abnormal entry count found on day 2016-12-10: -9576
WARNING. Abnormal entry count found on day 2016-12-17: -9157
WARNING. Abnormal entry count found on day 2016-12-17: -9157
WARNING. Abnormal entry count found on day 2016-12-24: -7255
WARNING. Abnormal entry count found on day 2016-12-24: -7255
Processing turnstile ('R256', 'R182', '00-00-03', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14516
WARNING. Abnormal entry count found on day 2016-12-03: -14516
WARNING. Abnormal entry count found on day 2016-12-10: -13629
WARNING. Abnormal entry count found on day 2016-12-10: -13629
WARNING. Abnormal entry count found on day 2016-12-17: -13599
WARNING. Abnormal entry count found on day 2016-12-17: -13599
WARNING. Abnormal entry count found on day 2016-12-24: -10202
WARNING. Abnormal entry count found on day 2016-12-24: -10202
Processing turnstile ('N513', 'R163', '04-00-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9257
WARNING. Abnormal entry count found on day 2016-12-03: -9257
WARNING. Abnormal entry count found on day 2016-12-10: -8776
WARNING. Abnormal entry count found on day 2016-12-10: -8776
WARNING. Abnormal entry count found on day 2016-12-17: -8215
WARNING. Abnormal entry count found on day 2016-12-17: -8215
WARNING. Abnormal entry count found on day 2016-12-24: -5035
WARNING. Abnormal entry count found on day 2016-12-24: -5035
Processing turnstile ('N558', 'R130', '01-05-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
Processing turnstile ('H014', 'R249', '00-00-01', 'GRAHAM AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1888
WARNING. Abnormal entry count found on day 2016-12-03: -1888
WARNING. Abnormal entry count found on day 2016-12-10: -2161
WARNING. Abnormal entry count found on day 2016-12-10: -2161
WARNING. Abnormal entry count found on day 2016-12-17: -2190
WARNING. Abnormal entry count found on day 2016-12-17: -2190
WARNING. Abnormal entry count found on day 2016-12-24: -1344
WARNING. Abnormal entry count found on day 2016-12-24: -1344
Processing turnstile ('N334B', 'R341', '00-00-02', '75 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -103
WARNING. Abnormal entry count found on day 2016-12-03: -103
WARNING. Abnormal entry count found on day 2016-12-10: -99
WARNING. Abnormal entry count found on day 2016-12-10: -99
WARNING. Abnormal entry count found on day 2016-12-17: -126
WARNING. Abnormal entry count found on day 2016-12-17: -126
WARNING. Abnormal entry count found on day 2016-12-24: -85
WARNING. Abnormal entry count found on day 2016-12-24: -85
Processing turnstile ('H003', 'R163', '01-00-00', '6 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7796
WARNING. Abnormal entry count found on day 2016-12-03: -7796
WARNING. Abnormal entry count found on day 2016-12-10: -7747
WARNING. Abnormal entry count found on day 2016-12-10: -7747
WARNING. Abnormal entry count found on day 2016-12-17: -10526
WARNING. Abnormal entry count found on day 2016-12-17: -10526
WARNING. Abnormal entry count found on day 2016-12-24: -7386
WARNING. Abnormal entry count found on day 2016-12-24: -7386
Processing turnstile ('R310', 'R053', '01-00-00', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -29281
WARNING. Abnormal entry count found on day 2016-12-03: -29281
WARNING. Abnormal entry count found on day 2016-12-10: -27141
WARNING. Abnormal entry count found on day 2016-12-10: -27141
WARNING. Abnormal entry count found on day 2016-12-17: -26633
WARNING. Abnormal entry count found on day 2016-12-17: -26633
WARNING. Abnormal entry count found on day 2016-12-24: -22292
WARNING. Abnormal entry count found on day 2016-12-24: -22292
Processing turnstile ('N602', 'R259', '00-00-01', 'ROOSEVELT ISLND')
WARNING. Abnormal entry count found on day 2016-12-03: -7503
WARNING. Abnormal entry count found on day 2016-12-03: -7503
WARNING. Abnormal entry count found on day 2016-12-10: -6445
WARNING. Abnormal entry count found on day 2016-12-10: -6445
WARNING. Abnormal entry count found on day 2016-12-17: -6597
WARNING. Abnormal entry count found on day 2016-12-17: -6597
WARNING. Abnormal entry count found on day 2016-12-24: -5111
WARNING. Abnormal entry count found on day 2016-12-24: -5111
Processing turnstile ('C008', 'R099', '00-00-03', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4809
WARNING. Abnormal entry count found on day 2016-12-03: -4809
WARNING. Abnormal entry count found on day 2016-12-10: -4798
WARNING. Abnormal entry count found on day 2016-12-10: -4798
WARNING. Abnormal entry count found on day 2016-12-17: -4764
WARNING. Abnormal entry count found on day 2016-12-17: -4764
WARNING. Abnormal entry count found on day 2016-12-24: -3076
WARNING. Abnormal entry count found on day 2016-12-24: -3076
Processing turnstile ('G001', 'R151', '00-03-03', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -1533
WARNING. Abnormal entry count found on day 2016-12-03: -1533
WARNING. Abnormal entry count found on day 2016-12-10: -1320
WARNING. Abnormal entry count found on day 2016-12-10: -1320
WARNING. Abnormal entry count found on day 2016-12-17: -1375
WARNING. Abnormal entry count found on day 2016-12-17: -1375
WARNING. Abnormal entry count found on day 2016-12-24: -1414
WARNING. Abnormal entry count found on day 2016-12-24: -1414
Processing turnstile ('R533', 'R055', '00-00-04', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -5509
WARNING. Abnormal entry count found on day 2016-12-03: -5509
WARNING. Abnormal entry count found on day 2016-12-10: -5268
WARNING. Abnormal entry count found on day 2016-12-10: -5268
WARNING. Abnormal entry count found on day 2016-12-17: -5698
WARNING. Abnormal entry count found on day 2016-12-17: -5698
WARNING. Abnormal entry count found on day 2016-12-24: -5471
WARNING. Abnormal entry count found on day 2016-12-24: -5471
Processing turnstile ('N545', 'R204', '01-05-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
Processing turnstile ('N043', 'R186', '00-06-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13479
WARNING. Abnormal entry count found on day 2016-12-03: -13479
WARNING. Abnormal entry count found on day 2016-12-10: -12645
WARNING. Abnormal entry count found on day 2016-12-10: -12645
WARNING. Abnormal entry count found on day 2016-12-17: -10727
WARNING. Abnormal entry count found on day 2016-12-17: -10727
WARNING. Abnormal entry count found on day 2016-12-24: -7564
WARNING. Abnormal entry count found on day 2016-12-24: -7564
Processing turnstile ('R159', 'R164', '01-05-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('N134', 'R385', '00-03-00', 'ROCKAWAY BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3575
WARNING. Abnormal entry count found on day 2016-12-03: -3575
WARNING. Abnormal entry count found on day 2016-12-10: -3388
WARNING. Abnormal entry count found on day 2016-12-10: -3388
WARNING. Abnormal entry count found on day 2016-12-17: -3296
WARNING. Abnormal entry count found on day 2016-12-17: -3296
WARNING. Abnormal entry count found on day 2016-12-24: -2419
WARNING. Abnormal entry count found on day 2016-12-24: -2419
Processing turnstile ('A006', 'R079', '00-00-03', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6574
WARNING. Abnormal entry count found on day 2016-12-03: -6574
WARNING. Abnormal entry count found on day 2016-12-10: -6498
WARNING. Abnormal entry count found on day 2016-12-10: -6498
WARNING. Abnormal entry count found on day 2016-12-17: -6284
WARNING. Abnormal entry count found on day 2016-12-17: -6284
WARNING. Abnormal entry count found on day 2016-12-24: -5505
WARNING. Abnormal entry count found on day 2016-12-24: -5505
Processing turnstile ('N521', 'R300', '01-06-00', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1984
WARNING. Abnormal entry count found on day 2016-12-03: -1984
WARNING. Abnormal entry count found on day 2016-12-10: -1885
WARNING. Abnormal entry count found on day 2016-12-10: -1885
WARNING. Abnormal entry count found on day 2016-12-17: -1743
WARNING. Abnormal entry count found on day 2016-12-17: -1743
WARNING. Abnormal entry count found on day 2016-12-24: -1274
WARNING. Abnormal entry count found on day 2016-12-24: -1274
Processing turnstile ('R330', 'R363', '00-00-02', 'BURKE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7385
WARNING. Abnormal entry count found on day 2016-12-03: -7385
WARNING. Abnormal entry count found on day 2016-12-10: -6966
WARNING. Abnormal entry count found on day 2016-12-10: -6966
WARNING. Abnormal entry count found on day 2016-12-17: -7207
WARNING. Abnormal entry count found on day 2016-12-17: -7207
WARNING. Abnormal entry count found on day 2016-12-24: -5759
WARNING. Abnormal entry count found on day 2016-12-24: -5759
Processing turnstile ('R219', 'R160', '00-00-01', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -9570
WARNING. Abnormal entry count found on day 2016-12-03: -9570
WARNING. Abnormal entry count found on day 2016-12-10: -9804
WARNING. Abnormal entry count found on day 2016-12-10: -9804
WARNING. Abnormal entry count found on day 2016-12-17: -8711
WARNING. Abnormal entry count found on day 2016-12-17: -8711
WARNING. Abnormal entry count found on day 2016-12-24: -6169
WARNING. Abnormal entry count found on day 2016-12-24: -6169
Processing turnstile ('K025', 'R404', '00-03-03', 'FRESH POND RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3607
WARNING. Abnormal entry count found on day 2016-12-03: -3607
WARNING. Abnormal entry count found on day 2016-12-10: -3460
WARNING. Abnormal entry count found on day 2016-12-10: -3460
WARNING. Abnormal entry count found on day 2016-12-17: -3562
WARNING. Abnormal entry count found on day 2016-12-17: -3562
WARNING. Abnormal entry count found on day 2016-12-24: -2678
WARNING. Abnormal entry count found on day 2016-12-24: -2678
Processing turnstile ('R164', 'R167', '00-00-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5932
WARNING. Abnormal entry count found on day 2016-12-03: -5932
WARNING. Abnormal entry count found on day 2016-12-10: -5944
WARNING. Abnormal entry count found on day 2016-12-10: -5944
WARNING. Abnormal entry count found on day 2016-12-17: -5303
WARNING. Abnormal entry count found on day 2016-12-17: -5303
WARNING. Abnormal entry count found on day 2016-12-24: -4233
WARNING. Abnormal entry count found on day 2016-12-24: -4233
Processing turnstile ('R232A', 'R176', '03-05-01', '33 ST')
Processing turnstile ('A038', 'R085', '00-00-03', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -11548
WARNING. Abnormal entry count found on day 2016-12-03: -11548
WARNING. Abnormal entry count found on day 2016-12-10: -11977
WARNING. Abnormal entry count found on day 2016-12-10: -11977
WARNING. Abnormal entry count found on day 2016-12-17: -10897
WARNING. Abnormal entry count found on day 2016-12-17: -10897
WARNING. Abnormal entry count found on day 2016-12-24: -8076
WARNING. Abnormal entry count found on day 2016-12-24: -8076
Processing turnstile ('E013', 'R373', '00-00-01', '20 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7715
WARNING. Abnormal entry count found on day 2016-12-03: -7715
WARNING. Abnormal entry count found on day 2016-12-10: -7426
WARNING. Abnormal entry count found on day 2016-12-10: -7426
WARNING. Abnormal entry count found on day 2016-12-17: -7728
WARNING. Abnormal entry count found on day 2016-12-17: -7728
WARNING. Abnormal entry count found on day 2016-12-24: -6226
WARNING. Abnormal entry count found on day 2016-12-24: -6226
Processing turnstile ('R125', 'R189', '00-00-00', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19613
WARNING. Abnormal entry count found on day 2016-12-03: -19613
WARNING. Abnormal entry count found on day 2016-12-10: -19141
WARNING. Abnormal entry count found on day 2016-12-10: -19141
WARNING. Abnormal entry count found on day 2016-12-17: -17838
WARNING. Abnormal entry count found on day 2016-12-17: -17838
WARNING. Abnormal entry count found on day 2016-12-24: -17007
WARNING. Abnormal entry count found on day 2016-12-24: -17007
Processing turnstile ('N500', 'R020', '00-03-02', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -21152
WARNING. Abnormal entry count found on day 2016-12-03: -21152
WARNING. Abnormal entry count found on day 2016-12-10: -21281
WARNING. Abnormal entry count found on day 2016-12-10: -21281
WARNING. Abnormal entry count found on day 2016-12-17: -21599
WARNING. Abnormal entry count found on day 2016-12-17: -21599
WARNING. Abnormal entry count found on day 2016-12-24: -20234
WARNING. Abnormal entry count found on day 2016-12-24: -20234
Processing turnstile ('R204', 'R043', '02-05-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -47
WARNING. Abnormal entry count found on day 2016-12-03: -47
WARNING. Abnormal entry count found on day 2016-12-10: -40
WARNING. Abnormal entry count found on day 2016-12-10: -40
WARNING. Abnormal entry count found on day 2016-12-17: -31
WARNING. Abnormal entry count found on day 2016-12-17: -31
WARNING. Abnormal entry count found on day 2016-12-24: -33
WARNING. Abnormal entry count found on day 2016-12-24: -33
Processing turnstile ('N110', 'R283', '00-03-02', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -696
WARNING. Abnormal entry count found on day 2016-12-03: -696
WARNING. Abnormal entry count found on day 2016-12-10: -616
WARNING. Abnormal entry count found on day 2016-12-10: -616
WARNING. Abnormal entry count found on day 2016-12-17: -701
WARNING. Abnormal entry count found on day 2016-12-17: -701
WARNING. Abnormal entry count found on day 2016-12-24: -653
WARNING. Abnormal entry count found on day 2016-12-24: -653
Processing turnstile ('R154', 'R116', '00-03-02', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10004
WARNING. Abnormal entry count found on day 2016-12-03: -10004
WARNING. Abnormal entry count found on day 2016-12-10: -10111
WARNING. Abnormal entry count found on day 2016-12-10: -10111
WARNING. Abnormal entry count found on day 2016-12-17: -9040
WARNING. Abnormal entry count found on day 2016-12-17: -9040
WARNING. Abnormal entry count found on day 2016-12-24: -7327
WARNING. Abnormal entry count found on day 2016-12-24: -7327
Processing turnstile ('H007', 'R248', '00-03-00', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7499
WARNING. Abnormal entry count found on day 2016-12-03: -7499
WARNING. Abnormal entry count found on day 2016-12-10: -8423
WARNING. Abnormal entry count found on day 2016-12-10: -8423
WARNING. Abnormal entry count found on day 2016-12-17: -7254
WARNING. Abnormal entry count found on day 2016-12-17: -7254
WARNING. Abnormal entry count found on day 2016-12-24: -4858
WARNING. Abnormal entry count found on day 2016-12-24: -4858
Processing turnstile ('J009', 'R378', '00-00-01', 'MYRTLE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15609
WARNING. Abnormal entry count found on day 2016-12-03: -15609
WARNING. Abnormal entry count found on day 2016-12-10: -15602
WARNING. Abnormal entry count found on day 2016-12-10: -15602
WARNING. Abnormal entry count found on day 2016-12-17: -14375
WARNING. Abnormal entry count found on day 2016-12-17: -14375
WARNING. Abnormal entry count found on day 2016-12-24: -10730
WARNING. Abnormal entry count found on day 2016-12-24: -10730
Processing turnstile ('C028', 'R216', '01-05-01', 'BAY RIDGE-95 ST')
Processing turnstile ('E014', 'R374', '00-00-03', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -6884
WARNING. Abnormal entry count found on day 2016-12-03: -6884
WARNING. Abnormal entry count found on day 2016-12-10: -6823
WARNING. Abnormal entry count found on day 2016-12-10: -6823
WARNING. Abnormal entry count found on day 2016-12-17: -6583
WARNING. Abnormal entry count found on day 2016-12-17: -6583
WARNING. Abnormal entry count found on day 2016-12-24: -5372
WARNING. Abnormal entry count found on day 2016-12-24: -5372
Processing turnstile ('N068', 'R012', '03-06-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -6005
WARNING. Abnormal entry count found on day 2016-12-03: -6005
WARNING. Abnormal entry count found on day 2016-12-10: -5665
WARNING. Abnormal entry count found on day 2016-12-10: -5665
WARNING. Abnormal entry count found on day 2016-12-17: -5171
WARNING. Abnormal entry count found on day 2016-12-17: -5171
WARNING. Abnormal entry count found on day 2016-12-24: -3411
WARNING. Abnormal entry count found on day 2016-12-24: -3411
Processing turnstile ('A006', 'R079', '00-03-00', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8854
WARNING. Abnormal entry count found on day 2016-12-03: -8854
WARNING. Abnormal entry count found on day 2016-12-10: -8333
WARNING. Abnormal entry count found on day 2016-12-10: -8333
WARNING. Abnormal entry count found on day 2016-12-17: -7959
WARNING. Abnormal entry count found on day 2016-12-17: -7959
WARNING. Abnormal entry count found on day 2016-12-24: -6896
WARNING. Abnormal entry count found on day 2016-12-24: -6896
Processing turnstile ('C014', 'R246', '00-00-00', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12362
WARNING. Abnormal entry count found on day 2016-12-03: -12362
WARNING. Abnormal entry count found on day 2016-12-10: -11935
WARNING. Abnormal entry count found on day 2016-12-10: -11935
WARNING. Abnormal entry count found on day 2016-12-17: -11017
WARNING. Abnormal entry count found on day 2016-12-17: -11017
WARNING. Abnormal entry count found on day 2016-12-24: -7401
WARNING. Abnormal entry count found on day 2016-12-24: -7401
Processing turnstile ('R101', 'R001', '02-00-01', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -4047
WARNING. Abnormal entry count found on day 2016-12-03: -4047
WARNING. Abnormal entry count found on day 2016-12-10: -3786
WARNING. Abnormal entry count found on day 2016-12-10: -3786
WARNING. Abnormal entry count found on day 2016-12-17: -4157
WARNING. Abnormal entry count found on day 2016-12-17: -4157
WARNING. Abnormal entry count found on day 2016-12-24: -4960
WARNING. Abnormal entry count found on day 2016-12-24: -4960
Processing turnstile ('N555', 'R423', '00-00-01', 'AVENUE N')
WARNING. Abnormal entry count found on day 2016-12-03: -2999
WARNING. Abnormal entry count found on day 2016-12-03: -2999
WARNING. Abnormal entry count found on day 2016-12-10: -2740
WARNING. Abnormal entry count found on day 2016-12-10: -2740
WARNING. Abnormal entry count found on day 2016-12-17: -2843
WARNING. Abnormal entry count found on day 2016-12-17: -2843
WARNING. Abnormal entry count found on day 2016-12-24: -2029
WARNING. Abnormal entry count found on day 2016-12-24: -2029
Processing turnstile ('N533', 'R129', '02-05-01', 'BERGEN ST')
Processing turnstile ('R418', 'R106', '00-06-00', 'CASTLE HILL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N051', 'R084', '02-03-03', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -19104
WARNING. Abnormal entry count found on day 2016-12-03: -19104
WARNING. Abnormal entry count found on day 2016-12-10: -19220
WARNING. Abnormal entry count found on day 2016-12-10: -19220
WARNING. Abnormal entry count found on day 2016-12-17: -17397
WARNING. Abnormal entry count found on day 2016-12-17: -17397
WARNING. Abnormal entry count found on day 2016-12-24: -12508
WARNING. Abnormal entry count found on day 2016-12-24: -12508
Processing turnstile ('R220', 'R160', '01-00-01', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -2494
WARNING. Abnormal entry count found on day 2016-12-03: -2494
WARNING. Abnormal entry count found on day 2016-12-10: -2609
WARNING. Abnormal entry count found on day 2016-12-10: -2609
WARNING. Abnormal entry count found on day 2016-12-17: -2539
WARNING. Abnormal entry count found on day 2016-12-17: -2539
WARNING. Abnormal entry count found on day 2016-12-24: -1831
WARNING. Abnormal entry count found on day 2016-12-24: -1831
Processing turnstile ('N010', 'R126', '00-00-03', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8850
WARNING. Abnormal entry count found on day 2016-12-03: -8850
WARNING. Abnormal entry count found on day 2016-12-10: -8551
WARNING. Abnormal entry count found on day 2016-12-10: -8551
WARNING. Abnormal entry count found on day 2016-12-17: -8444
WARNING. Abnormal entry count found on day 2016-12-17: -8444
WARNING. Abnormal entry count found on day 2016-12-24: -7256
WARNING. Abnormal entry count found on day 2016-12-24: -7256
Processing turnstile ('N112A', 'R284', '01-00-00', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -484
WARNING. Abnormal entry count found on day 2016-12-03: -484
WARNING. Abnormal entry count found on day 2016-12-10: -504
WARNING. Abnormal entry count found on day 2016-12-10: -504
WARNING. Abnormal entry count found on day 2016-12-17: -394
WARNING. Abnormal entry count found on day 2016-12-17: -394
WARNING. Abnormal entry count found on day 2016-12-24: -275
WARNING. Abnormal entry count found on day 2016-12-24: -275
Processing turnstile ('R506', 'R276', '02-06-00', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -5491
WARNING. Abnormal entry count found on day 2016-12-03: -5491
WARNING. Abnormal entry count found on day 2016-12-10: -7160
WARNING. Abnormal entry count found on day 2016-12-10: -7160
WARNING. Abnormal entry count found on day 2016-12-17: -7530
WARNING. Abnormal entry count found on day 2016-12-17: -7530
WARNING. Abnormal entry count found on day 2016-12-24: -3885
WARNING. Abnormal entry count found on day 2016-12-24: -3885
Processing turnstile ('H032', 'R295', '00-00-01', 'WILSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7858
WARNING. Abnormal entry count found on day 2016-12-03: -7858
WARNING. Abnormal entry count found on day 2016-12-10: -7496
WARNING. Abnormal entry count found on day 2016-12-10: -7496
WARNING. Abnormal entry count found on day 2016-12-17: -6993
WARNING. Abnormal entry count found on day 2016-12-17: -6993
WARNING. Abnormal entry count found on day 2016-12-24: -4900
WARNING. Abnormal entry count found on day 2016-12-24: -4900
Processing turnstile ('R290', 'R161', '00-00-04', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -19747
WARNING. Abnormal entry count found on day 2016-12-03: -19747
WARNING. Abnormal entry count found on day 2016-12-10: -18222
WARNING. Abnormal entry count found on day 2016-12-10: -18222
WARNING. Abnormal entry count found on day 2016-12-17: -17368
WARNING. Abnormal entry count found on day 2016-12-17: -17368
WARNING. Abnormal entry count found on day 2016-12-24: -12798
WARNING. Abnormal entry count found on day 2016-12-24: -12798
Processing turnstile ('N098', 'R028', '00-02-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12195
WARNING. Abnormal entry count found on day 2016-12-03: -12195
WARNING. Abnormal entry count found on day 2016-12-10: -12029
WARNING. Abnormal entry count found on day 2016-12-10: -12029
WARNING. Abnormal entry count found on day 2016-12-17: -10907
WARNING. Abnormal entry count found on day 2016-12-17: -10907
WARNING. Abnormal entry count found on day 2016-12-24: -7181
WARNING. Abnormal entry count found on day 2016-12-24: -7181
Processing turnstile ('R197', 'R117', '00-00-01', 'V.CORTLANDT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -11318
WARNING. Abnormal entry count found on day 2016-12-03: -11318
WARNING. Abnormal entry count found on day 2016-12-10: -12467
WARNING. Abnormal entry count found on day 2016-12-10: -12467
WARNING. Abnormal entry count found on day 2016-12-17: -9957
WARNING. Abnormal entry count found on day 2016-12-17: -9957
WARNING. Abnormal entry count found on day 2016-12-24: -8192
WARNING. Abnormal entry count found on day 2016-12-24: -8192
Processing turnstile ('R294', 'R052', '00-00-01', 'WOODLAWN')
WARNING. Abnormal entry count found on day 2016-12-03: -7273
WARNING. Abnormal entry count found on day 2016-12-03: -7273
WARNING. Abnormal entry count found on day 2016-12-10: -6971
WARNING. Abnormal entry count found on day 2016-12-10: -6971
WARNING. Abnormal entry count found on day 2016-12-17: -6727
WARNING. Abnormal entry count found on day 2016-12-17: -6727
WARNING. Abnormal entry count found on day 2016-12-24: -4977
WARNING. Abnormal entry count found on day 2016-12-24: -4977
Processing turnstile ('R602', 'R108', '00-06-00', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -20062
WARNING. Abnormal entry count found on day 2016-12-03: -20062
WARNING. Abnormal entry count found on day 2016-12-10: -19139
WARNING. Abnormal entry count found on day 2016-12-10: -19139
WARNING. Abnormal entry count found on day 2016-12-17: -16625
WARNING. Abnormal entry count found on day 2016-12-17: -16625
WARNING. Abnormal entry count found on day 2016-12-24: -10466
WARNING. Abnormal entry count found on day 2016-12-24: -10466
Processing turnstile ('N509', 'R203', '00-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20350
WARNING. Abnormal entry count found on day 2016-12-03: -20350
WARNING. Abnormal entry count found on day 2016-12-10: -21247
WARNING. Abnormal entry count found on day 2016-12-10: -21247
WARNING. Abnormal entry count found on day 2016-12-17: -18543
WARNING. Abnormal entry count found on day 2016-12-17: -18543
WARNING. Abnormal entry count found on day 2016-12-24: -11807
WARNING. Abnormal entry count found on day 2016-12-24: -11807
Processing turnstile ('N091', 'R029', '02-05-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3179
WARNING. Abnormal entry count found on day 2016-12-03: -3179
WARNING. Abnormal entry count found on day 2016-12-10: -3131
WARNING. Abnormal entry count found on day 2016-12-10: -3131
WARNING. Abnormal entry count found on day 2016-12-17: -2716
WARNING. Abnormal entry count found on day 2016-12-17: -2716
WARNING. Abnormal entry count found on day 2016-12-24: -1826
WARNING. Abnormal entry count found on day 2016-12-24: -1826
Processing turnstile ('R221', 'R170', '01-05-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -38
WARNING. Abnormal entry count found on day 2016-12-03: -38
WARNING. Abnormal entry count found on day 2016-12-10: -34
WARNING. Abnormal entry count found on day 2016-12-10: -34
WARNING. Abnormal entry count found on day 2016-12-17: -12
WARNING. Abnormal entry count found on day 2016-12-17: -12
WARNING. Abnormal entry count found on day 2016-12-24: -19
WARNING. Abnormal entry count found on day 2016-12-24: -19
Processing turnstile ('N332', 'R219', '01-06-01', '67 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9995
WARNING. Abnormal entry count found on day 2016-12-03: -9995
WARNING. Abnormal entry count found on day 2016-12-10: -9955
WARNING. Abnormal entry count found on day 2016-12-10: -9955
WARNING. Abnormal entry count found on day 2016-12-17: -9741
WARNING. Abnormal entry count found on day 2016-12-17: -9741
WARNING. Abnormal entry count found on day 2016-12-24: -6625
WARNING. Abnormal entry count found on day 2016-12-24: -6625
Processing turnstile ('G001', 'R151', '00-00-02', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -4155
WARNING. Abnormal entry count found on day 2016-12-03: -4155
WARNING. Abnormal entry count found on day 2016-12-10: -3629
WARNING. Abnormal entry count found on day 2016-12-10: -3629
WARNING. Abnormal entry count found on day 2016-12-17: -3788
WARNING. Abnormal entry count found on day 2016-12-17: -3788
WARNING. Abnormal entry count found on day 2016-12-24: -3637
WARNING. Abnormal entry count found on day 2016-12-24: -3637
Processing turnstile ('N510', 'R163', '02-00-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7295
WARNING. Abnormal entry count found on day 2016-12-03: -7295
WARNING. Abnormal entry count found on day 2016-12-10: -7005
WARNING. Abnormal entry count found on day 2016-12-10: -7005
WARNING. Abnormal entry count found on day 2016-12-17: -7416
WARNING. Abnormal entry count found on day 2016-12-17: -7416
WARNING. Abnormal entry count found on day 2016-12-24: -4020
WARNING. Abnormal entry count found on day 2016-12-24: -4020
Processing turnstile ('B021', 'R228', '00-05-02', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -4961
WARNING. Abnormal entry count found on day 2016-12-03: -4961
WARNING. Abnormal entry count found on day 2016-12-10: -4617
WARNING. Abnormal entry count found on day 2016-12-10: -4617
WARNING. Abnormal entry count found on day 2016-12-17: -4485
WARNING. Abnormal entry count found on day 2016-12-17: -4485
WARNING. Abnormal entry count found on day 2016-12-24: -3663
WARNING. Abnormal entry count found on day 2016-12-24: -3663
Processing turnstile ('N600', 'R302', '00-03-03', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2780
WARNING. Abnormal entry count found on day 2016-12-03: -2780
WARNING. Abnormal entry count found on day 2016-12-10: -2948
WARNING. Abnormal entry count found on day 2016-12-10: -2948
WARNING. Abnormal entry count found on day 2016-12-17: -2740
WARNING. Abnormal entry count found on day 2016-12-17: -2740
WARNING. Abnormal entry count found on day 2016-12-24: -2210
WARNING. Abnormal entry count found on day 2016-12-24: -2210
Processing turnstile ('J022', 'R435', '00-00-01', 'CLEVELAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8380
WARNING. Abnormal entry count found on day 2016-12-03: -8380
WARNING. Abnormal entry count found on day 2016-12-10: -8203
WARNING. Abnormal entry count found on day 2016-12-10: -8203
WARNING. Abnormal entry count found on day 2016-12-17: -8065
WARNING. Abnormal entry count found on day 2016-12-17: -8065
WARNING. Abnormal entry count found on day 2016-12-24: -6248
WARNING. Abnormal entry count found on day 2016-12-24: -6248
Processing turnstile ('N213', 'R154', '00-06-02', 'TREMONT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9537
WARNING. Abnormal entry count found on day 2016-12-03: -9537
WARNING. Abnormal entry count found on day 2016-12-10: -6928
WARNING. Abnormal entry count found on day 2016-12-10: -6928
WARNING. Abnormal entry count found on day 2016-12-17: -8567
WARNING. Abnormal entry count found on day 2016-12-17: -8567
WARNING. Abnormal entry count found on day 2016-12-24: -6928
WARNING. Abnormal entry count found on day 2016-12-24: -6928
Processing turnstile ('J028', 'R004', '00-00-04', '75 ST-ELDERTS')
WARNING. Abnormal entry count found on day 2016-12-03: -5494
WARNING. Abnormal entry count found on day 2016-12-03: -5494
WARNING. Abnormal entry count found on day 2016-12-10: -5184
WARNING. Abnormal entry count found on day 2016-12-10: -5184
WARNING. Abnormal entry count found on day 2016-12-17: -5261
WARNING. Abnormal entry count found on day 2016-12-17: -5261
WARNING. Abnormal entry count found on day 2016-12-24: -3724
WARNING. Abnormal entry count found on day 2016-12-24: -3724
Processing turnstile ('N500', 'R020', '00-03-05', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -17275
WARNING. Abnormal entry count found on day 2016-12-03: -17275
WARNING. Abnormal entry count found on day 2016-12-10: -17387
WARNING. Abnormal entry count found on day 2016-12-10: -17387
WARNING. Abnormal entry count found on day 2016-12-17: -16848
WARNING. Abnormal entry count found on day 2016-12-17: -16848
WARNING. Abnormal entry count found on day 2016-12-24: -15039
WARNING. Abnormal entry count found on day 2016-12-24: -15039
Processing turnstile ('E012', 'R372', '00-00-00', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15660
WARNING. Abnormal entry count found on day 2016-12-03: -15660
WARNING. Abnormal entry count found on day 2016-12-10: -14919
WARNING. Abnormal entry count found on day 2016-12-10: -14919
WARNING. Abnormal entry count found on day 2016-12-17: -15497
WARNING. Abnormal entry count found on day 2016-12-17: -15497
WARNING. Abnormal entry count found on day 2016-12-24: -13658
WARNING. Abnormal entry count found on day 2016-12-24: -13658
Processing turnstile ('N305', 'R017', '01-00-05', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -10081
WARNING. Abnormal entry count found on day 2016-12-03: -10081
WARNING. Abnormal entry count found on day 2016-12-10: -8294
WARNING. Abnormal entry count found on day 2016-12-10: -8294
WARNING. Abnormal entry count found on day 2016-12-17: -8772
WARNING. Abnormal entry count found on day 2016-12-17: -8772
WARNING. Abnormal entry count found on day 2016-12-24: -6369
WARNING. Abnormal entry count found on day 2016-12-24: -6369
Processing turnstile ('N327', 'R254', '00-05-02', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -18853
WARNING. Abnormal entry count found on day 2016-12-03: -18853
WARNING. Abnormal entry count found on day 2016-12-10: -18056
WARNING. Abnormal entry count found on day 2016-12-10: -18056
WARNING. Abnormal entry count found on day 2016-12-17: -17874
WARNING. Abnormal entry count found on day 2016-12-17: -17874
WARNING. Abnormal entry count found on day 2016-12-24: -14122
WARNING. Abnormal entry count found on day 2016-12-24: -14122
Processing turnstile ('R331', 'R364', '00-05-01', 'GUN HILL RD')
Processing turnstile ('R262', 'R195', '03-03-00', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -4947
WARNING. Abnormal entry count found on day 2016-12-03: -4947
WARNING. Abnormal entry count found on day 2016-12-10: -4782
WARNING. Abnormal entry count found on day 2016-12-10: -4782
WARNING. Abnormal entry count found on day 2016-12-17: -4641
WARNING. Abnormal entry count found on day 2016-12-17: -4641
WARNING. Abnormal entry count found on day 2016-12-24: -3858
WARNING. Abnormal entry count found on day 2016-12-24: -3858
Processing turnstile ('H026', 'R137', '00-03-02', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -16388
WARNING. Abnormal entry count found on day 2016-12-03: -16388
WARNING. Abnormal entry count found on day 2016-12-10: -14587
WARNING. Abnormal entry count found on day 2016-12-10: -14587
WARNING. Abnormal entry count found on day 2016-12-17: -14711
WARNING. Abnormal entry count found on day 2016-12-17: -14711
WARNING. Abnormal entry count found on day 2016-12-24: -10246
WARNING. Abnormal entry count found on day 2016-12-24: -10246
Processing turnstile ('R304', 'R206', '00-00-02', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10700
WARNING. Abnormal entry count found on day 2016-12-03: -10700
WARNING. Abnormal entry count found on day 2016-12-10: -10622
WARNING. Abnormal entry count found on day 2016-12-10: -10622
WARNING. Abnormal entry count found on day 2016-12-17: -11092
WARNING. Abnormal entry count found on day 2016-12-17: -11092
WARNING. Abnormal entry count found on day 2016-12-24: -7979
WARNING. Abnormal entry count found on day 2016-12-24: -7979
Processing turnstile ('R532', 'R328', '00-00-01', 'METS-WILLETS PT')
WARNING. Abnormal entry count found on day 2016-12-03: -1987
WARNING. Abnormal entry count found on day 2016-12-03: -1987
WARNING. Abnormal entry count found on day 2016-12-10: -1722
WARNING. Abnormal entry count found on day 2016-12-10: -1722
WARNING. Abnormal entry count found on day 2016-12-17: -1632
WARNING. Abnormal entry count found on day 2016-12-17: -1632
WARNING. Abnormal entry count found on day 2016-12-24: -1749
WARNING. Abnormal entry count found on day 2016-12-24: -1749
Processing turnstile ('R161A', 'R452', '01-06-00', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -21174
WARNING. Abnormal entry count found on day 2016-12-03: -21174
WARNING. Abnormal entry count found on day 2016-12-10: -23839
WARNING. Abnormal entry count found on day 2016-12-10: -23839
WARNING. Abnormal entry count found on day 2016-12-17: -20185
WARNING. Abnormal entry count found on day 2016-12-17: -20185
WARNING. Abnormal entry count found on day 2016-12-24: -12336
WARNING. Abnormal entry count found on day 2016-12-24: -12336
Processing turnstile ('R625', 'R062', '01-06-02', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -6094
WARNING. Abnormal entry count found on day 2016-12-03: -6094
WARNING. Abnormal entry count found on day 2016-12-10: -6032
WARNING. Abnormal entry count found on day 2016-12-10: -6032
WARNING. Abnormal entry count found on day 2016-12-17: -5645
WARNING. Abnormal entry count found on day 2016-12-17: -5645
WARNING. Abnormal entry count found on day 2016-12-24: -3975
WARNING. Abnormal entry count found on day 2016-12-24: -3975
Processing turnstile ('R201', 'R041', '00-00-02', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -3424
WARNING. Abnormal entry count found on day 2016-12-03: -3424
WARNING. Abnormal entry count found on day 2016-12-10: -3576
WARNING. Abnormal entry count found on day 2016-12-10: -3576
WARNING. Abnormal entry count found on day 2016-12-17: -3069
WARNING. Abnormal entry count found on day 2016-12-17: -3069
WARNING. Abnormal entry count found on day 2016-12-24: -2484
WARNING. Abnormal entry count found on day 2016-12-24: -2484
Processing turnstile ('N090', 'R139', '01-00-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4326
WARNING. Abnormal entry count found on day 2016-12-03: -4326
WARNING. Abnormal entry count found on day 2016-12-10: -4684
WARNING. Abnormal entry count found on day 2016-12-10: -4684
WARNING. Abnormal entry count found on day 2016-12-17: -3885
WARNING. Abnormal entry count found on day 2016-12-17: -3885
WARNING. Abnormal entry count found on day 2016-12-24: -2700
WARNING. Abnormal entry count found on day 2016-12-24: -2700
Processing turnstile ('R291', 'R183', '00-00-00', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3514
WARNING. Abnormal entry count found on day 2016-12-03: -3514
WARNING. Abnormal entry count found on day 2016-12-10: -3505
WARNING. Abnormal entry count found on day 2016-12-10: -3505
WARNING. Abnormal entry count found on day 2016-12-17: -3050
WARNING. Abnormal entry count found on day 2016-12-17: -3050
WARNING. Abnormal entry count found on day 2016-12-24: -1684
WARNING. Abnormal entry count found on day 2016-12-24: -1684
Processing turnstile ('R202', 'R042', '00-00-01', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -3178
WARNING. Abnormal entry count found on day 2016-12-03: -3178
WARNING. Abnormal entry count found on day 2016-12-10: -2977
WARNING. Abnormal entry count found on day 2016-12-10: -2977
WARNING. Abnormal entry count found on day 2016-12-17: -3168
WARNING. Abnormal entry count found on day 2016-12-17: -3168
WARNING. Abnormal entry count found on day 2016-12-24: -3726
WARNING. Abnormal entry count found on day 2016-12-24: -3726
Processing turnstile ('A006', 'R079', '00-03-01', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11397
WARNING. Abnormal entry count found on day 2016-12-03: -11397
WARNING. Abnormal entry count found on day 2016-12-10: -10928
WARNING. Abnormal entry count found on day 2016-12-10: -10928
WARNING. Abnormal entry count found on day 2016-12-17: -10172
WARNING. Abnormal entry count found on day 2016-12-17: -10172
WARNING. Abnormal entry count found on day 2016-12-24: -8184
WARNING. Abnormal entry count found on day 2016-12-24: -8184
Processing turnstile ('R240', 'R047', '00-03-02', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7892
WARNING. Abnormal entry count found on day 2016-12-03: -7892
WARNING. Abnormal entry count found on day 2016-12-10: -8337
WARNING. Abnormal entry count found on day 2016-12-10: -8337
WARNING. Abnormal entry count found on day 2016-12-17: -7175
WARNING. Abnormal entry count found on day 2016-12-17: -7175
WARNING. Abnormal entry count found on day 2016-12-24: -4406
WARNING. Abnormal entry count found on day 2016-12-24: -4406
Processing turnstile ('PTH03', 'R552', '00-01-07', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -1136
WARNING. Abnormal entry count found on day 2016-12-03: -1136
WARNING. Abnormal entry count found on day 2016-12-10: -1125
WARNING. Abnormal entry count found on day 2016-12-10: -1125
WARNING. Abnormal entry count found on day 2016-12-17: -483
WARNING. Abnormal entry count found on day 2016-12-17: -483
WARNING. Abnormal entry count found on day 2016-12-24: -1112
WARNING. Abnormal entry count found on day 2016-12-24: -1112
Processing turnstile ('A043', 'R462', '00-06-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5699
WARNING. Abnormal entry count found on day 2016-12-03: -5699
WARNING. Abnormal entry count found on day 2016-12-10: -5126
WARNING. Abnormal entry count found on day 2016-12-10: -5126
WARNING. Abnormal entry count found on day 2016-12-17: -6200
WARNING. Abnormal entry count found on day 2016-12-17: -6200
WARNING. Abnormal entry count found on day 2016-12-24: -6723
WARNING. Abnormal entry count found on day 2016-12-24: -6723
Processing turnstile ('A021', 'R032', '01-00-07', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12040
WARNING. Abnormal entry count found on day 2016-12-03: -12040
WARNING. Abnormal entry count found on day 2016-12-10: -11568
WARNING. Abnormal entry count found on day 2016-12-10: -11568
WARNING. Abnormal entry count found on day 2016-12-17: -10552
WARNING. Abnormal entry count found on day 2016-12-17: -10552
WARNING. Abnormal entry count found on day 2016-12-24: -6763
WARNING. Abnormal entry count found on day 2016-12-24: -6763
Processing turnstile ('B034', 'R264', '01-05-00', 'OCEAN PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-28: -111542561
WARNING. Abnormal entry count found on day 2016-12-24: 111542552
WARNING. Abnormal entry count found on day 2016-12-28: -111542561
WARNING. Abnormal entry count found on day 2016-12-24: 111542552
WARNING. Abnormal entry count found on day 2016-12-28: -111542561
Processing turnstile ('TRAM1', 'R468', '00-00-02', 'RIT-MANHATTAN')
WARNING. Abnormal entry count found on day 2016-12-03: -5025
WARNING. Abnormal entry count found on day 2016-12-03: -5025
WARNING. Abnormal entry count found on day 2016-12-10: -4611
WARNING. Abnormal entry count found on day 2016-12-10: -4611
WARNING. Abnormal entry count found on day 2016-12-17: -4745
WARNING. Abnormal entry count found on day 2016-12-17: -4745
WARNING. Abnormal entry count found on day 2016-12-24: -4460
WARNING. Abnormal entry count found on day 2016-12-24: -4460
Processing turnstile ('N116', 'R198', '00-03-00', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14875
WARNING. Abnormal entry count found on day 2016-12-03: -14875
WARNING. Abnormal entry count found on day 2016-12-10: -15153
WARNING. Abnormal entry count found on day 2016-12-10: -15153
WARNING. Abnormal entry count found on day 2016-12-17: -13725
WARNING. Abnormal entry count found on day 2016-12-17: -13725
WARNING. Abnormal entry count found on day 2016-12-24: -9760
WARNING. Abnormal entry count found on day 2016-12-24: -9760
Processing turnstile ('N531', 'R129', '01-00-02', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2517
WARNING. Abnormal entry count found on day 2016-12-03: -2517
WARNING. Abnormal entry count found on day 2016-12-10: -2440
WARNING. Abnormal entry count found on day 2016-12-10: -2440
WARNING. Abnormal entry count found on day 2016-12-17: -1477
WARNING. Abnormal entry count found on day 2016-12-17: -1477
WARNING. Abnormal entry count found on day 2016-12-24: -1583
WARNING. Abnormal entry count found on day 2016-12-24: -1583
Processing turnstile ('R172', 'R192', '00-00-00', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -13519
WARNING. Abnormal entry count found on day 2016-12-03: -13519
WARNING. Abnormal entry count found on day 2016-12-10: -13139
WARNING. Abnormal entry count found on day 2016-12-10: -13139
WARNING. Abnormal entry count found on day 2016-12-17: -12318
WARNING. Abnormal entry count found on day 2016-12-17: -12318
WARNING. Abnormal entry count found on day 2016-12-24: -8466
WARNING. Abnormal entry count found on day 2016-12-24: -8466
Processing turnstile ('N502', 'R021', '01-00-02', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -13856
WARNING. Abnormal entry count found on day 2016-12-03: -13856
WARNING. Abnormal entry count found on day 2016-12-10: -14503
WARNING. Abnormal entry count found on day 2016-12-10: -14503
WARNING. Abnormal entry count found on day 2016-12-17: -14239
WARNING. Abnormal entry count found on day 2016-12-17: -14239
WARNING. Abnormal entry count found on day 2016-12-24: -11783
WARNING. Abnormal entry count found on day 2016-12-24: -11783
Processing turnstile ('N191', 'R335', '00-00-00', 'BEACH 67 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5229
WARNING. Abnormal entry count found on day 2016-12-03: -5229
WARNING. Abnormal entry count found on day 2016-12-10: -4898
WARNING. Abnormal entry count found on day 2016-12-10: -4898
WARNING. Abnormal entry count found on day 2016-12-17: -4964
WARNING. Abnormal entry count found on day 2016-12-17: -4964
WARNING. Abnormal entry count found on day 2016-12-24: -4052
WARNING. Abnormal entry count found on day 2016-12-24: -4052
Processing turnstile ('A047', 'R087', '00-03-01', 'CITY HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -2813
WARNING. Abnormal entry count found on day 2016-12-03: -2813
WARNING. Abnormal entry count found on day 2016-12-10: -2672
WARNING. Abnormal entry count found on day 2016-12-10: -2672
WARNING. Abnormal entry count found on day 2016-12-17: -2826
WARNING. Abnormal entry count found on day 2016-12-17: -2826
WARNING. Abnormal entry count found on day 2016-12-24: -2940
WARNING. Abnormal entry count found on day 2016-12-24: -2940
Processing turnstile ('C015', 'R454', '00-00-02', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3781
WARNING. Abnormal entry count found on day 2016-12-03: -3781
WARNING. Abnormal entry count found on day 2016-12-10: -3645
WARNING. Abnormal entry count found on day 2016-12-10: -3645
WARNING. Abnormal entry count found on day 2016-12-17: -3317
WARNING. Abnormal entry count found on day 2016-12-17: -3317
WARNING. Abnormal entry count found on day 2016-12-24: -2428
WARNING. Abnormal entry count found on day 2016-12-24: -2428
Processing turnstile ('PTH13', 'R541', '00-00-07', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -727
WARNING. Abnormal entry count found on day 2016-12-03: -727
WARNING. Abnormal entry count found on day 2016-12-10: -354
WARNING. Abnormal entry count found on day 2016-12-10: -354
WARNING. Abnormal entry count found on day 2016-12-17: -177
WARNING. Abnormal entry count found on day 2016-12-17: -177
WARNING. Abnormal entry count found on day 2016-12-24: -94
WARNING. Abnormal entry count found on day 2016-12-24: -94
Processing turnstile ('R248', 'R178', '00-00-03', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24712
WARNING. Abnormal entry count found on day 2016-12-03: -24712
WARNING. Abnormal entry count found on day 2016-12-10: -19649
WARNING. Abnormal entry count found on day 2016-12-10: -19649
WARNING. Abnormal entry count found on day 2016-12-17: -18931
WARNING. Abnormal entry count found on day 2016-12-17: -18931
WARNING. Abnormal entry count found on day 2016-12-24: -14336
WARNING. Abnormal entry count found on day 2016-12-24: -14336
Processing turnstile ('R286', 'R309', '00-00-01', '176 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10585
WARNING. Abnormal entry count found on day 2016-12-03: -10585
WARNING. Abnormal entry count found on day 2016-12-10: -9894
WARNING. Abnormal entry count found on day 2016-12-10: -9894
WARNING. Abnormal entry count found on day 2016-12-17: -9888
WARNING. Abnormal entry count found on day 2016-12-17: -9888
WARNING. Abnormal entry count found on day 2016-12-24: -7667
WARNING. Abnormal entry count found on day 2016-12-24: -7667
Processing turnstile ('A064', 'R311', '00-03-01', 'BOWERY')
WARNING. Abnormal entry count found on day 2016-12-03: -9861
WARNING. Abnormal entry count found on day 2016-12-03: -9861
WARNING. Abnormal entry count found on day 2016-12-10: -9606
WARNING. Abnormal entry count found on day 2016-12-10: -9606
WARNING. Abnormal entry count found on day 2016-12-17: -9056
WARNING. Abnormal entry count found on day 2016-12-17: -9056
WARNING. Abnormal entry count found on day 2016-12-24: -7454
WARNING. Abnormal entry count found on day 2016-12-24: -7454
Processing turnstile ('N062', 'R011', '01-03-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -9304
WARNING. Abnormal entry count found on day 2016-12-03: -9304
WARNING. Abnormal entry count found on day 2016-12-10: -10025
WARNING. Abnormal entry count found on day 2016-12-10: -10025
WARNING. Abnormal entry count found on day 2016-12-17: -9154
WARNING. Abnormal entry count found on day 2016-12-17: -9154
WARNING. Abnormal entry count found on day 2016-12-24: -8545
WARNING. Abnormal entry count found on day 2016-12-24: -8545
Processing turnstile ('R628', 'R064', '00-00-02', 'SARATOGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6144
WARNING. Abnormal entry count found on day 2016-12-03: -6144
WARNING. Abnormal entry count found on day 2016-12-10: -5856
WARNING. Abnormal entry count found on day 2016-12-10: -5856
WARNING. Abnormal entry count found on day 2016-12-17: -5351
WARNING. Abnormal entry count found on day 2016-12-17: -5351
WARNING. Abnormal entry count found on day 2016-12-24: -4009
WARNING. Abnormal entry count found on day 2016-12-24: -4009
Processing turnstile ('N045', 'R187', '01-00-00', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -5632
WARNING. Abnormal entry count found on day 2016-12-03: -5632
WARNING. Abnormal entry count found on day 2016-12-10: -5392
WARNING. Abnormal entry count found on day 2016-12-10: -5392
WARNING. Abnormal entry count found on day 2016-12-17: -6729
WARNING. Abnormal entry count found on day 2016-12-17: -6729
WARNING. Abnormal entry count found on day 2016-12-24: -9496
WARNING. Abnormal entry count found on day 2016-12-24: -9496
Processing turnstile ('PTH17', 'R541', '01-00-06', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10552
WARNING. Abnormal entry count found on day 2016-12-03: -10552
WARNING. Abnormal entry count found on day 2016-12-10: -12215
WARNING. Abnormal entry count found on day 2016-12-10: -12215
WARNING. Abnormal entry count found on day 2016-12-17: -9803
WARNING. Abnormal entry count found on day 2016-12-17: -9803
WARNING. Abnormal entry count found on day 2016-12-24: -9292
WARNING. Abnormal entry count found on day 2016-12-24: -9292
Processing turnstile ('H041', 'R152', '00-05-00', 'CANARSIE-ROCKAW')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -7
WARNING. Abnormal entry count found on day 2016-12-24: -7
Processing turnstile ('N333', 'R141', '01-00-02', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -2895
WARNING. Abnormal entry count found on day 2016-12-03: -2895
WARNING. Abnormal entry count found on day 2016-12-10: -2973
WARNING. Abnormal entry count found on day 2016-12-10: -2973
WARNING. Abnormal entry count found on day 2016-12-17: -2800
WARNING. Abnormal entry count found on day 2016-12-17: -2800
WARNING. Abnormal entry count found on day 2016-12-24: -2095
WARNING. Abnormal entry count found on day 2016-12-24: -2095
Processing turnstile ('A049', 'R088', '02-03-02', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4409
WARNING. Abnormal entry count found on day 2016-12-03: -4409
WARNING. Abnormal entry count found on day 2016-12-10: -4543
WARNING. Abnormal entry count found on day 2016-12-10: -4543
WARNING. Abnormal entry count found on day 2016-12-17: -5306
WARNING. Abnormal entry count found on day 2016-12-17: -5306
WARNING. Abnormal entry count found on day 2016-12-24: -7104
WARNING. Abnormal entry count found on day 2016-12-24: -7104
Processing turnstile ('N607', 'R025', '01-00-00', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -2035
WARNING. Abnormal entry count found on day 2016-12-03: -2035
WARNING. Abnormal entry count found on day 2016-12-10: -2168
WARNING. Abnormal entry count found on day 2016-12-10: -2168
WARNING. Abnormal entry count found on day 2016-12-17: -2159
WARNING. Abnormal entry count found on day 2016-12-17: -2159
WARNING. Abnormal entry count found on day 2016-12-24: -1308
WARNING. Abnormal entry count found on day 2016-12-24: -1308
Processing turnstile ('R228', 'R143', '00-00-01', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8136
WARNING. Abnormal entry count found on day 2016-12-03: -8136
WARNING. Abnormal entry count found on day 2016-12-10: -8357
WARNING. Abnormal entry count found on day 2016-12-10: -8357
WARNING. Abnormal entry count found on day 2016-12-17: -7330
WARNING. Abnormal entry count found on day 2016-12-17: -7330
WARNING. Abnormal entry count found on day 2016-12-24: -5007
WARNING. Abnormal entry count found on day 2016-12-24: -5007
Processing turnstile ('E004', 'R234', '00-00-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7292
WARNING. Abnormal entry count found on day 2016-12-03: -7292
WARNING. Abnormal entry count found on day 2016-12-10: -7059
WARNING. Abnormal entry count found on day 2016-12-10: -7059
WARNING. Abnormal entry count found on day 2016-12-17: -7068
WARNING. Abnormal entry count found on day 2016-12-17: -7068
WARNING. Abnormal entry count found on day 2016-12-24: -6006
WARNING. Abnormal entry count found on day 2016-12-24: -6006
Processing turnstile ('N526', 'R142', '02-00-02', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -6344
WARNING. Abnormal entry count found on day 2016-12-03: -6344
WARNING. Abnormal entry count found on day 2016-12-10: -6130
WARNING. Abnormal entry count found on day 2016-12-10: -6130
WARNING. Abnormal entry count found on day 2016-12-17: -5601
WARNING. Abnormal entry count found on day 2016-12-17: -5601
WARNING. Abnormal entry count found on day 2016-12-24: -4301
WARNING. Abnormal entry count found on day 2016-12-24: -4301
Processing turnstile ('A050', 'R088', '00-06-01', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5204
WARNING. Abnormal entry count found on day 2016-12-03: -5204
WARNING. Abnormal entry count found on day 2016-12-10: -4581
WARNING. Abnormal entry count found on day 2016-12-10: -4581
WARNING. Abnormal entry count found on day 2016-12-17: -5991
WARNING. Abnormal entry count found on day 2016-12-17: -5991
WARNING. Abnormal entry count found on day 2016-12-24: -6922
WARNING. Abnormal entry count found on day 2016-12-24: -6922
Processing turnstile ('R289', 'R119', '00-05-00', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('PTH06', 'R546', '00-00-0A', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -4416
WARNING. Abnormal entry count found on day 2016-12-03: -4416
WARNING. Abnormal entry count found on day 2016-12-10: -4064
WARNING. Abnormal entry count found on day 2016-12-10: -4064
WARNING. Abnormal entry count found on day 2016-12-17: -4248
WARNING. Abnormal entry count found on day 2016-12-17: -4248
WARNING. Abnormal entry count found on day 2016-12-24: -3936
WARNING. Abnormal entry count found on day 2016-12-24: -3936
Processing turnstile ('N315', 'R238', '00-00-01', 'STEINWAY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11652
WARNING. Abnormal entry count found on day 2016-12-03: -11652
WARNING. Abnormal entry count found on day 2016-12-10: -11156
WARNING. Abnormal entry count found on day 2016-12-10: -11156
WARNING. Abnormal entry count found on day 2016-12-17: -11933
WARNING. Abnormal entry count found on day 2016-12-17: -11933
WARNING. Abnormal entry count found on day 2016-12-24: -9297
WARNING. Abnormal entry count found on day 2016-12-24: -9297
Processing turnstile ('N537', 'R258', '00-00-00', '4 AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5086
WARNING. Abnormal entry count found on day 2016-12-03: -5086
WARNING. Abnormal entry count found on day 2016-12-10: -5354
WARNING. Abnormal entry count found on day 2016-12-10: -5354
WARNING. Abnormal entry count found on day 2016-12-17: -4649
WARNING. Abnormal entry count found on day 2016-12-17: -4649
WARNING. Abnormal entry count found on day 2016-12-24: -3719
WARNING. Abnormal entry count found on day 2016-12-24: -3719
Processing turnstile ('N092', 'R029', '03-00-04', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7181
WARNING. Abnormal entry count found on day 2016-12-03: -7181
WARNING. Abnormal entry count found on day 2016-12-10: -6691
WARNING. Abnormal entry count found on day 2016-12-10: -6691
WARNING. Abnormal entry count found on day 2016-12-17: -5839
WARNING. Abnormal entry count found on day 2016-12-17: -5839
WARNING. Abnormal entry count found on day 2016-12-24: -4578
WARNING. Abnormal entry count found on day 2016-12-24: -4578
Processing turnstile ('R618', 'R058', '01-00-02', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2010
WARNING. Abnormal entry count found on day 2016-12-03: -2010
WARNING. Abnormal entry count found on day 2016-12-10: -1891
WARNING. Abnormal entry count found on day 2016-12-10: -1891
WARNING. Abnormal entry count found on day 2016-12-17: -1721
WARNING. Abnormal entry count found on day 2016-12-17: -1721
WARNING. Abnormal entry count found on day 2016-12-24: -1277
WARNING. Abnormal entry count found on day 2016-12-24: -1277
Processing turnstile ('H001', 'R175', '00-00-01', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -20355
WARNING. Abnormal entry count found on day 2016-12-03: -20355
WARNING. Abnormal entry count found on day 2016-12-10: -21027
WARNING. Abnormal entry count found on day 2016-12-10: -21027
WARNING. Abnormal entry count found on day 2016-12-17: -19343
WARNING. Abnormal entry count found on day 2016-12-17: -19343
WARNING. Abnormal entry count found on day 2016-12-24: -16683
WARNING. Abnormal entry count found on day 2016-12-24: -16683
Processing turnstile ('R289', 'R119', '00-05-01', 'FORDHAM RD')
Processing turnstile ('N307', 'R359', '00-00-01', 'COURT SQ-23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6464
WARNING. Abnormal entry count found on day 2016-12-03: -6464
WARNING. Abnormal entry count found on day 2016-12-10: -6187
WARNING. Abnormal entry count found on day 2016-12-10: -6187
WARNING. Abnormal entry count found on day 2016-12-17: -5669
WARNING. Abnormal entry count found on day 2016-12-17: -5669
WARNING. Abnormal entry count found on day 2016-12-24: -3944
WARNING. Abnormal entry count found on day 2016-12-24: -3944
Processing turnstile ('N523', 'R300', '00-00-03', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -23682
WARNING. Abnormal entry count found on day 2016-12-03: -23682
WARNING. Abnormal entry count found on day 2016-12-10: -24073
WARNING. Abnormal entry count found on day 2016-12-10: -24073
WARNING. Abnormal entry count found on day 2016-12-17: -21843
WARNING. Abnormal entry count found on day 2016-12-17: -21843
WARNING. Abnormal entry count found on day 2016-12-24: -17413
WARNING. Abnormal entry count found on day 2016-12-24: -17413
Processing turnstile ('R147', 'R033', '04-00-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18561
WARNING. Abnormal entry count found on day 2016-12-03: -18561
WARNING. Abnormal entry count found on day 2016-12-10: -17514
WARNING. Abnormal entry count found on day 2016-12-10: -17514
WARNING. Abnormal entry count found on day 2016-12-17: -18765
WARNING. Abnormal entry count found on day 2016-12-17: -18765
WARNING. Abnormal entry count found on day 2016-12-24: -20504
WARNING. Abnormal entry count found on day 2016-12-24: -20504
Processing turnstile ('A025', 'R023', '01-06-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -14358
WARNING. Abnormal entry count found on day 2016-12-03: -14358
WARNING. Abnormal entry count found on day 2016-12-10: -12757
WARNING. Abnormal entry count found on day 2016-12-10: -12757
WARNING. Abnormal entry count found on day 2016-12-17: -13527
WARNING. Abnormal entry count found on day 2016-12-17: -13527
WARNING. Abnormal entry count found on day 2016-12-24: -9930
WARNING. Abnormal entry count found on day 2016-12-24: -9930
Processing turnstile ('N535', 'R220', '00-00-02', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16817
WARNING. Abnormal entry count found on day 2016-12-03: -16817
WARNING. Abnormal entry count found on day 2016-12-10: -16507
WARNING. Abnormal entry count found on day 2016-12-10: -16507
WARNING. Abnormal entry count found on day 2016-12-17: -14724
WARNING. Abnormal entry count found on day 2016-12-17: -14724
WARNING. Abnormal entry count found on day 2016-12-24: -8539
WARNING. Abnormal entry count found on day 2016-12-24: -8539
Processing turnstile ('S101', 'R070', '00-00-08', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -1713
WARNING. Abnormal entry count found on day 2016-12-03: -1713
WARNING. Abnormal entry count found on day 2016-12-10: -1819
WARNING. Abnormal entry count found on day 2016-12-10: -1819
WARNING. Abnormal entry count found on day 2016-12-17: -1747
WARNING. Abnormal entry count found on day 2016-12-17: -1747
WARNING. Abnormal entry count found on day 2016-12-24: -1268
WARNING. Abnormal entry count found on day 2016-12-24: -1268
Processing turnstile ('R173', 'R159', '00-00-01', '116 ST-COLUMBIA')
WARNING. Abnormal entry count found on day 2016-12-03: -15014
WARNING. Abnormal entry count found on day 2016-12-03: -15014
WARNING. Abnormal entry count found on day 2016-12-10: -12908
WARNING. Abnormal entry count found on day 2016-12-10: -12908
WARNING. Abnormal entry count found on day 2016-12-17: -9299
WARNING. Abnormal entry count found on day 2016-12-17: -9299
WARNING. Abnormal entry count found on day 2016-12-24: -4768
WARNING. Abnormal entry count found on day 2016-12-24: -4768
Processing turnstile ('R246', 'R177', '00-00-03', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -12496
WARNING. Abnormal entry count found on day 2016-12-03: -12496
WARNING. Abnormal entry count found on day 2016-12-10: -11095
WARNING. Abnormal entry count found on day 2016-12-10: -11095
WARNING. Abnormal entry count found on day 2016-12-17: -9051
WARNING. Abnormal entry count found on day 2016-12-17: -9051
WARNING. Abnormal entry count found on day 2016-12-24: -5372
WARNING. Abnormal entry count found on day 2016-12-24: -5372
Processing turnstile ('N076', 'R111', '00-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19243
WARNING. Abnormal entry count found on day 2016-12-03: -19243
WARNING. Abnormal entry count found on day 2016-12-10: -19474
WARNING. Abnormal entry count found on day 2016-12-10: -19474
WARNING. Abnormal entry count found on day 2016-12-17: -17453
WARNING. Abnormal entry count found on day 2016-12-17: -17453
WARNING. Abnormal entry count found on day 2016-12-24: -13179
WARNING. Abnormal entry count found on day 2016-12-24: -13179
Processing turnstile ('N003', 'R185', '00-00-01', 'DYCKMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10258
WARNING. Abnormal entry count found on day 2016-12-03: -10258
WARNING. Abnormal entry count found on day 2016-12-10: -10368
WARNING. Abnormal entry count found on day 2016-12-10: -10368
WARNING. Abnormal entry count found on day 2016-12-17: -9854
WARNING. Abnormal entry count found on day 2016-12-17: -9854
WARNING. Abnormal entry count found on day 2016-12-24: -7338
WARNING. Abnormal entry count found on day 2016-12-24: -7338
Processing turnstile ('N416', 'R286', '01-05-01', 'MYRTLE-WILLOUGH')
Processing turnstile ('R422', 'R428', '00-03-00', 'BUHRE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4673
WARNING. Abnormal entry count found on day 2016-12-03: -4673
WARNING. Abnormal entry count found on day 2016-12-10: -5152
WARNING. Abnormal entry count found on day 2016-12-10: -5152
WARNING. Abnormal entry count found on day 2016-12-17: -4573
WARNING. Abnormal entry count found on day 2016-12-17: -4573
WARNING. Abnormal entry count found on day 2016-12-24: -3618
WARNING. Abnormal entry count found on day 2016-12-24: -3618
Processing turnstile ('N607', 'R025', '01-00-04', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -7031
WARNING. Abnormal entry count found on day 2016-12-03: -7031
WARNING. Abnormal entry count found on day 2016-12-10: -6589
WARNING. Abnormal entry count found on day 2016-12-10: -6589
WARNING. Abnormal entry count found on day 2016-12-17: -6418
WARNING. Abnormal entry count found on day 2016-12-17: -6418
WARNING. Abnormal entry count found on day 2016-12-24: -4712
WARNING. Abnormal entry count found on day 2016-12-24: -4712
Processing turnstile ('R645', 'R110', '00-06-01', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -11461
WARNING. Abnormal entry count found on day 2016-12-03: -11461
WARNING. Abnormal entry count found on day 2016-12-10: -11139
WARNING. Abnormal entry count found on day 2016-12-10: -11139
WARNING. Abnormal entry count found on day 2016-12-17: -10894
WARNING. Abnormal entry count found on day 2016-12-17: -10894
WARNING. Abnormal entry count found on day 2016-12-24: -7953
WARNING. Abnormal entry count found on day 2016-12-24: -7953
Processing turnstile ('R245', 'R051', '00-05-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8089
WARNING. Abnormal entry count found on day 2016-12-03: -8089
WARNING. Abnormal entry count found on day 2016-12-10: -7838
WARNING. Abnormal entry count found on day 2016-12-10: -7838
WARNING. Abnormal entry count found on day 2016-12-17: -7466
WARNING. Abnormal entry count found on day 2016-12-17: -7466
WARNING. Abnormal entry count found on day 2016-12-24: -5750
WARNING. Abnormal entry count found on day 2016-12-24: -5750
Processing turnstile ('R244A', 'R050', '01-06-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4288
WARNING. Abnormal entry count found on day 2016-12-03: -4288
WARNING. Abnormal entry count found on day 2016-12-10: -4361
WARNING. Abnormal entry count found on day 2016-12-10: -4361
WARNING. Abnormal entry count found on day 2016-12-17: -4325
WARNING. Abnormal entry count found on day 2016-12-17: -4325
WARNING. Abnormal entry count found on day 2016-12-24: -2776
WARNING. Abnormal entry count found on day 2016-12-24: -2776
Processing turnstile ('N318', 'R298', '00-00-00', 'NORTHERN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -7441
WARNING. Abnormal entry count found on day 2016-12-03: -7441
WARNING. Abnormal entry count found on day 2016-12-10: -7628
WARNING. Abnormal entry count found on day 2016-12-10: -7628
WARNING. Abnormal entry count found on day 2016-12-17: -7067
WARNING. Abnormal entry count found on day 2016-12-17: -7067
WARNING. Abnormal entry count found on day 2016-12-24: -5346
WARNING. Abnormal entry count found on day 2016-12-24: -5346
Processing turnstile ('C008', 'R099', '00-04-00', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16
WARNING. Abnormal entry count found on day 2016-12-03: -16
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-24: -13
WARNING. Abnormal entry count found on day 2016-12-24: -13
Processing turnstile ('R158', 'R084', '00-05-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -9652
WARNING. Abnormal entry count found on day 2016-12-03: -9652
WARNING. Abnormal entry count found on day 2016-12-10: -8873
WARNING. Abnormal entry count found on day 2016-12-10: -8873
WARNING. Abnormal entry count found on day 2016-12-17: -10476
WARNING. Abnormal entry count found on day 2016-12-17: -10476
WARNING. Abnormal entry count found on day 2016-12-24: -4811
WARNING. Abnormal entry count found on day 2016-12-24: -4811
Processing turnstile ('N025', 'R102', '01-00-03', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7534
WARNING. Abnormal entry count found on day 2016-12-03: -7534
WARNING. Abnormal entry count found on day 2016-12-10: -6929
WARNING. Abnormal entry count found on day 2016-12-10: -6929
WARNING. Abnormal entry count found on day 2016-12-17: -6962
WARNING. Abnormal entry count found on day 2016-12-17: -6962
WARNING. Abnormal entry count found on day 2016-12-24: -4607
WARNING. Abnormal entry count found on day 2016-12-24: -4607
Processing turnstile ('A050', 'R088', '00-00-01', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2036
WARNING. Abnormal entry count found on day 2016-12-03: -2036
WARNING. Abnormal entry count found on day 2016-12-10: -2109
WARNING. Abnormal entry count found on day 2016-12-10: -2109
WARNING. Abnormal entry count found on day 2016-12-17: -1959
WARNING. Abnormal entry count found on day 2016-12-17: -1959
WARNING. Abnormal entry count found on day 2016-12-24: -2142
WARNING. Abnormal entry count found on day 2016-12-24: -2142
Processing turnstile ('PTH01', 'R549', '00-01-04', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -17
WARNING. Abnormal entry count found on day 2016-12-03: -17
WARNING. Abnormal entry count found on day 2016-12-10: -27
WARNING. Abnormal entry count found on day 2016-12-10: -27
WARNING. Abnormal entry count found on day 2016-12-17: -24
WARNING. Abnormal entry count found on day 2016-12-17: -24
WARNING. Abnormal entry count found on day 2016-12-24: -28
WARNING. Abnormal entry count found on day 2016-12-24: -28
Processing turnstile ('N305', 'R017', '01-03-02', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -5788
WARNING. Abnormal entry count found on day 2016-12-03: -5788
WARNING. Abnormal entry count found on day 2016-12-10: -6173
WARNING. Abnormal entry count found on day 2016-12-10: -6173
WARNING. Abnormal entry count found on day 2016-12-17: -5897
WARNING. Abnormal entry count found on day 2016-12-17: -5897
WARNING. Abnormal entry count found on day 2016-12-24: -4254
WARNING. Abnormal entry count found on day 2016-12-24: -4254
Processing turnstile ('C021', 'R212', '00-00-03', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14228
WARNING. Abnormal entry count found on day 2016-12-03: -14228
WARNING. Abnormal entry count found on day 2016-12-10: -14252
WARNING. Abnormal entry count found on day 2016-12-10: -14252
WARNING. Abnormal entry count found on day 2016-12-17: -13963
WARNING. Abnormal entry count found on day 2016-12-17: -13963
WARNING. Abnormal entry count found on day 2016-12-24: -10903
WARNING. Abnormal entry count found on day 2016-12-24: -10903
Processing turnstile ('PTH04', 'R551', '00-01-04', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -8482
WARNING. Abnormal entry count found on day 2016-12-03: -8482
WARNING. Abnormal entry count found on day 2016-12-10: -7959
WARNING. Abnormal entry count found on day 2016-12-10: -7959
WARNING. Abnormal entry count found on day 2016-12-17: -7241
WARNING. Abnormal entry count found on day 2016-12-17: -7241
WARNING. Abnormal entry count found on day 2016-12-24: -5420
WARNING. Abnormal entry count found on day 2016-12-24: -5420
Processing turnstile ('N333B', 'R141', '02-00-00', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -11568
WARNING. Abnormal entry count found on day 2016-12-03: -11568
WARNING. Abnormal entry count found on day 2016-12-10: -11388
WARNING. Abnormal entry count found on day 2016-12-10: -11388
WARNING. Abnormal entry count found on day 2016-12-17: -11021
WARNING. Abnormal entry count found on day 2016-12-17: -11021
WARNING. Abnormal entry count found on day 2016-12-24: -8845
WARNING. Abnormal entry count found on day 2016-12-24: -8845
Processing turnstile ('N222', 'R156', '00-00-01', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -5905
WARNING. Abnormal entry count found on day 2016-12-03: -5905
WARNING. Abnormal entry count found on day 2016-12-10: -5851
WARNING. Abnormal entry count found on day 2016-12-10: -5851
WARNING. Abnormal entry count found on day 2016-12-17: -5572
WARNING. Abnormal entry count found on day 2016-12-17: -5572
WARNING. Abnormal entry count found on day 2016-12-24: -4072
WARNING. Abnormal entry count found on day 2016-12-24: -4072
Processing turnstile ('A025', 'R023', '01-03-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -19632
WARNING. Abnormal entry count found on day 2016-12-03: -19632
WARNING. Abnormal entry count found on day 2016-12-10: -18456
WARNING. Abnormal entry count found on day 2016-12-10: -18456
WARNING. Abnormal entry count found on day 2016-12-17: -19889
WARNING. Abnormal entry count found on day 2016-12-17: -19889
WARNING. Abnormal entry count found on day 2016-12-24: -17975
WARNING. Abnormal entry count found on day 2016-12-24: -17975
Processing turnstile ('N181A', 'R464', '00-05-00', 'AQUEDUCT RACETR')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-24: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
Processing turnstile ('H023', 'R236', '00-00-00', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13111
WARNING. Abnormal entry count found on day 2016-12-03: -13111
WARNING. Abnormal entry count found on day 2016-12-10: -12822
WARNING. Abnormal entry count found on day 2016-12-10: -12822
WARNING. Abnormal entry count found on day 2016-12-17: -12177
WARNING. Abnormal entry count found on day 2016-12-17: -12177
WARNING. Abnormal entry count found on day 2016-12-24: -9474
WARNING. Abnormal entry count found on day 2016-12-24: -9474
Processing turnstile ('C018', 'R197', '00-00-00', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15596
WARNING. Abnormal entry count found on day 2016-12-03: -15596
WARNING. Abnormal entry count found on day 2016-12-10: -16104
WARNING. Abnormal entry count found on day 2016-12-10: -16104
WARNING. Abnormal entry count found on day 2016-12-17: -16120
WARNING. Abnormal entry count found on day 2016-12-17: -16120
WARNING. Abnormal entry count found on day 2016-12-24: -11430
WARNING. Abnormal entry count found on day 2016-12-24: -11430
Processing turnstile ('N337', 'R255', '00-00-03', 'BRIARWOOD')
WARNING. Abnormal entry count found on day 2016-12-03: -2126
WARNING. Abnormal entry count found on day 2016-12-03: -2126
WARNING. Abnormal entry count found on day 2016-12-10: -2008
WARNING. Abnormal entry count found on day 2016-12-10: -2008
WARNING. Abnormal entry count found on day 2016-12-17: -1916
WARNING. Abnormal entry count found on day 2016-12-17: -1916
WARNING. Abnormal entry count found on day 2016-12-24: -1877
WARNING. Abnormal entry count found on day 2016-12-24: -1877
Processing turnstile ('N325A', 'R218', '00-03-00', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -212
WARNING. Abnormal entry count found on day 2016-12-03: -212
WARNING. Abnormal entry count found on day 2016-12-10: -241
WARNING. Abnormal entry count found on day 2016-12-10: -241
WARNING. Abnormal entry count found on day 2016-12-17: -267
WARNING. Abnormal entry count found on day 2016-12-17: -267
WARNING. Abnormal entry count found on day 2016-12-24: -221
WARNING. Abnormal entry count found on day 2016-12-24: -221
Processing turnstile ('R237', 'R046', '01-00-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -915
WARNING. Abnormal entry count found on day 2016-12-03: -915
WARNING. Abnormal entry count found on day 2016-12-10: -765
WARNING. Abnormal entry count found on day 2016-12-10: -765
WARNING. Abnormal entry count found on day 2016-12-17: -581
WARNING. Abnormal entry count found on day 2016-12-17: -581
WARNING. Abnormal entry count found on day 2016-12-24: -338
WARNING. Abnormal entry count found on day 2016-12-24: -338
Processing turnstile ('C011', 'R231', '01-00-01', 'UNION ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2068
WARNING. Abnormal entry count found on day 2016-12-03: -2068
WARNING. Abnormal entry count found on day 2016-12-10: -2084
WARNING. Abnormal entry count found on day 2016-12-10: -2084
WARNING. Abnormal entry count found on day 2016-12-17: -1758
WARNING. Abnormal entry count found on day 2016-12-17: -1758
WARNING. Abnormal entry count found on day 2016-12-24: -1361
WARNING. Abnormal entry count found on day 2016-12-24: -1361
Processing turnstile ('N046', 'R281', '00-06-01', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8590
WARNING. Abnormal entry count found on day 2016-12-03: -8590
WARNING. Abnormal entry count found on day 2016-12-10: -7930
WARNING. Abnormal entry count found on day 2016-12-10: -7930
WARNING. Abnormal entry count found on day 2016-12-17: -7246
WARNING. Abnormal entry count found on day 2016-12-17: -7246
WARNING. Abnormal entry count found on day 2016-12-24: -5474
WARNING. Abnormal entry count found on day 2016-12-24: -5474
Processing turnstile ('H032', 'R295', '00-05-00', 'WILSON AV')
Processing turnstile ('R120', 'R320', '01-00-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2294
WARNING. Abnormal entry count found on day 2016-12-03: -2294
WARNING. Abnormal entry count found on day 2016-12-10: -2194
WARNING. Abnormal entry count found on day 2016-12-10: -2194
WARNING. Abnormal entry count found on day 2016-12-17: -1800
WARNING. Abnormal entry count found on day 2016-12-17: -1800
WARNING. Abnormal entry count found on day 2016-12-24: -1186
WARNING. Abnormal entry count found on day 2016-12-24: -1186
Processing turnstile ('N329A', 'R201', '01-06-01', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -14820
WARNING. Abnormal entry count found on day 2016-12-03: -14820
WARNING. Abnormal entry count found on day 2016-12-10: -15010
WARNING. Abnormal entry count found on day 2016-12-10: -15010
WARNING. Abnormal entry count found on day 2016-12-17: -16088
WARNING. Abnormal entry count found on day 2016-12-17: -16088
WARNING. Abnormal entry count found on day 2016-12-24: -11108
WARNING. Abnormal entry count found on day 2016-12-24: -11108
Processing turnstile ('A043', 'R462', '00-00-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17077
WARNING. Abnormal entry count found on day 2016-12-03: -17077
WARNING. Abnormal entry count found on day 2016-12-10: -16612
WARNING. Abnormal entry count found on day 2016-12-10: -16612
WARNING. Abnormal entry count found on day 2016-12-17: -16058
WARNING. Abnormal entry count found on day 2016-12-17: -16058
WARNING. Abnormal entry count found on day 2016-12-24: -10765
WARNING. Abnormal entry count found on day 2016-12-24: -10765
Processing turnstile ('R319', 'R409', '01-00-01', 'FREEMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2437
WARNING. Abnormal entry count found on day 2016-12-03: -2437
WARNING. Abnormal entry count found on day 2016-12-10: -1684
WARNING. Abnormal entry count found on day 2016-12-10: -1684
WARNING. Abnormal entry count found on day 2016-12-17: -1852
WARNING. Abnormal entry count found on day 2016-12-17: -1852
WARNING. Abnormal entry count found on day 2016-12-24: -1327
WARNING. Abnormal entry count found on day 2016-12-24: -1327
Processing turnstile ('N601A', 'R319', '01-00-03', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-24: -152
WARNING. Abnormal entry count found on day 2016-12-24: -152
Processing turnstile ('N120A', 'R153', '01-05-00', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('PTH19', 'R549', '02-00-01', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1868
WARNING. Abnormal entry count found on day 2016-12-03: -1868
WARNING. Abnormal entry count found on day 2016-12-10: -1845
WARNING. Abnormal entry count found on day 2016-12-10: -1845
WARNING. Abnormal entry count found on day 2016-12-17: -1522
WARNING. Abnormal entry count found on day 2016-12-17: -1522
WARNING. Abnormal entry count found on day 2016-12-24: -876
WARNING. Abnormal entry count found on day 2016-12-24: -876
Processing turnstile ('R532', 'R328', '00-00-03', 'METS-WILLETS PT')
WARNING. Abnormal entry count found on day 2016-12-03: -3423
WARNING. Abnormal entry count found on day 2016-12-03: -3423
WARNING. Abnormal entry count found on day 2016-12-10: -3130
WARNING. Abnormal entry count found on day 2016-12-10: -3130
WARNING. Abnormal entry count found on day 2016-12-17: -3108
WARNING. Abnormal entry count found on day 2016-12-17: -3108
WARNING. Abnormal entry count found on day 2016-12-24: -2700
WARNING. Abnormal entry count found on day 2016-12-24: -2700
Processing turnstile ('H009', 'R235', '00-06-02', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10812
WARNING. Abnormal entry count found on day 2016-12-03: -10812
WARNING. Abnormal entry count found on day 2016-12-10: -10723
WARNING. Abnormal entry count found on day 2016-12-10: -10723
WARNING. Abnormal entry count found on day 2016-12-17: -10670
WARNING. Abnormal entry count found on day 2016-12-17: -10670
WARNING. Abnormal entry count found on day 2016-12-24: -6309
WARNING. Abnormal entry count found on day 2016-12-24: -6309
Processing turnstile ('N127', 'R442', '00-00-02', 'SHEPHERD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7308
WARNING. Abnormal entry count found on day 2016-12-03: -7308
WARNING. Abnormal entry count found on day 2016-12-10: -7074
WARNING. Abnormal entry count found on day 2016-12-10: -7074
WARNING. Abnormal entry count found on day 2016-12-17: -6866
WARNING. Abnormal entry count found on day 2016-12-17: -6866
WARNING. Abnormal entry count found on day 2016-12-24: -5330
WARNING. Abnormal entry count found on day 2016-12-24: -5330
Processing turnstile ('R147', 'R033', '04-05-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -31
WARNING. Abnormal entry count found on day 2016-12-03: -31
WARNING. Abnormal entry count found on day 2016-12-10: -35
WARNING. Abnormal entry count found on day 2016-12-10: -35
WARNING. Abnormal entry count found on day 2016-12-17: -26
WARNING. Abnormal entry count found on day 2016-12-17: -26
WARNING. Abnormal entry count found on day 2016-12-24: -30
WARNING. Abnormal entry count found on day 2016-12-24: -30
Processing turnstile ('N100', 'R252', '00-00-00', 'HIGH ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8866
WARNING. Abnormal entry count found on day 2016-12-03: -8866
WARNING. Abnormal entry count found on day 2016-12-10: -7878
WARNING. Abnormal entry count found on day 2016-12-10: -7878
WARNING. Abnormal entry count found on day 2016-12-17: -8057
WARNING. Abnormal entry count found on day 2016-12-17: -8057
WARNING. Abnormal entry count found on day 2016-12-24: -9559
WARNING. Abnormal entry count found on day 2016-12-24: -9559
Processing turnstile ('B025', 'R150', '00-00-03', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -9496
WARNING. Abnormal entry count found on day 2016-12-03: -9496
WARNING. Abnormal entry count found on day 2016-12-10: -9293
WARNING. Abnormal entry count found on day 2016-12-10: -9293
WARNING. Abnormal entry count found on day 2016-12-17: -9026
WARNING. Abnormal entry count found on day 2016-12-17: -9026
WARNING. Abnormal entry count found on day 2016-12-24: -7429
WARNING. Abnormal entry count found on day 2016-12-24: -7429
Processing turnstile ('N001', 'R173', '01-06-02', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4921
WARNING. Abnormal entry count found on day 2016-12-03: -4921
WARNING. Abnormal entry count found on day 2016-12-10: -4787
WARNING. Abnormal entry count found on day 2016-12-10: -4787
WARNING. Abnormal entry count found on day 2016-12-17: -4376
WARNING. Abnormal entry count found on day 2016-12-17: -4376
WARNING. Abnormal entry count found on day 2016-12-24: -2797
WARNING. Abnormal entry count found on day 2016-12-24: -2797
Processing turnstile ('N409', 'R268', '00-06-01', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5593
WARNING. Abnormal entry count found on day 2016-12-03: -5593
WARNING. Abnormal entry count found on day 2016-12-10: -6369
WARNING. Abnormal entry count found on day 2016-12-10: -6369
WARNING. Abnormal entry count found on day 2016-12-17: -5056
WARNING. Abnormal entry count found on day 2016-12-17: -5056
WARNING. Abnormal entry count found on day 2016-12-24: -3104
WARNING. Abnormal entry count found on day 2016-12-24: -3104
Processing turnstile ('J037', 'R009', '00-06-00', '121 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3000
WARNING. Abnormal entry count found on day 2016-12-03: -3000
WARNING. Abnormal entry count found on day 2016-12-10: -2819
WARNING. Abnormal entry count found on day 2016-12-10: -2819
WARNING. Abnormal entry count found on day 2016-12-17: -2682
WARNING. Abnormal entry count found on day 2016-12-17: -2682
WARNING. Abnormal entry count found on day 2016-12-24: -2163
WARNING. Abnormal entry count found on day 2016-12-24: -2163
Processing turnstile ('R229', 'R143', '01-00-03', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13208
WARNING. Abnormal entry count found on day 2016-12-03: -13208
WARNING. Abnormal entry count found on day 2016-12-10: -13425
WARNING. Abnormal entry count found on day 2016-12-10: -13425
WARNING. Abnormal entry count found on day 2016-12-17: -11061
WARNING. Abnormal entry count found on day 2016-12-17: -11061
WARNING. Abnormal entry count found on day 2016-12-24: -7637
WARNING. Abnormal entry count found on day 2016-12-24: -7637
Processing turnstile ('N077', 'R111', '02-06-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3127
WARNING. Abnormal entry count found on day 2016-12-03: -3127
WARNING. Abnormal entry count found on day 2016-12-10: -3285
WARNING. Abnormal entry count found on day 2016-12-10: -3285
WARNING. Abnormal entry count found on day 2016-12-17: -2915
WARNING. Abnormal entry count found on day 2016-12-17: -2915
WARNING. Abnormal entry count found on day 2016-12-24: -2177
WARNING. Abnormal entry count found on day 2016-12-24: -2177
Processing turnstile ('N500', 'R020', '00-03-03', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -20662
WARNING. Abnormal entry count found on day 2016-12-03: -20662
WARNING. Abnormal entry count found on day 2016-12-10: -20998
WARNING. Abnormal entry count found on day 2016-12-10: -20998
WARNING. Abnormal entry count found on day 2016-12-17: -20251
WARNING. Abnormal entry count found on day 2016-12-17: -20251
WARNING. Abnormal entry count found on day 2016-12-24: -17728
WARNING. Abnormal entry count found on day 2016-12-24: -17728
Processing turnstile ('R111', 'R027', '00-03-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6653
WARNING. Abnormal entry count found on day 2016-12-03: -6653
WARNING. Abnormal entry count found on day 2016-12-10: -6531
WARNING. Abnormal entry count found on day 2016-12-10: -6531
WARNING. Abnormal entry count found on day 2016-12-17: -5311
WARNING. Abnormal entry count found on day 2016-12-17: -5311
WARNING. Abnormal entry count found on day 2016-12-24: -3232
WARNING. Abnormal entry count found on day 2016-12-24: -3232
Processing turnstile ('R508', 'R346', '00-03-01', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -3104
WARNING. Abnormal entry count found on day 2016-12-03: -3104
WARNING. Abnormal entry count found on day 2016-12-10: -3000
WARNING. Abnormal entry count found on day 2016-12-10: -3000
WARNING. Abnormal entry count found on day 2016-12-17: -2927
WARNING. Abnormal entry count found on day 2016-12-17: -2927
WARNING. Abnormal entry count found on day 2016-12-24: -2088
WARNING. Abnormal entry count found on day 2016-12-24: -2088
Processing turnstile ('N342', 'R019', '01-06-01', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -318
WARNING. Abnormal entry count found on day 2016-12-03: -318
WARNING. Abnormal entry count found on day 2016-12-10: -324
WARNING. Abnormal entry count found on day 2016-12-10: -324
WARNING. Abnormal entry count found on day 2016-12-17: -328
WARNING. Abnormal entry count found on day 2016-12-17: -328
WARNING. Abnormal entry count found on day 2016-12-24: -224
WARNING. Abnormal entry count found on day 2016-12-24: -224
Processing turnstile ('B019', 'R149', '00-00-00', 'NEWKIRK PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -15930
WARNING. Abnormal entry count found on day 2016-12-03: -15930
WARNING. Abnormal entry count found on day 2016-12-10: -15298
WARNING. Abnormal entry count found on day 2016-12-10: -15298
WARNING. Abnormal entry count found on day 2016-12-17: -14899
WARNING. Abnormal entry count found on day 2016-12-17: -14899
WARNING. Abnormal entry count found on day 2016-12-24: -11118
WARNING. Abnormal entry count found on day 2016-12-24: -11118
Processing turnstile ('N040', 'R251', '00-00-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13815
WARNING. Abnormal entry count found on day 2016-12-03: -13815
WARNING. Abnormal entry count found on day 2016-12-10: -13466
WARNING. Abnormal entry count found on day 2016-12-10: -13466
WARNING. Abnormal entry count found on day 2016-12-17: -11659
WARNING. Abnormal entry count found on day 2016-12-17: -11659
WARNING. Abnormal entry count found on day 2016-12-24: -8402
WARNING. Abnormal entry count found on day 2016-12-24: -8402
Processing turnstile ('R520', 'R223', '01-06-00', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13202
WARNING. Abnormal entry count found on day 2016-12-03: -13202
WARNING. Abnormal entry count found on day 2016-12-10: -13072
WARNING. Abnormal entry count found on day 2016-12-10: -13072
WARNING. Abnormal entry count found on day 2016-12-17: -11777
WARNING. Abnormal entry count found on day 2016-12-17: -11777
WARNING. Abnormal entry count found on day 2016-12-24: -9772
WARNING. Abnormal entry count found on day 2016-12-24: -9772
Processing turnstile ('N094', 'R029', '01-05-00', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -5
WARNING. Abnormal entry count found on day 2016-12-17: -5
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('C008', 'R099', '00-00-02', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5015
WARNING. Abnormal entry count found on day 2016-12-03: -5015
WARNING. Abnormal entry count found on day 2016-12-10: -4996
WARNING. Abnormal entry count found on day 2016-12-10: -4996
WARNING. Abnormal entry count found on day 2016-12-17: -5137
WARNING. Abnormal entry count found on day 2016-12-17: -5137
WARNING. Abnormal entry count found on day 2016-12-24: -3743
WARNING. Abnormal entry count found on day 2016-12-24: -3743
Processing turnstile ('R323', 'R387', '00-00-04', 'WEST FARMS SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -8484
WARNING. Abnormal entry count found on day 2016-12-03: -8484
WARNING. Abnormal entry count found on day 2016-12-10: -8514
WARNING. Abnormal entry count found on day 2016-12-10: -8514
WARNING. Abnormal entry count found on day 2016-12-17: -8427
WARNING. Abnormal entry count found on day 2016-12-17: -8427
WARNING. Abnormal entry count found on day 2016-12-24: -6012
WARNING. Abnormal entry count found on day 2016-12-24: -6012
Processing turnstile ('C009', 'R057', '03-00-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -9891
WARNING. Abnormal entry count found on day 2016-12-03: -9891
WARNING. Abnormal entry count found on day 2016-12-10: -9018
WARNING. Abnormal entry count found on day 2016-12-10: -9018
WARNING. Abnormal entry count found on day 2016-12-17: -9461
WARNING. Abnormal entry count found on day 2016-12-17: -9461
WARNING. Abnormal entry count found on day 2016-12-24: -6786
WARNING. Abnormal entry count found on day 2016-12-24: -6786
Processing turnstile ('D002', 'R390', '00-03-02', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15426
WARNING. Abnormal entry count found on day 2016-12-03: -15426
WARNING. Abnormal entry count found on day 2016-12-10: -14462
WARNING. Abnormal entry count found on day 2016-12-10: -14462
WARNING. Abnormal entry count found on day 2016-12-17: -15352
WARNING. Abnormal entry count found on day 2016-12-17: -15352
WARNING. Abnormal entry count found on day 2016-12-24: -14044
WARNING. Abnormal entry count found on day 2016-12-24: -14044
Processing turnstile ('R329', 'R362', '00-00-01', 'ALLERTON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8452
WARNING. Abnormal entry count found on day 2016-12-03: -8452
WARNING. Abnormal entry count found on day 2016-12-10: -8243
WARNING. Abnormal entry count found on day 2016-12-10: -8243
WARNING. Abnormal entry count found on day 2016-12-17: -8152
WARNING. Abnormal entry count found on day 2016-12-17: -8152
WARNING. Abnormal entry count found on day 2016-12-24: -6350
WARNING. Abnormal entry count found on day 2016-12-24: -6350
Processing turnstile ('R138', 'R293', '00-05-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -31
WARNING. Abnormal entry count found on day 2016-12-03: -31
WARNING. Abnormal entry count found on day 2016-12-10: -37
WARNING. Abnormal entry count found on day 2016-12-10: -37
WARNING. Abnormal entry count found on day 2016-12-17: -36
WARNING. Abnormal entry count found on day 2016-12-17: -36
WARNING. Abnormal entry count found on day 2016-12-24: -40
WARNING. Abnormal entry count found on day 2016-12-24: -40
Processing turnstile ('N020', 'R101', '00-00-00', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -26204
WARNING. Abnormal entry count found on day 2016-12-03: -26204
WARNING. Abnormal entry count found on day 2016-12-10: -23221
WARNING. Abnormal entry count found on day 2016-12-10: -23221
WARNING. Abnormal entry count found on day 2016-12-17: -19952
WARNING. Abnormal entry count found on day 2016-12-17: -19952
WARNING. Abnormal entry count found on day 2016-12-24: -13636
WARNING. Abnormal entry count found on day 2016-12-24: -13636
Processing turnstile ('N342', 'R019', '01-06-00', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -112
WARNING. Abnormal entry count found on day 2016-12-03: -112
WARNING. Abnormal entry count found on day 2016-12-10: -114
WARNING. Abnormal entry count found on day 2016-12-10: -114
WARNING. Abnormal entry count found on day 2016-12-17: -87
WARNING. Abnormal entry count found on day 2016-12-17: -87
WARNING. Abnormal entry count found on day 2016-12-24: -74
WARNING. Abnormal entry count found on day 2016-12-24: -74
Processing turnstile ('R610', 'R057', '00-03-01', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -5699
WARNING. Abnormal entry count found on day 2016-12-03: -5699
WARNING. Abnormal entry count found on day 2016-12-10: -6131
WARNING. Abnormal entry count found on day 2016-12-10: -6131
WARNING. Abnormal entry count found on day 2016-12-17: -5953
WARNING. Abnormal entry count found on day 2016-12-17: -5953
WARNING. Abnormal entry count found on day 2016-12-24: -4235
WARNING. Abnormal entry count found on day 2016-12-24: -4235
Processing turnstile ('C010', 'R231', '00-00-02', 'UNION ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10249
WARNING. Abnormal entry count found on day 2016-12-03: -10249
WARNING. Abnormal entry count found on day 2016-12-10: -9085
WARNING. Abnormal entry count found on day 2016-12-10: -9085
WARNING. Abnormal entry count found on day 2016-12-17: -8945
WARNING. Abnormal entry count found on day 2016-12-17: -8945
WARNING. Abnormal entry count found on day 2016-12-24: -5777
WARNING. Abnormal entry count found on day 2016-12-24: -5777
Processing turnstile ('N010', 'R126', '00-03-04', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4450
WARNING. Abnormal entry count found on day 2016-12-03: -4450
WARNING. Abnormal entry count found on day 2016-12-10: -4273
WARNING. Abnormal entry count found on day 2016-12-10: -4273
WARNING. Abnormal entry count found on day 2016-12-17: -3857
WARNING. Abnormal entry count found on day 2016-12-17: -3857
WARNING. Abnormal entry count found on day 2016-12-24: -2585
WARNING. Abnormal entry count found on day 2016-12-24: -2585
Processing turnstile ('R161B', 'R452', '00-00-02', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11138
WARNING. Abnormal entry count found on day 2016-12-03: -11138
WARNING. Abnormal entry count found on day 2016-12-10: -11227
WARNING. Abnormal entry count found on day 2016-12-10: -11227
WARNING. Abnormal entry count found on day 2016-12-17: -18229
WARNING. Abnormal entry count found on day 2016-12-17: -18229
WARNING. Abnormal entry count found on day 2016-12-24: -13191
WARNING. Abnormal entry count found on day 2016-12-24: -13191
Processing turnstile ('R529', 'R208', '00-00-00', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-12-03: -10450
WARNING. Abnormal entry count found on day 2016-12-03: -10450
WARNING. Abnormal entry count found on day 2016-12-10: -10044
WARNING. Abnormal entry count found on day 2016-12-10: -10044
WARNING. Abnormal entry count found on day 2016-12-17: -10344
WARNING. Abnormal entry count found on day 2016-12-17: -10344
WARNING. Abnormal entry count found on day 2016-12-24: -8541
WARNING. Abnormal entry count found on day 2016-12-24: -8541
Processing turnstile ('R113', 'R028', '01-06-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7191
WARNING. Abnormal entry count found on day 2016-12-03: -7191
WARNING. Abnormal entry count found on day 2016-12-10: -7396
WARNING. Abnormal entry count found on day 2016-12-10: -7396
WARNING. Abnormal entry count found on day 2016-12-17: -6429
WARNING. Abnormal entry count found on day 2016-12-17: -6429
WARNING. Abnormal entry count found on day 2016-12-24: -3891
WARNING. Abnormal entry count found on day 2016-12-24: -3891
Processing turnstile ('PTH13', 'R541', '00-04-06', 'THIRTY ST')
Processing turnstile ('PTH04', 'R551', '00-00-05', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -7104
WARNING. Abnormal entry count found on day 2016-12-03: -7104
WARNING. Abnormal entry count found on day 2016-12-10: -7642
WARNING. Abnormal entry count found on day 2016-12-10: -7642
WARNING. Abnormal entry count found on day 2016-12-17: -6826
WARNING. Abnormal entry count found on day 2016-12-17: -6826
WARNING. Abnormal entry count found on day 2016-12-24: -4898
WARNING. Abnormal entry count found on day 2016-12-24: -4898
Processing turnstile ('B020', 'R263', '00-06-04', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
Processing turnstile ('K022', 'R402', '00-03-01', 'SENECA AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -5571
WARNING. Abnormal entry count found on day 2016-12-03: -5571
WARNING. Abnormal entry count found on day 2016-12-10: -5486
WARNING. Abnormal entry count found on day 2016-12-10: -5486
WARNING. Abnormal entry count found on day 2016-12-17: -5173
WARNING. Abnormal entry count found on day 2016-12-17: -5173
WARNING. Abnormal entry count found on day 2016-12-24: -4165
WARNING. Abnormal entry count found on day 2016-12-24: -4165
Processing turnstile ('R645', 'R110', '00-00-01', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -5619
WARNING. Abnormal entry count found on day 2016-12-03: -5619
WARNING. Abnormal entry count found on day 2016-12-10: -5442
WARNING. Abnormal entry count found on day 2016-12-10: -5442
WARNING. Abnormal entry count found on day 2016-12-17: -5339
WARNING. Abnormal entry count found on day 2016-12-17: -5339
WARNING. Abnormal entry count found on day 2016-12-24: -4090
WARNING. Abnormal entry count found on day 2016-12-24: -4090
Processing turnstile ('A082', 'R028', '05-06-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5728
WARNING. Abnormal entry count found on day 2016-12-03: -5728
WARNING. Abnormal entry count found on day 2016-12-10: -5700
WARNING. Abnormal entry count found on day 2016-12-10: -5700
WARNING. Abnormal entry count found on day 2016-12-17: -4742
WARNING. Abnormal entry count found on day 2016-12-17: -4742
WARNING. Abnormal entry count found on day 2016-12-24: -4003
WARNING. Abnormal entry count found on day 2016-12-24: -4003
Processing turnstile ('R158', 'R084', '00-02-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -4537
WARNING. Abnormal entry count found on day 2016-12-03: -4537
WARNING. Abnormal entry count found on day 2016-12-10: -4069
WARNING. Abnormal entry count found on day 2016-12-10: -4069
WARNING. Abnormal entry count found on day 2016-12-17: -3512
WARNING. Abnormal entry count found on day 2016-12-17: -3512
WARNING. Abnormal entry count found on day 2016-12-24: -2671
WARNING. Abnormal entry count found on day 2016-12-24: -2671
Processing turnstile ('N600', 'R302', '00-06-02', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14340
WARNING. Abnormal entry count found on day 2016-12-03: -14340
WARNING. Abnormal entry count found on day 2016-12-10: -14235
WARNING. Abnormal entry count found on day 2016-12-10: -14235
WARNING. Abnormal entry count found on day 2016-12-17: -14049
WARNING. Abnormal entry count found on day 2016-12-17: -14049
WARNING. Abnormal entry count found on day 2016-12-24: -10812
WARNING. Abnormal entry count found on day 2016-12-24: -10812
Processing turnstile ('R177', 'R273', '01-00-01', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4117
WARNING. Abnormal entry count found on day 2016-12-03: -4117
WARNING. Abnormal entry count found on day 2016-12-10: -3834
WARNING. Abnormal entry count found on day 2016-12-10: -3834
WARNING. Abnormal entry count found on day 2016-12-17: -4231
WARNING. Abnormal entry count found on day 2016-12-17: -4231
WARNING. Abnormal entry count found on day 2016-12-24: -3474
WARNING. Abnormal entry count found on day 2016-12-24: -3474
Processing turnstile ('N139', 'R355', '00-00-02', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2483
WARNING. Abnormal entry count found on day 2016-12-03: -2483
WARNING. Abnormal entry count found on day 2016-12-10: -2594
WARNING. Abnormal entry count found on day 2016-12-10: -2594
WARNING. Abnormal entry count found on day 2016-12-17: -2478
WARNING. Abnormal entry count found on day 2016-12-17: -2478
WARNING. Abnormal entry count found on day 2016-12-24: -1908
WARNING. Abnormal entry count found on day 2016-12-24: -1908
Processing turnstile ('N062', 'R011', '01-05-01', '42 ST-PORT AUTH')
Processing turnstile ('PTH03', 'R552', '00-00-02', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -6964
WARNING. Abnormal entry count found on day 2016-12-03: -6964
WARNING. Abnormal entry count found on day 2016-12-10: -6197
WARNING. Abnormal entry count found on day 2016-12-10: -6197
WARNING. Abnormal entry count found on day 2016-12-17: -6976
WARNING. Abnormal entry count found on day 2016-12-17: -6976
WARNING. Abnormal entry count found on day 2016-12-24: -5534
WARNING. Abnormal entry count found on day 2016-12-24: -5534
Processing turnstile ('N405', 'R239', '00-06-00', 'GREENPOINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6913
WARNING. Abnormal entry count found on day 2016-12-03: -6913
WARNING. Abnormal entry count found on day 2016-12-10: -6856
WARNING. Abnormal entry count found on day 2016-12-10: -6856
WARNING. Abnormal entry count found on day 2016-12-17: -5869
WARNING. Abnormal entry count found on day 2016-12-17: -5869
WARNING. Abnormal entry count found on day 2016-12-24: -4374
WARNING. Abnormal entry count found on day 2016-12-24: -4374
Processing turnstile ('R111', 'R027', '00-00-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11910
WARNING. Abnormal entry count found on day 2016-12-03: -11910
WARNING. Abnormal entry count found on day 2016-12-10: -11613
WARNING. Abnormal entry count found on day 2016-12-10: -11613
WARNING. Abnormal entry count found on day 2016-12-17: -10241
WARNING. Abnormal entry count found on day 2016-12-17: -10241
WARNING. Abnormal entry count found on day 2016-12-24: -7429
WARNING. Abnormal entry count found on day 2016-12-24: -7429
Processing turnstile ('R251', 'R144', '00-00-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -23457
WARNING. Abnormal entry count found on day 2016-12-03: -23457
WARNING. Abnormal entry count found on day 2016-12-10: -31075
WARNING. Abnormal entry count found on day 2016-12-10: -31075
WARNING. Abnormal entry count found on day 2016-12-17: -21033
WARNING. Abnormal entry count found on day 2016-12-17: -21033
WARNING. Abnormal entry count found on day 2016-12-24: -14215
WARNING. Abnormal entry count found on day 2016-12-24: -14215
Processing turnstile ('R201', 'R041', '00-05-01', 'BOWLING GREEN')
Processing turnstile ('R501', 'R054', '00-00-00', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -8448
WARNING. Abnormal entry count found on day 2016-12-03: -8448
WARNING. Abnormal entry count found on day 2016-12-10: -8483
WARNING. Abnormal entry count found on day 2016-12-10: -8483
WARNING. Abnormal entry count found on day 2016-12-17: -7826
WARNING. Abnormal entry count found on day 2016-12-17: -7826
WARNING. Abnormal entry count found on day 2016-12-24: -6285
WARNING. Abnormal entry count found on day 2016-12-24: -6285
Processing turnstile ('N110', 'R283', '00-03-00', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -207
WARNING. Abnormal entry count found on day 2016-12-03: -207
WARNING. Abnormal entry count found on day 2016-12-10: -209
WARNING. Abnormal entry count found on day 2016-12-10: -209
WARNING. Abnormal entry count found on day 2016-12-17: -205
WARNING. Abnormal entry count found on day 2016-12-17: -205
WARNING. Abnormal entry count found on day 2016-12-24: -187
WARNING. Abnormal entry count found on day 2016-12-24: -187
Processing turnstile ('R336', 'R145', '00-00-00', 'WAKEFIELD/241')
WARNING. Abnormal entry count found on day 2016-12-03: -8856
WARNING. Abnormal entry count found on day 2016-12-03: -8856
WARNING. Abnormal entry count found on day 2016-12-10: -8518
WARNING. Abnormal entry count found on day 2016-12-10: -8518
WARNING. Abnormal entry count found on day 2016-12-17: -8635
WARNING. Abnormal entry count found on day 2016-12-17: -8635
WARNING. Abnormal entry count found on day 2016-12-24: -7344
WARNING. Abnormal entry count found on day 2016-12-24: -7344
Processing turnstile ('N135', 'R385', '01-06-00', 'ROCKAWAY BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -9783
WARNING. Abnormal entry count found on day 2016-12-03: -9783
WARNING. Abnormal entry count found on day 2016-12-10: -7422
WARNING. Abnormal entry count found on day 2016-12-10: -7422
WARNING. Abnormal entry count found on day 2016-12-17: -8186
WARNING. Abnormal entry count found on day 2016-12-17: -8186
WARNING. Abnormal entry count found on day 2016-12-24: -5728
WARNING. Abnormal entry count found on day 2016-12-24: -5728
Processing turnstile ('R257', 'R182', '01-00-00', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11125
WARNING. Abnormal entry count found on day 2016-12-03: -11125
WARNING. Abnormal entry count found on day 2016-12-10: -9771
WARNING. Abnormal entry count found on day 2016-12-10: -9771
WARNING. Abnormal entry count found on day 2016-12-17: -10620
WARNING. Abnormal entry count found on day 2016-12-17: -10620
WARNING. Abnormal entry count found on day 2016-12-24: -7802
WARNING. Abnormal entry count found on day 2016-12-24: -7802
Processing turnstile ('N305', 'R017', '01-03-04', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-04: -1038
WARNING. Abnormal entry count found on day 2016-12-05: -787
WARNING. Abnormal entry count found on day 2016-12-06: -2654
WARNING. Abnormal entry count found on day 2016-12-07: -2826
WARNING. Abnormal entry count found on day 2016-12-08: -2765
WARNING. Abnormal entry count found on day 2016-12-09: -2877
WARNING. Abnormal entry count found on day 2016-12-03: 12947
WARNING. Abnormal entry count found on day 2016-12-04: -1038
WARNING. Abnormal entry count found on day 2016-12-05: -787
WARNING. Abnormal entry count found on day 2016-12-06: -2654
WARNING. Abnormal entry count found on day 2016-12-07: -2826
WARNING. Abnormal entry count found on day 2016-12-08: -2765
WARNING. Abnormal entry count found on day 2016-12-09: -2877
WARNING. Abnormal entry count found on day 2016-12-03: 12947
WARNING. Abnormal entry count found on day 2016-12-04: -1038
WARNING. Abnormal entry count found on day 2016-12-05: -787
WARNING. Abnormal entry count found on day 2016-12-06: -2654
WARNING. Abnormal entry count found on day 2016-12-07: -2826
WARNING. Abnormal entry count found on day 2016-12-08: -2765
WARNING. Abnormal entry count found on day 2016-12-09: -2877
WARNING. Abnormal entry count found on day 2016-12-10: -2669
WARNING. Abnormal entry count found on day 2016-12-11: -1044
WARNING. Abnormal entry count found on day 2016-12-12: -785
WARNING. Abnormal entry count found on day 2016-12-13: -2464
WARNING. Abnormal entry count found on day 2016-12-14: -2904
WARNING. Abnormal entry count found on day 2016-12-15: -2838
WARNING. Abnormal entry count found on day 2016-12-16: -2018
WARNING. Abnormal entry count found on day 2016-12-10: 12053
WARNING. Abnormal entry count found on day 2016-12-11: -1044
WARNING. Abnormal entry count found on day 2016-12-12: -785
WARNING. Abnormal entry count found on day 2016-12-13: -2464
WARNING. Abnormal entry count found on day 2016-12-14: -2904
WARNING. Abnormal entry count found on day 2016-12-15: -2838
WARNING. Abnormal entry count found on day 2016-12-16: -2018
WARNING. Abnormal entry count found on day 2016-12-10: 12053
WARNING. Abnormal entry count found on day 2016-12-11: -1044
WARNING. Abnormal entry count found on day 2016-12-12: -785
WARNING. Abnormal entry count found on day 2016-12-13: -2464
WARNING. Abnormal entry count found on day 2016-12-14: -2904
WARNING. Abnormal entry count found on day 2016-12-15: -2838
WARNING. Abnormal entry count found on day 2016-12-16: -2018
WARNING. Abnormal entry count found on day 2016-12-17: -1945
WARNING. Abnormal entry count found on day 2016-12-18: -999
WARNING. Abnormal entry count found on day 2016-12-19: -887
WARNING. Abnormal entry count found on day 2016-12-20: -2444
WARNING. Abnormal entry count found on day 2016-12-21: -2729
WARNING. Abnormal entry count found on day 2016-12-22: -2745
WARNING. Abnormal entry count found on day 2016-12-23: -2634
WARNING. Abnormal entry count found on day 2016-12-17: 12438
WARNING. Abnormal entry count found on day 2016-12-18: -999
WARNING. Abnormal entry count found on day 2016-12-19: -887
WARNING. Abnormal entry count found on day 2016-12-20: -2444
WARNING. Abnormal entry count found on day 2016-12-21: -2729
WARNING. Abnormal entry count found on day 2016-12-22: -2745
WARNING. Abnormal entry count found on day 2016-12-23: -2634
WARNING. Abnormal entry count found on day 2016-12-17: 12438
WARNING. Abnormal entry count found on day 2016-12-18: -999
WARNING. Abnormal entry count found on day 2016-12-19: -887
WARNING. Abnormal entry count found on day 2016-12-20: -2444
WARNING. Abnormal entry count found on day 2016-12-21: -2729
WARNING. Abnormal entry count found on day 2016-12-22: -2745
WARNING. Abnormal entry count found on day 2016-12-23: -2634
WARNING. Abnormal entry count found on day 2016-12-24: -2096
WARNING. Abnormal entry count found on day 2016-12-25: -743
WARNING. Abnormal entry count found on day 2016-12-26: -459
WARNING. Abnormal entry count found on day 2016-12-27: -710
WARNING. Abnormal entry count found on day 2016-12-28: -2141
WARNING. Abnormal entry count found on day 2016-12-29: -2252
WARNING. Abnormal entry count found on day 2016-12-30: -2145
WARNING. Abnormal entry count found on day 2016-12-25: -743
WARNING. Abnormal entry count found on day 2016-12-26: -459
WARNING. Abnormal entry count found on day 2016-12-27: -710
WARNING. Abnormal entry count found on day 2016-12-28: -2141
WARNING. Abnormal entry count found on day 2016-12-29: -2252
WARNING. Abnormal entry count found on day 2016-12-30: -2145
WARNING. Abnormal entry count found on day 2016-12-25: -743
WARNING. Abnormal entry count found on day 2016-12-26: -459
WARNING. Abnormal entry count found on day 2016-12-27: -710
WARNING. Abnormal entry count found on day 2016-12-28: -2141
WARNING. Abnormal entry count found on day 2016-12-29: -2252
WARNING. Abnormal entry count found on day 2016-12-30: -2145
Processing turnstile ('N218', 'R112', '01-05-00', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -12
WARNING. Abnormal entry count found on day 2016-12-24: -12
Processing turnstile ('H014', 'R249', '00-00-02', 'GRAHAM AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4167
WARNING. Abnormal entry count found on day 2016-12-03: -4167
WARNING. Abnormal entry count found on day 2016-12-10: -4109
WARNING. Abnormal entry count found on day 2016-12-10: -4109
WARNING. Abnormal entry count found on day 2016-12-17: -3883
WARNING. Abnormal entry count found on day 2016-12-17: -3883
WARNING. Abnormal entry count found on day 2016-12-24: -3102
WARNING. Abnormal entry count found on day 2016-12-24: -3102
Processing turnstile ('R242A', 'R049', '02-00-00', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -586
WARNING. Abnormal entry count found on day 2016-12-03: -586
WARNING. Abnormal entry count found on day 2016-12-10: -819
WARNING. Abnormal entry count found on day 2016-12-10: -819
WARNING. Abnormal entry count found on day 2016-12-17: -648
WARNING. Abnormal entry count found on day 2016-12-17: -648
WARNING. Abnormal entry count found on day 2016-12-24: -470
WARNING. Abnormal entry count found on day 2016-12-24: -470
Processing turnstile ('N532', 'R129', '00-00-02', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7337
WARNING. Abnormal entry count found on day 2016-12-03: -7337
WARNING. Abnormal entry count found on day 2016-12-10: -7243
WARNING. Abnormal entry count found on day 2016-12-10: -7243
WARNING. Abnormal entry count found on day 2016-12-17: -6867
WARNING. Abnormal entry count found on day 2016-12-17: -6867
WARNING. Abnormal entry count found on day 2016-12-24: -4556
WARNING. Abnormal entry count found on day 2016-12-24: -4556
Processing turnstile ('R512', 'R092', '00-03-02', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -15718
WARNING. Abnormal entry count found on day 2016-12-03: -15718
WARNING. Abnormal entry count found on day 2016-12-10: -16195
WARNING. Abnormal entry count found on day 2016-12-10: -16195
WARNING. Abnormal entry count found on day 2016-12-17: -13451
WARNING. Abnormal entry count found on day 2016-12-17: -13451
WARNING. Abnormal entry count found on day 2016-12-24: -9392
WARNING. Abnormal entry count found on day 2016-12-24: -9392
Processing turnstile ('N545', 'R204', '01-05-01', 'CHURCH AV')
Processing turnstile ('N089', 'R139', '00-00-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1485
WARNING. Abnormal entry count found on day 2016-12-03: -1485
WARNING. Abnormal entry count found on day 2016-12-10: -1503
WARNING. Abnormal entry count found on day 2016-12-10: -1503
WARNING. Abnormal entry count found on day 2016-12-17: -1368
WARNING. Abnormal entry count found on day 2016-12-17: -1368
WARNING. Abnormal entry count found on day 2016-12-24: -1351
WARNING. Abnormal entry count found on day 2016-12-24: -1351
Processing turnstile ('C024', 'R214', '00-00-00', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11245
WARNING. Abnormal entry count found on day 2016-12-03: -11245
WARNING. Abnormal entry count found on day 2016-12-10: -10750
WARNING. Abnormal entry count found on day 2016-12-10: -10750
WARNING. Abnormal entry count found on day 2016-12-17: -10218
WARNING. Abnormal entry count found on day 2016-12-17: -10218
WARNING. Abnormal entry count found on day 2016-12-24: -7807
WARNING. Abnormal entry count found on day 2016-12-24: -7807
Processing turnstile ('R169', 'R168', '01-07-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18
WARNING. Abnormal entry count found on day 2016-12-03: -18
WARNING. Abnormal entry count found on day 2016-12-10: -17
WARNING. Abnormal entry count found on day 2016-12-10: -17
WARNING. Abnormal entry count found on day 2016-12-28: 67108656
WARNING. Abnormal entry count found on day 2016-12-24: -67108659
WARNING. Abnormal entry count found on day 2016-12-28: 67108656
WARNING. Abnormal entry count found on day 2016-12-24: -67108659
WARNING. Abnormal entry count found on day 2016-12-28: 67108656
Processing turnstile ('N103', 'R127', '00-00-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -3634
WARNING. Abnormal entry count found on day 2016-12-03: -3634
WARNING. Abnormal entry count found on day 2016-12-10: -3252
WARNING. Abnormal entry count found on day 2016-12-10: -3252
WARNING. Abnormal entry count found on day 2016-12-17: -3079
WARNING. Abnormal entry count found on day 2016-12-17: -3079
WARNING. Abnormal entry count found on day 2016-12-24: -2546
WARNING. Abnormal entry count found on day 2016-12-24: -2546
Processing turnstile ('H001', 'R175', '00-06-03', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12353
WARNING. Abnormal entry count found on day 2016-12-03: -12353
WARNING. Abnormal entry count found on day 2016-12-10: -12320
WARNING. Abnormal entry count found on day 2016-12-10: -12320
WARNING. Abnormal entry count found on day 2016-12-17: -11486
WARNING. Abnormal entry count found on day 2016-12-17: -11486
WARNING. Abnormal entry count found on day 2016-12-24: -8334
WARNING. Abnormal entry count found on day 2016-12-24: -8334
Processing turnstile ('R518', 'R261', '00-00-01', '40 ST LOWERY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5570
WARNING. Abnormal entry count found on day 2016-12-03: -5570
WARNING. Abnormal entry count found on day 2016-12-10: -4568
WARNING. Abnormal entry count found on day 2016-12-10: -4568
WARNING. Abnormal entry count found on day 2016-12-17: -4667
WARNING. Abnormal entry count found on day 2016-12-17: -4667
WARNING. Abnormal entry count found on day 2016-12-24: -2959
WARNING. Abnormal entry count found on day 2016-12-24: -2959
Processing turnstile ('R513', 'R093', '00-00-01', '30 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1492
WARNING. Abnormal entry count found on day 2016-12-03: -1492
WARNING. Abnormal entry count found on day 2016-12-10: -1060
WARNING. Abnormal entry count found on day 2016-12-10: -1060
WARNING. Abnormal entry count found on day 2016-12-17: -2873
WARNING. Abnormal entry count found on day 2016-12-17: -2873
WARNING. Abnormal entry count found on day 2016-12-24: -598
WARNING. Abnormal entry count found on day 2016-12-24: -598
Processing turnstile ('K017', 'R401', '00-03-00', 'CENTRAL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6011
WARNING. Abnormal entry count found on day 2016-12-03: -6011
WARNING. Abnormal entry count found on day 2016-12-10: -5905
WARNING. Abnormal entry count found on day 2016-12-10: -5905
WARNING. Abnormal entry count found on day 2016-12-17: -5331
WARNING. Abnormal entry count found on day 2016-12-17: -5331
WARNING. Abnormal entry count found on day 2016-12-24: -3500
WARNING. Abnormal entry count found on day 2016-12-24: -3500
Processing turnstile ('PTH19', 'R549', '02-01-00', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -980
WARNING. Abnormal entry count found on day 2016-12-03: -980
WARNING. Abnormal entry count found on day 2016-12-10: -1081
WARNING. Abnormal entry count found on day 2016-12-10: -1081
WARNING. Abnormal entry count found on day 2016-12-17: -861
WARNING. Abnormal entry count found on day 2016-12-17: -861
WARNING. Abnormal entry count found on day 2016-12-24: -483
WARNING. Abnormal entry count found on day 2016-12-24: -483
Processing turnstile ('A049', 'R088', '02-01-02', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9280
WARNING. Abnormal entry count found on day 2016-12-03: -9280
WARNING. Abnormal entry count found on day 2016-12-10: -9421
WARNING. Abnormal entry count found on day 2016-12-10: -9421
WARNING. Abnormal entry count found on day 2016-12-17: -7329
WARNING. Abnormal entry count found on day 2016-12-17: -7329
WARNING. Abnormal entry count found on day 2016-12-24: -7117
WARNING. Abnormal entry count found on day 2016-12-24: -7117
Processing turnstile ('N063', 'R011', '02-03-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -23100
WARNING. Abnormal entry count found on day 2016-12-03: -23100
WARNING. Abnormal entry count found on day 2016-12-10: -22315
WARNING. Abnormal entry count found on day 2016-12-10: -22315
WARNING. Abnormal entry count found on day 2016-12-17: -20661
WARNING. Abnormal entry count found on day 2016-12-17: -20661
WARNING. Abnormal entry count found on day 2016-12-24: -16005
WARNING. Abnormal entry count found on day 2016-12-24: -16005
Processing turnstile ('N332', 'R219', '01-06-00', '67 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4123
WARNING. Abnormal entry count found on day 2016-12-03: -4123
WARNING. Abnormal entry count found on day 2016-12-10: -3902
WARNING. Abnormal entry count found on day 2016-12-10: -3902
WARNING. Abnormal entry count found on day 2016-12-17: -4004
WARNING. Abnormal entry count found on day 2016-12-17: -4004
WARNING. Abnormal entry count found on day 2016-12-24: -2577
WARNING. Abnormal entry count found on day 2016-12-24: -2577
Processing turnstile ('R183', 'R260', '00-00-03', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13330
WARNING. Abnormal entry count found on day 2016-12-03: -13330
WARNING. Abnormal entry count found on day 2016-12-10: -12995
WARNING. Abnormal entry count found on day 2016-12-10: -12995
WARNING. Abnormal entry count found on day 2016-12-17: -13203
WARNING. Abnormal entry count found on day 2016-12-17: -13203
WARNING. Abnormal entry count found on day 2016-12-24: -10351
WARNING. Abnormal entry count found on day 2016-12-24: -10351
Processing turnstile ('J030', 'R005', '00-00-03', '85 ST-FOREST PK')
WARNING. Abnormal entry count found on day 2016-12-03: -7004
WARNING. Abnormal entry count found on day 2016-12-03: -7004
WARNING. Abnormal entry count found on day 2016-12-10: -5089
WARNING. Abnormal entry count found on day 2016-12-10: -5089
WARNING. Abnormal entry count found on day 2016-12-17: -6171
WARNING. Abnormal entry count found on day 2016-12-17: -6171
WARNING. Abnormal entry count found on day 2016-12-24: -4650
WARNING. Abnormal entry count found on day 2016-12-24: -4650
Processing turnstile ('H041', 'R152', '00-00-01', 'CANARSIE-ROCKAW')
WARNING. Abnormal entry count found on day 2016-12-03: -13635
WARNING. Abnormal entry count found on day 2016-12-03: -13635
WARNING. Abnormal entry count found on day 2016-12-10: -13398
WARNING. Abnormal entry count found on day 2016-12-10: -13398
WARNING. Abnormal entry count found on day 2016-12-17: -13196
WARNING. Abnormal entry count found on day 2016-12-17: -13196
WARNING. Abnormal entry count found on day 2016-12-24: -9972
WARNING. Abnormal entry count found on day 2016-12-24: -9972
Processing turnstile ('N558', 'R130', '01-05-01', 'KINGS HWY')
Processing turnstile ('B019', 'R149', '00-00-02', 'NEWKIRK PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -8719
WARNING. Abnormal entry count found on day 2016-12-03: -8719
WARNING. Abnormal entry count found on day 2016-12-10: -9190
WARNING. Abnormal entry count found on day 2016-12-10: -9190
WARNING. Abnormal entry count found on day 2016-12-17: -8598
WARNING. Abnormal entry count found on day 2016-12-17: -8598
WARNING. Abnormal entry count found on day 2016-12-24: -6128
WARNING. Abnormal entry count found on day 2016-12-24: -6128
Processing turnstile ('R123', 'R290', '00-00-00', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11862
WARNING. Abnormal entry count found on day 2016-12-03: -11862
WARNING. Abnormal entry count found on day 2016-12-10: -12059
WARNING. Abnormal entry count found on day 2016-12-10: -12059
WARNING. Abnormal entry count found on day 2016-12-17: -10362
WARNING. Abnormal entry count found on day 2016-12-17: -10362
WARNING. Abnormal entry count found on day 2016-12-24: -6044
WARNING. Abnormal entry count found on day 2016-12-24: -6044
Processing turnstile ('R501', 'R054', '00-00-03', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -8997
WARNING. Abnormal entry count found on day 2016-12-03: -8997
WARNING. Abnormal entry count found on day 2016-12-10: -9310
WARNING. Abnormal entry count found on day 2016-12-10: -9310
WARNING. Abnormal entry count found on day 2016-12-17: -8923
WARNING. Abnormal entry count found on day 2016-12-17: -8923
WARNING. Abnormal entry count found on day 2016-12-24: -6983
WARNING. Abnormal entry count found on day 2016-12-24: -6983
Processing turnstile ('B025', 'R150', '00-00-01', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -11621
WARNING. Abnormal entry count found on day 2016-12-03: -11621
WARNING. Abnormal entry count found on day 2016-12-10: -10924
WARNING. Abnormal entry count found on day 2016-12-10: -10924
WARNING. Abnormal entry count found on day 2016-12-17: -11049
WARNING. Abnormal entry count found on day 2016-12-17: -11049
WARNING. Abnormal entry count found on day 2016-12-24: -9757
WARNING. Abnormal entry count found on day 2016-12-24: -9757
Processing turnstile ('B020', 'R263', '00-03-00', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -833
WARNING. Abnormal entry count found on day 2016-12-03: -833
WARNING. Abnormal entry count found on day 2016-12-10: -786
WARNING. Abnormal entry count found on day 2016-12-10: -786
WARNING. Abnormal entry count found on day 2016-12-17: -804
WARNING. Abnormal entry count found on day 2016-12-17: -804
WARNING. Abnormal entry count found on day 2016-12-24: -681
WARNING. Abnormal entry count found on day 2016-12-24: -681
Processing turnstile ('R203', 'R043', '00-03-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7359
WARNING. Abnormal entry count found on day 2016-12-03: -7359
WARNING. Abnormal entry count found on day 2016-12-10: -7384
WARNING. Abnormal entry count found on day 2016-12-10: -7384
WARNING. Abnormal entry count found on day 2016-12-17: -6541
WARNING. Abnormal entry count found on day 2016-12-17: -6541
WARNING. Abnormal entry count found on day 2016-12-24: -4738
WARNING. Abnormal entry count found on day 2016-12-24: -4738
Processing turnstile ('R534', 'R055', '01-00-02', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -6953
WARNING. Abnormal entry count found on day 2016-12-03: -6953
WARNING. Abnormal entry count found on day 2016-12-10: -6912
WARNING. Abnormal entry count found on day 2016-12-10: -6912
WARNING. Abnormal entry count found on day 2016-12-17: -6615
WARNING. Abnormal entry count found on day 2016-12-17: -6615
WARNING. Abnormal entry count found on day 2016-12-24: -4598
WARNING. Abnormal entry count found on day 2016-12-24: -4598
Processing turnstile ('B025', 'R150', '00-05-01', 'AVENUE U')
Processing turnstile ('PTH16', 'R550', '01-02-04', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -33
WARNING. Abnormal entry count found on day 2016-12-03: -33
WARNING. Abnormal entry count found on day 2016-12-10: -60
WARNING. Abnormal entry count found on day 2016-12-10: -60
WARNING. Abnormal entry count found on day 2016-12-17: -65
WARNING. Abnormal entry count found on day 2016-12-17: -65
WARNING. Abnormal entry count found on day 2016-12-24: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
Processing turnstile ('R173', 'R159', '00-00-02', '116 ST-COLUMBIA')
WARNING. Abnormal entry count found on day 2016-12-03: -13130
WARNING. Abnormal entry count found on day 2016-12-03: -13130
WARNING. Abnormal entry count found on day 2016-12-10: -11619
WARNING. Abnormal entry count found on day 2016-12-10: -11619
WARNING. Abnormal entry count found on day 2016-12-17: -8340
WARNING. Abnormal entry count found on day 2016-12-17: -8340
WARNING. Abnormal entry count found on day 2016-12-24: -4003
WARNING. Abnormal entry count found on day 2016-12-24: -4003
Processing turnstile ('R415', 'R120', '00-03-01', 'MORISN AV/SNDVW')
WARNING. Abnormal entry count found on day 2016-12-03: -13816
WARNING. Abnormal entry count found on day 2016-12-03: -13816
WARNING. Abnormal entry count found on day 2016-12-10: -13288
WARNING. Abnormal entry count found on day 2016-12-10: -13288
WARNING. Abnormal entry count found on day 2016-12-17: -13110
WARNING. Abnormal entry count found on day 2016-12-17: -13110
WARNING. Abnormal entry count found on day 2016-12-24: -10765
WARNING. Abnormal entry count found on day 2016-12-24: -10765
Processing turnstile ('N056', 'R188', '01-00-03', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13549
WARNING. Abnormal entry count found on day 2016-12-03: -13549
WARNING. Abnormal entry count found on day 2016-12-10: -11722
WARNING. Abnormal entry count found on day 2016-12-10: -11722
WARNING. Abnormal entry count found on day 2016-12-17: -11839
WARNING. Abnormal entry count found on day 2016-12-17: -11839
WARNING. Abnormal entry count found on day 2016-12-24: -10487
WARNING. Abnormal entry count found on day 2016-12-24: -10487
Processing turnstile ('N325A', 'R218', '00-06-02', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7852
WARNING. Abnormal entry count found on day 2016-12-03: -7852
WARNING. Abnormal entry count found on day 2016-12-10: -7626
WARNING. Abnormal entry count found on day 2016-12-10: -7626
WARNING. Abnormal entry count found on day 2016-12-17: -8787
WARNING. Abnormal entry count found on day 2016-12-17: -8787
WARNING. Abnormal entry count found on day 2016-12-24: -6980
WARNING. Abnormal entry count found on day 2016-12-24: -6980
Processing turnstile ('R335', 'R444', '00-00-02', 'NEREID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6735
WARNING. Abnormal entry count found on day 2016-12-03: -6735
WARNING. Abnormal entry count found on day 2016-12-10: -6469
WARNING. Abnormal entry count found on day 2016-12-10: -6469
WARNING. Abnormal entry count found on day 2016-12-17: -6363
WARNING. Abnormal entry count found on day 2016-12-17: -6363
WARNING. Abnormal entry count found on day 2016-12-24: -4660
WARNING. Abnormal entry count found on day 2016-12-24: -4660
Processing turnstile ('R155', 'R116', '01-00-05', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5855
WARNING. Abnormal entry count found on day 2016-12-03: -5855
WARNING. Abnormal entry count found on day 2016-12-10: -5869
WARNING. Abnormal entry count found on day 2016-12-10: -5869
WARNING. Abnormal entry count found on day 2016-12-17: -5401
WARNING. Abnormal entry count found on day 2016-12-17: -5401
WARNING. Abnormal entry count found on day 2016-12-24: -4838
WARNING. Abnormal entry count found on day 2016-12-24: -4838
Processing turnstile ('N089', 'R139', '00-00-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2592
WARNING. Abnormal entry count found on day 2016-12-03: -2592
WARNING. Abnormal entry count found on day 2016-12-10: -2493
WARNING. Abnormal entry count found on day 2016-12-10: -2493
WARNING. Abnormal entry count found on day 2016-12-17: -2442
WARNING. Abnormal entry count found on day 2016-12-17: -2442
WARNING. Abnormal entry count found on day 2016-12-24: -2047
WARNING. Abnormal entry count found on day 2016-12-24: -2047
Processing turnstile ('N520', 'R240', '00-00-01', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18966
WARNING. Abnormal entry count found on day 2016-12-03: -18966
WARNING. Abnormal entry count found on day 2016-12-10: -19350
WARNING. Abnormal entry count found on day 2016-12-10: -19350
WARNING. Abnormal entry count found on day 2016-12-17: -20151
WARNING. Abnormal entry count found on day 2016-12-17: -20151
WARNING. Abnormal entry count found on day 2016-12-24: -17270
WARNING. Abnormal entry count found on day 2016-12-24: -17270
Processing turnstile ('R625', 'R062', '01-00-01', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -9905
WARNING. Abnormal entry count found on day 2016-12-03: -9905
WARNING. Abnormal entry count found on day 2016-12-10: -9679
WARNING. Abnormal entry count found on day 2016-12-10: -9679
WARNING. Abnormal entry count found on day 2016-12-17: -9389
WARNING. Abnormal entry count found on day 2016-12-17: -9389
WARNING. Abnormal entry count found on day 2016-12-24: -7028
WARNING. Abnormal entry count found on day 2016-12-24: -7028
Processing turnstile ('N090', 'R139', '01-00-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9040
WARNING. Abnormal entry count found on day 2016-12-03: -9040
WARNING. Abnormal entry count found on day 2016-12-10: -9459
WARNING. Abnormal entry count found on day 2016-12-10: -9459
WARNING. Abnormal entry count found on day 2016-12-17: -7863
WARNING. Abnormal entry count found on day 2016-12-17: -7863
WARNING. Abnormal entry count found on day 2016-12-24: -5030
WARNING. Abnormal entry count found on day 2016-12-24: -5030
Processing turnstile ('PTH12', 'R542', '00-04-01', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -379
WARNING. Abnormal entry count found on day 2016-12-03: -379
WARNING. Abnormal entry count found on day 2016-12-10: -735
WARNING. Abnormal entry count found on day 2016-12-10: -735
WARNING. Abnormal entry count found on day 2016-12-17: -515
WARNING. Abnormal entry count found on day 2016-12-17: -515
WARNING. Abnormal entry count found on day 2016-12-24: -636
WARNING. Abnormal entry count found on day 2016-12-24: -636
Processing turnstile ('H005', 'R330', '00-00-02', '3 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7171
WARNING. Abnormal entry count found on day 2016-12-03: -7171
WARNING. Abnormal entry count found on day 2016-12-10: -7286
WARNING. Abnormal entry count found on day 2016-12-10: -7286
WARNING. Abnormal entry count found on day 2016-12-17: -6611
WARNING. Abnormal entry count found on day 2016-12-17: -6611
WARNING. Abnormal entry count found on day 2016-12-24: -4932
WARNING. Abnormal entry count found on day 2016-12-24: -4932
Processing turnstile ('H008', 'R248', '01-00-00', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1727
WARNING. Abnormal entry count found on day 2016-12-03: -1727
WARNING. Abnormal entry count found on day 2016-12-10: -2249
WARNING. Abnormal entry count found on day 2016-12-10: -2249
WARNING. Abnormal entry count found on day 2016-12-17: -1676
WARNING. Abnormal entry count found on day 2016-12-17: -1676
WARNING. Abnormal entry count found on day 2016-12-24: -1061
WARNING. Abnormal entry count found on day 2016-12-24: -1061
Processing turnstile ('G001', 'R151', '00-06-00', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -87
WARNING. Abnormal entry count found on day 2016-12-03: -87
WARNING. Abnormal entry count found on day 2016-12-10: -92
WARNING. Abnormal entry count found on day 2016-12-10: -92
WARNING. Abnormal entry count found on day 2016-12-17: -101
WARNING. Abnormal entry count found on day 2016-12-17: -101
WARNING. Abnormal entry count found on day 2016-12-24: -123
WARNING. Abnormal entry count found on day 2016-12-24: -123
Processing turnstile ('E012', 'R372', '00-00-01', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10062
WARNING. Abnormal entry count found on day 2016-12-03: -10062
WARNING. Abnormal entry count found on day 2016-12-10: -9677
WARNING. Abnormal entry count found on day 2016-12-10: -9677
WARNING. Abnormal entry count found on day 2016-12-17: -10345
WARNING. Abnormal entry count found on day 2016-12-17: -10345
WARNING. Abnormal entry count found on day 2016-12-24: -8327
WARNING. Abnormal entry count found on day 2016-12-24: -8327
Processing turnstile ('B004', 'R171', '00-00-02', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10483
WARNING. Abnormal entry count found on day 2016-12-03: -10483
WARNING. Abnormal entry count found on day 2016-12-10: -10754
WARNING. Abnormal entry count found on day 2016-12-10: -10754
WARNING. Abnormal entry count found on day 2016-12-17: -9784
WARNING. Abnormal entry count found on day 2016-12-17: -9784
WARNING. Abnormal entry count found on day 2016-12-24: -5393
WARNING. Abnormal entry count found on day 2016-12-24: -5393
Processing turnstile ('A021', 'R032', '01-00-04', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5729
WARNING. Abnormal entry count found on day 2016-12-03: -5729
WARNING. Abnormal entry count found on day 2016-12-10: -5709
WARNING. Abnormal entry count found on day 2016-12-10: -5709
WARNING. Abnormal entry count found on day 2016-12-17: -4740
WARNING. Abnormal entry count found on day 2016-12-17: -4740
WARNING. Abnormal entry count found on day 2016-12-24: -3277
WARNING. Abnormal entry count found on day 2016-12-24: -3277
Processing turnstile ('N137', 'R354', '00-00-00', '104 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3661
WARNING. Abnormal entry count found on day 2016-12-03: -3661
WARNING. Abnormal entry count found on day 2016-12-10: -3830
WARNING. Abnormal entry count found on day 2016-12-10: -3830
WARNING. Abnormal entry count found on day 2016-12-17: -3448
WARNING. Abnormal entry count found on day 2016-12-17: -3448
WARNING. Abnormal entry count found on day 2016-12-24: -2945
WARNING. Abnormal entry count found on day 2016-12-24: -2945
Processing turnstile ('C018', 'R197', '00-00-04', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12447
WARNING. Abnormal entry count found on day 2016-12-03: -12447
WARNING. Abnormal entry count found on day 2016-12-10: -13063
WARNING. Abnormal entry count found on day 2016-12-10: -13063
WARNING. Abnormal entry count found on day 2016-12-17: -12051
WARNING. Abnormal entry count found on day 2016-12-17: -12051
WARNING. Abnormal entry count found on day 2016-12-24: -8098
WARNING. Abnormal entry count found on day 2016-12-24: -8098
Processing turnstile ('A060', 'R001', '00-00-01', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -8965
WARNING. Abnormal entry count found on day 2016-12-03: -8965
WARNING. Abnormal entry count found on day 2016-12-10: -8679
WARNING. Abnormal entry count found on day 2016-12-10: -8679
WARNING. Abnormal entry count found on day 2016-12-17: -8434
WARNING. Abnormal entry count found on day 2016-12-17: -8434
WARNING. Abnormal entry count found on day 2016-12-24: -9641
WARNING. Abnormal entry count found on day 2016-12-24: -9641
Processing turnstile ('N091', 'R029', '02-05-03', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12650
WARNING. Abnormal entry count found on day 2016-12-03: -12650
WARNING. Abnormal entry count found on day 2016-12-10: -11848
WARNING. Abnormal entry count found on day 2016-12-10: -11848
WARNING. Abnormal entry count found on day 2016-12-17: -10106
WARNING. Abnormal entry count found on day 2016-12-17: -10106
WARNING. Abnormal entry count found on day 2016-12-24: -5808
WARNING. Abnormal entry count found on day 2016-12-24: -5808
Processing turnstile ('B026', 'R230', '00-00-03', 'NECK RD')
WARNING. Abnormal entry count found on day 2016-12-03: -5624
WARNING. Abnormal entry count found on day 2016-12-03: -5624
WARNING. Abnormal entry count found on day 2016-12-10: -5499
WARNING. Abnormal entry count found on day 2016-12-10: -5499
WARNING. Abnormal entry count found on day 2016-12-17: -5317
WARNING. Abnormal entry count found on day 2016-12-17: -5317
WARNING. Abnormal entry count found on day 2016-12-24: -4799
WARNING. Abnormal entry count found on day 2016-12-24: -4799
Processing turnstile ('B032', 'R264', '00-00-01', 'OCEAN PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -3061
WARNING. Abnormal entry count found on day 2016-12-03: -3061
WARNING. Abnormal entry count found on day 2016-12-10: -2870
WARNING. Abnormal entry count found on day 2016-12-10: -2870
WARNING. Abnormal entry count found on day 2016-12-17: -3228
WARNING. Abnormal entry count found on day 2016-12-17: -3228
WARNING. Abnormal entry count found on day 2016-12-24: -2117
WARNING. Abnormal entry count found on day 2016-12-24: -2117
Processing turnstile ('PTH11', 'R545', '00-04-05', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -252
WARNING. Abnormal entry count found on day 2016-12-03: -252
WARNING. Abnormal entry count found on day 2016-12-10: -152
WARNING. Abnormal entry count found on day 2016-12-10: -152
WARNING. Abnormal entry count found on day 2016-12-17: -161
WARNING. Abnormal entry count found on day 2016-12-17: -161
WARNING. Abnormal entry count found on day 2016-12-24: -162
WARNING. Abnormal entry count found on day 2016-12-24: -162
Processing turnstile ('N207', 'R104', '00-00-00', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14096
WARNING. Abnormal entry count found on day 2016-12-03: -14096
WARNING. Abnormal entry count found on day 2016-12-10: -14052
WARNING. Abnormal entry count found on day 2016-12-10: -14052
WARNING. Abnormal entry count found on day 2016-12-17: -12809
WARNING. Abnormal entry count found on day 2016-12-17: -12809
WARNING. Abnormal entry count found on day 2016-12-24: -11534
WARNING. Abnormal entry count found on day 2016-12-24: -11534
Processing turnstile ('A002', 'R051', '02-03-04', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11569
WARNING. Abnormal entry count found on day 2016-12-03: -11569
WARNING. Abnormal entry count found on day 2016-12-10: -11585
WARNING. Abnormal entry count found on day 2016-12-10: -11585
WARNING. Abnormal entry count found on day 2016-12-17: -10886
WARNING. Abnormal entry count found on day 2016-12-17: -10886
WARNING. Abnormal entry count found on day 2016-12-24: -8269
WARNING. Abnormal entry count found on day 2016-12-24: -8269
Processing turnstile ('R227A', 'R131', '01-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13978
WARNING. Abnormal entry count found on day 2016-12-03: -13978
WARNING. Abnormal entry count found on day 2016-12-10: -13137
WARNING. Abnormal entry count found on day 2016-12-10: -13137
WARNING. Abnormal entry count found on day 2016-12-17: -9162
WARNING. Abnormal entry count found on day 2016-12-17: -9162
WARNING. Abnormal entry count found on day 2016-12-24: -6179
WARNING. Abnormal entry count found on day 2016-12-24: -6179
Processing turnstile ('N327', 'R254', '00-03-00', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -1791
WARNING. Abnormal entry count found on day 2016-12-03: -1791
WARNING. Abnormal entry count found on day 2016-12-10: -1598
WARNING. Abnormal entry count found on day 2016-12-10: -1598
WARNING. Abnormal entry count found on day 2016-12-17: -1524
WARNING. Abnormal entry count found on day 2016-12-17: -1524
WARNING. Abnormal entry count found on day 2016-12-24: -1319
WARNING. Abnormal entry count found on day 2016-12-24: -1319
Processing turnstile ('N519A', 'R461', '01-05-00', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-17: -13
WARNING. Abnormal entry count found on day 2016-12-17: -13
WARNING. Abnormal entry count found on day 2016-12-24: -11
WARNING. Abnormal entry count found on day 2016-12-24: -11
Processing turnstile ('J017', 'R432', '00-00-02', 'CHAUNCEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4574
WARNING. Abnormal entry count found on day 2016-12-03: -4574
WARNING. Abnormal entry count found on day 2016-12-10: -4536
WARNING. Abnormal entry count found on day 2016-12-10: -4536
WARNING. Abnormal entry count found on day 2016-12-17: -4395
WARNING. Abnormal entry count found on day 2016-12-17: -4395
WARNING. Abnormal entry count found on day 2016-12-24: -3204
WARNING. Abnormal entry count found on day 2016-12-24: -3204
Processing turnstile ('A007', 'R079', '01-06-02', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7120
WARNING. Abnormal entry count found on day 2016-12-03: -7120
WARNING. Abnormal entry count found on day 2016-12-10: -7370
WARNING. Abnormal entry count found on day 2016-12-10: -7370
WARNING. Abnormal entry count found on day 2016-12-17: -7815
WARNING. Abnormal entry count found on day 2016-12-17: -7815
WARNING. Abnormal entry count found on day 2016-12-24: -8946
WARNING. Abnormal entry count found on day 2016-12-24: -8946
Processing turnstile ('R236', 'R045', '00-06-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10472
WARNING. Abnormal entry count found on day 2016-12-03: -10472
WARNING. Abnormal entry count found on day 2016-12-10: -10504
WARNING. Abnormal entry count found on day 2016-12-10: -10504
WARNING. Abnormal entry count found on day 2016-12-17: -9462
WARNING. Abnormal entry count found on day 2016-12-17: -9462
WARNING. Abnormal entry count found on day 2016-12-24: -5999
WARNING. Abnormal entry count found on day 2016-12-24: -5999
Processing turnstile ('R169', 'R168', '01-03-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16239
WARNING. Abnormal entry count found on day 2016-12-03: -16239
WARNING. Abnormal entry count found on day 2016-12-10: -17759
WARNING. Abnormal entry count found on day 2016-12-10: -17759
WARNING. Abnormal entry count found on day 2016-12-17: -17357
WARNING. Abnormal entry count found on day 2016-12-17: -17357
WARNING. Abnormal entry count found on day 2016-12-24: -12476
WARNING. Abnormal entry count found on day 2016-12-24: -12476
Processing turnstile ('N502', 'R021', '01-00-03', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -15795
WARNING. Abnormal entry count found on day 2016-12-03: -15795
WARNING. Abnormal entry count found on day 2016-12-10: -15384
WARNING. Abnormal entry count found on day 2016-12-10: -15384
WARNING. Abnormal entry count found on day 2016-12-17: -14472
WARNING. Abnormal entry count found on day 2016-12-17: -14472
WARNING. Abnormal entry count found on day 2016-12-24: -13673
WARNING. Abnormal entry count found on day 2016-12-24: -13673
Processing turnstile ('PTH01', 'R549', '00-01-03', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -9
WARNING. Abnormal entry count found on day 2016-12-24: -9
Processing turnstile ('R621', 'R060', '00-03-02', 'EASTN PKWY-MUSM')
WARNING. Abnormal entry count found on day 2016-12-03: -7123
WARNING. Abnormal entry count found on day 2016-12-03: -7123
WARNING. Abnormal entry count found on day 2016-12-10: -7206
WARNING. Abnormal entry count found on day 2016-12-10: -7206
WARNING. Abnormal entry count found on day 2016-12-17: -6481
WARNING. Abnormal entry count found on day 2016-12-17: -6481
WARNING. Abnormal entry count found on day 2016-12-24: -4308
WARNING. Abnormal entry count found on day 2016-12-24: -4308
Processing turnstile ('H023', 'R236', '00-06-01', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -19025
WARNING. Abnormal entry count found on day 2016-12-03: -19025
WARNING. Abnormal entry count found on day 2016-12-10: -19166
WARNING. Abnormal entry count found on day 2016-12-10: -19166
WARNING. Abnormal entry count found on day 2016-12-17: -17221
WARNING. Abnormal entry count found on day 2016-12-17: -17221
WARNING. Abnormal entry count found on day 2016-12-24: -11811
WARNING. Abnormal entry count found on day 2016-12-24: -11811
Processing turnstile ('R124', 'R290', '03-00-03', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3037
WARNING. Abnormal entry count found on day 2016-12-03: -3037
WARNING. Abnormal entry count found on day 2016-12-10: -3013
WARNING. Abnormal entry count found on day 2016-12-10: -3013
WARNING. Abnormal entry count found on day 2016-12-17: -2756
WARNING. Abnormal entry count found on day 2016-12-17: -2756
WARNING. Abnormal entry count found on day 2016-12-24: -1591
WARNING. Abnormal entry count found on day 2016-12-24: -1591
Processing turnstile ('N062A', 'R010', '00-06-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -15291
WARNING. Abnormal entry count found on day 2016-12-03: -15291
WARNING. Abnormal entry count found on day 2016-12-10: -15171
WARNING. Abnormal entry count found on day 2016-12-10: -15171
WARNING. Abnormal entry count found on day 2016-12-17: -14147
WARNING. Abnormal entry count found on day 2016-12-17: -14147
WARNING. Abnormal entry count found on day 2016-12-24: -12556
WARNING. Abnormal entry count found on day 2016-12-24: -12556
Processing turnstile ('R258', 'R132', '00-03-03', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11120
WARNING. Abnormal entry count found on day 2016-12-03: -11120
WARNING. Abnormal entry count found on day 2016-12-10: -11038
WARNING. Abnormal entry count found on day 2016-12-10: -11038
WARNING. Abnormal entry count found on day 2016-12-17: -10937
WARNING. Abnormal entry count found on day 2016-12-17: -10937
WARNING. Abnormal entry count found on day 2016-12-24: -7879
WARNING. Abnormal entry count found on day 2016-12-24: -7879
Processing turnstile ('N049', 'R084', '01-06-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -2998
WARNING. Abnormal entry count found on day 2016-12-03: -2998
WARNING. Abnormal entry count found on day 2016-12-10: -3102
WARNING. Abnormal entry count found on day 2016-12-10: -3102
WARNING. Abnormal entry count found on day 2016-12-17: -2868
WARNING. Abnormal entry count found on day 2016-12-17: -2868
WARNING. Abnormal entry count found on day 2016-12-24: -2429
WARNING. Abnormal entry count found on day 2016-12-24: -2429
Processing turnstile ('C009', 'R057', '03-00-01', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -9204
WARNING. Abnormal entry count found on day 2016-12-03: -9204
WARNING. Abnormal entry count found on day 2016-12-10: -9082
WARNING. Abnormal entry count found on day 2016-12-10: -9082
WARNING. Abnormal entry count found on day 2016-12-17: -8830
WARNING. Abnormal entry count found on day 2016-12-17: -8830
WARNING. Abnormal entry count found on day 2016-12-24: -5883
WARNING. Abnormal entry count found on day 2016-12-24: -5883
Processing turnstile ('PTH18', 'R549', '01-00-01', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -10017
WARNING. Abnormal entry count found on day 2016-12-03: -10017
WARNING. Abnormal entry count found on day 2016-12-10: -8448
WARNING. Abnormal entry count found on day 2016-12-10: -8448
WARNING. Abnormal entry count found on day 2016-12-17: -8114
WARNING. Abnormal entry count found on day 2016-12-17: -8114
WARNING. Abnormal entry count found on day 2016-12-24: -5775
WARNING. Abnormal entry count found on day 2016-12-24: -5775
Processing turnstile ('R604', 'R108', '03-00-01', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -9334
WARNING. Abnormal entry count found on day 2016-12-03: -9334
WARNING. Abnormal entry count found on day 2016-12-10: -9803
WARNING. Abnormal entry count found on day 2016-12-10: -9803
WARNING. Abnormal entry count found on day 2016-12-17: -8024
WARNING. Abnormal entry count found on day 2016-12-17: -8024
WARNING. Abnormal entry count found on day 2016-12-24: -5098
WARNING. Abnormal entry count found on day 2016-12-24: -5098
Processing turnstile ('R216', 'R322', '01-00-02', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4209
WARNING. Abnormal entry count found on day 2016-12-03: -4209
WARNING. Abnormal entry count found on day 2016-12-10: -4209
WARNING. Abnormal entry count found on day 2016-12-10: -4209
WARNING. Abnormal entry count found on day 2016-12-17: -4649
WARNING. Abnormal entry count found on day 2016-12-17: -4649
WARNING. Abnormal entry count found on day 2016-12-24: -3601
WARNING. Abnormal entry count found on day 2016-12-24: -3601
Processing turnstile ('PTH16', 'R550', '01-00-03', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -1906
WARNING. Abnormal entry count found on day 2016-12-03: -1906
WARNING. Abnormal entry count found on day 2016-12-10: -1934
WARNING. Abnormal entry count found on day 2016-12-10: -1934
WARNING. Abnormal entry count found on day 2016-12-17: -1793
WARNING. Abnormal entry count found on day 2016-12-17: -1793
WARNING. Abnormal entry count found on day 2016-12-24: -912
WARNING. Abnormal entry count found on day 2016-12-24: -912
Processing turnstile ('N330', 'R202', '00-00-02', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -14759
WARNING. Abnormal entry count found on day 2016-12-03: -14759
WARNING. Abnormal entry count found on day 2016-12-10: -14220
WARNING. Abnormal entry count found on day 2016-12-10: -14220
WARNING. Abnormal entry count found on day 2016-12-17: -14893
WARNING. Abnormal entry count found on day 2016-12-17: -14893
WARNING. Abnormal entry count found on day 2016-12-24: -11640
WARNING. Abnormal entry count found on day 2016-12-24: -11640
Processing turnstile ('N209', 'R443', '00-00-02', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6756
WARNING. Abnormal entry count found on day 2016-12-03: -6756
WARNING. Abnormal entry count found on day 2016-12-10: -6547
WARNING. Abnormal entry count found on day 2016-12-10: -6547
WARNING. Abnormal entry count found on day 2016-12-17: -6837
WARNING. Abnormal entry count found on day 2016-12-17: -6837
WARNING. Abnormal entry count found on day 2016-12-24: -5120
WARNING. Abnormal entry count found on day 2016-12-24: -5120
Processing turnstile ('B016', 'R098', '00-00-02', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8106
WARNING. Abnormal entry count found on day 2016-12-03: -8106
WARNING. Abnormal entry count found on day 2016-12-10: -8102
WARNING. Abnormal entry count found on day 2016-12-10: -8102
WARNING. Abnormal entry count found on day 2016-12-17: -8064
WARNING. Abnormal entry count found on day 2016-12-17: -8064
WARNING. Abnormal entry count found on day 2016-12-24: -5932
WARNING. Abnormal entry count found on day 2016-12-24: -5932
Processing turnstile ('N336', 'R158', '00-00-03', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -5489
WARNING. Abnormal entry count found on day 2016-12-03: -5489
WARNING. Abnormal entry count found on day 2016-12-10: -5189
WARNING. Abnormal entry count found on day 2016-12-10: -5189
WARNING. Abnormal entry count found on day 2016-12-17: -5274
WARNING. Abnormal entry count found on day 2016-12-17: -5274
WARNING. Abnormal entry count found on day 2016-12-24: -4012
WARNING. Abnormal entry count found on day 2016-12-24: -4012
Processing turnstile ('R283', 'R221', '00-00-02', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14317
WARNING. Abnormal entry count found on day 2016-12-03: -14317
WARNING. Abnormal entry count found on day 2016-12-10: -14182
WARNING. Abnormal entry count found on day 2016-12-10: -14182
WARNING. Abnormal entry count found on day 2016-12-17: -15097
WARNING. Abnormal entry count found on day 2016-12-17: -15097
WARNING. Abnormal entry count found on day 2016-12-24: -8742
WARNING. Abnormal entry count found on day 2016-12-24: -8742
Processing turnstile ('N103', 'R127', '00-00-01', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -2201
WARNING. Abnormal entry count found on day 2016-12-03: -2201
WARNING. Abnormal entry count found on day 2016-12-10: -2064
WARNING. Abnormal entry count found on day 2016-12-10: -2064
WARNING. Abnormal entry count found on day 2016-12-17: -1781
WARNING. Abnormal entry count found on day 2016-12-17: -1781
WARNING. Abnormal entry count found on day 2016-12-24: -1401
WARNING. Abnormal entry count found on day 2016-12-24: -1401
Processing turnstile ('N547', 'R420', '01-06-02', 'DITMAS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -350
WARNING. Abnormal entry count found on day 2016-12-03: -350
WARNING. Abnormal entry count found on day 2016-12-10: -396
WARNING. Abnormal entry count found on day 2016-12-10: -396
WARNING. Abnormal entry count found on day 2016-12-17: -661
WARNING. Abnormal entry count found on day 2016-12-17: -661
WARNING. Abnormal entry count found on day 2016-12-24: -516
WARNING. Abnormal entry count found on day 2016-12-24: -516
Processing turnstile ('R160', 'R164', '02-03-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -17526
WARNING. Abnormal entry count found on day 2016-12-03: -17526
WARNING. Abnormal entry count found on day 2016-12-10: -17709
WARNING. Abnormal entry count found on day 2016-12-10: -17709
WARNING. Abnormal entry count found on day 2016-12-17: -20976
WARNING. Abnormal entry count found on day 2016-12-17: -20976
WARNING. Abnormal entry count found on day 2016-12-24: -12355
WARNING. Abnormal entry count found on day 2016-12-24: -12355
Processing turnstile ('R155', 'R116', '01-00-06', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5127
WARNING. Abnormal entry count found on day 2016-12-03: -5127
WARNING. Abnormal entry count found on day 2016-12-10: -5343
WARNING. Abnormal entry count found on day 2016-12-10: -5343
WARNING. Abnormal entry count found on day 2016-12-17: -4856
WARNING. Abnormal entry count found on day 2016-12-17: -4856
WARNING. Abnormal entry count found on day 2016-12-24: -4844
WARNING. Abnormal entry count found on day 2016-12-24: -4844
Processing turnstile ('N098', 'R028', '00-07-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1926
WARNING. Abnormal entry count found on day 2016-12-03: -1926
WARNING. Abnormal entry count found on day 2016-12-10: -1837
WARNING. Abnormal entry count found on day 2016-12-10: -1837
WARNING. Abnormal entry count found on day 2016-12-17: -1651
WARNING. Abnormal entry count found on day 2016-12-17: -1651
WARNING. Abnormal entry count found on day 2016-12-24: -1213
WARNING. Abnormal entry count found on day 2016-12-24: -1213
Processing turnstile ('A015', 'R081', '00-00-03', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10309
WARNING. Abnormal entry count found on day 2016-12-03: -10309
WARNING. Abnormal entry count found on day 2016-12-10: -10111
WARNING. Abnormal entry count found on day 2016-12-10: -10111
WARNING. Abnormal entry count found on day 2016-12-17: -9827
WARNING. Abnormal entry count found on day 2016-12-17: -9827
WARNING. Abnormal entry count found on day 2016-12-24: -10362
WARNING. Abnormal entry count found on day 2016-12-24: -10362
Processing turnstile ('R254', 'R181', '01-00-01', '110 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16687
WARNING. Abnormal entry count found on day 2016-12-03: -16687
WARNING. Abnormal entry count found on day 2016-12-10: -16477
WARNING. Abnormal entry count found on day 2016-12-10: -16477
WARNING. Abnormal entry count found on day 2016-12-17: -15975
WARNING. Abnormal entry count found on day 2016-12-17: -15975
WARNING. Abnormal entry count found on day 2016-12-24: -11742
WARNING. Abnormal entry count found on day 2016-12-24: -11742
Processing turnstile ('N098', 'R028', '00-00-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9858
WARNING. Abnormal entry count found on day 2016-12-03: -9858
WARNING. Abnormal entry count found on day 2016-12-10: -9684
WARNING. Abnormal entry count found on day 2016-12-10: -9684
WARNING. Abnormal entry count found on day 2016-12-17: -8886
WARNING. Abnormal entry count found on day 2016-12-17: -8886
WARNING. Abnormal entry count found on day 2016-12-24: -6763
WARNING. Abnormal entry count found on day 2016-12-24: -6763
Processing turnstile ('H040', 'R376', '00-00-01', 'EAST 105 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7058
WARNING. Abnormal entry count found on day 2016-12-03: -7058
WARNING. Abnormal entry count found on day 2016-12-10: -6955
WARNING. Abnormal entry count found on day 2016-12-10: -6955
WARNING. Abnormal entry count found on day 2016-12-17: -6731
WARNING. Abnormal entry count found on day 2016-12-17: -6731
WARNING. Abnormal entry count found on day 2016-12-24: -5146
WARNING. Abnormal entry count found on day 2016-12-24: -5146
Processing turnstile ('E016', 'R400', '00-00-00', 'BAY 50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7663
WARNING. Abnormal entry count found on day 2016-12-03: -7663
WARNING. Abnormal entry count found on day 2016-12-10: -7476
WARNING. Abnormal entry count found on day 2016-12-10: -7476
WARNING. Abnormal entry count found on day 2016-12-17: -7566
WARNING. Abnormal entry count found on day 2016-12-17: -7566
WARNING. Abnormal entry count found on day 2016-12-24: -5983
WARNING. Abnormal entry count found on day 2016-12-24: -5983
Processing turnstile ('N203', 'R195', '00-00-00', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -6794
WARNING. Abnormal entry count found on day 2016-12-03: -6794
WARNING. Abnormal entry count found on day 2016-12-10: -6422
WARNING. Abnormal entry count found on day 2016-12-10: -6422
WARNING. Abnormal entry count found on day 2016-12-17: -6666
WARNING. Abnormal entry count found on day 2016-12-17: -6666
WARNING. Abnormal entry count found on day 2016-12-24: -5907
WARNING. Abnormal entry count found on day 2016-12-24: -5907
Processing turnstile ('R550', 'R072', '00-05-01', '34 ST-HUDSON YD')
Processing turnstile ('N323', 'R018', '01-00-03', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -13583
WARNING. Abnormal entry count found on day 2016-12-03: -13583
WARNING. Abnormal entry count found on day 2016-12-10: -13179
WARNING. Abnormal entry count found on day 2016-12-10: -13179
WARNING. Abnormal entry count found on day 2016-12-17: -13878
WARNING. Abnormal entry count found on day 2016-12-17: -13878
WARNING. Abnormal entry count found on day 2016-12-24: -12462
WARNING. Abnormal entry count found on day 2016-12-24: -12462
Processing turnstile ('N024', 'R332', '00-00-00', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2337
WARNING. Abnormal entry count found on day 2016-12-03: -2337
WARNING. Abnormal entry count found on day 2016-12-10: -2057
WARNING. Abnormal entry count found on day 2016-12-10: -2057
WARNING. Abnormal entry count found on day 2016-12-17: -2011
WARNING. Abnormal entry count found on day 2016-12-17: -2011
WARNING. Abnormal entry count found on day 2016-12-24: -1337
WARNING. Abnormal entry count found on day 2016-12-24: -1337
Processing turnstile ('R221', 'R170', '01-00-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -20782
WARNING. Abnormal entry count found on day 2016-12-03: -20782
WARNING. Abnormal entry count found on day 2016-12-10: -24685
WARNING. Abnormal entry count found on day 2016-12-10: -24685
WARNING. Abnormal entry count found on day 2016-12-17: -23980
WARNING. Abnormal entry count found on day 2016-12-17: -23980
WARNING. Abnormal entry count found on day 2016-12-24: -16238
WARNING. Abnormal entry count found on day 2016-12-24: -16238
Processing turnstile ('N051', 'R084', '02-00-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -31861
WARNING. Abnormal entry count found on day 2016-12-03: -31861
WARNING. Abnormal entry count found on day 2016-12-10: -29814
WARNING. Abnormal entry count found on day 2016-12-10: -29814
WARNING. Abnormal entry count found on day 2016-12-17: -30283
WARNING. Abnormal entry count found on day 2016-12-17: -30283
WARNING. Abnormal entry count found on day 2016-12-24: -18133
WARNING. Abnormal entry count found on day 2016-12-24: -18133
Processing turnstile ('R127', 'R105', '00-00-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11868
WARNING. Abnormal entry count found on day 2016-12-03: -11868
WARNING. Abnormal entry count found on day 2016-12-10: -11921
WARNING. Abnormal entry count found on day 2016-12-10: -11921
WARNING. Abnormal entry count found on day 2016-12-17: -12533
WARNING. Abnormal entry count found on day 2016-12-17: -12533
WARNING. Abnormal entry count found on day 2016-12-24: -7844
WARNING. Abnormal entry count found on day 2016-12-24: -7844
Processing turnstile ('N092', 'R029', '03-03-03', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7826
WARNING. Abnormal entry count found on day 2016-12-03: -7826
WARNING. Abnormal entry count found on day 2016-12-10: -8630
WARNING. Abnormal entry count found on day 2016-12-10: -8630
WARNING. Abnormal entry count found on day 2016-12-17: -6223
WARNING. Abnormal entry count found on day 2016-12-17: -6223
WARNING. Abnormal entry count found on day 2016-12-24: -4096
WARNING. Abnormal entry count found on day 2016-12-24: -4096
Processing turnstile ('R238', 'R046', '00-00-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -26832
WARNING. Abnormal entry count found on day 2016-12-03: -26832
WARNING. Abnormal entry count found on day 2016-12-10: -27647
WARNING. Abnormal entry count found on day 2016-12-10: -27647
WARNING. Abnormal entry count found on day 2016-12-17: -26216
WARNING. Abnormal entry count found on day 2016-12-17: -26216
WARNING. Abnormal entry count found on day 2016-12-24: -21507
WARNING. Abnormal entry count found on day 2016-12-24: -21507
Processing turnstile ('R526', 'R096', '00-05-03', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -1415
WARNING. Abnormal entry count found on day 2016-12-03: -1415
WARNING. Abnormal entry count found on day 2016-12-10: -6015
WARNING. Abnormal entry count found on day 2016-12-10: -6015
WARNING. Abnormal entry count found on day 2016-12-17: -6824
WARNING. Abnormal entry count found on day 2016-12-17: -6824
WARNING. Abnormal entry count found on day 2016-12-24: -5692
WARNING. Abnormal entry count found on day 2016-12-24: -5692
Processing turnstile ('J035', 'R008', '00-00-00', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3781
WARNING. Abnormal entry count found on day 2016-12-03: -3781
WARNING. Abnormal entry count found on day 2016-12-10: -3587
WARNING. Abnormal entry count found on day 2016-12-10: -3587
WARNING. Abnormal entry count found on day 2016-12-17: -3413
WARNING. Abnormal entry count found on day 2016-12-17: -3413
WARNING. Abnormal entry count found on day 2016-12-24: -2400
WARNING. Abnormal entry count found on day 2016-12-24: -2400
Processing turnstile ('N333A', 'R141', '00-03-00', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -12804
WARNING. Abnormal entry count found on day 2016-12-03: -12804
WARNING. Abnormal entry count found on day 2016-12-10: -12780
WARNING. Abnormal entry count found on day 2016-12-10: -12780
WARNING. Abnormal entry count found on day 2016-12-17: -13463
WARNING. Abnormal entry count found on day 2016-12-17: -13463
WARNING. Abnormal entry count found on day 2016-12-24: -10445
WARNING. Abnormal entry count found on day 2016-12-24: -10445
Processing turnstile ('R162', 'R166', '00-00-02', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11589
WARNING. Abnormal entry count found on day 2016-12-03: -11589
WARNING. Abnormal entry count found on day 2016-12-10: -11657
WARNING. Abnormal entry count found on day 2016-12-10: -11657
WARNING. Abnormal entry count found on day 2016-12-17: -10970
WARNING. Abnormal entry count found on day 2016-12-17: -10970
WARNING. Abnormal entry count found on day 2016-12-24: -8600
WARNING. Abnormal entry count found on day 2016-12-24: -8600
Processing turnstile ('A031', 'R083', '00-03-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-17: -4341
WARNING. Abnormal entry count found on day 2016-12-17: -4341
WARNING. Abnormal entry count found on day 2016-12-24: -299
WARNING. Abnormal entry count found on day 2016-12-24: -299
Processing turnstile ('R501', 'R054', '00-00-05', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -4132
WARNING. Abnormal entry count found on day 2016-12-03: -4132
WARNING. Abnormal entry count found on day 2016-12-10: -4410
WARNING. Abnormal entry count found on day 2016-12-10: -4410
WARNING. Abnormal entry count found on day 2016-12-17: -4380
WARNING. Abnormal entry count found on day 2016-12-17: -4380
WARNING. Abnormal entry count found on day 2016-12-24: -3767
WARNING. Abnormal entry count found on day 2016-12-24: -3767
Processing turnstile ('N091', 'R029', '02-05-02', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3440
WARNING. Abnormal entry count found on day 2016-12-03: -3440
WARNING. Abnormal entry count found on day 2016-12-10: -3412
WARNING. Abnormal entry count found on day 2016-12-10: -3412
WARNING. Abnormal entry count found on day 2016-12-17: -3020
WARNING. Abnormal entry count found on day 2016-12-17: -3020
WARNING. Abnormal entry count found on day 2016-12-24: -1846
WARNING. Abnormal entry count found on day 2016-12-24: -1846
Processing turnstile ('R604', 'R108', '03-00-00', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -13183
WARNING. Abnormal entry count found on day 2016-12-03: -13183
WARNING. Abnormal entry count found on day 2016-12-10: -12295
WARNING. Abnormal entry count found on day 2016-12-10: -12295
WARNING. Abnormal entry count found on day 2016-12-17: -11145
WARNING. Abnormal entry count found on day 2016-12-17: -11145
WARNING. Abnormal entry count found on day 2016-12-24: -7552
WARNING. Abnormal entry count found on day 2016-12-24: -7552
Processing turnstile ('R318', 'R408', '00-00-00', 'SIMPSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7894
WARNING. Abnormal entry count found on day 2016-12-03: -7894
WARNING. Abnormal entry count found on day 2016-12-10: -9177
WARNING. Abnormal entry count found on day 2016-12-10: -9177
WARNING. Abnormal entry count found on day 2016-12-17: -9529
WARNING. Abnormal entry count found on day 2016-12-17: -9529
WARNING. Abnormal entry count found on day 2016-12-24: -7363
WARNING. Abnormal entry count found on day 2016-12-24: -7363
Processing turnstile ('N501A', 'R020', '02-00-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -10365
WARNING. Abnormal entry count found on day 2016-12-03: -10365
WARNING. Abnormal entry count found on day 2016-12-10: -10355
WARNING. Abnormal entry count found on day 2016-12-10: -10355
WARNING. Abnormal entry count found on day 2016-12-17: -10450
WARNING. Abnormal entry count found on day 2016-12-17: -10450
WARNING. Abnormal entry count found on day 2016-12-24: -8268
WARNING. Abnormal entry count found on day 2016-12-24: -8268
Processing turnstile ('R314', 'R406', '00-00-02', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6704
WARNING. Abnormal entry count found on day 2016-12-03: -6704
WARNING. Abnormal entry count found on day 2016-12-10: -6983
WARNING. Abnormal entry count found on day 2016-12-10: -6983
WARNING. Abnormal entry count found on day 2016-12-17: -5560
WARNING. Abnormal entry count found on day 2016-12-17: -5560
WARNING. Abnormal entry count found on day 2016-12-24: -5340
WARNING. Abnormal entry count found on day 2016-12-24: -5340
Processing turnstile ('N331', 'R219', '00-00-00', '67 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11471
WARNING. Abnormal entry count found on day 2016-12-03: -11471
WARNING. Abnormal entry count found on day 2016-12-10: -11400
WARNING. Abnormal entry count found on day 2016-12-10: -11400
WARNING. Abnormal entry count found on day 2016-12-17: -11090
WARNING. Abnormal entry count found on day 2016-12-17: -11090
WARNING. Abnormal entry count found on day 2016-12-24: -7758
WARNING. Abnormal entry count found on day 2016-12-24: -7758
Processing turnstile ('A049', 'R088', '02-05-01', 'CORTLANDT ST')
Processing turnstile ('N068', 'R012', '03-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11318
WARNING. Abnormal entry count found on day 2016-12-03: -11318
WARNING. Abnormal entry count found on day 2016-12-10: -11049
WARNING. Abnormal entry count found on day 2016-12-10: -11049
WARNING. Abnormal entry count found on day 2016-12-17: -9516
WARNING. Abnormal entry count found on day 2016-12-17: -9516
WARNING. Abnormal entry count found on day 2016-12-24: -6563
WARNING. Abnormal entry count found on day 2016-12-24: -6563
Processing turnstile ('N342', 'R019', '01-00-01', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11587
WARNING. Abnormal entry count found on day 2016-12-03: -11587
WARNING. Abnormal entry count found on day 2016-12-10: -11625
WARNING. Abnormal entry count found on day 2016-12-10: -11625
WARNING. Abnormal entry count found on day 2016-12-17: -10672
WARNING. Abnormal entry count found on day 2016-12-17: -10672
WARNING. Abnormal entry count found on day 2016-12-24: -8330
WARNING. Abnormal entry count found on day 2016-12-24: -8330
Processing turnstile ('A081', 'R028', '04-00-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1631
WARNING. Abnormal entry count found on day 2016-12-03: -1631
WARNING. Abnormal entry count found on day 2016-12-10: -1572
WARNING. Abnormal entry count found on day 2016-12-10: -1572
WARNING. Abnormal entry count found on day 2016-12-17: -1441
WARNING. Abnormal entry count found on day 2016-12-17: -1441
WARNING. Abnormal entry count found on day 2016-12-24: -1327
WARNING. Abnormal entry count found on day 2016-12-24: -1327
Processing turnstile ('R237', 'R046', '01-00-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6893
WARNING. Abnormal entry count found on day 2016-12-03: -6893
WARNING. Abnormal entry count found on day 2016-12-10: -6799
WARNING. Abnormal entry count found on day 2016-12-10: -6799
WARNING. Abnormal entry count found on day 2016-12-17: -5677
WARNING. Abnormal entry count found on day 2016-12-17: -5677
WARNING. Abnormal entry count found on day 2016-12-24: -3376
WARNING. Abnormal entry count found on day 2016-12-24: -3376
Processing turnstile ('R160A', 'R164', '00-00-02', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -8310
WARNING. Abnormal entry count found on day 2016-12-03: -8310
WARNING. Abnormal entry count found on day 2016-12-10: -7973
WARNING. Abnormal entry count found on day 2016-12-10: -7973
WARNING. Abnormal entry count found on day 2016-12-17: -7462
WARNING. Abnormal entry count found on day 2016-12-17: -7462
WARNING. Abnormal entry count found on day 2016-12-24: -5242
WARNING. Abnormal entry count found on day 2016-12-24: -5242
Processing turnstile ('R217A', 'R194', '00-00-02', 'BLEECKER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16131
WARNING. Abnormal entry count found on day 2016-12-03: -16131
WARNING. Abnormal entry count found on day 2016-12-10: -16528
WARNING. Abnormal entry count found on day 2016-12-10: -16528
WARNING. Abnormal entry count found on day 2016-12-17: -15431
WARNING. Abnormal entry count found on day 2016-12-17: -15431
WARNING. Abnormal entry count found on day 2016-12-24: -2951
WARNING. Abnormal entry count found on day 2016-12-24: -2951
Processing turnstile ('R221', 'R170', '01-03-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -20768
WARNING. Abnormal entry count found on day 2016-12-03: -20768
WARNING. Abnormal entry count found on day 2016-12-10: -20307
WARNING. Abnormal entry count found on day 2016-12-10: -20307
WARNING. Abnormal entry count found on day 2016-12-17: -20013
WARNING. Abnormal entry count found on day 2016-12-17: -20013
WARNING. Abnormal entry count found on day 2016-12-24: -13031
WARNING. Abnormal entry count found on day 2016-12-24: -13031
Processing turnstile ('N212', 'R253', '01-00-02', '174-175 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -4890
WARNING. Abnormal entry count found on day 2016-12-03: -4890
WARNING. Abnormal entry count found on day 2016-12-10: -4835
WARNING. Abnormal entry count found on day 2016-12-10: -4835
WARNING. Abnormal entry count found on day 2016-12-17: -4697
WARNING. Abnormal entry count found on day 2016-12-17: -4697
WARNING. Abnormal entry count found on day 2016-12-24: -3849
WARNING. Abnormal entry count found on day 2016-12-24: -3849
Processing turnstile ('N217', 'R112', '00-00-01', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -10002
WARNING. Abnormal entry count found on day 2016-12-03: -10002
WARNING. Abnormal entry count found on day 2016-12-10: -9292
WARNING. Abnormal entry count found on day 2016-12-10: -9292
WARNING. Abnormal entry count found on day 2016-12-17: -9234
WARNING. Abnormal entry count found on day 2016-12-17: -9234
WARNING. Abnormal entry count found on day 2016-12-24: -7934
WARNING. Abnormal entry count found on day 2016-12-24: -7934
Processing turnstile ('R118', 'R343', '01-00-02', 'FRANKLIN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1665
WARNING. Abnormal entry count found on day 2016-12-03: -1665
WARNING. Abnormal entry count found on day 2016-12-10: -1631
WARNING. Abnormal entry count found on day 2016-12-10: -1631
WARNING. Abnormal entry count found on day 2016-12-17: -1403
WARNING. Abnormal entry count found on day 2016-12-17: -1403
WARNING. Abnormal entry count found on day 2016-12-24: -874
WARNING. Abnormal entry count found on day 2016-12-24: -874
Processing turnstile ('N327', 'R254', '00-06-01', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-04: -1598
WARNING. Abnormal entry count found on day 2016-12-05: -1216
WARNING. Abnormal entry count found on day 2016-12-06: -2798
WARNING. Abnormal entry count found on day 2016-12-07: -4005
WARNING. Abnormal entry count found on day 2016-12-08: -3057
WARNING. Abnormal entry count found on day 2016-12-09: -2822
WARNING. Abnormal entry count found on day 2016-12-03: 15496
WARNING. Abnormal entry count found on day 2016-12-04: -1598
WARNING. Abnormal entry count found on day 2016-12-05: -1216
WARNING. Abnormal entry count found on day 2016-12-06: -2798
WARNING. Abnormal entry count found on day 2016-12-07: -4005
WARNING. Abnormal entry count found on day 2016-12-08: -3057
WARNING. Abnormal entry count found on day 2016-12-09: -2822
WARNING. Abnormal entry count found on day 2016-12-03: 15496
WARNING. Abnormal entry count found on day 2016-12-04: -1598
WARNING. Abnormal entry count found on day 2016-12-05: -1216
WARNING. Abnormal entry count found on day 2016-12-06: -2798
WARNING. Abnormal entry count found on day 2016-12-07: -4005
WARNING. Abnormal entry count found on day 2016-12-08: -3057
WARNING. Abnormal entry count found on day 2016-12-09: -2822
WARNING. Abnormal entry count found on day 2016-12-10: -2758
WARNING. Abnormal entry count found on day 2016-12-11: -1599
WARNING. Abnormal entry count found on day 2016-12-12: -1329
WARNING. Abnormal entry count found on day 2016-12-13: -2619
WARNING. Abnormal entry count found on day 2016-12-14: -2669
WARNING. Abnormal entry count found on day 2016-12-15: -2742
WARNING. Abnormal entry count found on day 2016-12-16: -2686
WARNING. Abnormal entry count found on day 2016-12-10: 13644
WARNING. Abnormal entry count found on day 2016-12-11: -1599
WARNING. Abnormal entry count found on day 2016-12-12: -1329
WARNING. Abnormal entry count found on day 2016-12-13: -2619
WARNING. Abnormal entry count found on day 2016-12-14: -2669
WARNING. Abnormal entry count found on day 2016-12-15: -2742
WARNING. Abnormal entry count found on day 2016-12-16: -2686
WARNING. Abnormal entry count found on day 2016-12-10: 13644
WARNING. Abnormal entry count found on day 2016-12-11: -1599
WARNING. Abnormal entry count found on day 2016-12-12: -1329
WARNING. Abnormal entry count found on day 2016-12-13: -2619
WARNING. Abnormal entry count found on day 2016-12-14: -2669
WARNING. Abnormal entry count found on day 2016-12-15: -2742
WARNING. Abnormal entry count found on day 2016-12-16: -2686
WARNING. Abnormal entry count found on day 2016-12-17: -2755
WARNING. Abnormal entry count found on day 2016-12-18: -1564
WARNING. Abnormal entry count found on day 2016-12-19: -1327
WARNING. Abnormal entry count found on day 2016-12-20: -2775
WARNING. Abnormal entry count found on day 2016-12-21: -3258
WARNING. Abnormal entry count found on day 2016-12-22: -2960
WARNING. Abnormal entry count found on day 2016-12-23: -2909
WARNING. Abnormal entry count found on day 2016-12-17: 14793
WARNING. Abnormal entry count found on day 2016-12-18: -1564
WARNING. Abnormal entry count found on day 2016-12-19: -1327
WARNING. Abnormal entry count found on day 2016-12-20: -2775
WARNING. Abnormal entry count found on day 2016-12-21: -3258
WARNING. Abnormal entry count found on day 2016-12-22: -2960
WARNING. Abnormal entry count found on day 2016-12-23: -2909
WARNING. Abnormal entry count found on day 2016-12-17: 14793
WARNING. Abnormal entry count found on day 2016-12-18: -1564
WARNING. Abnormal entry count found on day 2016-12-19: -1327
WARNING. Abnormal entry count found on day 2016-12-20: -2775
WARNING. Abnormal entry count found on day 2016-12-21: -3258
WARNING. Abnormal entry count found on day 2016-12-22: -2960
WARNING. Abnormal entry count found on day 2016-12-23: -2909
WARNING. Abnormal entry count found on day 2016-12-24: -2963
WARNING. Abnormal entry count found on day 2016-12-25: -1489
WARNING. Abnormal entry count found on day 2016-12-26: -797
WARNING. Abnormal entry count found on day 2016-12-27: -1655
WARNING. Abnormal entry count found on day 2016-12-28: -2205
WARNING. Abnormal entry count found on day 2016-12-29: -2282
WARNING. Abnormal entry count found on day 2016-12-30: -2170
WARNING. Abnormal entry count found on day 2016-12-24: 10598
WARNING. Abnormal entry count found on day 2016-12-25: -1489
WARNING. Abnormal entry count found on day 2016-12-26: -797
WARNING. Abnormal entry count found on day 2016-12-27: -1655
WARNING. Abnormal entry count found on day 2016-12-28: -2205
WARNING. Abnormal entry count found on day 2016-12-29: -2282
WARNING. Abnormal entry count found on day 2016-12-30: -2170
WARNING. Abnormal entry count found on day 2016-12-24: 10598
WARNING. Abnormal entry count found on day 2016-12-25: -1489
WARNING. Abnormal entry count found on day 2016-12-26: -797
WARNING. Abnormal entry count found on day 2016-12-27: -1655
WARNING. Abnormal entry count found on day 2016-12-28: -2205
WARNING. Abnormal entry count found on day 2016-12-29: -2282
WARNING. Abnormal entry count found on day 2016-12-30: -2170
Processing turnstile ('R534', 'R055', '01-03-02', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -16043
WARNING. Abnormal entry count found on day 2016-12-03: -16043
WARNING. Abnormal entry count found on day 2016-12-10: -14934
WARNING. Abnormal entry count found on day 2016-12-10: -14934
WARNING. Abnormal entry count found on day 2016-12-17: -14781
WARNING. Abnormal entry count found on day 2016-12-17: -14781
WARNING. Abnormal entry count found on day 2016-12-24: -12263
WARNING. Abnormal entry count found on day 2016-12-24: -12263
Processing turnstile ('PTH19', 'R549', '02-00-03', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1198
WARNING. Abnormal entry count found on day 2016-12-03: -1198
WARNING. Abnormal entry count found on day 2016-12-10: -1116
WARNING. Abnormal entry count found on day 2016-12-10: -1116
WARNING. Abnormal entry count found on day 2016-12-17: -961
WARNING. Abnormal entry count found on day 2016-12-17: -961
WARNING. Abnormal entry count found on day 2016-12-24: -487
WARNING. Abnormal entry count found on day 2016-12-24: -487
Processing turnstile ('R622', 'R123', '00-00-00', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-04: -3307
WARNING. Abnormal entry count found on day 2016-12-05: -2579
WARNING. Abnormal entry count found on day 2016-12-06: -4215
WARNING. Abnormal entry count found on day 2016-12-07: -4462
WARNING. Abnormal entry count found on day 2016-12-08: -4639
WARNING. Abnormal entry count found on day 2016-12-09: -4648
WARNING. Abnormal entry count found on day 2016-12-03: 23850
WARNING. Abnormal entry count found on day 2016-12-04: -3307
WARNING. Abnormal entry count found on day 2016-12-05: -2579
WARNING. Abnormal entry count found on day 2016-12-06: -4215
WARNING. Abnormal entry count found on day 2016-12-07: -4462
WARNING. Abnormal entry count found on day 2016-12-08: -4639
WARNING. Abnormal entry count found on day 2016-12-09: -4648
WARNING. Abnormal entry count found on day 2016-12-03: 23850
WARNING. Abnormal entry count found on day 2016-12-04: -3307
WARNING. Abnormal entry count found on day 2016-12-05: -2579
WARNING. Abnormal entry count found on day 2016-12-06: -4215
WARNING. Abnormal entry count found on day 2016-12-07: -4462
WARNING. Abnormal entry count found on day 2016-12-08: -4639
WARNING. Abnormal entry count found on day 2016-12-09: -4648
WARNING. Abnormal entry count found on day 2016-12-10: -4530
WARNING. Abnormal entry count found on day 2016-12-11: -3232
WARNING. Abnormal entry count found on day 2016-12-12: -2443
WARNING. Abnormal entry count found on day 2016-12-13: -4175
WARNING. Abnormal entry count found on day 2016-12-14: -4271
WARNING. Abnormal entry count found on day 2016-12-15: -4336
WARNING. Abnormal entry count found on day 2016-12-16: -4120
WARNING. Abnormal entry count found on day 2016-12-10: 22577
WARNING. Abnormal entry count found on day 2016-12-11: -3232
WARNING. Abnormal entry count found on day 2016-12-12: -2443
WARNING. Abnormal entry count found on day 2016-12-13: -4175
WARNING. Abnormal entry count found on day 2016-12-14: -4271
WARNING. Abnormal entry count found on day 2016-12-15: -4336
WARNING. Abnormal entry count found on day 2016-12-16: -4120
WARNING. Abnormal entry count found on day 2016-12-10: 22577
WARNING. Abnormal entry count found on day 2016-12-11: -3232
WARNING. Abnormal entry count found on day 2016-12-12: -2443
WARNING. Abnormal entry count found on day 2016-12-13: -4175
WARNING. Abnormal entry count found on day 2016-12-14: -4271
WARNING. Abnormal entry count found on day 2016-12-15: -4336
WARNING. Abnormal entry count found on day 2016-12-16: -4120
WARNING. Abnormal entry count found on day 2016-12-17: -4120
WARNING. Abnormal entry count found on day 2016-12-18: -3070
WARNING. Abnormal entry count found on day 2016-12-19: -2572
WARNING. Abnormal entry count found on day 2016-12-20: -4033
WARNING. Abnormal entry count found on day 2016-12-21: -3952
WARNING. Abnormal entry count found on day 2016-12-22: -4044
WARNING. Abnormal entry count found on day 2016-12-23: -3863
WARNING. Abnormal entry count found on day 2016-12-17: 21534
WARNING. Abnormal entry count found on day 2016-12-18: -3070
WARNING. Abnormal entry count found on day 2016-12-19: -2572
WARNING. Abnormal entry count found on day 2016-12-20: -4033
WARNING. Abnormal entry count found on day 2016-12-21: -3952
WARNING. Abnormal entry count found on day 2016-12-22: -4044
WARNING. Abnormal entry count found on day 2016-12-23: -3863
WARNING. Abnormal entry count found on day 2016-12-17: 21534
WARNING. Abnormal entry count found on day 2016-12-18: -3070
WARNING. Abnormal entry count found on day 2016-12-19: -2572
WARNING. Abnormal entry count found on day 2016-12-20: -4033
WARNING. Abnormal entry count found on day 2016-12-21: -3952
WARNING. Abnormal entry count found on day 2016-12-22: -4044
WARNING. Abnormal entry count found on day 2016-12-23: -3863
WARNING. Abnormal entry count found on day 2016-12-24: -3389
WARNING. Abnormal entry count found on day 2016-12-25: -1947
WARNING. Abnormal entry count found on day 2016-12-26: -1168
WARNING. Abnormal entry count found on day 2016-12-27: -1741
WARNING. Abnormal entry count found on day 2016-12-28: -2973
WARNING. Abnormal entry count found on day 2016-12-29: -3239
WARNING. Abnormal entry count found on day 2016-12-30: -3196
WARNING. Abnormal entry count found on day 2016-12-24: 14264
WARNING. Abnormal entry count found on day 2016-12-25: -1947
WARNING. Abnormal entry count found on day 2016-12-26: -1168
WARNING. Abnormal entry count found on day 2016-12-27: -1741
WARNING. Abnormal entry count found on day 2016-12-28: -2973
WARNING. Abnormal entry count found on day 2016-12-29: -3239
WARNING. Abnormal entry count found on day 2016-12-30: -3196
WARNING. Abnormal entry count found on day 2016-12-24: 14264
WARNING. Abnormal entry count found on day 2016-12-25: -1947
WARNING. Abnormal entry count found on day 2016-12-26: -1168
WARNING. Abnormal entry count found on day 2016-12-27: -1741
WARNING. Abnormal entry count found on day 2016-12-28: -2973
WARNING. Abnormal entry count found on day 2016-12-29: -3239
WARNING. Abnormal entry count found on day 2016-12-30: -3196
Processing turnstile ('R416', 'R245', '00-05-00', 'ST LAWRENCE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
Processing turnstile ('N078', 'R175', '01-06-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1916
WARNING. Abnormal entry count found on day 2016-12-03: -1916
WARNING. Abnormal entry count found on day 2016-12-10: -1901
WARNING. Abnormal entry count found on day 2016-12-10: -1901
WARNING. Abnormal entry count found on day 2016-12-17: -1819
WARNING. Abnormal entry count found on day 2016-12-17: -1819
WARNING. Abnormal entry count found on day 2016-12-24: -1102
WARNING. Abnormal entry count found on day 2016-12-24: -1102
Processing turnstile ('R327', 'R361', '01-06-00', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -6186
WARNING. Abnormal entry count found on day 2016-12-03: -6186
WARNING. Abnormal entry count found on day 2016-12-10: -5046
WARNING. Abnormal entry count found on day 2016-12-10: -5046
WARNING. Abnormal entry count found on day 2016-12-17: -4076
WARNING. Abnormal entry count found on day 2016-12-17: -4076
WARNING. Abnormal entry count found on day 2016-12-24: -3418
WARNING. Abnormal entry count found on day 2016-12-24: -3418
Processing turnstile ('B014', 'R148', '00-00-00', 'PARKSIDE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7900
WARNING. Abnormal entry count found on day 2016-12-03: -7900
WARNING. Abnormal entry count found on day 2016-12-10: -7800
WARNING. Abnormal entry count found on day 2016-12-10: -7800
WARNING. Abnormal entry count found on day 2016-12-17: -7332
WARNING. Abnormal entry count found on day 2016-12-17: -7332
WARNING. Abnormal entry count found on day 2016-12-24: -6275
WARNING. Abnormal entry count found on day 2016-12-24: -6275
Processing turnstile ('A061', 'R142', '00-03-03', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -3199
WARNING. Abnormal entry count found on day 2016-12-03: -3199
WARNING. Abnormal entry count found on day 2016-12-10: -3159
WARNING. Abnormal entry count found on day 2016-12-10: -3159
WARNING. Abnormal entry count found on day 2016-12-17: -3072
WARNING. Abnormal entry count found on day 2016-12-17: -3072
WARNING. Abnormal entry count found on day 2016-12-24: -2023
WARNING. Abnormal entry count found on day 2016-12-24: -2023
Processing turnstile ('C003', 'R089', '00-00-02', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -2898
WARNING. Abnormal entry count found on day 2016-12-03: -2898
WARNING. Abnormal entry count found on day 2016-12-10: -2760
WARNING. Abnormal entry count found on day 2016-12-10: -2760
WARNING. Abnormal entry count found on day 2016-12-17: -2271
WARNING. Abnormal entry count found on day 2016-12-17: -2271
WARNING. Abnormal entry count found on day 2016-12-24: -1381
WARNING. Abnormal entry count found on day 2016-12-24: -1381
Processing turnstile ('N309A', 'R140', '00-05-03', 'QUEENS PLAZA')
Processing turnstile ('JFK03', 'R536', '00-03-04', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-03: -2486
WARNING. Abnormal entry count found on day 2016-12-03: -2486
WARNING. Abnormal entry count found on day 2016-12-10: -3250
WARNING. Abnormal entry count found on day 2016-12-10: -3250
WARNING. Abnormal entry count found on day 2016-12-17: -4426
WARNING. Abnormal entry count found on day 2016-12-17: -4426
WARNING. Abnormal entry count found on day 2016-12-24: -3159
WARNING. Abnormal entry count found on day 2016-12-24: -3159
Processing turnstile ('R335', 'R444', '00-00-00', 'NEREID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8962
WARNING. Abnormal entry count found on day 2016-12-03: -8962
WARNING. Abnormal entry count found on day 2016-12-10: -8581
WARNING. Abnormal entry count found on day 2016-12-10: -8581
WARNING. Abnormal entry count found on day 2016-12-17: -8349
WARNING. Abnormal entry count found on day 2016-12-17: -8349
WARNING. Abnormal entry count found on day 2016-12-24: -6334
WARNING. Abnormal entry count found on day 2016-12-24: -6334
Processing turnstile ('E003', 'R369', '00-03-01', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -1347
WARNING. Abnormal entry count found on day 2016-12-03: -1347
WARNING. Abnormal entry count found on day 2016-12-10: -1311
WARNING. Abnormal entry count found on day 2016-12-10: -1311
WARNING. Abnormal entry count found on day 2016-12-17: -1247
WARNING. Abnormal entry count found on day 2016-12-17: -1247
WARNING. Abnormal entry count found on day 2016-12-24: -822
WARNING. Abnormal entry count found on day 2016-12-24: -822
Processing turnstile ('N500', 'R020', '00-05-01', '47-50 STS ROCK')
Processing turnstile ('R180', 'R193', '00-00-01', '157 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13223
WARNING. Abnormal entry count found on day 2016-12-03: -13223
WARNING. Abnormal entry count found on day 2016-12-10: -12948
WARNING. Abnormal entry count found on day 2016-12-10: -12948
WARNING. Abnormal entry count found on day 2016-12-17: -12440
WARNING. Abnormal entry count found on day 2016-12-17: -12440
WARNING. Abnormal entry count found on day 2016-12-24: -9796
WARNING. Abnormal entry count found on day 2016-12-24: -9796
Processing turnstile ('N209', 'R443', '00-00-00', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8139
WARNING. Abnormal entry count found on day 2016-12-03: -8139
WARNING. Abnormal entry count found on day 2016-12-10: -7549
WARNING. Abnormal entry count found on day 2016-12-10: -7549
WARNING. Abnormal entry count found on day 2016-12-17: -7643
WARNING. Abnormal entry count found on day 2016-12-17: -7643
WARNING. Abnormal entry count found on day 2016-12-24: -6084
WARNING. Abnormal entry count found on day 2016-12-24: -6084
Processing turnstile ('TRAM2', 'R469', '00-00-01', 'RIT-ROOSEVELT')
WARNING. Abnormal entry count found on day 2016-12-03: -9170
WARNING. Abnormal entry count found on day 2016-12-03: -9170
WARNING. Abnormal entry count found on day 2016-12-10: -8450
WARNING. Abnormal entry count found on day 2016-12-10: -8450
WARNING. Abnormal entry count found on day 2016-12-17: -8747
WARNING. Abnormal entry count found on day 2016-12-17: -8747
WARNING. Abnormal entry count found on day 2016-12-24: -9361
WARNING. Abnormal entry count found on day 2016-12-24: -9361
Processing turnstile ('R180', 'R193', '00-00-03', '157 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5178
WARNING. Abnormal entry count found on day 2016-12-03: -5178
WARNING. Abnormal entry count found on day 2016-12-10: -5162
WARNING. Abnormal entry count found on day 2016-12-10: -5162
WARNING. Abnormal entry count found on day 2016-12-17: -4869
WARNING. Abnormal entry count found on day 2016-12-17: -4869
WARNING. Abnormal entry count found on day 2016-12-24: -3700
WARNING. Abnormal entry count found on day 2016-12-24: -3700
Processing turnstile ('A046', 'R463', '00-06-04', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4923
WARNING. Abnormal entry count found on day 2016-12-03: -4923
WARNING. Abnormal entry count found on day 2016-12-10: -4752
WARNING. Abnormal entry count found on day 2016-12-10: -4752
WARNING. Abnormal entry count found on day 2016-12-17: -4746
WARNING. Abnormal entry count found on day 2016-12-17: -4746
WARNING. Abnormal entry count found on day 2016-12-24: -4600
WARNING. Abnormal entry count found on day 2016-12-24: -4600
Processing turnstile ('N089', 'R139', '00-04-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4887
WARNING. Abnormal entry count found on day 2016-12-03: -4887
WARNING. Abnormal entry count found on day 2016-12-10: -4993
WARNING. Abnormal entry count found on day 2016-12-10: -4993
WARNING. Abnormal entry count found on day 2016-12-17: -4190
WARNING. Abnormal entry count found on day 2016-12-17: -4190
WARNING. Abnormal entry count found on day 2016-12-24: -2985
WARNING. Abnormal entry count found on day 2016-12-24: -2985
Processing turnstile ('N001', 'R173', '01-05-00', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-10: -5
WARNING. Abnormal entry count found on day 2016-12-10: -5
WARNING. Abnormal entry count found on day 2016-12-17: -5
WARNING. Abnormal entry count found on day 2016-12-17: -5
Processing turnstile ('R138', 'R293', '00-00-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -26756
WARNING. Abnormal entry count found on day 2016-12-03: -26756
WARNING. Abnormal entry count found on day 2016-12-10: -26878
WARNING. Abnormal entry count found on day 2016-12-10: -26878
WARNING. Abnormal entry count found on day 2016-12-17: -25061
WARNING. Abnormal entry count found on day 2016-12-17: -25061
WARNING. Abnormal entry count found on day 2016-12-24: -19850
WARNING. Abnormal entry count found on day 2016-12-24: -19850
Processing turnstile ('R116', 'R030', '00-03-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7055
WARNING. Abnormal entry count found on day 2016-12-03: -7055
WARNING. Abnormal entry count found on day 2016-12-10: -6410
WARNING. Abnormal entry count found on day 2016-12-10: -6410
WARNING. Abnormal entry count found on day 2016-12-17: -5406
WARNING. Abnormal entry count found on day 2016-12-17: -5406
WARNING. Abnormal entry count found on day 2016-12-24: -3423
WARNING. Abnormal entry count found on day 2016-12-24: -3423
Processing turnstile ('PTH20', 'R549', '03-00-06', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -339
WARNING. Abnormal entry count found on day 2016-12-03: -339
WARNING. Abnormal entry count found on day 2016-12-10: -626
WARNING. Abnormal entry count found on day 2016-12-10: -626
WARNING. Abnormal entry count found on day 2016-12-17: -603
WARNING. Abnormal entry count found on day 2016-12-17: -603
WARNING. Abnormal entry count found on day 2016-12-24: -347
WARNING. Abnormal entry count found on day 2016-12-24: -347
Processing turnstile ('B020', 'R263', '00-06-02', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('A071', 'R044', '02-06-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8258
WARNING. Abnormal entry count found on day 2016-12-03: -8258
WARNING. Abnormal entry count found on day 2016-12-10: -8321
WARNING. Abnormal entry count found on day 2016-12-10: -8321
WARNING. Abnormal entry count found on day 2016-12-17: -8325
WARNING. Abnormal entry count found on day 2016-12-17: -8325
WARNING. Abnormal entry count found on day 2016-12-24: -4477
WARNING. Abnormal entry count found on day 2016-12-24: -4477
Processing turnstile ('R185', 'R274', '00-00-03', '191 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16127
WARNING. Abnormal entry count found on day 2016-12-03: -16127
WARNING. Abnormal entry count found on day 2016-12-10: -15635
WARNING. Abnormal entry count found on day 2016-12-10: -15635
WARNING. Abnormal entry count found on day 2016-12-17: -15075
WARNING. Abnormal entry count found on day 2016-12-17: -15075
WARNING. Abnormal entry count found on day 2016-12-24: -10811
WARNING. Abnormal entry count found on day 2016-12-24: -10811
Processing turnstile ('R293', 'R133', '00-06-02', 'MOSHOLU PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -7785
WARNING. Abnormal entry count found on day 2016-12-03: -7785
WARNING. Abnormal entry count found on day 2016-12-10: -7585
WARNING. Abnormal entry count found on day 2016-12-10: -7585
WARNING. Abnormal entry count found on day 2016-12-17: -7646
WARNING. Abnormal entry count found on day 2016-12-17: -7646
WARNING. Abnormal entry count found on day 2016-12-24: -5307
WARNING. Abnormal entry count found on day 2016-12-24: -5307
Processing turnstile ('R533', 'R055', '00-03-01', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -25538
WARNING. Abnormal entry count found on day 2016-12-03: -25538
WARNING. Abnormal entry count found on day 2016-12-10: -24509
WARNING. Abnormal entry count found on day 2016-12-10: -24509
WARNING. Abnormal entry count found on day 2016-12-17: -26457
WARNING. Abnormal entry count found on day 2016-12-17: -26457
WARNING. Abnormal entry count found on day 2016-12-24: -22427
WARNING. Abnormal entry count found on day 2016-12-24: -22427
Processing turnstile ('R210A', 'R044', '03-06-00', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -509
WARNING. Abnormal entry count found on day 2016-12-03: -509
WARNING. Abnormal entry count found on day 2016-12-10: -497
WARNING. Abnormal entry count found on day 2016-12-10: -497
WARNING. Abnormal entry count found on day 2016-12-17: -480
WARNING. Abnormal entry count found on day 2016-12-17: -480
WARNING. Abnormal entry count found on day 2016-12-24: -255
WARNING. Abnormal entry count found on day 2016-12-24: -255
Processing turnstile ('R639', 'R109', '00-00-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10864
WARNING. Abnormal entry count found on day 2016-12-03: -10864
WARNING. Abnormal entry count found on day 2016-12-10: -10671
WARNING. Abnormal entry count found on day 2016-12-10: -10671
WARNING. Abnormal entry count found on day 2016-12-17: -9716
WARNING. Abnormal entry count found on day 2016-12-17: -9716
WARNING. Abnormal entry count found on day 2016-12-24: -7147
WARNING. Abnormal entry count found on day 2016-12-24: -7147
Processing turnstile ('N049', 'R084', '01-00-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -8289
WARNING. Abnormal entry count found on day 2016-12-03: -8289
WARNING. Abnormal entry count found on day 2016-12-10: -6072
WARNING. Abnormal entry count found on day 2016-12-10: -6072
WARNING. Abnormal entry count found on day 2016-12-17: -4945
WARNING. Abnormal entry count found on day 2016-12-17: -4945
WARNING. Abnormal entry count found on day 2016-12-24: -4316
WARNING. Abnormal entry count found on day 2016-12-24: -4316
Processing turnstile ('R226A', 'R131', '03-06-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5367
WARNING. Abnormal entry count found on day 2016-12-03: -5367
WARNING. Abnormal entry count found on day 2016-12-10: -4515
WARNING. Abnormal entry count found on day 2016-12-10: -4515
WARNING. Abnormal entry count found on day 2016-12-17: -3475
WARNING. Abnormal entry count found on day 2016-12-17: -3475
WARNING. Abnormal entry count found on day 2016-12-24: -2231
WARNING. Abnormal entry count found on day 2016-12-24: -2231
Processing turnstile ('R256', 'R182', '00-00-00', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20917
WARNING. Abnormal entry count found on day 2016-12-03: -20917
WARNING. Abnormal entry count found on day 2016-12-10: -20571
WARNING. Abnormal entry count found on day 2016-12-10: -20571
WARNING. Abnormal entry count found on day 2016-12-17: -19975
WARNING. Abnormal entry count found on day 2016-12-17: -19975
WARNING. Abnormal entry count found on day 2016-12-24: -15263
WARNING. Abnormal entry count found on day 2016-12-24: -15263
Processing turnstile ('R306', 'R207', '00-05-00', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24
WARNING. Abnormal entry count found on day 2016-12-03: -24
WARNING. Abnormal entry count found on day 2016-12-10: -24
WARNING. Abnormal entry count found on day 2016-12-10: -24
WARNING. Abnormal entry count found on day 2016-12-17: -33
WARNING. Abnormal entry count found on day 2016-12-17: -33
WARNING. Abnormal entry count found on day 2016-12-24: -15
WARNING. Abnormal entry count found on day 2016-12-24: -15
Processing turnstile ('R262', 'R195', '03-00-01', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -8551
WARNING. Abnormal entry count found on day 2016-12-03: -8551
WARNING. Abnormal entry count found on day 2016-12-10: -8699
WARNING. Abnormal entry count found on day 2016-12-10: -8699
WARNING. Abnormal entry count found on day 2016-12-17: -8347
WARNING. Abnormal entry count found on day 2016-12-17: -8347
WARNING. Abnormal entry count found on day 2016-12-24: -6235
WARNING. Abnormal entry count found on day 2016-12-24: -6235
Processing turnstile ('N056', 'R188', '01-00-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14312
WARNING. Abnormal entry count found on day 2016-12-03: -14312
WARNING. Abnormal entry count found on day 2016-12-10: -13763
WARNING. Abnormal entry count found on day 2016-12-10: -13763
WARNING. Abnormal entry count found on day 2016-12-17: -14176
WARNING. Abnormal entry count found on day 2016-12-17: -14176
WARNING. Abnormal entry count found on day 2016-12-24: -12503
WARNING. Abnormal entry count found on day 2016-12-24: -12503
Processing turnstile ('N217', 'R112', '00-00-02', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -15639
WARNING. Abnormal entry count found on day 2016-12-03: -15639
WARNING. Abnormal entry count found on day 2016-12-10: -15135
WARNING. Abnormal entry count found on day 2016-12-10: -15135
WARNING. Abnormal entry count found on day 2016-12-17: -15576
WARNING. Abnormal entry count found on day 2016-12-17: -15576
WARNING. Abnormal entry count found on day 2016-12-24: -12421
WARNING. Abnormal entry count found on day 2016-12-24: -12421
Processing turnstile ('N501', 'R020', '01-03-02', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -17594
WARNING. Abnormal entry count found on day 2016-12-03: -17594
WARNING. Abnormal entry count found on day 2016-12-10: -17775
WARNING. Abnormal entry count found on day 2016-12-10: -17775
WARNING. Abnormal entry count found on day 2016-12-17: -17586
WARNING. Abnormal entry count found on day 2016-12-17: -17586
WARNING. Abnormal entry count found on day 2016-12-24: -14212
WARNING. Abnormal entry count found on day 2016-12-24: -14212
Processing turnstile ('R154', 'R116', '00-00-04', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7325
WARNING. Abnormal entry count found on day 2016-12-03: -7325
WARNING. Abnormal entry count found on day 2016-12-10: -7439
WARNING. Abnormal entry count found on day 2016-12-10: -7439
WARNING. Abnormal entry count found on day 2016-12-17: -6857
WARNING. Abnormal entry count found on day 2016-12-17: -6857
WARNING. Abnormal entry count found on day 2016-12-24: -5619
WARNING. Abnormal entry count found on day 2016-12-24: -5619
Processing turnstile ('N415', 'R286', '00-00-02', 'MYRTLE-WILLOUGH')
WARNING. Abnormal entry count found on day 2016-12-03: -4586
WARNING. Abnormal entry count found on day 2016-12-03: -4586
WARNING. Abnormal entry count found on day 2016-12-10: -4643
WARNING. Abnormal entry count found on day 2016-12-10: -4643
WARNING. Abnormal entry count found on day 2016-12-17: -4395
WARNING. Abnormal entry count found on day 2016-12-17: -4395
WARNING. Abnormal entry count found on day 2016-12-24: -3231
WARNING. Abnormal entry count found on day 2016-12-24: -3231
Processing turnstile ('A027', 'R082', '01-00-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10138
WARNING. Abnormal entry count found on day 2016-12-03: -10138
WARNING. Abnormal entry count found on day 2016-12-10: -10357
WARNING. Abnormal entry count found on day 2016-12-10: -10357
WARNING. Abnormal entry count found on day 2016-12-17: -9116
WARNING. Abnormal entry count found on day 2016-12-17: -9116
WARNING. Abnormal entry count found on day 2016-12-24: -6387
WARNING. Abnormal entry count found on day 2016-12-24: -6387
Processing turnstile ('R504', 'R276', '00-00-01', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -14338
WARNING. Abnormal entry count found on day 2016-12-03: -14338
WARNING. Abnormal entry count found on day 2016-12-10: -14308
WARNING. Abnormal entry count found on day 2016-12-10: -14308
WARNING. Abnormal entry count found on day 2016-12-17: -13071
WARNING. Abnormal entry count found on day 2016-12-17: -13071
WARNING. Abnormal entry count found on day 2016-12-24: -8977
WARNING. Abnormal entry count found on day 2016-12-24: -8977
Processing turnstile ('N206', 'R104', '01-06-00', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3203
WARNING. Abnormal entry count found on day 2016-12-03: -3203
WARNING. Abnormal entry count found on day 2016-12-10: -3066
WARNING. Abnormal entry count found on day 2016-12-10: -3066
WARNING. Abnormal entry count found on day 2016-12-17: -3276
WARNING. Abnormal entry count found on day 2016-12-17: -3276
WARNING. Abnormal entry count found on day 2016-12-24: -2261
WARNING. Abnormal entry count found on day 2016-12-24: -2261
Processing turnstile ('R421', 'R427', '00-00-00', 'MIDDLETOWN RD')
WARNING. Abnormal entry count found on day 2016-12-03: -2988
WARNING. Abnormal entry count found on day 2016-12-03: -2988
WARNING. Abnormal entry count found on day 2016-12-10: -3004
WARNING. Abnormal entry count found on day 2016-12-10: -3004
WARNING. Abnormal entry count found on day 2016-12-17: -3168
WARNING. Abnormal entry count found on day 2016-12-17: -3168
WARNING. Abnormal entry count found on day 2016-12-24: -2134
WARNING. Abnormal entry count found on day 2016-12-24: -2134
Processing turnstile ('N417', 'R269', '00-00-00', 'BEDFORD-NOSTRAN')
WARNING. Abnormal entry count found on day 2016-12-03: -12652
WARNING. Abnormal entry count found on day 2016-12-03: -12652
WARNING. Abnormal entry count found on day 2016-12-10: -12256
WARNING. Abnormal entry count found on day 2016-12-10: -12256
WARNING. Abnormal entry count found on day 2016-12-17: -11648
WARNING. Abnormal entry count found on day 2016-12-17: -11648
WARNING. Abnormal entry count found on day 2016-12-24: -8564
WARNING. Abnormal entry count found on day 2016-12-24: -8564
Processing turnstile ('N505', 'R022', '02-00-06', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -4479
WARNING. Abnormal entry count found on day 2016-12-03: -4479
WARNING. Abnormal entry count found on day 2016-12-10: -4534
WARNING. Abnormal entry count found on day 2016-12-10: -4534
WARNING. Abnormal entry count found on day 2016-12-17: -4455
WARNING. Abnormal entry count found on day 2016-12-17: -4455
WARNING. Abnormal entry count found on day 2016-12-24: -3649
WARNING. Abnormal entry count found on day 2016-12-24: -3649
Processing turnstile ('R113', 'R028', '01-04-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4083
WARNING. Abnormal entry count found on day 2016-12-03: -4083
WARNING. Abnormal entry count found on day 2016-12-10: -3912
WARNING. Abnormal entry count found on day 2016-12-10: -3912
WARNING. Abnormal entry count found on day 2016-12-17: -3243
WARNING. Abnormal entry count found on day 2016-12-17: -3243
WARNING. Abnormal entry count found on day 2016-12-24: -2274
WARNING. Abnormal entry count found on day 2016-12-24: -2274
Processing turnstile ('R636', 'R209', '00-00-01', 'STERLING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8081
WARNING. Abnormal entry count found on day 2016-12-03: -8081
WARNING. Abnormal entry count found on day 2016-12-10: -8172
WARNING. Abnormal entry count found on day 2016-12-10: -8172
WARNING. Abnormal entry count found on day 2016-12-17: -7914
WARNING. Abnormal entry count found on day 2016-12-17: -7914
WARNING. Abnormal entry count found on day 2016-12-24: -5524
WARNING. Abnormal entry count found on day 2016-12-24: -5524
Processing turnstile ('R532H', 'R328', '02-03-01', 'METS-WILLETS PT')
Processing turnstile ('A037', 'R170', '05-00-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -27803
WARNING. Abnormal entry count found on day 2016-12-03: -27803
WARNING. Abnormal entry count found on day 2016-12-10: -30254
WARNING. Abnormal entry count found on day 2016-12-10: -30254
WARNING. Abnormal entry count found on day 2016-12-17: -29700
WARNING. Abnormal entry count found on day 2016-12-17: -29700
WARNING. Abnormal entry count found on day 2016-12-24: -20272
WARNING. Abnormal entry count found on day 2016-12-24: -20272
Processing turnstile ('R647', 'R110', '02-00-01', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -6294
WARNING. Abnormal entry count found on day 2016-12-03: -6294
WARNING. Abnormal entry count found on day 2016-12-10: -6003
WARNING. Abnormal entry count found on day 2016-12-10: -6003
WARNING. Abnormal entry count found on day 2016-12-17: -5459
WARNING. Abnormal entry count found on day 2016-12-17: -5459
WARNING. Abnormal entry count found on day 2016-12-24: -3590
WARNING. Abnormal entry count found on day 2016-12-24: -3590
Processing turnstile ('R601A', 'R108', '02-00-00', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -14882
WARNING. Abnormal entry count found on day 2016-12-03: -14882
WARNING. Abnormal entry count found on day 2016-12-10: -14344
WARNING. Abnormal entry count found on day 2016-12-10: -14344
WARNING. Abnormal entry count found on day 2016-12-17: -12210
WARNING. Abnormal entry count found on day 2016-12-17: -12210
WARNING. Abnormal entry count found on day 2016-12-24: -8336
WARNING. Abnormal entry count found on day 2016-12-24: -8336
Processing turnstile ('N057', 'R188', '00-03-02', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12582
WARNING. Abnormal entry count found on day 2016-12-03: -12582
WARNING. Abnormal entry count found on day 2016-12-10: -12580
WARNING. Abnormal entry count found on day 2016-12-10: -12580
WARNING. Abnormal entry count found on day 2016-12-17: -10888
WARNING. Abnormal entry count found on day 2016-12-17: -10888
WARNING. Abnormal entry count found on day 2016-12-24: -8971
WARNING. Abnormal entry count found on day 2016-12-24: -8971
Processing turnstile ('R527', 'R122', '00-03-02', '90 ST-ELMHURST')
WARNING. Abnormal entry count found on day 2016-12-03: -9774
WARNING. Abnormal entry count found on day 2016-12-03: -9774
WARNING. Abnormal entry count found on day 2016-12-10: -9877
WARNING. Abnormal entry count found on day 2016-12-10: -9877
WARNING. Abnormal entry count found on day 2016-12-17: -9912
WARNING. Abnormal entry count found on day 2016-12-17: -9912
WARNING. Abnormal entry count found on day 2016-12-24: -8266
WARNING. Abnormal entry count found on day 2016-12-24: -8266
Processing turnstile ('N420B', 'R317', '00-03-00', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -212
WARNING. Abnormal entry count found on day 2016-12-03: -212
WARNING. Abnormal entry count found on day 2016-12-10: -244
WARNING. Abnormal entry count found on day 2016-12-10: -244
WARNING. Abnormal entry count found on day 2016-12-17: -218
WARNING. Abnormal entry count found on day 2016-12-17: -218
WARNING. Abnormal entry count found on day 2016-12-24: -187
WARNING. Abnormal entry count found on day 2016-12-24: -187
Processing turnstile ('R532H', 'R328', '02-03-07', 'METS-WILLETS PT')
Processing turnstile ('R238', 'R046', '00-00-09', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -42153
WARNING. Abnormal entry count found on day 2016-12-03: -42153
WARNING. Abnormal entry count found on day 2016-12-10: -38935
WARNING. Abnormal entry count found on day 2016-12-10: -38935
WARNING. Abnormal entry count found on day 2016-12-17: -36469
WARNING. Abnormal entry count found on day 2016-12-17: -36469
WARNING. Abnormal entry count found on day 2016-12-24: -26643
WARNING. Abnormal entry count found on day 2016-12-24: -26643
Processing turnstile ('N046', 'R281', '00-00-01', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10036
WARNING. Abnormal entry count found on day 2016-12-03: -10036
WARNING. Abnormal entry count found on day 2016-12-10: -9556
WARNING. Abnormal entry count found on day 2016-12-10: -9556
WARNING. Abnormal entry count found on day 2016-12-17: -8746
WARNING. Abnormal entry count found on day 2016-12-17: -8746
WARNING. Abnormal entry count found on day 2016-12-24: -10049
WARNING. Abnormal entry count found on day 2016-12-24: -10049
Processing turnstile ('R504', 'R276', '00-00-03', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -17071
WARNING. Abnormal entry count found on day 2016-12-03: -17071
WARNING. Abnormal entry count found on day 2016-12-10: -16868
WARNING. Abnormal entry count found on day 2016-12-10: -16868
WARNING. Abnormal entry count found on day 2016-12-17: -15700
WARNING. Abnormal entry count found on day 2016-12-17: -15700
WARNING. Abnormal entry count found on day 2016-12-24: -10854
WARNING. Abnormal entry count found on day 2016-12-24: -10854
Processing turnstile ('A069', 'R044', '01-06-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1380
WARNING. Abnormal entry count found on day 2016-12-03: -1380
WARNING. Abnormal entry count found on day 2016-12-10: -1404
WARNING. Abnormal entry count found on day 2016-12-10: -1404
WARNING. Abnormal entry count found on day 2016-12-17: -1545
WARNING. Abnormal entry count found on day 2016-12-17: -1545
WARNING. Abnormal entry count found on day 2016-12-24: -852
WARNING. Abnormal entry count found on day 2016-12-24: -852
Processing turnstile ('R414', 'R162', '00-03-01', 'ELDER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13675
WARNING. Abnormal entry count found on day 2016-12-03: -13675
WARNING. Abnormal entry count found on day 2016-12-10: -11940
WARNING. Abnormal entry count found on day 2016-12-10: -11940
WARNING. Abnormal entry count found on day 2016-12-17: -12612
WARNING. Abnormal entry count found on day 2016-12-17: -12612
WARNING. Abnormal entry count found on day 2016-12-24: -10066
WARNING. Abnormal entry count found on day 2016-12-24: -10066
Processing turnstile ('R528', 'R097', '00-00-04', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -20946
WARNING. Abnormal entry count found on day 2016-12-03: -20946
WARNING. Abnormal entry count found on day 2016-12-10: -20120
WARNING. Abnormal entry count found on day 2016-12-10: -20120
WARNING. Abnormal entry count found on day 2016-12-17: -19419
WARNING. Abnormal entry count found on day 2016-12-17: -19419
WARNING. Abnormal entry count found on day 2016-12-24: -17093
WARNING. Abnormal entry count found on day 2016-12-24: -17093
Processing turnstile ('A015', 'R081', '00-03-01', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6853
WARNING. Abnormal entry count found on day 2016-12-03: -6853
WARNING. Abnormal entry count found on day 2016-12-10: -6758
WARNING. Abnormal entry count found on day 2016-12-10: -6758
WARNING. Abnormal entry count found on day 2016-12-17: -6232
WARNING. Abnormal entry count found on day 2016-12-17: -6232
WARNING. Abnormal entry count found on day 2016-12-24: -5923
WARNING. Abnormal entry count found on day 2016-12-24: -5923
Processing turnstile ('N022', 'R332', '02-06-00', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5610
WARNING. Abnormal entry count found on day 2016-12-03: -5610
WARNING. Abnormal entry count found on day 2016-12-10: -4420
WARNING. Abnormal entry count found on day 2016-12-10: -4420
WARNING. Abnormal entry count found on day 2016-12-17: -4696
WARNING. Abnormal entry count found on day 2016-12-17: -4696
WARNING. Abnormal entry count found on day 2016-12-24: -3256
WARNING. Abnormal entry count found on day 2016-12-24: -3256
Processing turnstile ('R178', 'R273', '00-00-00', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7431
WARNING. Abnormal entry count found on day 2016-12-03: -7431
WARNING. Abnormal entry count found on day 2016-12-10: -7381
WARNING. Abnormal entry count found on day 2016-12-10: -7381
WARNING. Abnormal entry count found on day 2016-12-17: -7729
WARNING. Abnormal entry count found on day 2016-12-17: -7729
WARNING. Abnormal entry count found on day 2016-12-24: -5063
WARNING. Abnormal entry count found on day 2016-12-24: -5063
Processing turnstile ('C022', 'R212', '01-05-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R240', 'R047', '00-03-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12945
WARNING. Abnormal entry count found on day 2016-12-03: -12945
WARNING. Abnormal entry count found on day 2016-12-10: -13499
WARNING. Abnormal entry count found on day 2016-12-10: -13499
WARNING. Abnormal entry count found on day 2016-12-17: -11376
WARNING. Abnormal entry count found on day 2016-12-17: -11376
WARNING. Abnormal entry count found on day 2016-12-24: -6926
WARNING. Abnormal entry count found on day 2016-12-24: -6926
Processing turnstile ('PTH01', 'R549', '00-00-07', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -3873
WARNING. Abnormal entry count found on day 2016-12-03: -3873
WARNING. Abnormal entry count found on day 2016-12-10: -3668
WARNING. Abnormal entry count found on day 2016-12-10: -3668
WARNING. Abnormal entry count found on day 2016-12-17: -2905
WARNING. Abnormal entry count found on day 2016-12-17: -2905
WARNING. Abnormal entry count found on day 2016-12-24: -2378
WARNING. Abnormal entry count found on day 2016-12-24: -2378
Processing turnstile ('R208', 'R014', '03-03-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -220
WARNING. Abnormal entry count found on day 2016-12-03: -220
WARNING. Abnormal entry count found on day 2016-12-10: -472
WARNING. Abnormal entry count found on day 2016-12-10: -472
WARNING. Abnormal entry count found on day 2016-12-17: -255
WARNING. Abnormal entry count found on day 2016-12-17: -255
WARNING. Abnormal entry count found on day 2016-12-24: -238
WARNING. Abnormal entry count found on day 2016-12-24: -238
Processing turnstile ('N073', 'R013', '02-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -7108
WARNING. Abnormal entry count found on day 2016-12-03: -7108
WARNING. Abnormal entry count found on day 2016-12-10: -6950
WARNING. Abnormal entry count found on day 2016-12-10: -6950
WARNING. Abnormal entry count found on day 2016-12-17: -6270
WARNING. Abnormal entry count found on day 2016-12-17: -6270
WARNING. Abnormal entry count found on day 2016-12-24: -4209
WARNING. Abnormal entry count found on day 2016-12-24: -4209
Processing turnstile ('J016', 'R381', '00-00-02', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19188
WARNING. Abnormal entry count found on day 2016-12-03: -19188
WARNING. Abnormal entry count found on day 2016-12-10: -18149
WARNING. Abnormal entry count found on day 2016-12-10: -18149
WARNING. Abnormal entry count found on day 2016-12-17: -17255
WARNING. Abnormal entry count found on day 2016-12-17: -17255
WARNING. Abnormal entry count found on day 2016-12-24: -12632
WARNING. Abnormal entry count found on day 2016-12-24: -12632
Processing turnstile ('N504', 'R021', '02-00-04', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -17472
WARNING. Abnormal entry count found on day 2016-12-03: -17472
WARNING. Abnormal entry count found on day 2016-12-10: -16744
WARNING. Abnormal entry count found on day 2016-12-10: -16744
WARNING. Abnormal entry count found on day 2016-12-17: -21767
WARNING. Abnormal entry count found on day 2016-12-17: -21767
WARNING. Abnormal entry count found on day 2016-12-24: -20130
WARNING. Abnormal entry count found on day 2016-12-24: -20130
Processing turnstile ('R628', 'R064', '00-00-03', 'SARATOGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6858
WARNING. Abnormal entry count found on day 2016-12-03: -6858
WARNING. Abnormal entry count found on day 2016-12-10: -7040
WARNING. Abnormal entry count found on day 2016-12-10: -7040
WARNING. Abnormal entry count found on day 2016-12-17: -6409
WARNING. Abnormal entry count found on day 2016-12-17: -6409
WARNING. Abnormal entry count found on day 2016-12-24: -5079
WARNING. Abnormal entry count found on day 2016-12-24: -5079
Processing turnstile ('H001', 'R175', '00-00-00', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -22679
WARNING. Abnormal entry count found on day 2016-12-03: -22679
WARNING. Abnormal entry count found on day 2016-12-10: -20960
WARNING. Abnormal entry count found on day 2016-12-10: -20960
WARNING. Abnormal entry count found on day 2016-12-17: -20734
WARNING. Abnormal entry count found on day 2016-12-17: -20734
WARNING. Abnormal entry count found on day 2016-12-24: -16879
WARNING. Abnormal entry count found on day 2016-12-24: -16879
Processing turnstile ('H013', 'R249', '01-00-00', 'GRAHAM AV')
WARNING. Abnormal entry count found on day 2016-12-03: -20807
WARNING. Abnormal entry count found on day 2016-12-03: -20807
WARNING. Abnormal entry count found on day 2016-12-10: -20255
WARNING. Abnormal entry count found on day 2016-12-10: -20255
WARNING. Abnormal entry count found on day 2016-12-17: -18089
WARNING. Abnormal entry count found on day 2016-12-17: -18089
WARNING. Abnormal entry count found on day 2016-12-24: -12146
WARNING. Abnormal entry count found on day 2016-12-24: -12146
Processing turnstile ('R121', 'R290', '01-06-00', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10937
WARNING. Abnormal entry count found on day 2016-12-03: -10937
WARNING. Abnormal entry count found on day 2016-12-10: -12391
WARNING. Abnormal entry count found on day 2016-12-10: -12391
WARNING. Abnormal entry count found on day 2016-12-17: -9243
WARNING. Abnormal entry count found on day 2016-12-17: -9243
WARNING. Abnormal entry count found on day 2016-12-24: -4836
WARNING. Abnormal entry count found on day 2016-12-24: -4836
Processing turnstile ('R133', 'R272', '00-00-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19658
WARNING. Abnormal entry count found on day 2016-12-03: -19658
WARNING. Abnormal entry count found on day 2016-12-10: -19657
WARNING. Abnormal entry count found on day 2016-12-10: -19657
WARNING. Abnormal entry count found on day 2016-12-17: -16057
WARNING. Abnormal entry count found on day 2016-12-17: -16057
WARNING. Abnormal entry count found on day 2016-12-24: -11248
WARNING. Abnormal entry count found on day 2016-12-24: -11248
Processing turnstile ('N060', 'R010', '01-00-03', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -9983
WARNING. Abnormal entry count found on day 2016-12-03: -9983
WARNING. Abnormal entry count found on day 2016-12-10: -10888
WARNING. Abnormal entry count found on day 2016-12-10: -10888
WARNING. Abnormal entry count found on day 2016-12-17: -9926
WARNING. Abnormal entry count found on day 2016-12-17: -9926
WARNING. Abnormal entry count found on day 2016-12-24: -9162
WARNING. Abnormal entry count found on day 2016-12-24: -9162
Processing turnstile ('N037', 'R314', '00-00-02', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4804
WARNING. Abnormal entry count found on day 2016-12-03: -4804
WARNING. Abnormal entry count found on day 2016-12-10: -4722
WARNING. Abnormal entry count found on day 2016-12-10: -4722
WARNING. Abnormal entry count found on day 2016-12-17: -4567
WARNING. Abnormal entry count found on day 2016-12-17: -4567
WARNING. Abnormal entry count found on day 2016-12-24: -3373
WARNING. Abnormal entry count found on day 2016-12-24: -3373
Processing turnstile ('R244A', 'R050', '01-00-03', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14945
WARNING. Abnormal entry count found on day 2016-12-03: -14945
WARNING. Abnormal entry count found on day 2016-12-10: -15271
WARNING. Abnormal entry count found on day 2016-12-10: -15271
WARNING. Abnormal entry count found on day 2016-12-17: -13227
WARNING. Abnormal entry count found on day 2016-12-17: -13227
WARNING. Abnormal entry count found on day 2016-12-24: -10070
WARNING. Abnormal entry count found on day 2016-12-24: -10070
Processing turnstile ('S102', 'R165', '00-03-02', 'TOMPKINSVILLE')
WARNING. Abnormal entry count found on day 2016-12-03: -548
WARNING. Abnormal entry count found on day 2016-12-03: -548
WARNING. Abnormal entry count found on day 2016-12-10: -791
WARNING. Abnormal entry count found on day 2016-12-10: -791
WARNING. Abnormal entry count found on day 2016-12-17: -796
WARNING. Abnormal entry count found on day 2016-12-17: -796
WARNING. Abnormal entry count found on day 2016-12-24: -379
WARNING. Abnormal entry count found on day 2016-12-24: -379
Processing turnstile ('N501A', 'R020', '02-00-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -8330
WARNING. Abnormal entry count found on day 2016-12-03: -8330
WARNING. Abnormal entry count found on day 2016-12-10: -8609
WARNING. Abnormal entry count found on day 2016-12-10: -8609
WARNING. Abnormal entry count found on day 2016-12-17: -8837
WARNING. Abnormal entry count found on day 2016-12-17: -8837
WARNING. Abnormal entry count found on day 2016-12-24: -7313
WARNING. Abnormal entry count found on day 2016-12-24: -7313
Processing turnstile ('R238A', 'R046', '02-03-02', 'GRD CNTRL-42 ST')
Processing turnstile ('N322', 'R340', '00-00-00', '65 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7661
WARNING. Abnormal entry count found on day 2016-12-03: -7661
WARNING. Abnormal entry count found on day 2016-12-10: -7474
WARNING. Abnormal entry count found on day 2016-12-10: -7474
WARNING. Abnormal entry count found on day 2016-12-17: -7454
WARNING. Abnormal entry count found on day 2016-12-17: -7454
WARNING. Abnormal entry count found on day 2016-12-24: -6095
WARNING. Abnormal entry count found on day 2016-12-24: -6095
Processing turnstile ('PTH10', 'R547', '00-00-04', '9TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -441
WARNING. Abnormal entry count found on day 2016-12-03: -441
WARNING. Abnormal entry count found on day 2016-12-10: -468
WARNING. Abnormal entry count found on day 2016-12-10: -468
WARNING. Abnormal entry count found on day 2016-12-17: -247
WARNING. Abnormal entry count found on day 2016-12-17: -247
WARNING. Abnormal entry count found on day 2016-12-24: -311
WARNING. Abnormal entry count found on day 2016-12-24: -311
Processing turnstile ('R111', 'R027', '00-00-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9327
WARNING. Abnormal entry count found on day 2016-12-03: -9327
WARNING. Abnormal entry count found on day 2016-12-10: -9240
WARNING. Abnormal entry count found on day 2016-12-10: -9240
WARNING. Abnormal entry count found on day 2016-12-17: -8133
WARNING. Abnormal entry count found on day 2016-12-17: -8133
WARNING. Abnormal entry count found on day 2016-12-24: -5898
WARNING. Abnormal entry count found on day 2016-12-24: -5898
Processing turnstile ('R727', 'R430', '00-00-01', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -7150
WARNING. Abnormal entry count found on day 2016-12-03: -7150
WARNING. Abnormal entry count found on day 2016-12-10: -6823
WARNING. Abnormal entry count found on day 2016-12-10: -6823
WARNING. Abnormal entry count found on day 2016-12-17: -6463
WARNING. Abnormal entry count found on day 2016-12-17: -6463
WARNING. Abnormal entry count found on day 2016-12-24: -4700
WARNING. Abnormal entry count found on day 2016-12-24: -4700
Processing turnstile ('N338', 'R128', '01-05-00', 'SUTPHIN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -5
WARNING. Abnormal entry count found on day 2016-12-10: -5
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N335', 'R158', '01-06-02', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -5046
WARNING. Abnormal entry count found on day 2016-12-03: -5046
WARNING. Abnormal entry count found on day 2016-12-10: -4996
WARNING. Abnormal entry count found on day 2016-12-10: -4996
WARNING. Abnormal entry count found on day 2016-12-17: -4186
WARNING. Abnormal entry count found on day 2016-12-17: -4186
WARNING. Abnormal entry count found on day 2016-12-24: -2762
WARNING. Abnormal entry count found on day 2016-12-24: -2762
Processing turnstile ('S101A', 'R070', '01-00-00', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -1012
WARNING. Abnormal entry count found on day 2016-12-03: -1012
WARNING. Abnormal entry count found on day 2016-12-10: -900
WARNING. Abnormal entry count found on day 2016-12-10: -900
WARNING. Abnormal entry count found on day 2016-12-17: -834
WARNING. Abnormal entry count found on day 2016-12-17: -834
WARNING. Abnormal entry count found on day 2016-12-24: -554
WARNING. Abnormal entry count found on day 2016-12-24: -554
Processing turnstile ('B023', 'R211', '01-05-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('N049', 'R084', '01-02-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -20865
WARNING. Abnormal entry count found on day 2016-12-03: -20865
WARNING. Abnormal entry count found on day 2016-12-10: -20441
WARNING. Abnormal entry count found on day 2016-12-10: -20441
WARNING. Abnormal entry count found on day 2016-12-17: -18995
WARNING. Abnormal entry count found on day 2016-12-17: -18995
WARNING. Abnormal entry count found on day 2016-12-24: -13346
WARNING. Abnormal entry count found on day 2016-12-24: -13346
Processing turnstile ('R203', 'R043', '00-00-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7875
WARNING. Abnormal entry count found on day 2016-12-03: -7875
WARNING. Abnormal entry count found on day 2016-12-10: -7582
WARNING. Abnormal entry count found on day 2016-12-10: -7582
WARNING. Abnormal entry count found on day 2016-12-17: -6274
WARNING. Abnormal entry count found on day 2016-12-17: -6274
WARNING. Abnormal entry count found on day 2016-12-24: -4292
WARNING. Abnormal entry count found on day 2016-12-24: -4292
Processing turnstile ('N019', 'R101', '01-00-00', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8353
WARNING. Abnormal entry count found on day 2016-12-03: -8353
WARNING. Abnormal entry count found on day 2016-12-10: -8548
WARNING. Abnormal entry count found on day 2016-12-10: -8548
WARNING. Abnormal entry count found on day 2016-12-17: -7708
WARNING. Abnormal entry count found on day 2016-12-17: -7708
WARNING. Abnormal entry count found on day 2016-12-24: -5970
WARNING. Abnormal entry count found on day 2016-12-24: -5970
Processing turnstile ('N092', 'R029', '03-00-02', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9295
WARNING. Abnormal entry count found on day 2016-12-03: -9295
WARNING. Abnormal entry count found on day 2016-12-10: -8122
WARNING. Abnormal entry count found on day 2016-12-10: -8122
WARNING. Abnormal entry count found on day 2016-12-17: -6810
WARNING. Abnormal entry count found on day 2016-12-17: -6810
WARNING. Abnormal entry count found on day 2016-12-24: -5630
WARNING. Abnormal entry count found on day 2016-12-24: -5630
Processing turnstile ('C023', 'R213', '00-00-02', 'BAY RIDGE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5571
WARNING. Abnormal entry count found on day 2016-12-03: -5571
WARNING. Abnormal entry count found on day 2016-12-10: -5765
WARNING. Abnormal entry count found on day 2016-12-10: -5765
WARNING. Abnormal entry count found on day 2016-12-17: -5675
WARNING. Abnormal entry count found on day 2016-12-17: -5675
WARNING. Abnormal entry count found on day 2016-12-24: -4217
WARNING. Abnormal entry count found on day 2016-12-24: -4217
Processing turnstile ('R210', 'R044', '00-03-02', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -10902
WARNING. Abnormal entry count found on day 2016-12-03: -10902
WARNING. Abnormal entry count found on day 2016-12-10: -10608
WARNING. Abnormal entry count found on day 2016-12-10: -10608
WARNING. Abnormal entry count found on day 2016-12-17: -10041
WARNING. Abnormal entry count found on day 2016-12-17: -10041
WARNING. Abnormal entry count found on day 2016-12-24: -8561
WARNING. Abnormal entry count found on day 2016-12-24: -8561
Processing turnstile ('N063', 'R011', '02-00-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -5566
WARNING. Abnormal entry count found on day 2016-12-03: -5566
WARNING. Abnormal entry count found on day 2016-12-10: -5574
WARNING. Abnormal entry count found on day 2016-12-10: -5574
WARNING. Abnormal entry count found on day 2016-12-17: -4857
WARNING. Abnormal entry count found on day 2016-12-17: -4857
WARNING. Abnormal entry count found on day 2016-12-24: -4291
WARNING. Abnormal entry count found on day 2016-12-24: -4291
Processing turnstile ('B010', 'R412', '00-00-00', 'BOTANIC GARDEN')
WARNING. Abnormal entry count found on day 2016-12-03: -6468
WARNING. Abnormal entry count found on day 2016-12-03: -6468
WARNING. Abnormal entry count found on day 2016-12-10: -6329
WARNING. Abnormal entry count found on day 2016-12-10: -6329
WARNING. Abnormal entry count found on day 2016-12-17: -5930
WARNING. Abnormal entry count found on day 2016-12-17: -5930
WARNING. Abnormal entry count found on day 2016-12-24: -2752
WARNING. Abnormal entry count found on day 2016-12-24: -2752
Processing turnstile ('A014', 'R081', '02-06-01', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -59
WARNING. Abnormal entry count found on day 2016-12-03: -59
WARNING. Abnormal entry count found on day 2016-12-10: -60
WARNING. Abnormal entry count found on day 2016-12-10: -60
WARNING. Abnormal entry count found on day 2016-12-17: -74
WARNING. Abnormal entry count found on day 2016-12-17: -74
WARNING. Abnormal entry count found on day 2016-12-24: -168
WARNING. Abnormal entry count found on day 2016-12-24: -168
Processing turnstile ('R238', 'R046', '00-00-05', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20294
WARNING. Abnormal entry count found on day 2016-12-03: -20294
WARNING. Abnormal entry count found on day 2016-12-10: -25071
WARNING. Abnormal entry count found on day 2016-12-10: -25071
WARNING. Abnormal entry count found on day 2016-12-17: -23608
WARNING. Abnormal entry count found on day 2016-12-17: -23608
WARNING. Abnormal entry count found on day 2016-12-24: -19848
WARNING. Abnormal entry count found on day 2016-12-24: -19848
Processing turnstile ('R128', 'R105', '01-03-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3029
WARNING. Abnormal entry count found on day 2016-12-03: -3029
WARNING. Abnormal entry count found on day 2016-12-10: -3111
WARNING. Abnormal entry count found on day 2016-12-10: -3111
WARNING. Abnormal entry count found on day 2016-12-17: -2451
WARNING. Abnormal entry count found on day 2016-12-17: -2451
WARNING. Abnormal entry count found on day 2016-12-24: -1590
WARNING. Abnormal entry count found on day 2016-12-24: -1590
Processing turnstile ('R169', 'R168', '01-03-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7226
WARNING. Abnormal entry count found on day 2016-12-03: -7226
WARNING. Abnormal entry count found on day 2016-12-10: -7557
WARNING. Abnormal entry count found on day 2016-12-10: -7557
WARNING. Abnormal entry count found on day 2016-12-17: -7206
WARNING. Abnormal entry count found on day 2016-12-17: -7206
WARNING. Abnormal entry count found on day 2016-12-24: -5677
WARNING. Abnormal entry count found on day 2016-12-24: -5677
Processing turnstile ('E016', 'R400', '00-00-02', 'BAY 50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6257
WARNING. Abnormal entry count found on day 2016-12-03: -6257
WARNING. Abnormal entry count found on day 2016-12-10: -5968
WARNING. Abnormal entry count found on day 2016-12-10: -5968
WARNING. Abnormal entry count found on day 2016-12-17: -5765
WARNING. Abnormal entry count found on day 2016-12-17: -5765
WARNING. Abnormal entry count found on day 2016-12-24: -4004
WARNING. Abnormal entry count found on day 2016-12-24: -4004
Processing turnstile ('R525', 'R018', '02-00-02', '74 ST-BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -10442
WARNING. Abnormal entry count found on day 2016-12-03: -10442
WARNING. Abnormal entry count found on day 2016-12-10: -9947
WARNING. Abnormal entry count found on day 2016-12-10: -9947
WARNING. Abnormal entry count found on day 2016-12-17: -10230
WARNING. Abnormal entry count found on day 2016-12-17: -10230
WARNING. Abnormal entry count found on day 2016-12-24: -9089
WARNING. Abnormal entry count found on day 2016-12-24: -9089
Processing turnstile ('R116', 'R030', '00-00-03', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6532
WARNING. Abnormal entry count found on day 2016-12-03: -6532
WARNING. Abnormal entry count found on day 2016-12-10: -6290
WARNING. Abnormal entry count found on day 2016-12-10: -6290
WARNING. Abnormal entry count found on day 2016-12-17: -5453
WARNING. Abnormal entry count found on day 2016-12-17: -5453
WARNING. Abnormal entry count found on day 2016-12-24: -3357
WARNING. Abnormal entry count found on day 2016-12-24: -3357
Processing turnstile ('R516', 'R291', '00-03-02', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9351
WARNING. Abnormal entry count found on day 2016-12-03: -9351
WARNING. Abnormal entry count found on day 2016-12-10: -8794
WARNING. Abnormal entry count found on day 2016-12-10: -8794
WARNING. Abnormal entry count found on day 2016-12-17: -7375
WARNING. Abnormal entry count found on day 2016-12-17: -7375
WARNING. Abnormal entry count found on day 2016-12-24: -4715
WARNING. Abnormal entry count found on day 2016-12-24: -4715
Processing turnstile ('R309', 'R345', '00-00-02', 'HARLEM 148 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8139
WARNING. Abnormal entry count found on day 2016-12-03: -8139
WARNING. Abnormal entry count found on day 2016-12-10: -8070
WARNING. Abnormal entry count found on day 2016-12-10: -8070
WARNING. Abnormal entry count found on day 2016-12-17: -7902
WARNING. Abnormal entry count found on day 2016-12-17: -7902
WARNING. Abnormal entry count found on day 2016-12-24: -5405
WARNING. Abnormal entry count found on day 2016-12-24: -5405
Processing turnstile ('B021', 'R228', '00-03-02', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -3503
WARNING. Abnormal entry count found on day 2016-12-03: -3503
WARNING. Abnormal entry count found on day 2016-12-10: -3372
WARNING. Abnormal entry count found on day 2016-12-10: -3372
WARNING. Abnormal entry count found on day 2016-12-17: -3078
WARNING. Abnormal entry count found on day 2016-12-17: -3078
WARNING. Abnormal entry count found on day 2016-12-24: -1985
WARNING. Abnormal entry count found on day 2016-12-24: -1985
Processing turnstile ('N220', 'R155', '01-00-02', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -4305
WARNING. Abnormal entry count found on day 2016-12-03: -4305
WARNING. Abnormal entry count found on day 2016-12-10: -4091
WARNING. Abnormal entry count found on day 2016-12-10: -4091
WARNING. Abnormal entry count found on day 2016-12-17: -3988
WARNING. Abnormal entry count found on day 2016-12-17: -3988
WARNING. Abnormal entry count found on day 2016-12-24: -3023
WARNING. Abnormal entry count found on day 2016-12-24: -3023
Processing turnstile ('C009', 'R057', '03-05-01', 'ATL AV-BARCLAY')
Processing turnstile ('N067', 'R012', '00-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -5582
WARNING. Abnormal entry count found on day 2016-12-03: -5582
WARNING. Abnormal entry count found on day 2016-12-10: -5694
WARNING. Abnormal entry count found on day 2016-12-10: -5694
WARNING. Abnormal entry count found on day 2016-12-17: -5124
WARNING. Abnormal entry count found on day 2016-12-17: -5124
WARNING. Abnormal entry count found on day 2016-12-24: -4340
WARNING. Abnormal entry count found on day 2016-12-24: -4340
Processing turnstile ('N605', 'R024', '00-00-05', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -15901
WARNING. Abnormal entry count found on day 2016-12-03: -15901
WARNING. Abnormal entry count found on day 2016-12-10: -15437
WARNING. Abnormal entry count found on day 2016-12-10: -15437
WARNING. Abnormal entry count found on day 2016-12-17: -15896
WARNING. Abnormal entry count found on day 2016-12-17: -15896
WARNING. Abnormal entry count found on day 2016-12-24: -14313
WARNING. Abnormal entry count found on day 2016-12-24: -14313
Processing turnstile ('R206', 'R014', '02-05-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('E014', 'R374', '00-05-00', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10
WARNING. Abnormal entry count found on day 2016-12-03: -10
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-17: -5
WARNING. Abnormal entry count found on day 2016-12-17: -5
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('A041', 'R086', '00-00-00', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14739
WARNING. Abnormal entry count found on day 2016-12-03: -14739
WARNING. Abnormal entry count found on day 2016-12-10: -14912
WARNING. Abnormal entry count found on day 2016-12-10: -14912
WARNING. Abnormal entry count found on day 2016-12-17: -16033
WARNING. Abnormal entry count found on day 2016-12-17: -16033
WARNING. Abnormal entry count found on day 2016-12-24: -13230
WARNING. Abnormal entry count found on day 2016-12-24: -13230
Processing turnstile ('PTH20', 'R549', '03-01-00', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -77
WARNING. Abnormal entry count found on day 2016-12-03: -77
WARNING. Abnormal entry count found on day 2016-12-10: -199
WARNING. Abnormal entry count found on day 2016-12-10: -199
WARNING. Abnormal entry count found on day 2016-12-17: -245
WARNING. Abnormal entry count found on day 2016-12-17: -245
WARNING. Abnormal entry count found on day 2016-12-24: -173
WARNING. Abnormal entry count found on day 2016-12-24: -173
Processing turnstile ('N060', 'R010', '01-00-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -9459
WARNING. Abnormal entry count found on day 2016-12-03: -9459
WARNING. Abnormal entry count found on day 2016-12-10: -10050
WARNING. Abnormal entry count found on day 2016-12-10: -10050
WARNING. Abnormal entry count found on day 2016-12-17: -9678
WARNING. Abnormal entry count found on day 2016-12-17: -9678
WARNING. Abnormal entry count found on day 2016-12-24: -8948
WARNING. Abnormal entry count found on day 2016-12-24: -8948
Processing turnstile ('N311', 'R339', '01-00-01', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1038
WARNING. Abnormal entry count found on day 2016-12-03: -1038
WARNING. Abnormal entry count found on day 2016-12-10: -1382
WARNING. Abnormal entry count found on day 2016-12-10: -1382
WARNING. Abnormal entry count found on day 2016-12-17: -1360
WARNING. Abnormal entry count found on day 2016-12-17: -1360
WARNING. Abnormal entry count found on day 2016-12-24: -977
WARNING. Abnormal entry count found on day 2016-12-24: -977
Processing turnstile ('N098', 'R028', '00-06-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10407
WARNING. Abnormal entry count found on day 2016-12-03: -10407
WARNING. Abnormal entry count found on day 2016-12-10: -10665
WARNING. Abnormal entry count found on day 2016-12-10: -10665
WARNING. Abnormal entry count found on day 2016-12-17: -8915
WARNING. Abnormal entry count found on day 2016-12-17: -8915
WARNING. Abnormal entry count found on day 2016-12-24: -6200
WARNING. Abnormal entry count found on day 2016-12-24: -6200
Processing turnstile ('N324', 'R018', '00-02-01', 'JKSN HT-ROOSVLT')
Processing turnstile ('N333B', 'R141', '02-00-02', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -12421
WARNING. Abnormal entry count found on day 2016-12-03: -12421
WARNING. Abnormal entry count found on day 2016-12-10: -11889
WARNING. Abnormal entry count found on day 2016-12-10: -11889
WARNING. Abnormal entry count found on day 2016-12-17: -11695
WARNING. Abnormal entry count found on day 2016-12-17: -11695
WARNING. Abnormal entry count found on day 2016-12-24: -8929
WARNING. Abnormal entry count found on day 2016-12-24: -8929
Processing turnstile ('H006', 'R330', '01-00-00', '3 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12868
WARNING. Abnormal entry count found on day 2016-12-03: -12868
WARNING. Abnormal entry count found on day 2016-12-10: -12325
WARNING. Abnormal entry count found on day 2016-12-10: -12325
WARNING. Abnormal entry count found on day 2016-12-17: -10829
WARNING. Abnormal entry count found on day 2016-12-17: -10829
WARNING. Abnormal entry count found on day 2016-12-24: -7873
WARNING. Abnormal entry count found on day 2016-12-24: -7873
Processing turnstile ('R610', 'R057', '00-05-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -28
WARNING. Abnormal entry count found on day 2016-12-03: -28
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-17: -30
WARNING. Abnormal entry count found on day 2016-12-17: -30
WARNING. Abnormal entry count found on day 2016-12-24: -18
WARNING. Abnormal entry count found on day 2016-12-24: -18
Processing turnstile ('R600', 'R224', '00-00-03', 'CLARK ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12987
WARNING. Abnormal entry count found on day 2016-12-03: -12987
WARNING. Abnormal entry count found on day 2016-12-10: -12755
WARNING. Abnormal entry count found on day 2016-12-10: -12755
WARNING. Abnormal entry count found on day 2016-12-17: -10607
WARNING. Abnormal entry count found on day 2016-12-17: -10607
WARNING. Abnormal entry count found on day 2016-12-24: -7295
WARNING. Abnormal entry count found on day 2016-12-24: -7295
Processing turnstile ('N412', 'R299', '00-00-01', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -6400
WARNING. Abnormal entry count found on day 2016-12-03: -6400
WARNING. Abnormal entry count found on day 2016-12-10: -6204
WARNING. Abnormal entry count found on day 2016-12-10: -6204
WARNING. Abnormal entry count found on day 2016-12-17: -5881
WARNING. Abnormal entry count found on day 2016-12-17: -5881
WARNING. Abnormal entry count found on day 2016-12-24: -4193
WARNING. Abnormal entry count found on day 2016-12-24: -4193
Processing turnstile ('R606', 'R225', '00-00-02', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4563
WARNING. Abnormal entry count found on day 2016-12-03: -4563
WARNING. Abnormal entry count found on day 2016-12-10: -4554
WARNING. Abnormal entry count found on day 2016-12-10: -4554
WARNING. Abnormal entry count found on day 2016-12-17: -4803
WARNING. Abnormal entry count found on day 2016-12-17: -4803
WARNING. Abnormal entry count found on day 2016-12-24: -2972
WARNING. Abnormal entry count found on day 2016-12-24: -2972
Processing turnstile ('A014', 'R081', '02-00-02', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6055
WARNING. Abnormal entry count found on day 2016-12-03: -6055
WARNING. Abnormal entry count found on day 2016-12-10: -6044
WARNING. Abnormal entry count found on day 2016-12-10: -6044
WARNING. Abnormal entry count found on day 2016-12-17: -5424
WARNING. Abnormal entry count found on day 2016-12-17: -5424
WARNING. Abnormal entry count found on day 2016-12-24: -6792
WARNING. Abnormal entry count found on day 2016-12-24: -6792
Processing turnstile ('J001', 'R460', '01-05-00', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('R287', 'R244', '00-05-00', 'BURNSIDE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11873
WARNING. Abnormal entry count found on day 2016-12-03: -11873
WARNING. Abnormal entry count found on day 2016-12-10: -7779
WARNING. Abnormal entry count found on day 2016-12-10: -7779
WARNING. Abnormal entry count found on day 2016-12-17: -866
WARNING. Abnormal entry count found on day 2016-12-17: -866
WARNING. Abnormal entry count found on day 2016-12-24: -6045
WARNING. Abnormal entry count found on day 2016-12-24: -6045
Processing turnstile ('PTH16', 'R550', '01-01-07', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -6660
WARNING. Abnormal entry count found on day 2016-12-03: -6660
WARNING. Abnormal entry count found on day 2016-12-10: -7017
WARNING. Abnormal entry count found on day 2016-12-10: -7017
WARNING. Abnormal entry count found on day 2016-12-17: -5030
WARNING. Abnormal entry count found on day 2016-12-17: -5030
WARNING. Abnormal entry count found on day 2016-12-24: -3374
WARNING. Abnormal entry count found on day 2016-12-24: -3374
Processing turnstile ('N330', 'R202', '00-03-02', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -1327
WARNING. Abnormal entry count found on day 2016-12-03: -1327
WARNING. Abnormal entry count found on day 2016-12-10: -1307
WARNING. Abnormal entry count found on day 2016-12-10: -1307
WARNING. Abnormal entry count found on day 2016-12-17: -1258
WARNING. Abnormal entry count found on day 2016-12-17: -1258
WARNING. Abnormal entry count found on day 2016-12-24: -838
WARNING. Abnormal entry count found on day 2016-12-24: -838
Processing turnstile ('C018', 'R197', '00-00-05', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19563
WARNING. Abnormal entry count found on day 2016-12-03: -19563
WARNING. Abnormal entry count found on day 2016-12-10: -16299
WARNING. Abnormal entry count found on day 2016-12-10: -16299
WARNING. Abnormal entry count found on day 2016-12-17: -16686
WARNING. Abnormal entry count found on day 2016-12-17: -16686
WARNING. Abnormal entry count found on day 2016-12-24: -12792
WARNING. Abnormal entry count found on day 2016-12-24: -12792
Processing turnstile ('N212', 'R253', '01-06-02', '174-175 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -1194
WARNING. Abnormal entry count found on day 2016-12-03: -1194
WARNING. Abnormal entry count found on day 2016-12-10: -1137
WARNING. Abnormal entry count found on day 2016-12-10: -1137
WARNING. Abnormal entry count found on day 2016-12-17: -1162
WARNING. Abnormal entry count found on day 2016-12-17: -1162
WARNING. Abnormal entry count found on day 2016-12-24: -912
WARNING. Abnormal entry count found on day 2016-12-24: -912
Processing turnstile ('N049', 'R084', '01-06-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -988
WARNING. Abnormal entry count found on day 2016-12-03: -988
WARNING. Abnormal entry count found on day 2016-12-10: -962
WARNING. Abnormal entry count found on day 2016-12-10: -962
WARNING. Abnormal entry count found on day 2016-12-17: -906
WARNING. Abnormal entry count found on day 2016-12-17: -906
WARNING. Abnormal entry count found on day 2016-12-24: -1024
WARNING. Abnormal entry count found on day 2016-12-24: -1024
Processing turnstile ('A016', 'R081', '03-00-00', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6936
WARNING. Abnormal entry count found on day 2016-12-03: -6936
WARNING. Abnormal entry count found on day 2016-12-10: -7215
WARNING. Abnormal entry count found on day 2016-12-10: -7215
WARNING. Abnormal entry count found on day 2016-12-17: -7126
WARNING. Abnormal entry count found on day 2016-12-17: -7126
WARNING. Abnormal entry count found on day 2016-12-24: -7738
WARNING. Abnormal entry count found on day 2016-12-24: -7738
Processing turnstile ('S101', 'R070', '00-00-01', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -3078
WARNING. Abnormal entry count found on day 2016-12-03: -3078
WARNING. Abnormal entry count found on day 2016-12-10: -2794
WARNING. Abnormal entry count found on day 2016-12-10: -2794
WARNING. Abnormal entry count found on day 2016-12-17: -2705
WARNING. Abnormal entry count found on day 2016-12-17: -2705
WARNING. Abnormal entry count found on day 2016-12-24: -1940
WARNING. Abnormal entry count found on day 2016-12-24: -1940
Processing turnstile ('N070', 'R012', '04-05-01', '34 ST-PENN STA')
Processing turnstile ('PTH16', 'R550', '01-00-07', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -1985
WARNING. Abnormal entry count found on day 2016-12-03: -1985
WARNING. Abnormal entry count found on day 2016-12-10: -1616
WARNING. Abnormal entry count found on day 2016-12-10: -1616
WARNING. Abnormal entry count found on day 2016-12-17: -1724
WARNING. Abnormal entry count found on day 2016-12-17: -1724
WARNING. Abnormal entry count found on day 2016-12-24: -981
WARNING. Abnormal entry count found on day 2016-12-24: -981
Processing turnstile ('PTH05', 'R543', '00-01-06', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -4648
WARNING. Abnormal entry count found on day 2016-12-03: -4648
WARNING. Abnormal entry count found on day 2016-12-10: -6072
WARNING. Abnormal entry count found on day 2016-12-10: -6072
WARNING. Abnormal entry count found on day 2016-12-17: -5597
WARNING. Abnormal entry count found on day 2016-12-17: -5597
WARNING. Abnormal entry count found on day 2016-12-24: -3432
WARNING. Abnormal entry count found on day 2016-12-24: -3432
Processing turnstile ('A030', 'R083', '01-03-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14549
WARNING. Abnormal entry count found on day 2016-12-03: -14549
WARNING. Abnormal entry count found on day 2016-12-10: -15315
WARNING. Abnormal entry count found on day 2016-12-10: -15315
WARNING. Abnormal entry count found on day 2016-12-17: -11713
WARNING. Abnormal entry count found on day 2016-12-17: -11713
WARNING. Abnormal entry count found on day 2016-12-24: -7815
WARNING. Abnormal entry count found on day 2016-12-24: -7815
Processing turnstile ('PTH06', 'R546', '00-00-07', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -6390
WARNING. Abnormal entry count found on day 2016-12-03: -6390
WARNING. Abnormal entry count found on day 2016-12-10: -6751
WARNING. Abnormal entry count found on day 2016-12-10: -6751
WARNING. Abnormal entry count found on day 2016-12-17: -6358
WARNING. Abnormal entry count found on day 2016-12-17: -6358
WARNING. Abnormal entry count found on day 2016-12-27: -735955
WARNING. Abnormal entry count found on day 2016-12-24: 731970
WARNING. Abnormal entry count found on day 2016-12-27: -735955
WARNING. Abnormal entry count found on day 2016-12-24: 731970
WARNING. Abnormal entry count found on day 2016-12-27: -735955
Processing turnstile ('N509', 'R203', '00-00-04', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22299
WARNING. Abnormal entry count found on day 2016-12-03: -22299
WARNING. Abnormal entry count found on day 2016-12-10: -22283
WARNING. Abnormal entry count found on day 2016-12-10: -22283
WARNING. Abnormal entry count found on day 2016-12-17: -19716
WARNING. Abnormal entry count found on day 2016-12-17: -19716
WARNING. Abnormal entry count found on day 2016-12-24: -12837
WARNING. Abnormal entry count found on day 2016-12-24: -12837
Processing turnstile ('J021', 'R434', '00-00-02', 'VAN SICLEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7711
WARNING. Abnormal entry count found on day 2016-12-03: -7711
WARNING. Abnormal entry count found on day 2016-12-10: -7266
WARNING. Abnormal entry count found on day 2016-12-10: -7266
WARNING. Abnormal entry count found on day 2016-12-17: -7237
WARNING. Abnormal entry count found on day 2016-12-17: -7237
WARNING. Abnormal entry count found on day 2016-12-24: -5874
WARNING. Abnormal entry count found on day 2016-12-24: -5874
Processing turnstile ('R237', 'R046', '01-00-06', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10985
WARNING. Abnormal entry count found on day 2016-12-03: -10985
WARNING. Abnormal entry count found on day 2016-12-10: -10978
WARNING. Abnormal entry count found on day 2016-12-10: -10978
WARNING. Abnormal entry count found on day 2016-12-17: -9180
WARNING. Abnormal entry count found on day 2016-12-17: -9180
WARNING. Abnormal entry count found on day 2016-12-24: -5516
WARNING. Abnormal entry count found on day 2016-12-24: -5516
Processing turnstile ('N420B', 'R317', '00-00-00', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -287
WARNING. Abnormal entry count found on day 2016-12-03: -287
WARNING. Abnormal entry count found on day 2016-12-10: -305
WARNING. Abnormal entry count found on day 2016-12-10: -305
WARNING. Abnormal entry count found on day 2016-12-17: -298
WARNING. Abnormal entry count found on day 2016-12-17: -298
WARNING. Abnormal entry count found on day 2016-12-24: -233
WARNING. Abnormal entry count found on day 2016-12-24: -233
Processing turnstile ('R206', 'R014', '02-03-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3036
WARNING. Abnormal entry count found on day 2016-12-03: -3036
WARNING. Abnormal entry count found on day 2016-12-10: -3150
WARNING. Abnormal entry count found on day 2016-12-10: -3150
WARNING. Abnormal entry count found on day 2016-12-17: -3010
WARNING. Abnormal entry count found on day 2016-12-17: -3010
WARNING. Abnormal entry count found on day 2016-12-24: -2219
WARNING. Abnormal entry count found on day 2016-12-24: -2219
Processing turnstile ('N504', 'R021', '02-00-03', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -15096
WARNING. Abnormal entry count found on day 2016-12-03: -15096
WARNING. Abnormal entry count found on day 2016-12-10: -15055
WARNING. Abnormal entry count found on day 2016-12-10: -15055
WARNING. Abnormal entry count found on day 2016-12-17: -16250
WARNING. Abnormal entry count found on day 2016-12-17: -16250
WARNING. Abnormal entry count found on day 2016-12-24: -13327
WARNING. Abnormal entry count found on day 2016-12-24: -13327
Processing turnstile ('R210', 'R044', '00-06-00', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -13544
WARNING. Abnormal entry count found on day 2016-12-03: -13544
WARNING. Abnormal entry count found on day 2016-12-10: -12779
WARNING. Abnormal entry count found on day 2016-12-10: -12779
WARNING. Abnormal entry count found on day 2016-12-17: -10982
WARNING. Abnormal entry count found on day 2016-12-17: -10982
WARNING. Abnormal entry count found on day 2016-12-24: -6718
WARNING. Abnormal entry count found on day 2016-12-24: -6718
Processing turnstile ('R532H', 'R328', '02-00-05', 'METS-WILLETS PT')
Processing turnstile ('A069', 'R044', '01-06-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3048
WARNING. Abnormal entry count found on day 2016-12-03: -3048
WARNING. Abnormal entry count found on day 2016-12-10: -2977
WARNING. Abnormal entry count found on day 2016-12-10: -2977
WARNING. Abnormal entry count found on day 2016-12-17: -2157
WARNING. Abnormal entry count found on day 2016-12-17: -2157
WARNING. Abnormal entry count found on day 2016-12-24: -1900
WARNING. Abnormal entry count found on day 2016-12-24: -1900
Processing turnstile ('N533', 'R129', '02-06-01', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15453
WARNING. Abnormal entry count found on day 2016-12-03: -15453
WARNING. Abnormal entry count found on day 2016-12-10: -15003
WARNING. Abnormal entry count found on day 2016-12-10: -15003
WARNING. Abnormal entry count found on day 2016-12-17: -12653
WARNING. Abnormal entry count found on day 2016-12-17: -12653
WARNING. Abnormal entry count found on day 2016-12-24: -8230
WARNING. Abnormal entry count found on day 2016-12-24: -8230
Processing turnstile ('A014', 'R081', '02-00-01', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7714
WARNING. Abnormal entry count found on day 2016-12-03: -7714
WARNING. Abnormal entry count found on day 2016-12-10: -8231
WARNING. Abnormal entry count found on day 2016-12-10: -8231
WARNING. Abnormal entry count found on day 2016-12-17: -8037
WARNING. Abnormal entry count found on day 2016-12-17: -8037
WARNING. Abnormal entry count found on day 2016-12-24: -7925
WARNING. Abnormal entry count found on day 2016-12-24: -7925
Processing turnstile ('N501', 'R020', '01-00-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -13040
WARNING. Abnormal entry count found on day 2016-12-03: -13040
WARNING. Abnormal entry count found on day 2016-12-10: -13360
WARNING. Abnormal entry count found on day 2016-12-10: -13360
WARNING. Abnormal entry count found on day 2016-12-17: -11831
WARNING. Abnormal entry count found on day 2016-12-17: -11831
WARNING. Abnormal entry count found on day 2016-12-24: -8484
WARNING. Abnormal entry count found on day 2016-12-24: -8484
Processing turnstile ('G011', 'R312', '00-00-01', 'W 8 ST-AQUARIUM')
WARNING. Abnormal entry count found on day 2016-12-03: -1171
WARNING. Abnormal entry count found on day 2016-12-03: -1171
WARNING. Abnormal entry count found on day 2016-12-10: -1091
WARNING. Abnormal entry count found on day 2016-12-10: -1091
WARNING. Abnormal entry count found on day 2016-12-17: -1258
WARNING. Abnormal entry count found on day 2016-12-17: -1258
WARNING. Abnormal entry count found on day 2016-12-24: -1193
WARNING. Abnormal entry count found on day 2016-12-24: -1193
Processing turnstile ('R118', 'R343', '01-00-01', 'FRANKLIN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1763
WARNING. Abnormal entry count found on day 2016-12-03: -1763
WARNING. Abnormal entry count found on day 2016-12-10: -1709
WARNING. Abnormal entry count found on day 2016-12-10: -1709
WARNING. Abnormal entry count found on day 2016-12-17: -1452
WARNING. Abnormal entry count found on day 2016-12-17: -1452
WARNING. Abnormal entry count found on day 2016-12-24: -1029
WARNING. Abnormal entry count found on day 2016-12-24: -1029
Processing turnstile ('R229', 'R143', '01-00-04', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10450
WARNING. Abnormal entry count found on day 2016-12-03: -10450
WARNING. Abnormal entry count found on day 2016-12-10: -10460
WARNING. Abnormal entry count found on day 2016-12-10: -10460
WARNING. Abnormal entry count found on day 2016-12-17: -8630
WARNING. Abnormal entry count found on day 2016-12-17: -8630
WARNING. Abnormal entry count found on day 2016-12-24: -5940
WARNING. Abnormal entry count found on day 2016-12-24: -5940
Processing turnstile ('R203A', 'R043', '01-05-01', 'WALL ST')
Processing turnstile ('R644', 'R135', '01-06-01', 'NEWKIRK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -516
WARNING. Abnormal entry count found on day 2016-12-03: -516
WARNING. Abnormal entry count found on day 2016-12-10: -491
WARNING. Abnormal entry count found on day 2016-12-10: -491
WARNING. Abnormal entry count found on day 2016-12-17: -515
WARNING. Abnormal entry count found on day 2016-12-17: -515
WARNING. Abnormal entry count found on day 2016-12-24: -405
WARNING. Abnormal entry count found on day 2016-12-24: -405
Processing turnstile ('N035', 'R334', '00-00-02', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -6417
WARNING. Abnormal entry count found on day 2016-12-03: -6417
WARNING. Abnormal entry count found on day 2016-12-10: -6195
WARNING. Abnormal entry count found on day 2016-12-10: -6195
WARNING. Abnormal entry count found on day 2016-12-17: -5968
WARNING. Abnormal entry count found on day 2016-12-17: -5968
WARNING. Abnormal entry count found on day 2016-12-24: -4829
WARNING. Abnormal entry count found on day 2016-12-24: -4829
Processing turnstile ('N090', 'R139', '01-03-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17719
WARNING. Abnormal entry count found on day 2016-12-03: -17719
WARNING. Abnormal entry count found on day 2016-12-10: -17266
WARNING. Abnormal entry count found on day 2016-12-10: -17266
WARNING. Abnormal entry count found on day 2016-12-17: -14612
WARNING. Abnormal entry count found on day 2016-12-17: -14612
WARNING. Abnormal entry count found on day 2016-12-24: -8819
WARNING. Abnormal entry count found on day 2016-12-24: -8819
Processing turnstile ('R527', 'R122', '00-00-00', '90 ST-ELMHURST')
WARNING. Abnormal entry count found on day 2016-12-03: -2440
WARNING. Abnormal entry count found on day 2016-12-03: -2440
WARNING. Abnormal entry count found on day 2016-12-10: -2746
WARNING. Abnormal entry count found on day 2016-12-10: -2746
WARNING. Abnormal entry count found on day 2016-12-17: -3002
WARNING. Abnormal entry count found on day 2016-12-17: -3002
WARNING. Abnormal entry count found on day 2016-12-24: -1893
WARNING. Abnormal entry count found on day 2016-12-24: -1893
Processing turnstile ('R185', 'R274', '00-00-00', '191 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9290
WARNING. Abnormal entry count found on day 2016-12-03: -9290
WARNING. Abnormal entry count found on day 2016-12-10: -9190
WARNING. Abnormal entry count found on day 2016-12-10: -9190
WARNING. Abnormal entry count found on day 2016-12-17: -9147
WARNING. Abnormal entry count found on day 2016-12-17: -9147
WARNING. Abnormal entry count found on day 2016-12-24: -6868
WARNING. Abnormal entry count found on day 2016-12-24: -6868
Processing turnstile ('N181', 'R357', '00-06-00', 'AQUEDUCT N.COND')
WARNING. Abnormal entry count found on day 2016-12-03: -540
WARNING. Abnormal entry count found on day 2016-12-03: -540
WARNING. Abnormal entry count found on day 2016-12-10: -490
WARNING. Abnormal entry count found on day 2016-12-10: -490
WARNING. Abnormal entry count found on day 2016-12-17: -444
WARNING. Abnormal entry count found on day 2016-12-17: -444
WARNING. Abnormal entry count found on day 2016-12-24: -440
WARNING. Abnormal entry count found on day 2016-12-24: -440
Processing turnstile ('N319', 'R298', '01-06-00', 'NORTHERN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -1534
WARNING. Abnormal entry count found on day 2016-12-03: -1534
WARNING. Abnormal entry count found on day 2016-12-10: -1497
WARNING. Abnormal entry count found on day 2016-12-10: -1497
WARNING. Abnormal entry count found on day 2016-12-17: -1563
WARNING. Abnormal entry count found on day 2016-12-17: -1563
WARNING. Abnormal entry count found on day 2016-12-24: -1242
WARNING. Abnormal entry count found on day 2016-12-24: -1242
Processing turnstile ('R635', 'R277', '00-00-01', 'PRESIDENT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7037
WARNING. Abnormal entry count found on day 2016-12-03: -7037
WARNING. Abnormal entry count found on day 2016-12-10: -6826
WARNING. Abnormal entry count found on day 2016-12-10: -6826
WARNING. Abnormal entry count found on day 2016-12-17: -6284
WARNING. Abnormal entry count found on day 2016-12-17: -6284
WARNING. Abnormal entry count found on day 2016-12-24: -4365
WARNING. Abnormal entry count found on day 2016-12-24: -4365
Processing turnstile ('N536', 'R270', '00-00-02', 'SMITH-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7426
WARNING. Abnormal entry count found on day 2016-12-03: -7426
WARNING. Abnormal entry count found on day 2016-12-10: -7406
WARNING. Abnormal entry count found on day 2016-12-10: -7406
WARNING. Abnormal entry count found on day 2016-12-17: -7270
WARNING. Abnormal entry count found on day 2016-12-17: -7270
WARNING. Abnormal entry count found on day 2016-12-24: -5278
WARNING. Abnormal entry count found on day 2016-12-24: -5278
Processing turnstile ('R319', 'R409', '01-00-02', 'FREEMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2179
WARNING. Abnormal entry count found on day 2016-12-03: -2179
WARNING. Abnormal entry count found on day 2016-12-10: -1331
WARNING. Abnormal entry count found on day 2016-12-10: -1331
WARNING. Abnormal entry count found on day 2016-12-17: -1625
WARNING. Abnormal entry count found on day 2016-12-17: -1625
WARNING. Abnormal entry count found on day 2016-12-24: -1086
WARNING. Abnormal entry count found on day 2016-12-24: -1086
Processing turnstile ('R511', 'R091', '00-00-00', '36 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -17687
WARNING. Abnormal entry count found on day 2016-12-03: -17687
WARNING. Abnormal entry count found on day 2016-12-10: -16781
WARNING. Abnormal entry count found on day 2016-12-10: -16781
WARNING. Abnormal entry count found on day 2016-12-17: -15496
WARNING. Abnormal entry count found on day 2016-12-17: -15496
WARNING. Abnormal entry count found on day 2016-12-24: -11906
WARNING. Abnormal entry count found on day 2016-12-24: -11906
Processing turnstile ('N103', 'R127', '00-02-01', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -19846
WARNING. Abnormal entry count found on day 2016-12-03: -19846
WARNING. Abnormal entry count found on day 2016-12-10: -19519
WARNING. Abnormal entry count found on day 2016-12-10: -19519
WARNING. Abnormal entry count found on day 2016-12-17: -16362
WARNING. Abnormal entry count found on day 2016-12-17: -16362
WARNING. Abnormal entry count found on day 2016-12-24: -11930
WARNING. Abnormal entry count found on day 2016-12-24: -11930
Processing turnstile ('R315', 'R406', '01-00-02', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2402
WARNING. Abnormal entry count found on day 2016-12-03: -2402
WARNING. Abnormal entry count found on day 2016-12-10: -2056
WARNING. Abnormal entry count found on day 2016-12-10: -2056
WARNING. Abnormal entry count found on day 2016-12-18: -85673
WARNING. Abnormal entry count found on day 2016-12-17: 83748
WARNING. Abnormal entry count found on day 2016-12-18: -85673
WARNING. Abnormal entry count found on day 2016-12-17: 83748
WARNING. Abnormal entry count found on day 2016-12-18: -85673
WARNING. Abnormal entry count found on day 2016-12-24: -1293
WARNING. Abnormal entry count found on day 2016-12-24: -1293
Processing turnstile ('H039', 'R375', '00-00-01', 'NEW LOTS')
WARNING. Abnormal entry count found on day 2016-12-03: -10701
WARNING. Abnormal entry count found on day 2016-12-03: -10701
WARNING. Abnormal entry count found on day 2016-12-10: -10299
WARNING. Abnormal entry count found on day 2016-12-10: -10299
WARNING. Abnormal entry count found on day 2016-12-17: -10056
WARNING. Abnormal entry count found on day 2016-12-17: -10056
WARNING. Abnormal entry count found on day 2016-12-24: -7519
WARNING. Abnormal entry count found on day 2016-12-24: -7519
Processing turnstile ('E015', 'R399', '00-00-01', '25 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11007
WARNING. Abnormal entry count found on day 2016-12-03: -11007
WARNING. Abnormal entry count found on day 2016-12-10: -10593
WARNING. Abnormal entry count found on day 2016-12-10: -10593
WARNING. Abnormal entry count found on day 2016-12-17: -9444
WARNING. Abnormal entry count found on day 2016-12-17: -9444
WARNING. Abnormal entry count found on day 2016-12-24: -7554
WARNING. Abnormal entry count found on day 2016-12-24: -7554
Processing turnstile ('R130', 'R321', '01-06-00', '18 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1593
WARNING. Abnormal entry count found on day 2016-12-03: -1593
WARNING. Abnormal entry count found on day 2016-12-10: -1645
WARNING. Abnormal entry count found on day 2016-12-10: -1645
WARNING. Abnormal entry count found on day 2016-12-17: -1355
WARNING. Abnormal entry count found on day 2016-12-17: -1355
WARNING. Abnormal entry count found on day 2016-12-24: -780
WARNING. Abnormal entry count found on day 2016-12-24: -780
Processing turnstile ('N092', 'R029', '03-00-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9790
WARNING. Abnormal entry count found on day 2016-12-03: -9790
WARNING. Abnormal entry count found on day 2016-12-10: -8786
WARNING. Abnormal entry count found on day 2016-12-10: -8786
WARNING. Abnormal entry count found on day 2016-12-17: -7958
WARNING. Abnormal entry count found on day 2016-12-17: -7958
WARNING. Abnormal entry count found on day 2016-12-24: -5789
WARNING. Abnormal entry count found on day 2016-12-24: -5789
Processing turnstile ('PTH13', 'R541', '00-04-08', 'THIRTY ST')
Processing turnstile ('S102', 'R165', '00-03-00', 'TOMPKINSVILLE')
WARNING. Abnormal entry count found on day 2016-12-03: -1108
WARNING. Abnormal entry count found on day 2016-12-03: -1108
WARNING. Abnormal entry count found on day 2016-12-10: -1466
WARNING. Abnormal entry count found on day 2016-12-10: -1466
WARNING. Abnormal entry count found on day 2016-12-17: -1453
WARNING. Abnormal entry count found on day 2016-12-17: -1453
WARNING. Abnormal entry count found on day 2016-12-24: -762
WARNING. Abnormal entry count found on day 2016-12-24: -762
Processing turnstile ('B022', 'R229', '00-05-02', 'AVENUE M')
WARNING. Abnormal entry count found on day 2016-12-03: -4406
WARNING. Abnormal entry count found on day 2016-12-03: -4406
WARNING. Abnormal entry count found on day 2016-12-10: -4184
WARNING. Abnormal entry count found on day 2016-12-10: -4184
WARNING. Abnormal entry count found on day 2016-12-17: -4138
WARNING. Abnormal entry count found on day 2016-12-17: -4138
WARNING. Abnormal entry count found on day 2016-12-24: -2676
WARNING. Abnormal entry count found on day 2016-12-24: -2676
Processing turnstile ('R612', 'R057', '01-00-06', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -4301
WARNING. Abnormal entry count found on day 2016-12-03: -4301
WARNING. Abnormal entry count found on day 2016-12-10: -3666
WARNING. Abnormal entry count found on day 2016-12-10: -3666
WARNING. Abnormal entry count found on day 2016-12-17: -3961
WARNING. Abnormal entry count found on day 2016-12-17: -3961
WARNING. Abnormal entry count found on day 2016-12-24: -2897
WARNING. Abnormal entry count found on day 2016-12-24: -2897
Processing turnstile ('R238A', 'R046', '02-00-04', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14739
WARNING. Abnormal entry count found on day 2016-12-03: -14739
WARNING. Abnormal entry count found on day 2016-12-10: -17432
WARNING. Abnormal entry count found on day 2016-12-10: -17432
WARNING. Abnormal entry count found on day 2016-12-17: -15938
WARNING. Abnormal entry count found on day 2016-12-17: -15938
WARNING. Abnormal entry count found on day 2016-12-24: -12358
WARNING. Abnormal entry count found on day 2016-12-24: -12358
Processing turnstile ('C028', 'R216', '01-06-01', 'BAY RIDGE-95 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9237
WARNING. Abnormal entry count found on day 2016-12-03: -9237
WARNING. Abnormal entry count found on day 2016-12-10: -9005
WARNING. Abnormal entry count found on day 2016-12-10: -9005
WARNING. Abnormal entry count found on day 2016-12-17: -8298
WARNING. Abnormal entry count found on day 2016-12-17: -8298
WARNING. Abnormal entry count found on day 2016-12-24: -6440
WARNING. Abnormal entry count found on day 2016-12-24: -6440
Processing turnstile ('N507', 'R023', '00-00-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -817
WARNING. Abnormal entry count found on day 2016-12-03: -817
WARNING. Abnormal entry count found on day 2016-12-10: -914
WARNING. Abnormal entry count found on day 2016-12-10: -914
WARNING. Abnormal entry count found on day 2016-12-17: -906
WARNING. Abnormal entry count found on day 2016-12-17: -906
WARNING. Abnormal entry count found on day 2016-12-24: -744
WARNING. Abnormal entry count found on day 2016-12-24: -744
Processing turnstile ('R248', 'R178', '00-00-05', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18834
WARNING. Abnormal entry count found on day 2016-12-03: -18834
WARNING. Abnormal entry count found on day 2016-12-10: -16357
WARNING. Abnormal entry count found on day 2016-12-10: -16357
WARNING. Abnormal entry count found on day 2016-12-17: -17130
WARNING. Abnormal entry count found on day 2016-12-17: -17130
WARNING. Abnormal entry count found on day 2016-12-24: -12156
WARNING. Abnormal entry count found on day 2016-12-24: -12156
Processing turnstile ('A007', 'R079', '01-05-01', '5 AV/59 ST')
Processing turnstile ('N562', 'R426', '00-00-00', 'NEPTUNE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1453
WARNING. Abnormal entry count found on day 2016-12-03: -1453
WARNING. Abnormal entry count found on day 2016-12-10: -1318
WARNING. Abnormal entry count found on day 2016-12-10: -1318
WARNING. Abnormal entry count found on day 2016-12-17: -1393
WARNING. Abnormal entry count found on day 2016-12-17: -1393
WARNING. Abnormal entry count found on day 2016-12-24: -889
WARNING. Abnormal entry count found on day 2016-12-24: -889
Processing turnstile ('R236', 'R045', '00-03-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14858
WARNING. Abnormal entry count found on day 2016-12-03: -14858
WARNING. Abnormal entry count found on day 2016-12-10: -16000
WARNING. Abnormal entry count found on day 2016-12-10: -16000
WARNING. Abnormal entry count found on day 2016-12-17: -13611
WARNING. Abnormal entry count found on day 2016-12-17: -13611
WARNING. Abnormal entry count found on day 2016-12-24: -8825
WARNING. Abnormal entry count found on day 2016-12-24: -8825
Processing turnstile ('R628', 'R064', '00-00-01', 'SARATOGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6836
WARNING. Abnormal entry count found on day 2016-12-03: -6836
WARNING. Abnormal entry count found on day 2016-12-10: -5909
WARNING. Abnormal entry count found on day 2016-12-10: -5909
WARNING. Abnormal entry count found on day 2016-12-17: -5635
WARNING. Abnormal entry count found on day 2016-12-17: -5635
WARNING. Abnormal entry count found on day 2016-12-24: -3951
WARNING. Abnormal entry count found on day 2016-12-24: -3951
Processing turnstile ('R183', 'R260', '00-00-04', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -21942
WARNING. Abnormal entry count found on day 2016-12-03: -21942
WARNING. Abnormal entry count found on day 2016-12-10: -21505
WARNING. Abnormal entry count found on day 2016-12-10: -21505
WARNING. Abnormal entry count found on day 2016-12-17: -20952
WARNING. Abnormal entry count found on day 2016-12-17: -20952
WARNING. Abnormal entry count found on day 2016-12-24: -16263
WARNING. Abnormal entry count found on day 2016-12-24: -16263
Processing turnstile ('R164', 'R167', '00-03-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6641
WARNING. Abnormal entry count found on day 2016-12-03: -6641
WARNING. Abnormal entry count found on day 2016-12-10: -6802
WARNING. Abnormal entry count found on day 2016-12-10: -6802
WARNING. Abnormal entry count found on day 2016-12-17: -6523
WARNING. Abnormal entry count found on day 2016-12-17: -6523
WARNING. Abnormal entry count found on day 2016-12-24: -4649
WARNING. Abnormal entry count found on day 2016-12-24: -4649
Processing turnstile ('N220', 'R155', '01-00-03', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3276
WARNING. Abnormal entry count found on day 2016-12-03: -3276
WARNING. Abnormal entry count found on day 2016-12-10: -3101
WARNING. Abnormal entry count found on day 2016-12-10: -3101
WARNING. Abnormal entry count found on day 2016-12-17: -3097
WARNING. Abnormal entry count found on day 2016-12-17: -3097
WARNING. Abnormal entry count found on day 2016-12-24: -2470
WARNING. Abnormal entry count found on day 2016-12-24: -2470
Processing turnstile ('B031', 'R172', '01-06-00', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -1256
WARNING. Abnormal entry count found on day 2016-12-03: -1256
WARNING. Abnormal entry count found on day 2016-12-10: -1190
WARNING. Abnormal entry count found on day 2016-12-10: -1190
WARNING. Abnormal entry count found on day 2016-12-17: -1150
WARNING. Abnormal entry count found on day 2016-12-17: -1150
WARNING. Abnormal entry count found on day 2016-12-24: -909
WARNING. Abnormal entry count found on day 2016-12-24: -909
Processing turnstile ('N333B', 'R141', '02-00-03', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -17216
WARNING. Abnormal entry count found on day 2016-12-03: -17216
WARNING. Abnormal entry count found on day 2016-12-10: -15841
WARNING. Abnormal entry count found on day 2016-12-10: -15841
WARNING. Abnormal entry count found on day 2016-12-17: -15532
WARNING. Abnormal entry count found on day 2016-12-17: -15532
WARNING. Abnormal entry count found on day 2016-12-24: -12174
WARNING. Abnormal entry count found on day 2016-12-24: -12174
Processing turnstile ('N603', 'R303', '00-00-02', '21 ST-QNSBRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -15195
WARNING. Abnormal entry count found on day 2016-12-03: -15195
WARNING. Abnormal entry count found on day 2016-12-10: -13897
WARNING. Abnormal entry count found on day 2016-12-10: -13897
WARNING. Abnormal entry count found on day 2016-12-17: -14266
WARNING. Abnormal entry count found on day 2016-12-17: -14266
WARNING. Abnormal entry count found on day 2016-12-24: -11241
WARNING. Abnormal entry count found on day 2016-12-24: -11241
Processing turnstile ('B015', 'R098', '01-06-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -152
WARNING. Abnormal entry count found on day 2016-12-03: -152
WARNING. Abnormal entry count found on day 2016-12-10: -153
WARNING. Abnormal entry count found on day 2016-12-10: -153
WARNING. Abnormal entry count found on day 2016-12-17: -135
WARNING. Abnormal entry count found on day 2016-12-17: -135
WARNING. Abnormal entry count found on day 2016-12-24: -96
WARNING. Abnormal entry count found on day 2016-12-24: -96
Processing turnstile ('N111', 'R284', '00-00-02', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3744
WARNING. Abnormal entry count found on day 2016-12-03: -3744
WARNING. Abnormal entry count found on day 2016-12-10: -3736
WARNING. Abnormal entry count found on day 2016-12-10: -3736
WARNING. Abnormal entry count found on day 2016-12-17: -3347
WARNING. Abnormal entry count found on day 2016-12-17: -3347
WARNING. Abnormal entry count found on day 2016-12-24: -2165
WARNING. Abnormal entry count found on day 2016-12-24: -2165
Processing turnstile ('R194', 'R040', '00-00-02', '231 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12145
WARNING. Abnormal entry count found on day 2016-12-03: -12145
WARNING. Abnormal entry count found on day 2016-12-10: -12389
WARNING. Abnormal entry count found on day 2016-12-10: -12389
WARNING. Abnormal entry count found on day 2016-12-17: -11681
WARNING. Abnormal entry count found on day 2016-12-17: -11681
WARNING. Abnormal entry count found on day 2016-12-24: -9070
WARNING. Abnormal entry count found on day 2016-12-24: -9070
Processing turnstile ('R238', 'R046', '00-03-02', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11024
WARNING. Abnormal entry count found on day 2016-12-03: -11024
WARNING. Abnormal entry count found on day 2016-12-10: -17210
WARNING. Abnormal entry count found on day 2016-12-10: -17210
WARNING. Abnormal entry count found on day 2016-12-17: -8005
WARNING. Abnormal entry count found on day 2016-12-17: -8005
WARNING. Abnormal entry count found on day 2016-12-24: -21542
WARNING. Abnormal entry count found on day 2016-12-24: -21542
Processing turnstile ('R310', 'R053', '01-00-02', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -1867
WARNING. Abnormal entry count found on day 2016-12-05: -1322
WARNING. Abnormal entry count found on day 2016-12-06: -3394
WARNING. Abnormal entry count found on day 2016-12-07: -3455
WARNING. Abnormal entry count found on day 2016-12-08: -3110
WARNING. Abnormal entry count found on day 2016-12-09: -3237
WARNING. Abnormal entry count found on day 2016-12-03: 16385
WARNING. Abnormal entry count found on day 2016-12-04: -1867
WARNING. Abnormal entry count found on day 2016-12-05: -1322
WARNING. Abnormal entry count found on day 2016-12-06: -3394
WARNING. Abnormal entry count found on day 2016-12-07: -3455
WARNING. Abnormal entry count found on day 2016-12-08: -3110
WARNING. Abnormal entry count found on day 2016-12-09: -3237
WARNING. Abnormal entry count found on day 2016-12-03: 16385
WARNING. Abnormal entry count found on day 2016-12-04: -1867
WARNING. Abnormal entry count found on day 2016-12-05: -1322
WARNING. Abnormal entry count found on day 2016-12-06: -3394
WARNING. Abnormal entry count found on day 2016-12-07: -3455
WARNING. Abnormal entry count found on day 2016-12-08: -3110
WARNING. Abnormal entry count found on day 2016-12-09: -3237
WARNING. Abnormal entry count found on day 2016-12-10: -3361
WARNING. Abnormal entry count found on day 2016-12-11: -1783
WARNING. Abnormal entry count found on day 2016-12-12: -1195
WARNING. Abnormal entry count found on day 2016-12-13: -2798
WARNING. Abnormal entry count found on day 2016-12-14: -3045
WARNING. Abnormal entry count found on day 2016-12-15: -3041
WARNING. Abnormal entry count found on day 2016-12-16: -3045
WARNING. Abnormal entry count found on day 2016-12-10: 14907
WARNING. Abnormal entry count found on day 2016-12-11: -1783
WARNING. Abnormal entry count found on day 2016-12-12: -1195
WARNING. Abnormal entry count found on day 2016-12-13: -2798
WARNING. Abnormal entry count found on day 2016-12-14: -3045
WARNING. Abnormal entry count found on day 2016-12-15: -3041
WARNING. Abnormal entry count found on day 2016-12-16: -3045
WARNING. Abnormal entry count found on day 2016-12-10: 14907
WARNING. Abnormal entry count found on day 2016-12-11: -1783
WARNING. Abnormal entry count found on day 2016-12-12: -1195
WARNING. Abnormal entry count found on day 2016-12-13: -2798
WARNING. Abnormal entry count found on day 2016-12-14: -3045
WARNING. Abnormal entry count found on day 2016-12-15: -3041
WARNING. Abnormal entry count found on day 2016-12-16: -3045
WARNING. Abnormal entry count found on day 2016-12-17: -3107
WARNING. Abnormal entry count found on day 2016-12-18: -1590
WARNING. Abnormal entry count found on day 2016-12-19: -1296
WARNING. Abnormal entry count found on day 2016-12-20: -2951
WARNING. Abnormal entry count found on day 2016-12-21: -3044
WARNING. Abnormal entry count found on day 2016-12-22: -3083
WARNING. Abnormal entry count found on day 2016-12-23: -2988
WARNING. Abnormal entry count found on day 2016-12-17: 14952
WARNING. Abnormal entry count found on day 2016-12-18: -1590
WARNING. Abnormal entry count found on day 2016-12-19: -1296
WARNING. Abnormal entry count found on day 2016-12-20: -2951
WARNING. Abnormal entry count found on day 2016-12-21: -3044
WARNING. Abnormal entry count found on day 2016-12-22: -3083
WARNING. Abnormal entry count found on day 2016-12-23: -2988
WARNING. Abnormal entry count found on day 2016-12-17: 14952
WARNING. Abnormal entry count found on day 2016-12-18: -1590
WARNING. Abnormal entry count found on day 2016-12-19: -1296
WARNING. Abnormal entry count found on day 2016-12-20: -2951
WARNING. Abnormal entry count found on day 2016-12-21: -3044
WARNING. Abnormal entry count found on day 2016-12-22: -3083
WARNING. Abnormal entry count found on day 2016-12-23: -2988
WARNING. Abnormal entry count found on day 2016-12-24: -2986
WARNING. Abnormal entry count found on day 2016-12-25: -1593
WARNING. Abnormal entry count found on day 2016-12-26: -1005
WARNING. Abnormal entry count found on day 2016-12-27: -1622
WARNING. Abnormal entry count found on day 2016-12-28: -2300
WARNING. Abnormal entry count found on day 2016-12-29: -2508
WARNING. Abnormal entry count found on day 2016-12-30: -2459
WARNING. Abnormal entry count found on day 2016-12-24: 11487
WARNING. Abnormal entry count found on day 2016-12-25: -1593
WARNING. Abnormal entry count found on day 2016-12-26: -1005
WARNING. Abnormal entry count found on day 2016-12-27: -1622
WARNING. Abnormal entry count found on day 2016-12-28: -2300
WARNING. Abnormal entry count found on day 2016-12-29: -2508
WARNING. Abnormal entry count found on day 2016-12-30: -2459
WARNING. Abnormal entry count found on day 2016-12-24: 11487
WARNING. Abnormal entry count found on day 2016-12-25: -1593
WARNING. Abnormal entry count found on day 2016-12-26: -1005
WARNING. Abnormal entry count found on day 2016-12-27: -1622
WARNING. Abnormal entry count found on day 2016-12-28: -2300
WARNING. Abnormal entry count found on day 2016-12-29: -2508
WARNING. Abnormal entry count found on day 2016-12-30: -2459
Processing turnstile ('N062', 'R011', '01-03-02', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -11474
WARNING. Abnormal entry count found on day 2016-12-03: -11474
WARNING. Abnormal entry count found on day 2016-12-10: -11522
WARNING. Abnormal entry count found on day 2016-12-10: -11522
WARNING. Abnormal entry count found on day 2016-12-17: -10972
WARNING. Abnormal entry count found on day 2016-12-17: -10972
WARNING. Abnormal entry count found on day 2016-12-24: -10159
WARNING. Abnormal entry count found on day 2016-12-24: -10159
Processing turnstile ('B029', 'R172', '00-00-03', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -11425
WARNING. Abnormal entry count found on day 2016-12-03: -11425
WARNING. Abnormal entry count found on day 2016-12-10: -11192
WARNING. Abnormal entry count found on day 2016-12-10: -11192
WARNING. Abnormal entry count found on day 2016-12-17: -9514
WARNING. Abnormal entry count found on day 2016-12-17: -9514
WARNING. Abnormal entry count found on day 2016-12-24: -6792
WARNING. Abnormal entry count found on day 2016-12-24: -6792
Processing turnstile ('N002A', 'R173', '00-05-01', 'INWOOD-207 ST')
Processing turnstile ('N025', 'R102', '01-00-01', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6841
WARNING. Abnormal entry count found on day 2016-12-03: -6841
WARNING. Abnormal entry count found on day 2016-12-10: -6898
WARNING. Abnormal entry count found on day 2016-12-10: -6898
WARNING. Abnormal entry count found on day 2016-12-17: -6509
WARNING. Abnormal entry count found on day 2016-12-17: -6509
WARNING. Abnormal entry count found on day 2016-12-24: -4812
WARNING. Abnormal entry count found on day 2016-12-24: -4812
Processing turnstile ('R528', 'R097', '00-05-01', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -11763
WARNING. Abnormal entry count found on day 2016-12-03: -11763
WARNING. Abnormal entry count found on day 2016-12-10: -11269
WARNING. Abnormal entry count found on day 2016-12-10: -11269
WARNING. Abnormal entry count found on day 2016-12-17: -11451
WARNING. Abnormal entry count found on day 2016-12-17: -11451
WARNING. Abnormal entry count found on day 2016-12-24: -9383
WARNING. Abnormal entry count found on day 2016-12-24: -9383
Processing turnstile ('R238', 'R046', '00-00-07', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -36414
WARNING. Abnormal entry count found on day 2016-12-03: -36414
WARNING. Abnormal entry count found on day 2016-12-10: -36565
WARNING. Abnormal entry count found on day 2016-12-10: -36565
WARNING. Abnormal entry count found on day 2016-12-17: -34778
WARNING. Abnormal entry count found on day 2016-12-17: -34778
WARNING. Abnormal entry count found on day 2016-12-24: -25625
WARNING. Abnormal entry count found on day 2016-12-24: -25625
Processing turnstile ('R118', 'R343', '01-06-00', 'FRANKLIN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -425
WARNING. Abnormal entry count found on day 2016-12-03: -425
WARNING. Abnormal entry count found on day 2016-12-10: -424
WARNING. Abnormal entry count found on day 2016-12-10: -424
WARNING. Abnormal entry count found on day 2016-12-17: -311
WARNING. Abnormal entry count found on day 2016-12-17: -311
WARNING. Abnormal entry count found on day 2016-12-24: -220
WARNING. Abnormal entry count found on day 2016-12-24: -220
Processing turnstile ('R629', 'R065', '00-00-01', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6369
WARNING. Abnormal entry count found on day 2016-12-03: -6369
WARNING. Abnormal entry count found on day 2016-12-10: -6522
WARNING. Abnormal entry count found on day 2016-12-10: -6522
WARNING. Abnormal entry count found on day 2016-12-17: -6615
WARNING. Abnormal entry count found on day 2016-12-17: -6615
WARNING. Abnormal entry count found on day 2016-12-24: -4806
WARNING. Abnormal entry count found on day 2016-12-24: -4806
Processing turnstile ('R197', 'R117', '00-00-00', 'V.CORTLANDT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -8509
WARNING. Abnormal entry count found on day 2016-12-03: -8509
WARNING. Abnormal entry count found on day 2016-12-10: -6334
WARNING. Abnormal entry count found on day 2016-12-10: -6334
WARNING. Abnormal entry count found on day 2016-12-17: -7634
WARNING. Abnormal entry count found on day 2016-12-17: -7634
WARNING. Abnormal entry count found on day 2016-12-24: -6022
WARNING. Abnormal entry count found on day 2016-12-24: -6022
Processing turnstile ('N017', 'R331', '00-00-02', '155 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2241
WARNING. Abnormal entry count found on day 2016-12-03: -2241
WARNING. Abnormal entry count found on day 2016-12-10: -2225
WARNING. Abnormal entry count found on day 2016-12-10: -2225
WARNING. Abnormal entry count found on day 2016-12-17: -2107
WARNING. Abnormal entry count found on day 2016-12-17: -2107
WARNING. Abnormal entry count found on day 2016-12-24: -1635
WARNING. Abnormal entry count found on day 2016-12-24: -1635
Processing turnstile ('N009', 'R174', '01-00-00', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12331
WARNING. Abnormal entry count found on day 2016-12-03: -12331
WARNING. Abnormal entry count found on day 2016-12-10: -12075
WARNING. Abnormal entry count found on day 2016-12-10: -12075
WARNING. Abnormal entry count found on day 2016-12-17: -11583
WARNING. Abnormal entry count found on day 2016-12-17: -11583
WARNING. Abnormal entry count found on day 2016-12-24: -8607
WARNING. Abnormal entry count found on day 2016-12-24: -8607
Processing turnstile ('R533', 'R055', '00-03-02', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -18775
WARNING. Abnormal entry count found on day 2016-12-03: -18775
WARNING. Abnormal entry count found on day 2016-12-10: -17999
WARNING. Abnormal entry count found on day 2016-12-10: -17999
WARNING. Abnormal entry count found on day 2016-12-17: -19525
WARNING. Abnormal entry count found on day 2016-12-17: -19525
WARNING. Abnormal entry count found on day 2016-12-24: -17541
WARNING. Abnormal entry count found on day 2016-12-24: -17541
Processing turnstile ('N544', 'R289', '01-05-00', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R527', 'R122', '00-03-00', '90 ST-ELMHURST')
WARNING. Abnormal entry count found on day 2016-12-03: -9839
WARNING. Abnormal entry count found on day 2016-12-03: -9839
WARNING. Abnormal entry count found on day 2016-12-10: -9653
WARNING. Abnormal entry count found on day 2016-12-10: -9653
WARNING. Abnormal entry count found on day 2016-12-17: -9888
WARNING. Abnormal entry count found on day 2016-12-17: -9888
WARNING. Abnormal entry count found on day 2016-12-24: -8023
WARNING. Abnormal entry count found on day 2016-12-24: -8023
Processing turnstile ('N414A', 'R316', '01-00-01', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1605
WARNING. Abnormal entry count found on day 2016-12-03: -1605
WARNING. Abnormal entry count found on day 2016-12-10: -1483
WARNING. Abnormal entry count found on day 2016-12-10: -1483
WARNING. Abnormal entry count found on day 2016-12-17: -1521
WARNING. Abnormal entry count found on day 2016-12-17: -1521
WARNING. Abnormal entry count found on day 2016-12-24: -1184
WARNING. Abnormal entry count found on day 2016-12-24: -1184
Processing turnstile ('R118', 'R343', '01-06-01', 'FRANKLIN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -51
WARNING. Abnormal entry count found on day 2016-12-03: -51
WARNING. Abnormal entry count found on day 2016-12-10: -66
WARNING. Abnormal entry count found on day 2016-12-10: -66
WARNING. Abnormal entry count found on day 2016-12-17: -70
WARNING. Abnormal entry count found on day 2016-12-17: -70
WARNING. Abnormal entry count found on day 2016-12-24: -58
WARNING. Abnormal entry count found on day 2016-12-24: -58
Processing turnstile ('N604', 'R342', '00-00-01', 'JAMAICA VAN WK')
WARNING. Abnormal entry count found on day 2016-12-03: -6662
WARNING. Abnormal entry count found on day 2016-12-03: -6662
WARNING. Abnormal entry count found on day 2016-12-10: -6274
WARNING. Abnormal entry count found on day 2016-12-10: -6274
WARNING. Abnormal entry count found on day 2016-12-17: -6332
WARNING. Abnormal entry count found on day 2016-12-17: -6332
WARNING. Abnormal entry count found on day 2016-12-24: -5017
WARNING. Abnormal entry count found on day 2016-12-24: -5017
Processing turnstile ('H001', 'R175', '00-00-02', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -17483
WARNING. Abnormal entry count found on day 2016-12-03: -17483
WARNING. Abnormal entry count found on day 2016-12-10: -17990
WARNING. Abnormal entry count found on day 2016-12-10: -17990
WARNING. Abnormal entry count found on day 2016-12-17: -16266
WARNING. Abnormal entry count found on day 2016-12-17: -16266
WARNING. Abnormal entry count found on day 2016-12-24: -14337
WARNING. Abnormal entry count found on day 2016-12-24: -14337
Processing turnstile ('J012', 'R379', '00-00-01', 'KOSCIUSZKO ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8024
WARNING. Abnormal entry count found on day 2016-12-03: -8024
WARNING. Abnormal entry count found on day 2016-12-10: -8043
WARNING. Abnormal entry count found on day 2016-12-10: -8043
WARNING. Abnormal entry count found on day 2016-12-17: -7291
WARNING. Abnormal entry count found on day 2016-12-17: -7291
WARNING. Abnormal entry count found on day 2016-12-24: -6425830
WARNING. Abnormal entry count found on day 2016-12-24: -6364
WARNING. Abnormal entry count found on day 2016-12-24: -6364
Processing turnstile ('R608', 'R056', '00-00-00', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7612
WARNING. Abnormal entry count found on day 2016-12-03: -7612
WARNING. Abnormal entry count found on day 2016-12-10: -7432
WARNING. Abnormal entry count found on day 2016-12-10: -7432
WARNING. Abnormal entry count found on day 2016-12-17: -7715
WARNING. Abnormal entry count found on day 2016-12-17: -7715
WARNING. Abnormal entry count found on day 2016-12-24: -5789
WARNING. Abnormal entry count found on day 2016-12-24: -5789
Processing turnstile ('R284', 'R243', '00-00-01', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12395
WARNING. Abnormal entry count found on day 2016-12-03: -12395
WARNING. Abnormal entry count found on day 2016-12-10: -12065
WARNING. Abnormal entry count found on day 2016-12-10: -12065
WARNING. Abnormal entry count found on day 2016-12-17: -12403
WARNING. Abnormal entry count found on day 2016-12-17: -12403
WARNING. Abnormal entry count found on day 2016-12-24: -9352
WARNING. Abnormal entry count found on day 2016-12-24: -9352
Processing turnstile ('A046', 'R463', '00-05-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10
WARNING. Abnormal entry count found on day 2016-12-03: -10
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('R306', 'R207', '00-00-03', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11491
WARNING. Abnormal entry count found on day 2016-12-03: -11491
WARNING. Abnormal entry count found on day 2016-12-10: -11475
WARNING. Abnormal entry count found on day 2016-12-10: -11475
WARNING. Abnormal entry count found on day 2016-12-17: -10866
WARNING. Abnormal entry count found on day 2016-12-17: -10866
WARNING. Abnormal entry count found on day 2016-12-24: -8458
WARNING. Abnormal entry count found on day 2016-12-24: -8458
Processing turnstile ('N035', 'R334', '00-00-01', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -6243
WARNING. Abnormal entry count found on day 2016-12-03: -6243
WARNING. Abnormal entry count found on day 2016-12-10: -6014
WARNING. Abnormal entry count found on day 2016-12-10: -6014
WARNING. Abnormal entry count found on day 2016-12-17: -5977
WARNING. Abnormal entry count found on day 2016-12-17: -5977
WARNING. Abnormal entry count found on day 2016-12-24: -4982
WARNING. Abnormal entry count found on day 2016-12-24: -4982
Processing turnstile ('R416', 'R245', '00-03-00', 'ST LAWRENCE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7104
WARNING. Abnormal entry count found on day 2016-12-03: -7104
WARNING. Abnormal entry count found on day 2016-12-10: -7258
WARNING. Abnormal entry count found on day 2016-12-10: -7258
WARNING. Abnormal entry count found on day 2016-12-17: -7223
WARNING. Abnormal entry count found on day 2016-12-17: -7223
WARNING. Abnormal entry count found on day 2016-12-24: -5593
WARNING. Abnormal entry count found on day 2016-12-24: -5593
Processing turnstile ('R113', 'R028', '01-06-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6231
WARNING. Abnormal entry count found on day 2016-12-03: -6231
WARNING. Abnormal entry count found on day 2016-12-10: -6110
WARNING. Abnormal entry count found on day 2016-12-10: -6110
WARNING. Abnormal entry count found on day 2016-12-17: -5397
WARNING. Abnormal entry count found on day 2016-12-17: -5397
WARNING. Abnormal entry count found on day 2016-12-24: -3881
WARNING. Abnormal entry count found on day 2016-12-24: -3881
Processing turnstile ('R160A', 'R164', '00-00-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -14946
WARNING. Abnormal entry count found on day 2016-12-03: -14946
WARNING. Abnormal entry count found on day 2016-12-10: -12885
WARNING. Abnormal entry count found on day 2016-12-10: -12885
WARNING. Abnormal entry count found on day 2016-12-17: -12281
WARNING. Abnormal entry count found on day 2016-12-17: -12281
WARNING. Abnormal entry count found on day 2016-12-24: -10000
WARNING. Abnormal entry count found on day 2016-12-24: -10000
Processing turnstile ('N135', 'R385', '01-05-00', 'ROCKAWAY BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('J025', 'R003', '00-00-02', 'CYPRESS HILLS')
WARNING. Abnormal entry count found on day 2016-12-03: -4421
WARNING. Abnormal entry count found on day 2016-12-03: -4421
WARNING. Abnormal entry count found on day 2016-12-10: -4028
WARNING. Abnormal entry count found on day 2016-12-10: -4028
WARNING. Abnormal entry count found on day 2016-12-17: -4080
WARNING. Abnormal entry count found on day 2016-12-17: -4080
WARNING. Abnormal entry count found on day 2016-12-24: -3007
WARNING. Abnormal entry count found on day 2016-12-24: -3007
Processing turnstile ('R200A', 'R041', '01-00-07', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -11797
WARNING. Abnormal entry count found on day 2016-12-03: -11797
WARNING. Abnormal entry count found on day 2016-12-10: -11425
WARNING. Abnormal entry count found on day 2016-12-10: -11425
WARNING. Abnormal entry count found on day 2016-12-17: -10239
WARNING. Abnormal entry count found on day 2016-12-17: -10239
WARNING. Abnormal entry count found on day 2016-12-24: -6665
WARNING. Abnormal entry count found on day 2016-12-24: -6665
Processing turnstile ('N530', 'R301', '00-00-00', 'YORK ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20433
WARNING. Abnormal entry count found on day 2016-12-03: -20433
WARNING. Abnormal entry count found on day 2016-12-10: -19423
WARNING. Abnormal entry count found on day 2016-12-10: -19423
WARNING. Abnormal entry count found on day 2016-12-17: -17861
WARNING. Abnormal entry count found on day 2016-12-17: -17861
WARNING. Abnormal entry count found on day 2016-12-24: -13890
WARNING. Abnormal entry count found on day 2016-12-24: -13890
Processing turnstile ('A034', 'R170', '03-03-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -17916
WARNING. Abnormal entry count found on day 2016-12-03: -17916
WARNING. Abnormal entry count found on day 2016-12-10: -18070
WARNING. Abnormal entry count found on day 2016-12-10: -18070
WARNING. Abnormal entry count found on day 2016-12-17: -18603
WARNING. Abnormal entry count found on day 2016-12-17: -18603
WARNING. Abnormal entry count found on day 2016-12-24: -10734
WARNING. Abnormal entry count found on day 2016-12-24: -10734
Processing turnstile ('N339A', 'R114', '00-03-03', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -5412
WARNING. Abnormal entry count found on day 2016-12-03: -5412
WARNING. Abnormal entry count found on day 2016-12-10: -5102
WARNING. Abnormal entry count found on day 2016-12-10: -5102
WARNING. Abnormal entry count found on day 2016-12-17: -5107
WARNING. Abnormal entry count found on day 2016-12-17: -5107
WARNING. Abnormal entry count found on day 2016-12-24: -3621
WARNING. Abnormal entry count found on day 2016-12-24: -3621
Processing turnstile ('A022', 'R022', '01-06-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -6791
WARNING. Abnormal entry count found on day 2016-12-03: -6791
WARNING. Abnormal entry count found on day 2016-12-10: -9223
WARNING. Abnormal entry count found on day 2016-12-10: -9223
WARNING. Abnormal entry count found on day 2016-12-17: -8529
WARNING. Abnormal entry count found on day 2016-12-17: -8529
WARNING. Abnormal entry count found on day 2016-12-24: -5987
WARNING. Abnormal entry count found on day 2016-12-24: -5987
Processing turnstile ('R171', 'R192', '01-00-01', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -4110
WARNING. Abnormal entry count found on day 2016-12-03: -4110
WARNING. Abnormal entry count found on day 2016-12-10: -4380
WARNING. Abnormal entry count found on day 2016-12-10: -4380
WARNING. Abnormal entry count found on day 2016-12-17: -3115
WARNING. Abnormal entry count found on day 2016-12-17: -3115
WARNING. Abnormal entry count found on day 2016-12-24: -2735
WARNING. Abnormal entry count found on day 2016-12-24: -2735
Processing turnstile ('H007', 'R248', '00-00-01', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -29983
WARNING. Abnormal entry count found on day 2016-12-03: -29983
WARNING. Abnormal entry count found on day 2016-12-10: -28719
WARNING. Abnormal entry count found on day 2016-12-10: -28719
WARNING. Abnormal entry count found on day 2016-12-17: -27186
WARNING. Abnormal entry count found on day 2016-12-17: -27186
WARNING. Abnormal entry count found on day 2016-12-24: -18503
WARNING. Abnormal entry count found on day 2016-12-24: -18503
Processing turnstile ('R133', 'R272', '00-00-03', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13203
WARNING. Abnormal entry count found on day 2016-12-03: -13203
WARNING. Abnormal entry count found on day 2016-12-10: -12833
WARNING. Abnormal entry count found on day 2016-12-10: -12833
WARNING. Abnormal entry count found on day 2016-12-17: -10506
WARNING. Abnormal entry count found on day 2016-12-17: -10506
WARNING. Abnormal entry count found on day 2016-12-24: -6390
WARNING. Abnormal entry count found on day 2016-12-24: -6390
Processing turnstile ('B026', 'R230', '00-00-01', 'NECK RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3683
WARNING. Abnormal entry count found on day 2016-12-03: -3683
WARNING. Abnormal entry count found on day 2016-12-10: -3516
WARNING. Abnormal entry count found on day 2016-12-10: -3516
WARNING. Abnormal entry count found on day 2016-12-17: -3687
WARNING. Abnormal entry count found on day 2016-12-17: -3687
WARNING. Abnormal entry count found on day 2016-12-24: -2969
WARNING. Abnormal entry count found on day 2016-12-24: -2969
Processing turnstile ('R261', 'R205', '00-00-01', '149/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-12-03: -18731
WARNING. Abnormal entry count found on day 2016-12-03: -18731
WARNING. Abnormal entry count found on day 2016-12-10: -17334
WARNING. Abnormal entry count found on day 2016-12-10: -17334
WARNING. Abnormal entry count found on day 2016-12-17: -15610
WARNING. Abnormal entry count found on day 2016-12-17: -15610
WARNING. Abnormal entry count found on day 2016-12-24: -12085
WARNING. Abnormal entry count found on day 2016-12-24: -12085
Processing turnstile ('N186', 'R418', '00-05-00', 'BEACH 105 ST')
Processing turnstile ('N221', 'R155', '00-00-04', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -6473
WARNING. Abnormal entry count found on day 2016-12-03: -6473
WARNING. Abnormal entry count found on day 2016-12-10: -6183
WARNING. Abnormal entry count found on day 2016-12-10: -6183
WARNING. Abnormal entry count found on day 2016-12-17: -5562
WARNING. Abnormal entry count found on day 2016-12-17: -5562
WARNING. Abnormal entry count found on day 2016-12-24: -4003
WARNING. Abnormal entry count found on day 2016-12-24: -4003
Processing turnstile ('N501A', 'R020', '02-00-03', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -6086
WARNING. Abnormal entry count found on day 2016-12-03: -6086
WARNING. Abnormal entry count found on day 2016-12-10: -6020
WARNING. Abnormal entry count found on day 2016-12-10: -6020
WARNING. Abnormal entry count found on day 2016-12-17: -6509
WARNING. Abnormal entry count found on day 2016-12-17: -6509
WARNING. Abnormal entry count found on day 2016-12-24: -5960
WARNING. Abnormal entry count found on day 2016-12-24: -5960
Processing turnstile ('R124', 'R290', '03-00-01', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2612
WARNING. Abnormal entry count found on day 2016-12-03: -2612
WARNING. Abnormal entry count found on day 2016-12-10: -2678
WARNING. Abnormal entry count found on day 2016-12-10: -2678
WARNING. Abnormal entry count found on day 2016-12-17: -2240
WARNING. Abnormal entry count found on day 2016-12-17: -2240
WARNING. Abnormal entry count found on day 2016-12-24: -1382
WARNING. Abnormal entry count found on day 2016-12-24: -1382
Processing turnstile ('R125', 'R189', '00-00-01', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14829
WARNING. Abnormal entry count found on day 2016-12-03: -14829
WARNING. Abnormal entry count found on day 2016-12-10: -14697
WARNING. Abnormal entry count found on day 2016-12-10: -14697
WARNING. Abnormal entry count found on day 2016-12-17: -13859
WARNING. Abnormal entry count found on day 2016-12-17: -13859
WARNING. Abnormal entry count found on day 2016-12-24: -17322
WARNING. Abnormal entry count found on day 2016-12-24: -17322
Processing turnstile ('R160', 'R164', '02-05-01', '66 ST-LINCOLN')
Processing turnstile ('N546', 'R204', '00-00-02', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3791
WARNING. Abnormal entry count found on day 2016-12-03: -3791
WARNING. Abnormal entry count found on day 2016-12-10: -4212
WARNING. Abnormal entry count found on day 2016-12-10: -4212
WARNING. Abnormal entry count found on day 2016-12-17: -3780
WARNING. Abnormal entry count found on day 2016-12-17: -3780
WARNING. Abnormal entry count found on day 2016-12-24: -3018
WARNING. Abnormal entry count found on day 2016-12-24: -3018
Processing turnstile ('E003', 'R369', '00-03-00', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -3302
WARNING. Abnormal entry count found on day 2016-12-03: -3302
WARNING. Abnormal entry count found on day 2016-12-10: -3122
WARNING. Abnormal entry count found on day 2016-12-10: -3122
WARNING. Abnormal entry count found on day 2016-12-17: -3079
WARNING. Abnormal entry count found on day 2016-12-17: -3079
WARNING. Abnormal entry count found on day 2016-12-24: -2295
WARNING. Abnormal entry count found on day 2016-12-24: -2295
Processing turnstile ('B016', 'R098', '00-00-01', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7048
WARNING. Abnormal entry count found on day 2016-12-03: -7048
WARNING. Abnormal entry count found on day 2016-12-10: -6946
WARNING. Abnormal entry count found on day 2016-12-10: -6946
WARNING. Abnormal entry count found on day 2016-12-17: -6952
WARNING. Abnormal entry count found on day 2016-12-17: -6952
WARNING. Abnormal entry count found on day 2016-12-24: -5300
WARNING. Abnormal entry count found on day 2016-12-24: -5300
Processing turnstile ('R201', 'R041', '00-03-00', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -4156
WARNING. Abnormal entry count found on day 2016-12-03: -4156
WARNING. Abnormal entry count found on day 2016-12-10: -4216
WARNING. Abnormal entry count found on day 2016-12-10: -4216
WARNING. Abnormal entry count found on day 2016-12-17: -3624
WARNING. Abnormal entry count found on day 2016-12-17: -3624
WARNING. Abnormal entry count found on day 2016-12-24: -2865
WARNING. Abnormal entry count found on day 2016-12-24: -2865
Processing turnstile ('R217A', 'R194', '00-05-00', 'BLEECKER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10249
WARNING. Abnormal entry count found on day 2016-12-03: -10249
WARNING. Abnormal entry count found on day 2016-12-10: -9600
WARNING. Abnormal entry count found on day 2016-12-10: -9600
WARNING. Abnormal entry count found on day 2016-12-17: -9742
WARNING. Abnormal entry count found on day 2016-12-17: -9742
WARNING. Abnormal entry count found on day 2016-12-24: -6841
WARNING. Abnormal entry count found on day 2016-12-24: -6841
Processing turnstile ('R641', 'R210', '00-00-00', 'BEVERLY RD')
WARNING. Abnormal entry count found on day 2016-12-03: -10528
WARNING. Abnormal entry count found on day 2016-12-03: -10528
WARNING. Abnormal entry count found on day 2016-12-10: -10326
WARNING. Abnormal entry count found on day 2016-12-10: -10326
WARNING. Abnormal entry count found on day 2016-12-17: -9947
WARNING. Abnormal entry count found on day 2016-12-17: -9947
WARNING. Abnormal entry count found on day 2016-12-24: -7592
WARNING. Abnormal entry count found on day 2016-12-24: -7592
Processing turnstile ('R534', 'R055', '01-00-01', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -4128
WARNING. Abnormal entry count found on day 2016-12-03: -4128
WARNING. Abnormal entry count found on day 2016-12-10: -3864
WARNING. Abnormal entry count found on day 2016-12-10: -3864
WARNING. Abnormal entry count found on day 2016-12-17: -3731
WARNING. Abnormal entry count found on day 2016-12-17: -3731
WARNING. Abnormal entry count found on day 2016-12-24: -2423
WARNING. Abnormal entry count found on day 2016-12-24: -2423
Processing turnstile ('A025', 'R023', '01-00-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -19711
WARNING. Abnormal entry count found on day 2016-12-03: -19711
WARNING. Abnormal entry count found on day 2016-12-10: -20755
WARNING. Abnormal entry count found on day 2016-12-10: -20755
WARNING. Abnormal entry count found on day 2016-12-17: -19627
WARNING. Abnormal entry count found on day 2016-12-17: -19627
WARNING. Abnormal entry count found on day 2016-12-24: -15818
WARNING. Abnormal entry count found on day 2016-12-24: -15818
Processing turnstile ('N062A', 'R010', '00-05-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -11164
WARNING. Abnormal entry count found on day 2016-12-03: -11164
WARNING. Abnormal entry count found on day 2016-12-10: -11522
WARNING. Abnormal entry count found on day 2016-12-10: -11522
WARNING. Abnormal entry count found on day 2016-12-17: -10355
WARNING. Abnormal entry count found on day 2016-12-17: -10355
WARNING. Abnormal entry count found on day 2016-12-24: -7442
WARNING. Abnormal entry count found on day 2016-12-24: -7442
Processing turnstile ('PTH04', 'R551', '00-04-04', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-08: -192593
WARNING. Abnormal entry count found on day 2016-12-03: 189128
WARNING. Abnormal entry count found on day 2016-12-08: -192593
WARNING. Abnormal entry count found on day 2016-12-03: 189128
WARNING. Abnormal entry count found on day 2016-12-08: -192593
WARNING. Abnormal entry count found on day 2016-12-11: -5059
WARNING. Abnormal entry count found on day 2016-12-11: -5059
WARNING. Abnormal entry count found on day 2016-12-17: -5649
WARNING. Abnormal entry count found on day 2016-12-17: -5649
WARNING. Abnormal entry count found on day 2016-12-24: -3936
WARNING. Abnormal entry count found on day 2016-12-24: -3936
Processing turnstile ('N092', 'R029', '03-00-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7369
WARNING. Abnormal entry count found on day 2016-12-03: -7369
WARNING. Abnormal entry count found on day 2016-12-10: -7932
WARNING. Abnormal entry count found on day 2016-12-10: -7932
WARNING. Abnormal entry count found on day 2016-12-17: -6592
WARNING. Abnormal entry count found on day 2016-12-17: -6592
WARNING. Abnormal entry count found on day 2016-12-24: -5267
WARNING. Abnormal entry count found on day 2016-12-24: -5267
Processing turnstile ('R310', 'R053', '01-03-01', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11180
WARNING. Abnormal entry count found on day 2016-12-03: -11180
WARNING. Abnormal entry count found on day 2016-12-10: -10594
WARNING. Abnormal entry count found on day 2016-12-10: -10594
WARNING. Abnormal entry count found on day 2016-12-17: -10167
WARNING. Abnormal entry count found on day 2016-12-17: -10167
WARNING. Abnormal entry count found on day 2016-12-24: -7458
WARNING. Abnormal entry count found on day 2016-12-24: -7458
Processing turnstile ('R176', 'R169', '00-00-02', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -18154
WARNING. Abnormal entry count found on day 2016-12-03: -18154
WARNING. Abnormal entry count found on day 2016-12-10: -17346
WARNING. Abnormal entry count found on day 2016-12-10: -17346
WARNING. Abnormal entry count found on day 2016-12-17: -16445
WARNING. Abnormal entry count found on day 2016-12-17: -16445
WARNING. Abnormal entry count found on day 2016-12-24: -12885
WARNING. Abnormal entry count found on day 2016-12-24: -12885
Processing turnstile ('R624', 'R124', '00-00-02', 'KINGSTON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10704
WARNING. Abnormal entry count found on day 2016-12-03: -10704
WARNING. Abnormal entry count found on day 2016-12-10: -10280
WARNING. Abnormal entry count found on day 2016-12-10: -10280
WARNING. Abnormal entry count found on day 2016-12-17: -10336
WARNING. Abnormal entry count found on day 2016-12-17: -10336
WARNING. Abnormal entry count found on day 2016-12-24: -9253
WARNING. Abnormal entry count found on day 2016-12-24: -9253
Processing turnstile ('J001', 'R460', '01-00-01', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9766
WARNING. Abnormal entry count found on day 2016-12-03: -9766
WARNING. Abnormal entry count found on day 2016-12-10: -9619
WARNING. Abnormal entry count found on day 2016-12-10: -9619
WARNING. Abnormal entry count found on day 2016-12-17: -8317
WARNING. Abnormal entry count found on day 2016-12-17: -8317
WARNING. Abnormal entry count found on day 2016-12-24: -7070
WARNING. Abnormal entry count found on day 2016-12-24: -7070
Processing turnstile ('R532', 'R328', '00-06-00', 'METS-WILLETS PT')
Processing turnstile ('R315', 'R406', '01-00-00', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3978
WARNING. Abnormal entry count found on day 2016-12-03: -3978
WARNING. Abnormal entry count found on day 2016-12-10: -3266
WARNING. Abnormal entry count found on day 2016-12-10: -3266
WARNING. Abnormal entry count found on day 2016-12-17: -3324
WARNING. Abnormal entry count found on day 2016-12-17: -3324
WARNING. Abnormal entry count found on day 2016-12-24: -2481
WARNING. Abnormal entry count found on day 2016-12-24: -2481
Processing turnstile ('N192', 'R336', '00-05-00', 'BEACH 60 ST')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
Processing turnstile ('N504', 'R021', '02-00-05', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -19676
WARNING. Abnormal entry count found on day 2016-12-03: -19676
WARNING. Abnormal entry count found on day 2016-12-10: -19082
WARNING. Abnormal entry count found on day 2016-12-10: -19082
WARNING. Abnormal entry count found on day 2016-12-17: -7746
WARNING. Abnormal entry count found on day 2016-12-17: -7746
Processing turnstile ('A060', 'R001', '00-00-03', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -5489
WARNING. Abnormal entry count found on day 2016-12-03: -5489
WARNING. Abnormal entry count found on day 2016-12-10: -5572
WARNING. Abnormal entry count found on day 2016-12-10: -5572
WARNING. Abnormal entry count found on day 2016-12-17: -5054
WARNING. Abnormal entry count found on day 2016-12-17: -5054
WARNING. Abnormal entry count found on day 2016-12-24: -5466
WARNING. Abnormal entry count found on day 2016-12-24: -5466
Processing turnstile ('PTH17', 'R541', '01-00-02', 'THIRTY THIRD ST')
Processing turnstile ('R610', 'R057', '00-06-04', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -2513
WARNING. Abnormal entry count found on day 2016-12-03: -2513
WARNING. Abnormal entry count found on day 2016-12-10: -2488
WARNING. Abnormal entry count found on day 2016-12-10: -2488
WARNING. Abnormal entry count found on day 2016-12-17: -2355
WARNING. Abnormal entry count found on day 2016-12-17: -2355
WARNING. Abnormal entry count found on day 2016-12-24: -1839
WARNING. Abnormal entry count found on day 2016-12-24: -1839
Processing turnstile ('R232', 'R176', '02-00-02', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4926
WARNING. Abnormal entry count found on day 2016-12-03: -4926
WARNING. Abnormal entry count found on day 2016-12-10: -4864
WARNING. Abnormal entry count found on day 2016-12-10: -4864
WARNING. Abnormal entry count found on day 2016-12-17: -4446
WARNING. Abnormal entry count found on day 2016-12-17: -4446
WARNING. Abnormal entry count found on day 2016-12-24: -3182
WARNING. Abnormal entry count found on day 2016-12-24: -3182
Processing turnstile ('R116', 'R030', '00-05-03', 'CHAMBERS ST')
Processing turnstile ('N063A', 'R011', '00-00-02', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -24814
WARNING. Abnormal entry count found on day 2016-12-03: -24814
WARNING. Abnormal entry count found on day 2016-12-10: -24843
WARNING. Abnormal entry count found on day 2016-12-10: -24843
WARNING. Abnormal entry count found on day 2016-12-17: -23512
WARNING. Abnormal entry count found on day 2016-12-17: -23512
WARNING. Abnormal entry count found on day 2016-12-24: -20693
WARNING. Abnormal entry count found on day 2016-12-24: -20693
Processing turnstile ('N196', 'R285', '00-00-00', 'FAR ROCKAWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -3897
WARNING. Abnormal entry count found on day 2016-12-03: -3897
WARNING. Abnormal entry count found on day 2016-12-10: -3883
WARNING. Abnormal entry count found on day 2016-12-10: -3883
WARNING. Abnormal entry count found on day 2016-12-17: -3748
WARNING. Abnormal entry count found on day 2016-12-17: -3748
WARNING. Abnormal entry count found on day 2016-12-24: -3032
WARNING. Abnormal entry count found on day 2016-12-24: -3032
Processing turnstile ('N528', 'R257', '01-00-01', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -9935
WARNING. Abnormal entry count found on day 2016-12-03: -9935
WARNING. Abnormal entry count found on day 2016-12-10: -9668
WARNING. Abnormal entry count found on day 2016-12-10: -9668
WARNING. Abnormal entry count found on day 2016-12-17: -10877
WARNING. Abnormal entry count found on day 2016-12-17: -10877
WARNING. Abnormal entry count found on day 2016-12-24: -8683
WARNING. Abnormal entry count found on day 2016-12-24: -8683
Processing turnstile ('PTH04', 'R551', '00-04-00', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-05: -4118
WARNING. Abnormal entry count found on day 2016-12-05: -4118
WARNING. Abnormal entry count found on day 2016-12-10: -5247
WARNING. Abnormal entry count found on day 2016-12-10: -5247
WARNING. Abnormal entry count found on day 2016-12-17: -4721
WARNING. Abnormal entry count found on day 2016-12-17: -4721
WARNING. Abnormal entry count found on day 2016-12-24: -2152
WARNING. Abnormal entry count found on day 2016-12-24: -2152
Processing turnstile ('R159', 'R164', '01-00-03', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -7769
WARNING. Abnormal entry count found on day 2016-12-03: -7769
WARNING. Abnormal entry count found on day 2016-12-10: -9695
WARNING. Abnormal entry count found on day 2016-12-10: -9695
WARNING. Abnormal entry count found on day 2016-12-17: -6926
WARNING. Abnormal entry count found on day 2016-12-17: -6926
WARNING. Abnormal entry count found on day 2016-12-24: -5532
WARNING. Abnormal entry count found on day 2016-12-24: -5532
Processing turnstile ('R219', 'R160', '00-00-02', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -13163
WARNING. Abnormal entry count found on day 2016-12-03: -13163
WARNING. Abnormal entry count found on day 2016-12-10: -13189
WARNING. Abnormal entry count found on day 2016-12-10: -13189
WARNING. Abnormal entry count found on day 2016-12-17: -11305
WARNING. Abnormal entry count found on day 2016-12-17: -11305
WARNING. Abnormal entry count found on day 2016-12-24: -7900
WARNING. Abnormal entry count found on day 2016-12-24: -7900
Processing turnstile ('R524', 'R347', '00-05-01', '69 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5055
WARNING. Abnormal entry count found on day 2016-12-03: -5055
WARNING. Abnormal entry count found on day 2016-12-10: -4787
WARNING. Abnormal entry count found on day 2016-12-10: -4787
WARNING. Abnormal entry count found on day 2016-12-17: -5068
WARNING. Abnormal entry count found on day 2016-12-17: -5068
WARNING. Abnormal entry count found on day 2016-12-24: -4801
WARNING. Abnormal entry count found on day 2016-12-24: -4801
Processing turnstile ('R138', 'R293', '00-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -29553
WARNING. Abnormal entry count found on day 2016-12-03: -29553
WARNING. Abnormal entry count found on day 2016-12-10: -28926
WARNING. Abnormal entry count found on day 2016-12-10: -28926
WARNING. Abnormal entry count found on day 2016-12-17: -26724
WARNING. Abnormal entry count found on day 2016-12-17: -26724
WARNING. Abnormal entry count found on day 2016-12-24: -21017
WARNING. Abnormal entry count found on day 2016-12-24: -21017
Processing turnstile ('R301', 'R323', '00-00-01', 'CENTRAL PK N110')
WARNING. Abnormal entry count found on day 2016-12-03: -13133
WARNING. Abnormal entry count found on day 2016-12-03: -13133
WARNING. Abnormal entry count found on day 2016-12-10: -12422
WARNING. Abnormal entry count found on day 2016-12-10: -12422
WARNING. Abnormal entry count found on day 2016-12-17: -12121
WARNING. Abnormal entry count found on day 2016-12-17: -12121
WARNING. Abnormal entry count found on day 2016-12-24: -9836
WARNING. Abnormal entry count found on day 2016-12-24: -9836
Processing turnstile ('N314', 'R238', '01-00-01', 'STEINWAY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6721
WARNING. Abnormal entry count found on day 2016-12-03: -6721
WARNING. Abnormal entry count found on day 2016-12-10: -6615
WARNING. Abnormal entry count found on day 2016-12-10: -6615
WARNING. Abnormal entry count found on day 2016-12-17: -6417
WARNING. Abnormal entry count found on day 2016-12-17: -6417
WARNING. Abnormal entry count found on day 2016-12-24: -5282
WARNING. Abnormal entry count found on day 2016-12-24: -5282
Processing turnstile ('N215', 'R237', '00-00-01', '182-183 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -8737
WARNING. Abnormal entry count found on day 2016-12-03: -8737
WARNING. Abnormal entry count found on day 2016-12-10: -7612
WARNING. Abnormal entry count found on day 2016-12-10: -7612
WARNING. Abnormal entry count found on day 2016-12-17: -8425
WARNING. Abnormal entry count found on day 2016-12-17: -8425
WARNING. Abnormal entry count found on day 2016-12-24: -6356
WARNING. Abnormal entry count found on day 2016-12-24: -6356
Processing turnstile ('R293', 'R133', '00-00-02', 'MOSHOLU PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -4598
WARNING. Abnormal entry count found on day 2016-12-03: -4598
WARNING. Abnormal entry count found on day 2016-12-10: -4409
WARNING. Abnormal entry count found on day 2016-12-10: -4409
WARNING. Abnormal entry count found on day 2016-12-17: -4450
WARNING. Abnormal entry count found on day 2016-12-17: -4450
WARNING. Abnormal entry count found on day 2016-12-24: -3344
WARNING. Abnormal entry count found on day 2016-12-24: -3344
Processing turnstile ('R528', 'R097', '00-03-00', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -16835
WARNING. Abnormal entry count found on day 2016-12-03: -16835
WARNING. Abnormal entry count found on day 2016-12-10: -16123
WARNING. Abnormal entry count found on day 2016-12-10: -16123
WARNING. Abnormal entry count found on day 2016-12-17: -15562
WARNING. Abnormal entry count found on day 2016-12-17: -15562
WARNING. Abnormal entry count found on day 2016-12-24: -13625
WARNING. Abnormal entry count found on day 2016-12-24: -13625
Processing turnstile ('A046', 'R463', '00-06-06', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5026
WARNING. Abnormal entry count found on day 2016-12-03: -5026
WARNING. Abnormal entry count found on day 2016-12-10: -4657
WARNING. Abnormal entry count found on day 2016-12-10: -4657
WARNING. Abnormal entry count found on day 2016-12-17: -5188
WARNING. Abnormal entry count found on day 2016-12-17: -5188
WARNING. Abnormal entry count found on day 2016-12-24: -5074
WARNING. Abnormal entry count found on day 2016-12-24: -5074
Processing turnstile ('R244', 'R050', '00-06-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24725
WARNING. Abnormal entry count found on day 2016-12-03: -24725
WARNING. Abnormal entry count found on day 2016-12-10: -23995
WARNING. Abnormal entry count found on day 2016-12-10: -23995
WARNING. Abnormal entry count found on day 2016-12-17: -20062
WARNING. Abnormal entry count found on day 2016-12-17: -20062
WARNING. Abnormal entry count found on day 2016-12-24: -15246
WARNING. Abnormal entry count found on day 2016-12-24: -15246
Processing turnstile ('C023', 'R213', '00-00-03', 'BAY RIDGE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5872
WARNING. Abnormal entry count found on day 2016-12-03: -5872
WARNING. Abnormal entry count found on day 2016-12-10: -6047
WARNING. Abnormal entry count found on day 2016-12-10: -6047
WARNING. Abnormal entry count found on day 2016-12-17: -5781
WARNING. Abnormal entry count found on day 2016-12-17: -5781
WARNING. Abnormal entry count found on day 2016-12-24: -4326
WARNING. Abnormal entry count found on day 2016-12-24: -4326
Processing turnstile ('R286', 'R309', '00-00-02', '176 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10465
WARNING. Abnormal entry count found on day 2016-12-03: -10465
WARNING. Abnormal entry count found on day 2016-12-10: -10097
WARNING. Abnormal entry count found on day 2016-12-10: -10097
WARNING. Abnormal entry count found on day 2016-12-17: -9886
WARNING. Abnormal entry count found on day 2016-12-17: -9886
WARNING. Abnormal entry count found on day 2016-12-24: -7639
WARNING. Abnormal entry count found on day 2016-12-24: -7639
Processing turnstile ('R245', 'R051', '00-03-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3379
WARNING. Abnormal entry count found on day 2016-12-03: -3379
WARNING. Abnormal entry count found on day 2016-12-10: -3683
WARNING. Abnormal entry count found on day 2016-12-10: -3683
WARNING. Abnormal entry count found on day 2016-12-17: -4051
WARNING. Abnormal entry count found on day 2016-12-17: -4051
WARNING. Abnormal entry count found on day 2016-12-24: -3210
WARNING. Abnormal entry count found on day 2016-12-24: -3210
Processing turnstile ('PTH12', 'R542', '00-04-02', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -814
WARNING. Abnormal entry count found on day 2016-12-03: -814
WARNING. Abnormal entry count found on day 2016-12-10: -327
WARNING. Abnormal entry count found on day 2016-12-10: -327
WARNING. Abnormal entry count found on day 2016-12-17: -543
WARNING. Abnormal entry count found on day 2016-12-17: -543
WARNING. Abnormal entry count found on day 2016-12-24: -409
WARNING. Abnormal entry count found on day 2016-12-24: -409
Processing turnstile ('R728', 'R226', '00-00-03', 'GUN HILL RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3195
WARNING. Abnormal entry count found on day 2016-12-03: -3195
WARNING. Abnormal entry count found on day 2016-12-10: -4751
WARNING. Abnormal entry count found on day 2016-12-10: -4751
WARNING. Abnormal entry count found on day 2016-12-17: -4969
WARNING. Abnormal entry count found on day 2016-12-17: -4969
WARNING. Abnormal entry count found on day 2016-12-24: -2292
WARNING. Abnormal entry count found on day 2016-12-24: -2292
Processing turnstile ('R148', 'R033', '01-00-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -1487
WARNING. Abnormal entry count found on day 2016-12-05: -1017
WARNING. Abnormal entry count found on day 2016-12-06: -2542
WARNING. Abnormal entry count found on day 2016-12-07: -2599
WARNING. Abnormal entry count found on day 2016-12-08: -2643
WARNING. Abnormal entry count found on day 2016-12-09: -2739
WARNING. Abnormal entry count found on day 2016-12-03: 13027
WARNING. Abnormal entry count found on day 2016-12-04: -1487
WARNING. Abnormal entry count found on day 2016-12-05: -1017
WARNING. Abnormal entry count found on day 2016-12-06: -2542
WARNING. Abnormal entry count found on day 2016-12-07: -2599
WARNING. Abnormal entry count found on day 2016-12-08: -2643
WARNING. Abnormal entry count found on day 2016-12-09: -2739
WARNING. Abnormal entry count found on day 2016-12-03: 13027
WARNING. Abnormal entry count found on day 2016-12-04: -1487
WARNING. Abnormal entry count found on day 2016-12-05: -1017
WARNING. Abnormal entry count found on day 2016-12-06: -2542
WARNING. Abnormal entry count found on day 2016-12-07: -2599
WARNING. Abnormal entry count found on day 2016-12-08: -2643
WARNING. Abnormal entry count found on day 2016-12-09: -2739
WARNING. Abnormal entry count found on day 2016-12-10: -2706
WARNING. Abnormal entry count found on day 2016-12-11: -1322
WARNING. Abnormal entry count found on day 2016-12-12: -900
WARNING. Abnormal entry count found on day 2016-12-13: -2421
WARNING. Abnormal entry count found on day 2016-12-14: -2668
WARNING. Abnormal entry count found on day 2016-12-15: -2669
WARNING. Abnormal entry count found on day 2016-12-16: -2635
WARNING. Abnormal entry count found on day 2016-12-10: 12615
WARNING. Abnormal entry count found on day 2016-12-11: -1322
WARNING. Abnormal entry count found on day 2016-12-12: -900
WARNING. Abnormal entry count found on day 2016-12-13: -2421
WARNING. Abnormal entry count found on day 2016-12-14: -2668
WARNING. Abnormal entry count found on day 2016-12-15: -2669
WARNING. Abnormal entry count found on day 2016-12-16: -2635
WARNING. Abnormal entry count found on day 2016-12-10: 12615
WARNING. Abnormal entry count found on day 2016-12-11: -1322
WARNING. Abnormal entry count found on day 2016-12-12: -900
WARNING. Abnormal entry count found on day 2016-12-13: -2421
WARNING. Abnormal entry count found on day 2016-12-14: -2668
WARNING. Abnormal entry count found on day 2016-12-15: -2669
WARNING. Abnormal entry count found on day 2016-12-16: -2635
WARNING. Abnormal entry count found on day 2016-12-17: -2497
WARNING. Abnormal entry count found on day 2016-12-18: -1153
WARNING. Abnormal entry count found on day 2016-12-19: -1015
WARNING. Abnormal entry count found on day 2016-12-20: -2440
WARNING. Abnormal entry count found on day 2016-12-21: -2555
WARNING. Abnormal entry count found on day 2016-12-22: -2469
WARNING. Abnormal entry count found on day 2016-12-23: -2410
WARNING. Abnormal entry count found on day 2016-12-17: 12042
WARNING. Abnormal entry count found on day 2016-12-18: -1153
WARNING. Abnormal entry count found on day 2016-12-19: -1015
WARNING. Abnormal entry count found on day 2016-12-20: -2440
WARNING. Abnormal entry count found on day 2016-12-21: -2555
WARNING. Abnormal entry count found on day 2016-12-22: -2469
WARNING. Abnormal entry count found on day 2016-12-23: -2410
WARNING. Abnormal entry count found on day 2016-12-17: 12042
WARNING. Abnormal entry count found on day 2016-12-18: -1153
WARNING. Abnormal entry count found on day 2016-12-19: -1015
WARNING. Abnormal entry count found on day 2016-12-20: -2440
WARNING. Abnormal entry count found on day 2016-12-21: -2555
WARNING. Abnormal entry count found on day 2016-12-22: -2469
WARNING. Abnormal entry count found on day 2016-12-23: -2410
WARNING. Abnormal entry count found on day 2016-12-24: -1873
WARNING. Abnormal entry count found on day 2016-12-25: -960
WARNING. Abnormal entry count found on day 2016-12-26: -851
WARNING. Abnormal entry count found on day 2016-12-27: -1103
WARNING. Abnormal entry count found on day 2016-12-28: -1666
WARNING. Abnormal entry count found on day 2016-12-29: -2003
WARNING. Abnormal entry count found on day 2016-12-30: -1742
WARNING. Abnormal entry count found on day 2016-12-25: -960
WARNING. Abnormal entry count found on day 2016-12-26: -851
WARNING. Abnormal entry count found on day 2016-12-27: -1103
WARNING. Abnormal entry count found on day 2016-12-28: -1666
WARNING. Abnormal entry count found on day 2016-12-29: -2003
WARNING. Abnormal entry count found on day 2016-12-30: -1742
WARNING. Abnormal entry count found on day 2016-12-25: -960
WARNING. Abnormal entry count found on day 2016-12-26: -851
WARNING. Abnormal entry count found on day 2016-12-27: -1103
WARNING. Abnormal entry count found on day 2016-12-28: -1666
WARNING. Abnormal entry count found on day 2016-12-29: -2003
WARNING. Abnormal entry count found on day 2016-12-30: -1742
Processing turnstile ('PTH02', 'R544', '00-00-05', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -5377
WARNING. Abnormal entry count found on day 2016-12-03: -5377
WARNING. Abnormal entry count found on day 2016-12-10: -996
WARNING. Abnormal entry count found on day 2016-12-10: -996
WARNING. Abnormal entry count found on day 2016-12-17: -170239
WARNING. Abnormal entry count found on day 2016-12-17: -5413
WARNING. Abnormal entry count found on day 2016-12-17: -5413
WARNING. Abnormal entry count found on day 2016-12-24: -4940
WARNING. Abnormal entry count found on day 2016-12-24: -4940
Processing turnstile ('C012', 'R258', '01-06-00', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1075
WARNING. Abnormal entry count found on day 2016-12-03: -1075
WARNING. Abnormal entry count found on day 2016-12-10: -1066
WARNING. Abnormal entry count found on day 2016-12-10: -1066
WARNING. Abnormal entry count found on day 2016-12-17: -1256
WARNING. Abnormal entry count found on day 2016-12-17: -1256
WARNING. Abnormal entry count found on day 2016-12-24: -738
WARNING. Abnormal entry count found on day 2016-12-24: -738
Processing turnstile ('N040', 'R251', '00-00-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3449
WARNING. Abnormal entry count found on day 2016-12-03: -3449
WARNING. Abnormal entry count found on day 2016-12-10: -3453
WARNING. Abnormal entry count found on day 2016-12-10: -3453
WARNING. Abnormal entry count found on day 2016-12-17: -2828
WARNING. Abnormal entry count found on day 2016-12-17: -2828
WARNING. Abnormal entry count found on day 2016-12-24: -1958
WARNING. Abnormal entry count found on day 2016-12-24: -1958
Processing turnstile ('C011', 'R231', '01-00-02', 'UNION ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2506
WARNING. Abnormal entry count found on day 2016-12-03: -2506
WARNING. Abnormal entry count found on day 2016-12-10: -2333
WARNING. Abnormal entry count found on day 2016-12-10: -2333
WARNING. Abnormal entry count found on day 2016-12-17: -2140
WARNING. Abnormal entry count found on day 2016-12-17: -2140
WARNING. Abnormal entry count found on day 2016-12-24: -1427
WARNING. Abnormal entry count found on day 2016-12-24: -1427
Processing turnstile ('R200A', 'R041', '01-05-01', 'BOWLING GREEN')
Processing turnstile ('R248', 'R178', '00-00-01', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -29858
WARNING. Abnormal entry count found on day 2016-12-03: -29858
WARNING. Abnormal entry count found on day 2016-12-10: -25590
WARNING. Abnormal entry count found on day 2016-12-10: -25590
WARNING. Abnormal entry count found on day 2016-12-17: -23363
WARNING. Abnormal entry count found on day 2016-12-17: -23363
WARNING. Abnormal entry count found on day 2016-12-24: -17268
WARNING. Abnormal entry count found on day 2016-12-24: -17268
Processing turnstile ('R533', 'R055', '00-03-06', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -20207
WARNING. Abnormal entry count found on day 2016-12-03: -20207
WARNING. Abnormal entry count found on day 2016-12-10: -19113
WARNING. Abnormal entry count found on day 2016-12-10: -19113
WARNING. Abnormal entry count found on day 2016-12-17: -20257
WARNING. Abnormal entry count found on day 2016-12-17: -20257
WARNING. Abnormal entry count found on day 2016-12-24: -17558
WARNING. Abnormal entry count found on day 2016-12-24: -17558
Processing turnstile ('N010', 'R126', '00-03-02', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2646
WARNING. Abnormal entry count found on day 2016-12-03: -2646
WARNING. Abnormal entry count found on day 2016-12-10: -2181
WARNING. Abnormal entry count found on day 2016-12-10: -2181
WARNING. Abnormal entry count found on day 2016-12-17: -2098
WARNING. Abnormal entry count found on day 2016-12-17: -2098
WARNING. Abnormal entry count found on day 2016-12-24: -1656
WARNING. Abnormal entry count found on day 2016-12-24: -1656
Processing turnstile ('N091', 'R029', '02-00-02', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5495
WARNING. Abnormal entry count found on day 2016-12-03: -5495
WARNING. Abnormal entry count found on day 2016-12-10: -5222
WARNING. Abnormal entry count found on day 2016-12-10: -5222
WARNING. Abnormal entry count found on day 2016-12-17: -4674
WARNING. Abnormal entry count found on day 2016-12-17: -4674
WARNING. Abnormal entry count found on day 2016-12-24: -3143
WARNING. Abnormal entry count found on day 2016-12-24: -3143
Processing turnstile ('N131', 'R383', '00-00-01', '80 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3822
WARNING. Abnormal entry count found on day 2016-12-03: -3822
WARNING. Abnormal entry count found on day 2016-12-10: -3690
WARNING. Abnormal entry count found on day 2016-12-10: -3690
WARNING. Abnormal entry count found on day 2016-12-17: -3652
WARNING. Abnormal entry count found on day 2016-12-17: -3652
WARNING. Abnormal entry count found on day 2016-12-24: -2769
WARNING. Abnormal entry count found on day 2016-12-24: -2769
Processing turnstile ('R116', 'R030', '00-00-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13328
WARNING. Abnormal entry count found on day 2016-12-03: -13328
WARNING. Abnormal entry count found on day 2016-12-10: -12483
WARNING. Abnormal entry count found on day 2016-12-10: -12483
WARNING. Abnormal entry count found on day 2016-12-17: -10087
WARNING. Abnormal entry count found on day 2016-12-17: -10087
WARNING. Abnormal entry count found on day 2016-12-24: -6154
WARNING. Abnormal entry count found on day 2016-12-24: -6154
Processing turnstile ('N409', 'R268', '00-00-01', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7348
WARNING. Abnormal entry count found on day 2016-12-03: -7348
WARNING. Abnormal entry count found on day 2016-12-10: -7090
WARNING. Abnormal entry count found on day 2016-12-10: -7090
WARNING. Abnormal entry count found on day 2016-12-17: -6896
WARNING. Abnormal entry count found on day 2016-12-17: -6896
WARNING. Abnormal entry count found on day 2016-12-24: -4676
WARNING. Abnormal entry count found on day 2016-12-24: -4676
Processing turnstile ('N185', 'R417', '00-00-02', 'BEACH 98 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1204
WARNING. Abnormal entry count found on day 2016-12-03: -1204
WARNING. Abnormal entry count found on day 2016-12-10: -1229
WARNING. Abnormal entry count found on day 2016-12-10: -1229
WARNING. Abnormal entry count found on day 2016-12-17: -1171
WARNING. Abnormal entry count found on day 2016-12-17: -1171
WARNING. Abnormal entry count found on day 2016-12-24: -721
WARNING. Abnormal entry count found on day 2016-12-24: -721
Processing turnstile ('R645', 'R110', '00-06-00', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -8602
WARNING. Abnormal entry count found on day 2016-12-03: -8602
WARNING. Abnormal entry count found on day 2016-12-10: -8467
WARNING. Abnormal entry count found on day 2016-12-10: -8467
WARNING. Abnormal entry count found on day 2016-12-17: -8387
WARNING. Abnormal entry count found on day 2016-12-17: -8387
WARNING. Abnormal entry count found on day 2016-12-24: -6377
WARNING. Abnormal entry count found on day 2016-12-24: -6377
Processing turnstile ('N210', 'R253', '00-00-02', '174-175 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -8077
WARNING. Abnormal entry count found on day 2016-12-03: -8077
WARNING. Abnormal entry count found on day 2016-12-10: -7774
WARNING. Abnormal entry count found on day 2016-12-10: -7774
WARNING. Abnormal entry count found on day 2016-12-17: -7827
WARNING. Abnormal entry count found on day 2016-12-17: -7827
WARNING. Abnormal entry count found on day 2016-12-24: -6552
WARNING. Abnormal entry count found on day 2016-12-24: -6552
Processing turnstile ('R513', 'R093', '00-00-00', '30 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1306
WARNING. Abnormal entry count found on day 2016-12-03: -1306
WARNING. Abnormal entry count found on day 2016-12-10: -827
WARNING. Abnormal entry count found on day 2016-12-10: -827
WARNING. Abnormal entry count found on day 2016-12-17: -1937
WARNING. Abnormal entry count found on day 2016-12-17: -1937
WARNING. Abnormal entry count found on day 2016-12-24: -350
WARNING. Abnormal entry count found on day 2016-12-24: -350
Processing turnstile ('N208', 'R443', '01-06-00', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2351
WARNING. Abnormal entry count found on day 2016-12-03: -2351
WARNING. Abnormal entry count found on day 2016-12-10: -2263
WARNING. Abnormal entry count found on day 2016-12-10: -2263
WARNING. Abnormal entry count found on day 2016-12-17: -2209
WARNING. Abnormal entry count found on day 2016-12-17: -2209
WARNING. Abnormal entry count found on day 2016-12-24: -1583
WARNING. Abnormal entry count found on day 2016-12-24: -1583
Processing turnstile ('R637', 'R451', '00-00-02', 'WINTHROP ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17323
WARNING. Abnormal entry count found on day 2016-12-03: -17323
WARNING. Abnormal entry count found on day 2016-12-10: -16387
WARNING. Abnormal entry count found on day 2016-12-10: -16387
WARNING. Abnormal entry count found on day 2016-12-17: -15552
WARNING. Abnormal entry count found on day 2016-12-17: -15552
WARNING. Abnormal entry count found on day 2016-12-24: -11271
WARNING. Abnormal entry count found on day 2016-12-24: -11271
Processing turnstile ('R114', 'R028', '02-00-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4202
WARNING. Abnormal entry count found on day 2016-12-03: -4202
WARNING. Abnormal entry count found on day 2016-12-10: -4111
WARNING. Abnormal entry count found on day 2016-12-10: -4111
WARNING. Abnormal entry count found on day 2016-12-17: -3974
WARNING. Abnormal entry count found on day 2016-12-17: -3974
WARNING. Abnormal entry count found on day 2016-12-24: -2617
WARNING. Abnormal entry count found on day 2016-12-24: -2617
Processing turnstile ('N122', 'R439', '00-00-02', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7855
WARNING. Abnormal entry count found on day 2016-12-03: -7855
WARNING. Abnormal entry count found on day 2016-12-10: -7809
WARNING. Abnormal entry count found on day 2016-12-10: -7809
WARNING. Abnormal entry count found on day 2016-12-17: -7505
WARNING. Abnormal entry count found on day 2016-12-17: -7505
WARNING. Abnormal entry count found on day 2016-12-24: -5470
WARNING. Abnormal entry count found on day 2016-12-24: -5470
Processing turnstile ('JFK01', 'R535', '00-00-02', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -474
WARNING. Abnormal entry count found on day 2016-12-03: -474
WARNING. Abnormal entry count found on day 2016-12-10: -493
WARNING. Abnormal entry count found on day 2016-12-10: -493
WARNING. Abnormal entry count found on day 2016-12-17: -1372
WARNING. Abnormal entry count found on day 2016-12-17: -1372
WARNING. Abnormal entry count found on day 2016-12-24: -3514
WARNING. Abnormal entry count found on day 2016-12-24: -3514
Processing turnstile ('N333B', 'R141', '02-00-01', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -9766
WARNING. Abnormal entry count found on day 2016-12-03: -9766
WARNING. Abnormal entry count found on day 2016-12-10: -9495
WARNING. Abnormal entry count found on day 2016-12-10: -9495
WARNING. Abnormal entry count found on day 2016-12-17: -9277
WARNING. Abnormal entry count found on day 2016-12-17: -9277
WARNING. Abnormal entry count found on day 2016-12-24: -6141
WARNING. Abnormal entry count found on day 2016-12-24: -6141
Processing turnstile ('N546', 'R204', '00-00-04', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4822
WARNING. Abnormal entry count found on day 2016-12-03: -4822
WARNING. Abnormal entry count found on day 2016-12-10: -5881
WARNING. Abnormal entry count found on day 2016-12-10: -5881
WARNING. Abnormal entry count found on day 2016-12-17: -4677
WARNING. Abnormal entry count found on day 2016-12-17: -4677
WARNING. Abnormal entry count found on day 2016-12-24: -3510
WARNING. Abnormal entry count found on day 2016-12-24: -3510
Processing turnstile ('N121B', 'R438', '00-00-00', 'RALPH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8102
WARNING. Abnormal entry count found on day 2016-12-03: -8102
WARNING. Abnormal entry count found on day 2016-12-10: -8053
WARNING. Abnormal entry count found on day 2016-12-10: -8053
WARNING. Abnormal entry count found on day 2016-12-17: -7703
WARNING. Abnormal entry count found on day 2016-12-17: -7703
WARNING. Abnormal entry count found on day 2016-12-24: -6001
WARNING. Abnormal entry count found on day 2016-12-24: -6001
Processing turnstile ('N400A', 'R359', '02-00-02', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -2384
WARNING. Abnormal entry count found on day 2016-12-03: -2384
WARNING. Abnormal entry count found on day 2016-12-10: -2511
WARNING. Abnormal entry count found on day 2016-12-10: -2511
WARNING. Abnormal entry count found on day 2016-12-17: -1997
WARNING. Abnormal entry count found on day 2016-12-17: -1997
WARNING. Abnormal entry count found on day 2016-12-24: -1114
WARNING. Abnormal entry count found on day 2016-12-24: -1114
Processing turnstile ('R258', 'R132', '00-03-02', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10131
WARNING. Abnormal entry count found on day 2016-12-03: -10131
WARNING. Abnormal entry count found on day 2016-12-10: -9711
WARNING. Abnormal entry count found on day 2016-12-10: -9711
WARNING. Abnormal entry count found on day 2016-12-17: -9330
WARNING. Abnormal entry count found on day 2016-12-17: -9330
WARNING. Abnormal entry count found on day 2016-12-24: -6875
WARNING. Abnormal entry count found on day 2016-12-24: -6875
Processing turnstile ('R229', 'R143', '01-00-02', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16969
WARNING. Abnormal entry count found on day 2016-12-03: -16969
WARNING. Abnormal entry count found on day 2016-12-10: -16863
WARNING. Abnormal entry count found on day 2016-12-10: -16863
WARNING. Abnormal entry count found on day 2016-12-17: -14285
WARNING. Abnormal entry count found on day 2016-12-17: -14285
WARNING. Abnormal entry count found on day 2016-12-24: -10009
WARNING. Abnormal entry count found on day 2016-12-24: -10009
Processing turnstile ('B020', 'R263', '00-06-05', 'AVENUE H')
Processing turnstile ('N051', 'R084', '02-03-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -16180
WARNING. Abnormal entry count found on day 2016-12-03: -16180
WARNING. Abnormal entry count found on day 2016-12-10: -16001
WARNING. Abnormal entry count found on day 2016-12-10: -16001
WARNING. Abnormal entry count found on day 2016-12-17: -14707
WARNING. Abnormal entry count found on day 2016-12-17: -14707
WARNING. Abnormal entry count found on day 2016-12-24: -10862
WARNING. Abnormal entry count found on day 2016-12-24: -10862
Processing turnstile ('PTH11', 'R545', '00-00-02', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -8755
WARNING. Abnormal entry count found on day 2016-12-03: -8755
WARNING. Abnormal entry count found on day 2016-12-10: -909431
WARNING. Abnormal entry count found on day 2016-12-10: -11879
WARNING. Abnormal entry count found on day 2016-12-10: -11879
WARNING. Abnormal entry count found on day 2016-12-17: -9264
WARNING. Abnormal entry count found on day 2016-12-17: -9264
WARNING. Abnormal entry count found on day 2016-12-24: -5934
WARNING. Abnormal entry count found on day 2016-12-24: -5934
Processing turnstile ('N330C', 'R202', '01-06-01', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -8687
WARNING. Abnormal entry count found on day 2016-12-03: -8687
WARNING. Abnormal entry count found on day 2016-12-10: -8276
WARNING. Abnormal entry count found on day 2016-12-10: -8276
WARNING. Abnormal entry count found on day 2016-12-17: -8227
WARNING. Abnormal entry count found on day 2016-12-17: -8227
WARNING. Abnormal entry count found on day 2016-12-24: -6159
WARNING. Abnormal entry count found on day 2016-12-24: -6159
Processing turnstile ('J025', 'R003', '00-00-00', 'CYPRESS HILLS')
WARNING. Abnormal entry count found on day 2016-12-03: -2280
WARNING. Abnormal entry count found on day 2016-12-03: -2280
WARNING. Abnormal entry count found on day 2016-12-10: -2244
WARNING. Abnormal entry count found on day 2016-12-10: -2244
WARNING. Abnormal entry count found on day 2016-12-17: -2165
WARNING. Abnormal entry count found on day 2016-12-17: -2165
WARNING. Abnormal entry count found on day 2016-12-24: -1677
WARNING. Abnormal entry count found on day 2016-12-24: -1677
Processing turnstile ('N342', 'R019', '01-03-04', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2407
WARNING. Abnormal entry count found on day 2016-12-03: -2407
WARNING. Abnormal entry count found on day 2016-12-10: -2259
WARNING. Abnormal entry count found on day 2016-12-10: -2259
WARNING. Abnormal entry count found on day 2016-12-17: -2245
WARNING. Abnormal entry count found on day 2016-12-17: -2245
WARNING. Abnormal entry count found on day 2016-12-24: -1726
WARNING. Abnormal entry count found on day 2016-12-24: -1726
Processing turnstile ('N338B', 'R128', '00-00-01', 'SUTPHIN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -2774
WARNING. Abnormal entry count found on day 2016-12-03: -2774
WARNING. Abnormal entry count found on day 2016-12-10: -2812
WARNING. Abnormal entry count found on day 2016-12-10: -2812
WARNING. Abnormal entry count found on day 2016-12-17: -2865
WARNING. Abnormal entry count found on day 2016-12-17: -2865
WARNING. Abnormal entry count found on day 2016-12-24: -2370
WARNING. Abnormal entry count found on day 2016-12-24: -2370
Processing turnstile ('A083', 'R125', '00-00-03', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -901
WARNING. Abnormal entry count found on day 2016-12-03: -901
WARNING. Abnormal entry count found on day 2016-12-10: -938
WARNING. Abnormal entry count found on day 2016-12-10: -938
WARNING. Abnormal entry count found on day 2016-12-17: -972
WARNING. Abnormal entry count found on day 2016-12-17: -972
WARNING. Abnormal entry count found on day 2016-12-24: -845
WARNING. Abnormal entry count found on day 2016-12-24: -845
Processing turnstile ('C008', 'R099', '00-03-03', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10751
WARNING. Abnormal entry count found on day 2016-12-03: -10751
WARNING. Abnormal entry count found on day 2016-12-10: -10467
WARNING. Abnormal entry count found on day 2016-12-10: -10467
WARNING. Abnormal entry count found on day 2016-12-17: -9198
WARNING. Abnormal entry count found on day 2016-12-17: -9198
WARNING. Abnormal entry count found on day 2016-12-24: -4520
WARNING. Abnormal entry count found on day 2016-12-24: -4520
Processing turnstile ('N309A', 'R140', '00-06-00', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -931
WARNING. Abnormal entry count found on day 2016-12-03: -931
WARNING. Abnormal entry count found on day 2016-12-10: -1049
WARNING. Abnormal entry count found on day 2016-12-10: -1049
WARNING. Abnormal entry count found on day 2016-12-17: -1039
WARNING. Abnormal entry count found on day 2016-12-17: -1039
WARNING. Abnormal entry count found on day 2016-12-24: -698
WARNING. Abnormal entry count found on day 2016-12-24: -698
Processing turnstile ('N217', 'R112', '00-03-00', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -4329
WARNING. Abnormal entry count found on day 2016-12-03: -4329
WARNING. Abnormal entry count found on day 2016-12-10: -4008
WARNING. Abnormal entry count found on day 2016-12-10: -4008
WARNING. Abnormal entry count found on day 2016-12-17: -3899
WARNING. Abnormal entry count found on day 2016-12-17: -3899
WARNING. Abnormal entry count found on day 2016-12-24: -3213
WARNING. Abnormal entry count found on day 2016-12-24: -3213
Processing turnstile ('R332', 'R365', '00-00-02', '219 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7032
WARNING. Abnormal entry count found on day 2016-12-03: -7032
WARNING. Abnormal entry count found on day 2016-12-10: -6617
WARNING. Abnormal entry count found on day 2016-12-10: -6617
WARNING. Abnormal entry count found on day 2016-12-17: -6572
WARNING. Abnormal entry count found on day 2016-12-17: -6572
WARNING. Abnormal entry count found on day 2016-12-24: -5247
WARNING. Abnormal entry count found on day 2016-12-24: -5247
Processing turnstile ('H037', 'R349', '00-00-01', 'SUTTER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11099
WARNING. Abnormal entry count found on day 2016-12-03: -11099
WARNING. Abnormal entry count found on day 2016-12-10: -10060
WARNING. Abnormal entry count found on day 2016-12-10: -10060
WARNING. Abnormal entry count found on day 2016-12-17: -9795
WARNING. Abnormal entry count found on day 2016-12-17: -9795
WARNING. Abnormal entry count found on day 2016-12-24: -7646
WARNING. Abnormal entry count found on day 2016-12-24: -7646
Processing turnstile ('N012', 'R035', '01-05-00', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('J009', 'R378', '00-00-03', 'MYRTLE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -20697
WARNING. Abnormal entry count found on day 2016-12-03: -20697
WARNING. Abnormal entry count found on day 2016-12-10: -19978
WARNING. Abnormal entry count found on day 2016-12-10: -19978
WARNING. Abnormal entry count found on day 2016-12-17: -18887
WARNING. Abnormal entry count found on day 2016-12-17: -18887
WARNING. Abnormal entry count found on day 2016-12-24: -14359
WARNING. Abnormal entry count found on day 2016-12-24: -14359
Processing turnstile ('N304', 'R015', '01-00-00', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1094
WARNING. Abnormal entry count found on day 2016-12-03: -1094
WARNING. Abnormal entry count found on day 2016-12-10: -1024
WARNING. Abnormal entry count found on day 2016-12-10: -1024
WARNING. Abnormal entry count found on day 2016-12-17: -1016
WARNING. Abnormal entry count found on day 2016-12-17: -1016
WARNING. Abnormal entry count found on day 2016-12-24: -526
WARNING. Abnormal entry count found on day 2016-12-24: -526
Processing turnstile ('N056', 'R188', '01-00-02', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11826
WARNING. Abnormal entry count found on day 2016-12-03: -11826
WARNING. Abnormal entry count found on day 2016-12-10: -12313
WARNING. Abnormal entry count found on day 2016-12-10: -12313
WARNING. Abnormal entry count found on day 2016-12-17: -10999
WARNING. Abnormal entry count found on day 2016-12-17: -10999
WARNING. Abnormal entry count found on day 2016-12-24: -8532
WARNING. Abnormal entry count found on day 2016-12-24: -8532
Processing turnstile ('D008', 'R392', '00-00-00', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4994
WARNING. Abnormal entry count found on day 2016-12-03: -4994
WARNING. Abnormal entry count found on day 2016-12-10: -4716
WARNING. Abnormal entry count found on day 2016-12-10: -4716
WARNING. Abnormal entry count found on day 2016-12-17: -4703
WARNING. Abnormal entry count found on day 2016-12-17: -4703
WARNING. Abnormal entry count found on day 2016-12-24: -4191
WARNING. Abnormal entry count found on day 2016-12-24: -4191
Processing turnstile ('N012', 'R035', '01-06-01', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -591
WARNING. Abnormal entry count found on day 2016-12-03: -591
WARNING. Abnormal entry count found on day 2016-12-10: -498
WARNING. Abnormal entry count found on day 2016-12-10: -498
WARNING. Abnormal entry count found on day 2016-12-17: -470
WARNING. Abnormal entry count found on day 2016-12-17: -470
WARNING. Abnormal entry count found on day 2016-12-24: -386
WARNING. Abnormal entry count found on day 2016-12-24: -386
Processing turnstile ('J030', 'R005', '00-00-02', '85 ST-FOREST PK')
WARNING. Abnormal entry count found on day 2016-12-03: -3800
WARNING. Abnormal entry count found on day 2016-12-03: -3800
WARNING. Abnormal entry count found on day 2016-12-10: -4878
WARNING. Abnormal entry count found on day 2016-12-10: -4878
WARNING. Abnormal entry count found on day 2016-12-17: -3912
WARNING. Abnormal entry count found on day 2016-12-17: -3912
WARNING. Abnormal entry count found on day 2016-12-28: -118103
WARNING. Abnormal entry count found on day 2016-12-24: 116059
WARNING. Abnormal entry count found on day 2016-12-28: -118103
WARNING. Abnormal entry count found on day 2016-12-24: 116059
WARNING. Abnormal entry count found on day 2016-12-28: -118103
Processing turnstile ('R329', 'R362', '00-00-02', 'ALLERTON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11253
WARNING. Abnormal entry count found on day 2016-12-03: -11253
WARNING. Abnormal entry count found on day 2016-12-10: -10611
WARNING. Abnormal entry count found on day 2016-12-10: -10611
WARNING. Abnormal entry count found on day 2016-12-17: -10477
WARNING. Abnormal entry count found on day 2016-12-17: -10477
WARNING. Abnormal entry count found on day 2016-12-24: -8625
WARNING. Abnormal entry count found on day 2016-12-24: -8625
Processing turnstile ('R328', 'R361', '00-00-01', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10035
WARNING. Abnormal entry count found on day 2016-12-03: -10035
WARNING. Abnormal entry count found on day 2016-12-10: -8859
WARNING. Abnormal entry count found on day 2016-12-10: -8859
WARNING. Abnormal entry count found on day 2016-12-17: -9872
WARNING. Abnormal entry count found on day 2016-12-17: -9872
WARNING. Abnormal entry count found on day 2016-12-24: -7747
WARNING. Abnormal entry count found on day 2016-12-24: -7747
Processing turnstile ('A030', 'R083', '01-03-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -23453
WARNING. Abnormal entry count found on day 2016-12-03: -23453
WARNING. Abnormal entry count found on day 2016-12-10: -19245
WARNING. Abnormal entry count found on day 2016-12-10: -19245
WARNING. Abnormal entry count found on day 2016-12-17: -19399
WARNING. Abnormal entry count found on day 2016-12-17: -19399
WARNING. Abnormal entry count found on day 2016-12-24: -12956
WARNING. Abnormal entry count found on day 2016-12-24: -12956
Processing turnstile ('R327', 'R361', '01-06-01', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10300
WARNING. Abnormal entry count found on day 2016-12-03: -10300
WARNING. Abnormal entry count found on day 2016-12-10: -8897
WARNING. Abnormal entry count found on day 2016-12-10: -8897
WARNING. Abnormal entry count found on day 2016-12-17: -9566
WARNING. Abnormal entry count found on day 2016-12-17: -9566
WARNING. Abnormal entry count found on day 2016-12-24: -8550
WARNING. Abnormal entry count found on day 2016-12-24: -8550
Processing turnstile ('N330C', 'R202', '01-04-00', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -11
WARNING. Abnormal entry count found on day 2016-12-24: -11
Processing turnstile ('B021', 'R228', '00-00-01', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -4125
WARNING. Abnormal entry count found on day 2016-12-03: -4125
WARNING. Abnormal entry count found on day 2016-12-10: -3978
WARNING. Abnormal entry count found on day 2016-12-10: -3978
WARNING. Abnormal entry count found on day 2016-12-17: -4567
WARNING. Abnormal entry count found on day 2016-12-17: -4567
WARNING. Abnormal entry count found on day 2016-12-24: -3498
WARNING. Abnormal entry count found on day 2016-12-24: -3498
Processing turnstile ('R336', 'R145', '00-00-01', 'WAKEFIELD/241')
WARNING. Abnormal entry count found on day 2016-12-03: -4827
WARNING. Abnormal entry count found on day 2016-12-03: -4827
WARNING. Abnormal entry count found on day 2016-12-10: -4797
WARNING. Abnormal entry count found on day 2016-12-10: -4797
WARNING. Abnormal entry count found on day 2016-12-17: -4626
WARNING. Abnormal entry count found on day 2016-12-17: -4626
WARNING. Abnormal entry count found on day 2016-12-24: -3598
WARNING. Abnormal entry count found on day 2016-12-24: -3598
Processing turnstile ('R117', 'R343', '00-00-00', 'FRANKLIN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10689
WARNING. Abnormal entry count found on day 2016-12-03: -10689
WARNING. Abnormal entry count found on day 2016-12-10: -10761
WARNING. Abnormal entry count found on day 2016-12-10: -10761
WARNING. Abnormal entry count found on day 2016-12-17: -8997
WARNING. Abnormal entry count found on day 2016-12-17: -8997
WARNING. Abnormal entry count found on day 2016-12-24: -5976
WARNING. Abnormal entry count found on day 2016-12-24: -5976
Processing turnstile ('N605', 'R024', '00-06-03', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -12039
WARNING. Abnormal entry count found on day 2016-12-03: -12039
WARNING. Abnormal entry count found on day 2016-12-10: -10673
WARNING. Abnormal entry count found on day 2016-12-10: -10673
WARNING. Abnormal entry count found on day 2016-12-17: -9823
WARNING. Abnormal entry count found on day 2016-12-17: -9823
WARNING. Abnormal entry count found on day 2016-12-24: -8952
WARNING. Abnormal entry count found on day 2016-12-24: -8952
Processing turnstile ('R186', 'R036', '00-05-01', 'DYCKMAN ST')
Processing turnstile ('R127', 'R105', '00-03-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10511
WARNING. Abnormal entry count found on day 2016-12-03: -10511
WARNING. Abnormal entry count found on day 2016-12-10: -10737
WARNING. Abnormal entry count found on day 2016-12-10: -10737
WARNING. Abnormal entry count found on day 2016-12-17: -9878
WARNING. Abnormal entry count found on day 2016-12-17: -9878
WARNING. Abnormal entry count found on day 2016-12-24: -7921
WARNING. Abnormal entry count found on day 2016-12-24: -7921
Processing turnstile ('R622', 'R123', '00-00-03', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7430
WARNING. Abnormal entry count found on day 2016-12-03: -7430
WARNING. Abnormal entry count found on day 2016-12-10: -4888
WARNING. Abnormal entry count found on day 2016-12-10: -4888
WARNING. Abnormal entry count found on day 2016-12-17: -5440
WARNING. Abnormal entry count found on day 2016-12-17: -5440
WARNING. Abnormal entry count found on day 2016-12-24: -2949
WARNING. Abnormal entry count found on day 2016-12-24: -2949
Processing turnstile ('C025', 'R215', '00-03-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10399
WARNING. Abnormal entry count found on day 2016-12-03: -10399
WARNING. Abnormal entry count found on day 2016-12-10: -10001
WARNING. Abnormal entry count found on day 2016-12-10: -10001
WARNING. Abnormal entry count found on day 2016-12-17: -10981
WARNING. Abnormal entry count found on day 2016-12-17: -10981
WARNING. Abnormal entry count found on day 2016-12-24: -8611
WARNING. Abnormal entry count found on day 2016-12-24: -8611
Processing turnstile ('R625', 'R062', '01-00-03', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -13306
WARNING. Abnormal entry count found on day 2016-12-03: -13306
WARNING. Abnormal entry count found on day 2016-12-10: -12733
WARNING. Abnormal entry count found on day 2016-12-10: -12733
WARNING. Abnormal entry count found on day 2016-12-17: -12060
WARNING. Abnormal entry count found on day 2016-12-17: -12060
WARNING. Abnormal entry count found on day 2016-12-24: -9653
WARNING. Abnormal entry count found on day 2016-12-24: -9653
Processing turnstile ('C026', 'R215', '01-06-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5041
WARNING. Abnormal entry count found on day 2016-12-03: -5041
WARNING. Abnormal entry count found on day 2016-12-10: -5119
WARNING. Abnormal entry count found on day 2016-12-10: -5119
WARNING. Abnormal entry count found on day 2016-12-17: -4766
WARNING. Abnormal entry count found on day 2016-12-17: -4766
WARNING. Abnormal entry count found on day 2016-12-24: -3498
WARNING. Abnormal entry count found on day 2016-12-24: -3498
Processing turnstile ('A027', 'R082', '01-03-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11571
WARNING. Abnormal entry count found on day 2016-12-03: -11571
WARNING. Abnormal entry count found on day 2016-12-10: -11384
WARNING. Abnormal entry count found on day 2016-12-10: -11384
WARNING. Abnormal entry count found on day 2016-12-17: -9341
WARNING. Abnormal entry count found on day 2016-12-17: -9341
WARNING. Abnormal entry count found on day 2016-12-24: -7340
WARNING. Abnormal entry count found on day 2016-12-24: -7340
Processing turnstile ('R215', 'R322', '00-00-00', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19759
WARNING. Abnormal entry count found on day 2016-12-03: -19759
WARNING. Abnormal entry count found on day 2016-12-10: -20166
WARNING. Abnormal entry count found on day 2016-12-10: -20166
WARNING. Abnormal entry count found on day 2016-12-17: -19193
WARNING. Abnormal entry count found on day 2016-12-17: -19193
WARNING. Abnormal entry count found on day 2016-12-24: -15556
WARNING. Abnormal entry count found on day 2016-12-24: -15556
Processing turnstile ('N218', 'R112', '01-06-00', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -6983
WARNING. Abnormal entry count found on day 2016-12-03: -6983
WARNING. Abnormal entry count found on day 2016-12-10: -6933
WARNING. Abnormal entry count found on day 2016-12-10: -6933
WARNING. Abnormal entry count found on day 2016-12-17: -7420
WARNING. Abnormal entry count found on day 2016-12-17: -7420
WARNING. Abnormal entry count found on day 2016-12-24: -5243
WARNING. Abnormal entry count found on day 2016-12-24: -5243
Processing turnstile ('N120', 'R153', '00-00-01', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10875
WARNING. Abnormal entry count found on day 2016-12-03: -10875
WARNING. Abnormal entry count found on day 2016-12-10: -10776
WARNING. Abnormal entry count found on day 2016-12-10: -10776
WARNING. Abnormal entry count found on day 2016-12-17: -10439
WARNING. Abnormal entry count found on day 2016-12-17: -10439
WARNING. Abnormal entry count found on day 2016-12-24: -10903
WARNING. Abnormal entry count found on day 2016-12-24: -10903
Processing turnstile ('N542', 'R241', '00-05-00', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -3149
WARNING. Abnormal entry count found on day 2016-12-03: -3149
WARNING. Abnormal entry count found on day 2016-12-10: -3919
WARNING. Abnormal entry count found on day 2016-12-10: -3919
WARNING. Abnormal entry count found on day 2016-12-17: -3581
WARNING. Abnormal entry count found on day 2016-12-17: -3581
WARNING. Abnormal entry count found on day 2016-12-24: -2490
WARNING. Abnormal entry count found on day 2016-12-24: -2490
Processing turnstile ('N016A', 'R296', '00-00-01', '163 ST-AMSTERDM')
WARNING. Abnormal entry count found on day 2016-12-03: -5649
WARNING. Abnormal entry count found on day 2016-12-03: -5649
WARNING. Abnormal entry count found on day 2016-12-10: -5604
WARNING. Abnormal entry count found on day 2016-12-10: -5604
WARNING. Abnormal entry count found on day 2016-12-17: -5597
WARNING. Abnormal entry count found on day 2016-12-17: -5597
WARNING. Abnormal entry count found on day 2016-12-24: -4291
WARNING. Abnormal entry count found on day 2016-12-24: -4291
Processing turnstile ('H038', 'R350', '00-00-02', 'LIVONIA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9768
WARNING. Abnormal entry count found on day 2016-12-03: -9768
WARNING. Abnormal entry count found on day 2016-12-10: -8097
WARNING. Abnormal entry count found on day 2016-12-10: -8097
WARNING. Abnormal entry count found on day 2016-12-17: -9216
WARNING. Abnormal entry count found on day 2016-12-17: -9216
WARNING. Abnormal entry count found on day 2016-12-24: -7362
WARNING. Abnormal entry count found on day 2016-12-24: -7362
Processing turnstile ('B012', 'R196', '00-00-01', 'PROSPECT PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -9935
WARNING. Abnormal entry count found on day 2016-12-03: -9935
WARNING. Abnormal entry count found on day 2016-12-10: -9576
WARNING. Abnormal entry count found on day 2016-12-10: -9576
WARNING. Abnormal entry count found on day 2016-12-17: -8899
WARNING. Abnormal entry count found on day 2016-12-17: -8899
WARNING. Abnormal entry count found on day 2016-12-24: -1730
WARNING. Abnormal entry count found on day 2016-12-24: -1730
Processing turnstile ('N533', 'R129', '02-05-00', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('R328', 'R361', '00-00-02', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -14414
WARNING. Abnormal entry count found on day 2016-12-03: -14414
WARNING. Abnormal entry count found on day 2016-12-10: -14166
WARNING. Abnormal entry count found on day 2016-12-10: -14166
WARNING. Abnormal entry count found on day 2016-12-17: -13683
WARNING. Abnormal entry count found on day 2016-12-17: -13683
WARNING. Abnormal entry count found on day 2016-12-24: -10885
WARNING. Abnormal entry count found on day 2016-12-24: -10885
Processing turnstile ('R311', 'R053', '00-00-03', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9518
WARNING. Abnormal entry count found on day 2016-12-03: -9518
WARNING. Abnormal entry count found on day 2016-12-10: -9137
WARNING. Abnormal entry count found on day 2016-12-10: -9137
WARNING. Abnormal entry count found on day 2016-12-17: -9365
WARNING. Abnormal entry count found on day 2016-12-17: -9365
WARNING. Abnormal entry count found on day 2016-12-24: -6947
WARNING. Abnormal entry count found on day 2016-12-24: -6947
Processing turnstile ('PTH09', 'R548', '00-00-02', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10777
WARNING. Abnormal entry count found on day 2016-12-03: -10777
WARNING. Abnormal entry count found on day 2016-12-10: -8031
WARNING. Abnormal entry count found on day 2016-12-10: -8031
WARNING. Abnormal entry count found on day 2016-12-17: -7385
WARNING. Abnormal entry count found on day 2016-12-17: -7385
WARNING. Abnormal entry count found on day 2016-12-24: -5649
WARNING. Abnormal entry count found on day 2016-12-24: -5649
Processing turnstile ('N217', 'R112', '00-03-02', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -1305
WARNING. Abnormal entry count found on day 2016-12-03: -1305
WARNING. Abnormal entry count found on day 2016-12-10: -2664
WARNING. Abnormal entry count found on day 2016-12-10: -2664
WARNING. Abnormal entry count found on day 2016-12-17: -2873
WARNING. Abnormal entry count found on day 2016-12-17: -2873
WARNING. Abnormal entry count found on day 2016-12-24: -2204
WARNING. Abnormal entry count found on day 2016-12-24: -2204
Processing turnstile ('R612', 'R057', '01-00-03', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -3477
WARNING. Abnormal entry count found on day 2016-12-03: -3477
WARNING. Abnormal entry count found on day 2016-12-10: -3248
WARNING. Abnormal entry count found on day 2016-12-10: -3248
WARNING. Abnormal entry count found on day 2016-12-17: -3190
WARNING. Abnormal entry count found on day 2016-12-17: -3190
WARNING. Abnormal entry count found on day 2016-12-24: -2646
WARNING. Abnormal entry count found on day 2016-12-24: -2646
Processing turnstile ('A027', 'R082', '01-03-03', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7067
WARNING. Abnormal entry count found on day 2016-12-03: -7067
WARNING. Abnormal entry count found on day 2016-12-10: -7024
WARNING. Abnormal entry count found on day 2016-12-10: -7024
WARNING. Abnormal entry count found on day 2016-12-17: -6381
WARNING. Abnormal entry count found on day 2016-12-17: -6381
WARNING. Abnormal entry count found on day 2016-12-24: -4740
WARNING. Abnormal entry count found on day 2016-12-24: -4740
Processing turnstile ('N124', 'R103', '00-03-02', 'BROADWAY JCT')
WARNING. Abnormal entry count found on day 2016-12-03: -22237
WARNING. Abnormal entry count found on day 2016-12-03: -22237
WARNING. Abnormal entry count found on day 2016-12-10: -21816
WARNING. Abnormal entry count found on day 2016-12-10: -21816
WARNING. Abnormal entry count found on day 2016-12-17: -21489
WARNING. Abnormal entry count found on day 2016-12-17: -21489
WARNING. Abnormal entry count found on day 2016-12-24: -17794
WARNING. Abnormal entry count found on day 2016-12-24: -17794
Processing turnstile ('N185', 'R417', '00-05-01', 'BEACH 98 ST')
Processing turnstile ('PTH02', 'R544', '00-04-00', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -74
WARNING. Abnormal entry count found on day 2016-12-03: -74
WARNING. Abnormal entry count found on day 2016-12-10: -161
WARNING. Abnormal entry count found on day 2016-12-10: -161
WARNING. Abnormal entry count found on day 2016-12-17: -173
WARNING. Abnormal entry count found on day 2016-12-17: -173
WARNING. Abnormal entry count found on day 2016-12-24: -202
WARNING. Abnormal entry count found on day 2016-12-24: -202
Processing turnstile ('J001', 'R460', '01-00-00', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12017
WARNING. Abnormal entry count found on day 2016-12-03: -12017
WARNING. Abnormal entry count found on day 2016-12-10: -11534
WARNING. Abnormal entry count found on day 2016-12-10: -11534
WARNING. Abnormal entry count found on day 2016-12-17: -10097
WARNING. Abnormal entry count found on day 2016-12-17: -10097
WARNING. Abnormal entry count found on day 2016-12-24: -8912
WARNING. Abnormal entry count found on day 2016-12-24: -8912
Processing turnstile ('N183', 'R415', '00-00-00', 'BROAD CHANNEL')
WARNING. Abnormal entry count found on day 2016-12-03: -557
WARNING. Abnormal entry count found on day 2016-12-03: -557
WARNING. Abnormal entry count found on day 2016-12-10: -522
WARNING. Abnormal entry count found on day 2016-12-10: -522
WARNING. Abnormal entry count found on day 2016-12-17: -505
WARNING. Abnormal entry count found on day 2016-12-17: -505
WARNING. Abnormal entry count found on day 2016-12-24: -359
WARNING. Abnormal entry count found on day 2016-12-24: -359
Processing turnstile ('PTH17', 'R541', '01-01-04', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9790
WARNING. Abnormal entry count found on day 2016-12-03: -9790
WARNING. Abnormal entry count found on day 2016-12-10: -9464
WARNING. Abnormal entry count found on day 2016-12-10: -9464
WARNING. Abnormal entry count found on day 2016-12-17: -8259
WARNING. Abnormal entry count found on day 2016-12-17: -8259
WARNING. Abnormal entry count found on day 2016-12-24: -7747
WARNING. Abnormal entry count found on day 2016-12-24: -7747
Processing turnstile ('R242A', 'R049', '02-00-01', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1838
WARNING. Abnormal entry count found on day 2016-12-03: -1838
WARNING. Abnormal entry count found on day 2016-12-10: -2276
WARNING. Abnormal entry count found on day 2016-12-10: -2276
WARNING. Abnormal entry count found on day 2016-12-17: -1478
WARNING. Abnormal entry count found on day 2016-12-17: -1478
WARNING. Abnormal entry count found on day 2016-12-24: -1228
WARNING. Abnormal entry count found on day 2016-12-24: -1228
Processing turnstile ('R530', 'R310', '00-00-00', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15460
WARNING. Abnormal entry count found on day 2016-12-03: -15460
WARNING. Abnormal entry count found on day 2016-12-10: -14492
WARNING. Abnormal entry count found on day 2016-12-10: -14492
WARNING. Abnormal entry count found on day 2016-12-17: -13887
WARNING. Abnormal entry count found on day 2016-12-17: -13887
WARNING. Abnormal entry count found on day 2016-12-24: -12822
WARNING. Abnormal entry count found on day 2016-12-24: -12822
Processing turnstile ('C027', 'R216', '00-03-00', 'BAY RIDGE-95 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2643
WARNING. Abnormal entry count found on day 2016-12-03: -2643
WARNING. Abnormal entry count found on day 2016-12-10: -2708
WARNING. Abnormal entry count found on day 2016-12-10: -2708
WARNING. Abnormal entry count found on day 2016-12-17: -2538
WARNING. Abnormal entry count found on day 2016-12-17: -2538
WARNING. Abnormal entry count found on day 2016-12-24: -2169
WARNING. Abnormal entry count found on day 2016-12-24: -2169
Processing turnstile ('N110', 'R283', '00-05-00', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5226
WARNING. Abnormal entry count found on day 2016-12-03: -5226
WARNING. Abnormal entry count found on day 2016-12-10: -5156
WARNING. Abnormal entry count found on day 2016-12-10: -5156
WARNING. Abnormal entry count found on day 2016-12-17: -4598
WARNING. Abnormal entry count found on day 2016-12-17: -4598
WARNING. Abnormal entry count found on day 2016-12-24: -3093
WARNING. Abnormal entry count found on day 2016-12-24: -3093
Processing turnstile ('N534', 'R220', '01-00-00', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7044
WARNING. Abnormal entry count found on day 2016-12-03: -7044
WARNING. Abnormal entry count found on day 2016-12-10: -6934
WARNING. Abnormal entry count found on day 2016-12-10: -6934
WARNING. Abnormal entry count found on day 2016-12-17: -6549
WARNING. Abnormal entry count found on day 2016-12-17: -6549
WARNING. Abnormal entry count found on day 2016-12-24: -3907
WARNING. Abnormal entry count found on day 2016-12-24: -3907
Processing turnstile ('N091', 'R029', '02-00-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6383
WARNING. Abnormal entry count found on day 2016-12-03: -6383
WARNING. Abnormal entry count found on day 2016-12-10: -6293
WARNING. Abnormal entry count found on day 2016-12-10: -6293
WARNING. Abnormal entry count found on day 2016-12-17: -5771
WARNING. Abnormal entry count found on day 2016-12-17: -5771
WARNING. Abnormal entry count found on day 2016-12-24: -3956
WARNING. Abnormal entry count found on day 2016-12-24: -3956
Processing turnstile ('N333A', 'R141', '00-00-00', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -1568
WARNING. Abnormal entry count found on day 2016-12-03: -1568
WARNING. Abnormal entry count found on day 2016-12-10: -1505
WARNING. Abnormal entry count found on day 2016-12-10: -1505
WARNING. Abnormal entry count found on day 2016-12-17: -1484
WARNING. Abnormal entry count found on day 2016-12-17: -1484
WARNING. Abnormal entry count found on day 2016-12-24: -1442
WARNING. Abnormal entry count found on day 2016-12-24: -1442
Processing turnstile ('N520', 'R240', '00-00-00', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20597
WARNING. Abnormal entry count found on day 2016-12-03: -20597
WARNING. Abnormal entry count found on day 2016-12-10: -20367
WARNING. Abnormal entry count found on day 2016-12-10: -20367
WARNING. Abnormal entry count found on day 2016-12-17: -20373
WARNING. Abnormal entry count found on day 2016-12-17: -20373
WARNING. Abnormal entry count found on day 2016-12-24: -19064
WARNING. Abnormal entry count found on day 2016-12-24: -19064
Processing turnstile ('N215', 'R237', '00-00-02', '182-183 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -10920
WARNING. Abnormal entry count found on day 2016-12-03: -10920
WARNING. Abnormal entry count found on day 2016-12-10: -11094
WARNING. Abnormal entry count found on day 2016-12-10: -11094
WARNING. Abnormal entry count found on day 2016-12-17: -9911
WARNING. Abnormal entry count found on day 2016-12-17: -9911
WARNING. Abnormal entry count found on day 2016-12-24: -8429
WARNING. Abnormal entry count found on day 2016-12-24: -8429
Processing turnstile ('A022', 'R022', '01-00-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -30595
WARNING. Abnormal entry count found on day 2016-12-03: -30595
WARNING. Abnormal entry count found on day 2016-12-10: -26626
WARNING. Abnormal entry count found on day 2016-12-10: -26626
WARNING. Abnormal entry count found on day 2016-12-17: -32333
WARNING. Abnormal entry count found on day 2016-12-17: -32333
WARNING. Abnormal entry count found on day 2016-12-24: -30345
WARNING. Abnormal entry count found on day 2016-12-24: -30345
Processing turnstile ('R550', 'R072', '00-03-04', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -8262
WARNING. Abnormal entry count found on day 2016-12-03: -8262
WARNING. Abnormal entry count found on day 2016-12-10: -7785
WARNING. Abnormal entry count found on day 2016-12-10: -7785
WARNING. Abnormal entry count found on day 2016-12-17: -6389
WARNING. Abnormal entry count found on day 2016-12-17: -6389
WARNING. Abnormal entry count found on day 2016-12-24: -4701
WARNING. Abnormal entry count found on day 2016-12-24: -4701
Processing turnstile ('N137', 'R354', '00-00-01', '104 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2572
WARNING. Abnormal entry count found on day 2016-12-03: -2572
WARNING. Abnormal entry count found on day 2016-12-10: -2682
WARNING. Abnormal entry count found on day 2016-12-10: -2682
WARNING. Abnormal entry count found on day 2016-12-17: -2422
WARNING. Abnormal entry count found on day 2016-12-17: -2422
WARNING. Abnormal entry count found on day 2016-12-24: -1978
WARNING. Abnormal entry count found on day 2016-12-24: -1978
Processing turnstile ('R112', 'R027', '02-00-04', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -521
WARNING. Abnormal entry count found on day 2016-12-03: -521
WARNING. Abnormal entry count found on day 2016-12-10: -564
WARNING. Abnormal entry count found on day 2016-12-10: -564
WARNING. Abnormal entry count found on day 2016-12-17: -402
WARNING. Abnormal entry count found on day 2016-12-17: -402
WARNING. Abnormal entry count found on day 2016-12-24: -142
WARNING. Abnormal entry count found on day 2016-12-24: -142
Processing turnstile ('N034', 'R334', '01-00-01', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -6103
WARNING. Abnormal entry count found on day 2016-12-03: -6103
WARNING. Abnormal entry count found on day 2016-12-10: -5693
WARNING. Abnormal entry count found on day 2016-12-10: -5693
WARNING. Abnormal entry count found on day 2016-12-17: -5335
WARNING. Abnormal entry count found on day 2016-12-17: -5335
WARNING. Abnormal entry count found on day 2016-12-24: -4201
WARNING. Abnormal entry count found on day 2016-12-24: -4201
Processing turnstile ('N546', 'R204', '00-00-05', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7573
WARNING. Abnormal entry count found on day 2016-12-03: -7573
WARNING. Abnormal entry count found on day 2016-12-10: -8947
WARNING. Abnormal entry count found on day 2016-12-10: -8947
WARNING. Abnormal entry count found on day 2016-12-17: -7590
WARNING. Abnormal entry count found on day 2016-12-17: -7590
WARNING. Abnormal entry count found on day 2016-12-24: -5640
WARNING. Abnormal entry count found on day 2016-12-24: -5640
Processing turnstile ('R508', 'R346', '00-00-01', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -4292
WARNING. Abnormal entry count found on day 2016-12-03: -4292
WARNING. Abnormal entry count found on day 2016-12-10: -4299
WARNING. Abnormal entry count found on day 2016-12-10: -4299
WARNING. Abnormal entry count found on day 2016-12-17: -3818
WARNING. Abnormal entry count found on day 2016-12-17: -3818
WARNING. Abnormal entry count found on day 2016-12-24: -2954
WARNING. Abnormal entry count found on day 2016-12-24: -2954
Processing turnstile ('PTH17', 'R541', '01-00-03', 'THIRTY THIRD ST')
Processing turnstile ('R305', 'R206', '01-00-01', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11155
WARNING. Abnormal entry count found on day 2016-12-03: -11155
WARNING. Abnormal entry count found on day 2016-12-10: -12214
WARNING. Abnormal entry count found on day 2016-12-10: -12214
WARNING. Abnormal entry count found on day 2016-12-17: -10492
WARNING. Abnormal entry count found on day 2016-12-17: -10492
WARNING. Abnormal entry count found on day 2016-12-24: -7684
WARNING. Abnormal entry count found on day 2016-12-24: -7684
Processing turnstile ('N103', 'R127', '00-00-02', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -4098
WARNING. Abnormal entry count found on day 2016-12-03: -4098
WARNING. Abnormal entry count found on day 2016-12-10: -3853
WARNING. Abnormal entry count found on day 2016-12-10: -3853
WARNING. Abnormal entry count found on day 2016-12-17: -3473
WARNING. Abnormal entry count found on day 2016-12-17: -3473
WARNING. Abnormal entry count found on day 2016-12-24: -2404
WARNING. Abnormal entry count found on day 2016-12-24: -2404
Processing turnstile ('A030', 'R083', '01-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6882
WARNING. Abnormal entry count found on day 2016-12-03: -6882
WARNING. Abnormal entry count found on day 2016-12-10: -6903
WARNING. Abnormal entry count found on day 2016-12-10: -6903
WARNING. Abnormal entry count found on day 2016-12-17: -5805
WARNING. Abnormal entry count found on day 2016-12-17: -5805
WARNING. Abnormal entry count found on day 2016-12-24: -4166
WARNING. Abnormal entry count found on day 2016-12-24: -4166
Processing turnstile ('R610', 'R057', '00-05-01', 'ATL AV-BARCLAY')
Processing turnstile ('A029', 'R082', '00-00-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4916
WARNING. Abnormal entry count found on day 2016-12-03: -4916
WARNING. Abnormal entry count found on day 2016-12-10: -4744
WARNING. Abnormal entry count found on day 2016-12-10: -4744
WARNING. Abnormal entry count found on day 2016-12-17: -3834
WARNING. Abnormal entry count found on day 2016-12-17: -3834
WARNING. Abnormal entry count found on day 2016-12-24: -3157
WARNING. Abnormal entry count found on day 2016-12-24: -3157
Processing turnstile ('R328', 'R361', '00-05-00', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -27
WARNING. Abnormal entry count found on day 2016-12-03: -27
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-17: -15
WARNING. Abnormal entry count found on day 2016-12-17: -15
WARNING. Abnormal entry count found on day 2016-12-24: -9
WARNING. Abnormal entry count found on day 2016-12-24: -9
Processing turnstile ('R726', 'R329', '00-00-02', 'MORRIS PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -7190
WARNING. Abnormal entry count found on day 2016-12-03: -7190
WARNING. Abnormal entry count found on day 2016-12-10: -6463
WARNING. Abnormal entry count found on day 2016-12-10: -6463
WARNING. Abnormal entry count found on day 2016-12-17: -5918
WARNING. Abnormal entry count found on day 2016-12-17: -5918
WARNING. Abnormal entry count found on day 2016-12-24: -4656
WARNING. Abnormal entry count found on day 2016-12-24: -4656
Processing turnstile ('PTH20', 'R549', '03-01-02', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -300
WARNING. Abnormal entry count found on day 2016-12-03: -300
WARNING. Abnormal entry count found on day 2016-12-10: -493
WARNING. Abnormal entry count found on day 2016-12-10: -493
WARNING. Abnormal entry count found on day 2016-12-17: -472
WARNING. Abnormal entry count found on day 2016-12-17: -472
WARNING. Abnormal entry count found on day 2016-12-24: -194
WARNING. Abnormal entry count found on day 2016-12-24: -194
Processing turnstile ('N545', 'R204', '01-06-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5350
WARNING. Abnormal entry count found on day 2016-12-03: -5350
WARNING. Abnormal entry count found on day 2016-12-10: -5093
WARNING. Abnormal entry count found on day 2016-12-10: -5093
WARNING. Abnormal entry count found on day 2016-12-17: -4847
WARNING. Abnormal entry count found on day 2016-12-17: -4847
WARNING. Abnormal entry count found on day 2016-12-24: -3253
WARNING. Abnormal entry count found on day 2016-12-24: -3253
Processing turnstile ('N601A', 'R319', '01-00-02', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-24: -165
WARNING. Abnormal entry count found on day 2016-12-24: -165
Processing turnstile ('R221', 'R170', '01-00-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -36400
WARNING. Abnormal entry count found on day 2016-12-03: -36400
WARNING. Abnormal entry count found on day 2016-12-10: -35568
WARNING. Abnormal entry count found on day 2016-12-10: -35568
WARNING. Abnormal entry count found on day 2016-12-17: -34805
WARNING. Abnormal entry count found on day 2016-12-17: -34805
WARNING. Abnormal entry count found on day 2016-12-24: -23787
WARNING. Abnormal entry count found on day 2016-12-24: -23787
Processing turnstile ('R210', 'R044', '00-05-00', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-10: -14
WARNING. Abnormal entry count found on day 2016-12-10: -14
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
Processing turnstile ('R161A', 'R452', '01-00-03', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12154
WARNING. Abnormal entry count found on day 2016-12-03: -12154
WARNING. Abnormal entry count found on day 2016-12-10: -12390
WARNING. Abnormal entry count found on day 2016-12-10: -12390
WARNING. Abnormal entry count found on day 2016-12-17: -11832
WARNING. Abnormal entry count found on day 2016-12-17: -11832
WARNING. Abnormal entry count found on day 2016-12-24: -9019
WARNING. Abnormal entry count found on day 2016-12-24: -9019
Processing turnstile ('N317', 'R267', '02-00-02', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -623
WARNING. Abnormal entry count found on day 2016-12-03: -623
WARNING. Abnormal entry count found on day 2016-12-10: -642
WARNING. Abnormal entry count found on day 2016-12-10: -642
WARNING. Abnormal entry count found on day 2016-12-17: -677
WARNING. Abnormal entry count found on day 2016-12-17: -677
WARNING. Abnormal entry count found on day 2016-12-24: -470
WARNING. Abnormal entry count found on day 2016-12-24: -470
Processing turnstile ('R182', 'R035', '00-05-00', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19316
WARNING. Abnormal entry count found on day 2016-12-03: -19316
WARNING. Abnormal entry count found on day 2016-12-10: -18239
WARNING. Abnormal entry count found on day 2016-12-10: -18239
WARNING. Abnormal entry count found on day 2016-12-17: -17472
WARNING. Abnormal entry count found on day 2016-12-17: -17472
WARNING. Abnormal entry count found on day 2016-12-24: -12081
WARNING. Abnormal entry count found on day 2016-12-24: -12081
Processing turnstile ('PTH01', 'R549', '00-00-03', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -1576
WARNING. Abnormal entry count found on day 2016-12-03: -1576
WARNING. Abnormal entry count found on day 2016-12-10: -1377
WARNING. Abnormal entry count found on day 2016-12-10: -1377
WARNING. Abnormal entry count found on day 2016-12-17: -1361
WARNING. Abnormal entry count found on day 2016-12-17: -1361
WARNING. Abnormal entry count found on day 2016-12-24: -697
WARNING. Abnormal entry count found on day 2016-12-24: -697
Processing turnstile ('R201', 'R041', '00-06-00', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -6570
WARNING. Abnormal entry count found on day 2016-12-03: -6570
WARNING. Abnormal entry count found on day 2016-12-10: -6149
WARNING. Abnormal entry count found on day 2016-12-10: -6149
WARNING. Abnormal entry count found on day 2016-12-17: -5610
WARNING. Abnormal entry count found on day 2016-12-17: -5610
WARNING. Abnormal entry count found on day 2016-12-24: -3521
WARNING. Abnormal entry count found on day 2016-12-24: -3521
Processing turnstile ('PTH20', 'R549', '03-00-01', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -218
WARNING. Abnormal entry count found on day 2016-12-03: -218
WARNING. Abnormal entry count found on day 2016-12-10: -592
WARNING. Abnormal entry count found on day 2016-12-10: -592
WARNING. Abnormal entry count found on day 2016-12-17: -446
WARNING. Abnormal entry count found on day 2016-12-17: -446
WARNING. Abnormal entry count found on day 2016-12-24: -238
WARNING. Abnormal entry count found on day 2016-12-24: -238
Processing turnstile ('N333A', 'R141', '00-00-04', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -6135
WARNING. Abnormal entry count found on day 2016-12-03: -6135
WARNING. Abnormal entry count found on day 2016-12-10: -6182
WARNING. Abnormal entry count found on day 2016-12-10: -6182
WARNING. Abnormal entry count found on day 2016-12-17: -6351
WARNING. Abnormal entry count found on day 2016-12-17: -6351
WARNING. Abnormal entry count found on day 2016-12-24: -5054
WARNING. Abnormal entry count found on day 2016-12-24: -5054
Processing turnstile ('R509', 'R121', '00-00-03', 'QUEENSBORO PLZ')
WARNING. Abnormal entry count found on day 2016-12-03: -13203
WARNING. Abnormal entry count found on day 2016-12-03: -13203
WARNING. Abnormal entry count found on day 2016-12-10: -11516
WARNING. Abnormal entry count found on day 2016-12-10: -11516
WARNING. Abnormal entry count found on day 2016-12-17: -10566
WARNING. Abnormal entry count found on day 2016-12-17: -10566
WARNING. Abnormal entry count found on day 2016-12-24: -7370
WARNING. Abnormal entry count found on day 2016-12-24: -7370
Processing turnstile ('A050', 'R088', '00-00-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1316
WARNING. Abnormal entry count found on day 2016-12-03: -1316
WARNING. Abnormal entry count found on day 2016-12-10: -1218
WARNING. Abnormal entry count found on day 2016-12-10: -1218
WARNING. Abnormal entry count found on day 2016-12-17: -1210
WARNING. Abnormal entry count found on day 2016-12-17: -1210
WARNING. Abnormal entry count found on day 2016-12-24: -1559
WARNING. Abnormal entry count found on day 2016-12-24: -1559
Processing turnstile ('R610', 'R057', '00-04-04', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -8939
WARNING. Abnormal entry count found on day 2016-12-03: -8939
WARNING. Abnormal entry count found on day 2016-12-10: -9032
WARNING. Abnormal entry count found on day 2016-12-10: -9032
WARNING. Abnormal entry count found on day 2016-12-17: -8236
WARNING. Abnormal entry count found on day 2016-12-17: -8236
WARNING. Abnormal entry count found on day 2016-12-24: -4865
WARNING. Abnormal entry count found on day 2016-12-24: -4865
Processing turnstile ('N026', 'R102', '00-00-01', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24332
WARNING. Abnormal entry count found on day 2016-12-03: -24332
WARNING. Abnormal entry count found on day 2016-12-10: -23703
WARNING. Abnormal entry count found on day 2016-12-10: -23703
WARNING. Abnormal entry count found on day 2016-12-17: -22862
WARNING. Abnormal entry count found on day 2016-12-17: -22862
WARNING. Abnormal entry count found on day 2016-12-24: -16143
WARNING. Abnormal entry count found on day 2016-12-24: -16143
Processing turnstile ('R550', 'R072', '00-03-0A', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -1847
WARNING. Abnormal entry count found on day 2016-12-03: -1847
WARNING. Abnormal entry count found on day 2016-12-10: -1825
WARNING. Abnormal entry count found on day 2016-12-10: -1825
WARNING. Abnormal entry count found on day 2016-12-17: -1572
WARNING. Abnormal entry count found on day 2016-12-17: -1572
WARNING. Abnormal entry count found on day 2016-12-24: -1386
WARNING. Abnormal entry count found on day 2016-12-24: -1386
Processing turnstile ('A006', 'R079', '00-00-00', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10885
WARNING. Abnormal entry count found on day 2016-12-03: -10885
WARNING. Abnormal entry count found on day 2016-12-10: -10567
WARNING. Abnormal entry count found on day 2016-12-10: -10567
WARNING. Abnormal entry count found on day 2016-12-17: -10325
WARNING. Abnormal entry count found on day 2016-12-17: -10325
WARNING. Abnormal entry count found on day 2016-12-24: -8803
WARNING. Abnormal entry count found on day 2016-12-24: -8803
Processing turnstile ('R116', 'R030', '00-03-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8471
WARNING. Abnormal entry count found on day 2016-12-03: -8471
WARNING. Abnormal entry count found on day 2016-12-10: -8294
WARNING. Abnormal entry count found on day 2016-12-10: -8294
WARNING. Abnormal entry count found on day 2016-12-17: -7139
WARNING. Abnormal entry count found on day 2016-12-17: -7139
WARNING. Abnormal entry count found on day 2016-12-24: -4911
WARNING. Abnormal entry count found on day 2016-12-24: -4911
Processing turnstile ('R527', 'R122', '00-03-01', '90 ST-ELMHURST')
WARNING. Abnormal entry count found on day 2016-12-03: -10700
WARNING. Abnormal entry count found on day 2016-12-03: -10700
WARNING. Abnormal entry count found on day 2016-12-10: -10146
WARNING. Abnormal entry count found on day 2016-12-10: -10146
WARNING. Abnormal entry count found on day 2016-12-17: -10636
WARNING. Abnormal entry count found on day 2016-12-17: -10636
WARNING. Abnormal entry count found on day 2016-12-24: -8796
WARNING. Abnormal entry count found on day 2016-12-24: -8796
Processing turnstile ('R530', 'R310', '00-00-02', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10994
WARNING. Abnormal entry count found on day 2016-12-03: -10994
WARNING. Abnormal entry count found on day 2016-12-10: -11213
WARNING. Abnormal entry count found on day 2016-12-10: -11213
WARNING. Abnormal entry count found on day 2016-12-17: -11368
WARNING. Abnormal entry count found on day 2016-12-17: -11368
WARNING. Abnormal entry count found on day 2016-12-24: -9419
WARNING. Abnormal entry count found on day 2016-12-24: -9419
Processing turnstile ('B024', 'R211', '00-05-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R332', 'R365', '00-00-01', '219 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5522
WARNING. Abnormal entry count found on day 2016-12-03: -5522
WARNING. Abnormal entry count found on day 2016-12-10: -5505
WARNING. Abnormal entry count found on day 2016-12-10: -5505
WARNING. Abnormal entry count found on day 2016-12-17: -5284
WARNING. Abnormal entry count found on day 2016-12-17: -5284
WARNING. Abnormal entry count found on day 2016-12-24: -3946
WARNING. Abnormal entry count found on day 2016-12-24: -3946
Processing turnstile ('A010', 'R080', '00-00-07', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -25259
WARNING. Abnormal entry count found on day 2016-12-03: -25259
WARNING. Abnormal entry count found on day 2016-12-10: -24879
WARNING. Abnormal entry count found on day 2016-12-10: -24879
WARNING. Abnormal entry count found on day 2016-12-17: -22217
WARNING. Abnormal entry count found on day 2016-12-17: -22217
WARNING. Abnormal entry count found on day 2016-12-24: -16461
WARNING. Abnormal entry count found on day 2016-12-24: -16461
Processing turnstile ('A031', 'R083', '00-03-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12479
WARNING. Abnormal entry count found on day 2016-12-03: -12479
WARNING. Abnormal entry count found on day 2016-12-10: -10899
WARNING. Abnormal entry count found on day 2016-12-10: -10899
WARNING. Abnormal entry count found on day 2016-12-17: -8232
WARNING. Abnormal entry count found on day 2016-12-17: -8232
WARNING. Abnormal entry count found on day 2016-12-24: -6835
WARNING. Abnormal entry count found on day 2016-12-24: -6835
Processing turnstile ('N128', 'R200', '00-00-04', 'EUCLID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10597
WARNING. Abnormal entry count found on day 2016-12-03: -10597
WARNING. Abnormal entry count found on day 2016-12-10: -10246
WARNING. Abnormal entry count found on day 2016-12-10: -10246
WARNING. Abnormal entry count found on day 2016-12-17: -10277
WARNING. Abnormal entry count found on day 2016-12-17: -10277
WARNING. Abnormal entry count found on day 2016-12-24: -7789
WARNING. Abnormal entry count found on day 2016-12-24: -7789
Processing turnstile ('N083', 'R138', '01-02-02', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -10395
WARNING. Abnormal entry count found on day 2016-12-03: -10395
WARNING. Abnormal entry count found on day 2016-12-10: -10934
WARNING. Abnormal entry count found on day 2016-12-10: -10934
WARNING. Abnormal entry count found on day 2016-12-17: -9767
WARNING. Abnormal entry count found on day 2016-12-17: -9767
WARNING. Abnormal entry count found on day 2016-12-24: -4995
WARNING. Abnormal entry count found on day 2016-12-24: -4995
Processing turnstile ('R245', 'R051', '00-03-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2863
WARNING. Abnormal entry count found on day 2016-12-03: -2863
WARNING. Abnormal entry count found on day 2016-12-10: -3143
WARNING. Abnormal entry count found on day 2016-12-10: -3143
WARNING. Abnormal entry count found on day 2016-12-17: -3607
WARNING. Abnormal entry count found on day 2016-12-17: -3607
WARNING. Abnormal entry count found on day 2016-12-24: -2721
WARNING. Abnormal entry count found on day 2016-12-24: -2721
Processing turnstile ('R533', 'R055', '00-00-07', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -23007
WARNING. Abnormal entry count found on day 2016-12-03: -23007
WARNING. Abnormal entry count found on day 2016-12-10: -21885
WARNING. Abnormal entry count found on day 2016-12-10: -21885
WARNING. Abnormal entry count found on day 2016-12-17: -21950
WARNING. Abnormal entry count found on day 2016-12-17: -21950
WARNING. Abnormal entry count found on day 2016-12-26: -3922209
WARNING. Abnormal entry count found on day 2016-12-24: 3907221
WARNING. Abnormal entry count found on day 2016-12-26: -3922209
WARNING. Abnormal entry count found on day 2016-12-24: 3907221
WARNING. Abnormal entry count found on day 2016-12-26: -3922209
Processing turnstile ('N521', 'R300', '01-00-00', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11736
WARNING. Abnormal entry count found on day 2016-12-03: -11736
WARNING. Abnormal entry count found on day 2016-12-10: -11129
WARNING. Abnormal entry count found on day 2016-12-10: -11129
WARNING. Abnormal entry count found on day 2016-12-17: -10139
WARNING. Abnormal entry count found on day 2016-12-17: -10139
WARNING. Abnormal entry count found on day 2016-12-24: -8666
WARNING. Abnormal entry count found on day 2016-12-24: -8666
Processing turnstile ('N123B', 'R439', '01-06-01', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7286
WARNING. Abnormal entry count found on day 2016-12-03: -7286
WARNING. Abnormal entry count found on day 2016-12-10: -7440
WARNING. Abnormal entry count found on day 2016-12-10: -7440
WARNING. Abnormal entry count found on day 2016-12-17: -7294
WARNING. Abnormal entry count found on day 2016-12-17: -7294
WARNING. Abnormal entry count found on day 2016-12-24: -5346
WARNING. Abnormal entry count found on day 2016-12-24: -5346
Processing turnstile ('B016', 'R098', '00-00-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5572
WARNING. Abnormal entry count found on day 2016-12-03: -5572
WARNING. Abnormal entry count found on day 2016-12-10: -5360
WARNING. Abnormal entry count found on day 2016-12-10: -5360
WARNING. Abnormal entry count found on day 2016-12-17: -5413
WARNING. Abnormal entry count found on day 2016-12-17: -5413
WARNING. Abnormal entry count found on day 2016-12-24: -4294
WARNING. Abnormal entry count found on day 2016-12-24: -4294
Processing turnstile ('A006', 'R079', '00-00-02', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8294
WARNING. Abnormal entry count found on day 2016-12-03: -8294
WARNING. Abnormal entry count found on day 2016-12-10: -8160
WARNING. Abnormal entry count found on day 2016-12-10: -8160
WARNING. Abnormal entry count found on day 2016-12-17: -7616
WARNING. Abnormal entry count found on day 2016-12-17: -7616
WARNING. Abnormal entry count found on day 2016-12-24: -6321
WARNING. Abnormal entry count found on day 2016-12-24: -6321
Processing turnstile ('PTH18', 'R549', '01-01-01', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -9447
WARNING. Abnormal entry count found on day 2016-12-03: -9447
WARNING. Abnormal entry count found on day 2016-12-10: -8804
WARNING. Abnormal entry count found on day 2016-12-10: -8804
WARNING. Abnormal entry count found on day 2016-12-17: -9049
WARNING. Abnormal entry count found on day 2016-12-17: -9049
WARNING. Abnormal entry count found on day 2016-12-24: -6791
WARNING. Abnormal entry count found on day 2016-12-24: -6791
Processing turnstile ('B015', 'R098', '01-00-02', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6884
WARNING. Abnormal entry count found on day 2016-12-03: -6884
WARNING. Abnormal entry count found on day 2016-12-10: -6630
WARNING. Abnormal entry count found on day 2016-12-10: -6630
WARNING. Abnormal entry count found on day 2016-12-17: -6289
WARNING. Abnormal entry count found on day 2016-12-17: -6289
WARNING. Abnormal entry count found on day 2016-12-24: -4577
WARNING. Abnormal entry count found on day 2016-12-24: -4577
Processing turnstile ('N133', 'R384', '00-00-01', '88 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4710
WARNING. Abnormal entry count found on day 2016-12-03: -4710
WARNING. Abnormal entry count found on day 2016-12-10: -4546
WARNING. Abnormal entry count found on day 2016-12-10: -4546
WARNING. Abnormal entry count found on day 2016-12-17: -4370
WARNING. Abnormal entry count found on day 2016-12-17: -4370
WARNING. Abnormal entry count found on day 2016-12-24: -3276
WARNING. Abnormal entry count found on day 2016-12-24: -3276
Processing turnstile ('R221', 'R170', '01-06-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -10220
WARNING. Abnormal entry count found on day 2016-12-03: -10220
WARNING. Abnormal entry count found on day 2016-12-10: -11039
WARNING. Abnormal entry count found on day 2016-12-10: -11039
WARNING. Abnormal entry count found on day 2016-12-17: -13068
WARNING. Abnormal entry count found on day 2016-12-17: -13068
WARNING. Abnormal entry count found on day 2016-12-24: -9480
WARNING. Abnormal entry count found on day 2016-12-24: -9480
Processing turnstile ('H041', 'R152', '00-05-01', 'CANARSIE-ROCKAW')
Processing turnstile ('B027', 'R136', '00-00-01', 'SHEEPSHEAD BAY')
WARNING. Abnormal entry count found on day 2016-12-03: -8533
WARNING. Abnormal entry count found on day 2016-12-03: -8533
WARNING. Abnormal entry count found on day 2016-12-10: -8229
WARNING. Abnormal entry count found on day 2016-12-10: -8229
WARNING. Abnormal entry count found on day 2016-12-17: -8189
WARNING. Abnormal entry count found on day 2016-12-17: -8189
WARNING. Abnormal entry count found on day 2016-12-24: -6180
WARNING. Abnormal entry count found on day 2016-12-24: -6180
Processing turnstile ('N340', 'R115', '00-00-00', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5298
WARNING. Abnormal entry count found on day 2016-12-03: -5298
WARNING. Abnormal entry count found on day 2016-12-10: -4773
WARNING. Abnormal entry count found on day 2016-12-10: -4773
WARNING. Abnormal entry count found on day 2016-12-17: -4690
WARNING. Abnormal entry count found on day 2016-12-17: -4690
WARNING. Abnormal entry count found on day 2016-12-24: -3556
WARNING. Abnormal entry count found on day 2016-12-24: -3556
Processing turnstile ('N034', 'R334', '01-00-00', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -3914
WARNING. Abnormal entry count found on day 2016-12-03: -3914
WARNING. Abnormal entry count found on day 2016-12-10: -3804
WARNING. Abnormal entry count found on day 2016-12-10: -3804
WARNING. Abnormal entry count found on day 2016-12-17: -3755
WARNING. Abnormal entry count found on day 2016-12-17: -3755
WARNING. Abnormal entry count found on day 2016-12-24: -3011
WARNING. Abnormal entry count found on day 2016-12-24: -3011
Processing turnstile ('K019', 'R413', '00-03-00', 'KNICKERBOCKER')
WARNING. Abnormal entry count found on day 2016-12-03: -7117
WARNING. Abnormal entry count found on day 2016-12-03: -7117
WARNING. Abnormal entry count found on day 2016-12-10: -6985
WARNING. Abnormal entry count found on day 2016-12-10: -6985
WARNING. Abnormal entry count found on day 2016-12-17: -6822
WARNING. Abnormal entry count found on day 2016-12-17: -6822
WARNING. Abnormal entry count found on day 2016-12-24: -4951
WARNING. Abnormal entry count found on day 2016-12-24: -4951
Processing turnstile ('C003', 'R089', '00-00-01', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -4046
WARNING. Abnormal entry count found on day 2016-12-03: -4046
WARNING. Abnormal entry count found on day 2016-12-10: -4069
WARNING. Abnormal entry count found on day 2016-12-10: -4069
WARNING. Abnormal entry count found on day 2016-12-17: -3226
WARNING. Abnormal entry count found on day 2016-12-17: -3226
WARNING. Abnormal entry count found on day 2016-12-24: -2102
WARNING. Abnormal entry count found on day 2016-12-24: -2102
Processing turnstile ('N091', 'R029', '02-06-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4179
WARNING. Abnormal entry count found on day 2016-12-03: -4179
WARNING. Abnormal entry count found on day 2016-12-10: -3970
WARNING. Abnormal entry count found on day 2016-12-10: -3970
WARNING. Abnormal entry count found on day 2016-12-17: -3578
WARNING. Abnormal entry count found on day 2016-12-17: -3578
WARNING. Abnormal entry count found on day 2016-12-24: -2416
WARNING. Abnormal entry count found on day 2016-12-24: -2416
Processing turnstile ('J021', 'R434', '00-00-00', 'VAN SICLEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4670
WARNING. Abnormal entry count found on day 2016-12-03: -4670
WARNING. Abnormal entry count found on day 2016-12-10: -4464
WARNING. Abnormal entry count found on day 2016-12-10: -4464
WARNING. Abnormal entry count found on day 2016-12-17: -4569
WARNING. Abnormal entry count found on day 2016-12-17: -4569
WARNING. Abnormal entry count found on day 2016-12-24: -3683
WARNING. Abnormal entry count found on day 2016-12-24: -3683
Processing turnstile ('N604', 'R342', '00-03-01', 'JAMAICA VAN WK')
WARNING. Abnormal entry count found on day 2016-12-03: -4147
WARNING. Abnormal entry count found on day 2016-12-03: -4147
WARNING. Abnormal entry count found on day 2016-12-10: -3779
WARNING. Abnormal entry count found on day 2016-12-10: -3779
WARNING. Abnormal entry count found on day 2016-12-17: -4077
WARNING. Abnormal entry count found on day 2016-12-17: -4077
WARNING. Abnormal entry count found on day 2016-12-24: -3306
WARNING. Abnormal entry count found on day 2016-12-24: -3306
Processing turnstile ('N323', 'R018', '01-06-00', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -3420
WARNING. Abnormal entry count found on day 2016-12-03: -3420
WARNING. Abnormal entry count found on day 2016-12-10: -3400
WARNING. Abnormal entry count found on day 2016-12-10: -3400
WARNING. Abnormal entry count found on day 2016-12-17: -3452
WARNING. Abnormal entry count found on day 2016-12-17: -3452
WARNING. Abnormal entry count found on day 2016-12-24: -3036
WARNING. Abnormal entry count found on day 2016-12-24: -3036
Processing turnstile ('H005', 'R330', '00-00-00', '3 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4535
WARNING. Abnormal entry count found on day 2016-12-03: -4535
WARNING. Abnormal entry count found on day 2016-12-10: -4586
WARNING. Abnormal entry count found on day 2016-12-10: -4586
WARNING. Abnormal entry count found on day 2016-12-17: -4235
WARNING. Abnormal entry count found on day 2016-12-17: -4235
WARNING. Abnormal entry count found on day 2016-12-24: -3048
WARNING. Abnormal entry count found on day 2016-12-24: -3048
Processing turnstile ('E014', 'R374', '00-00-02', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -5964
WARNING. Abnormal entry count found on day 2016-12-03: -5964
WARNING. Abnormal entry count found on day 2016-12-10: -6205
WARNING. Abnormal entry count found on day 2016-12-10: -6205
WARNING. Abnormal entry count found on day 2016-12-17: -6064
WARNING. Abnormal entry count found on day 2016-12-17: -6064
WARNING. Abnormal entry count found on day 2016-12-24: -4641
WARNING. Abnormal entry count found on day 2016-12-24: -4641
Processing turnstile ('N322', 'R340', '00-00-02', '65 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8436
WARNING. Abnormal entry count found on day 2016-12-03: -8436
WARNING. Abnormal entry count found on day 2016-12-10: -8252
WARNING. Abnormal entry count found on day 2016-12-10: -8252
WARNING. Abnormal entry count found on day 2016-12-17: -8318
WARNING. Abnormal entry count found on day 2016-12-17: -8318
WARNING. Abnormal entry count found on day 2016-12-24: -6810
WARNING. Abnormal entry count found on day 2016-12-24: -6810
Processing turnstile ('N098', 'R028', '00-02-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6021
WARNING. Abnormal entry count found on day 2016-12-03: -6021
WARNING. Abnormal entry count found on day 2016-12-10: -6255
WARNING. Abnormal entry count found on day 2016-12-10: -6255
WARNING. Abnormal entry count found on day 2016-12-17: -5494
WARNING. Abnormal entry count found on day 2016-12-17: -5494
WARNING. Abnormal entry count found on day 2016-12-24: -3616
WARNING. Abnormal entry count found on day 2016-12-24: -3616
Processing turnstile ('R160', 'R164', '02-00-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -7909
WARNING. Abnormal entry count found on day 2016-12-03: -7909
WARNING. Abnormal entry count found on day 2016-12-10: -8219
WARNING. Abnormal entry count found on day 2016-12-10: -8219
WARNING. Abnormal entry count found on day 2016-12-17: -7836
WARNING. Abnormal entry count found on day 2016-12-17: -7836
WARNING. Abnormal entry count found on day 2016-12-24: -5032
WARNING. Abnormal entry count found on day 2016-12-24: -5032
Processing turnstile ('A050', 'R088', '00-03-03', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2749
WARNING. Abnormal entry count found on day 2016-12-03: -2749
WARNING. Abnormal entry count found on day 2016-12-10: -2252
WARNING. Abnormal entry count found on day 2016-12-10: -2252
WARNING. Abnormal entry count found on day 2016-12-17: -2544
WARNING. Abnormal entry count found on day 2016-12-17: -2544
WARNING. Abnormal entry count found on day 2016-12-24: -3344
WARNING. Abnormal entry count found on day 2016-12-24: -3344
Processing turnstile ('N601', 'R319', '00-00-04', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-03: -27542
WARNING. Abnormal entry count found on day 2016-12-03: -27542
WARNING. Abnormal entry count found on day 2016-12-10: -25331
WARNING. Abnormal entry count found on day 2016-12-10: -25331
WARNING. Abnormal entry count found on day 2016-12-17: -21653
WARNING. Abnormal entry count found on day 2016-12-17: -21653
WARNING. Abnormal entry count found on day 2016-12-24: -14206
WARNING. Abnormal entry count found on day 2016-12-24: -14206
Processing turnstile ('N605', 'R024', '00-05-01', 'SUTPHIN-ARCHER')
Processing turnstile ('PTH01', 'R549', '00-01-06', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -7
WARNING. Abnormal entry count found on day 2016-12-24: -7
Processing turnstile ('PTH13', 'R541', '00-00-02', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -424
WARNING. Abnormal entry count found on day 2016-12-03: -424
WARNING. Abnormal entry count found on day 2016-12-15: -74591
WARNING. Abnormal entry count found on day 2016-12-10: 74420
WARNING. Abnormal entry count found on day 2016-12-15: -74591
WARNING. Abnormal entry count found on day 2016-12-10: 74420
WARNING. Abnormal entry count found on day 2016-12-15: -74591
WARNING. Abnormal entry count found on day 2016-12-17: -410
WARNING. Abnormal entry count found on day 2016-12-17: -410
WARNING. Abnormal entry count found on day 2016-12-24: -219
WARNING. Abnormal entry count found on day 2016-12-24: -219
Processing turnstile ('R200A', 'R041', '01-00-05', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -16390
WARNING. Abnormal entry count found on day 2016-12-03: -16390
WARNING. Abnormal entry count found on day 2016-12-10: -16230
WARNING. Abnormal entry count found on day 2016-12-10: -16230
WARNING. Abnormal entry count found on day 2016-12-17: -15064
WARNING. Abnormal entry count found on day 2016-12-17: -15064
WARNING. Abnormal entry count found on day 2016-12-24: -10845
WARNING. Abnormal entry count found on day 2016-12-24: -10845
Processing turnstile ('H009', 'R235', '00-06-01', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1667
WARNING. Abnormal entry count found on day 2016-12-03: -1667
WARNING. Abnormal entry count found on day 2016-12-11: -314686
WARNING. Abnormal entry count found on day 2016-12-11: -1930
WARNING. Abnormal entry count found on day 2016-12-11: -1930
WARNING. Abnormal entry count found on day 2016-12-17: 117438592
WARNING. Abnormal entry count found on day 2016-12-17: -2245
WARNING. Abnormal entry count found on day 2016-12-17: -2245
WARNING. Abnormal entry count found on day 2016-12-24: -1521
WARNING. Abnormal entry count found on day 2016-12-24: -1521
Processing turnstile ('R612', 'R057', '01-03-01', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -4809
WARNING. Abnormal entry count found on day 2016-12-03: -4809
WARNING. Abnormal entry count found on day 2016-12-10: -4179
WARNING. Abnormal entry count found on day 2016-12-10: -4179
WARNING. Abnormal entry count found on day 2016-12-17: -4533
WARNING. Abnormal entry count found on day 2016-12-17: -4533
WARNING. Abnormal entry count found on day 2016-12-24: -3448
WARNING. Abnormal entry count found on day 2016-12-24: -3448
Processing turnstile ('R617', 'R058', '00-00-02', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6006
WARNING. Abnormal entry count found on day 2016-12-03: -6006
WARNING. Abnormal entry count found on day 2016-12-10: -5996
WARNING. Abnormal entry count found on day 2016-12-10: -5996
WARNING. Abnormal entry count found on day 2016-12-17: -5267
WARNING. Abnormal entry count found on day 2016-12-17: -5267
WARNING. Abnormal entry count found on day 2016-12-24: -3334
WARNING. Abnormal entry count found on day 2016-12-24: -3334
Processing turnstile ('N057', 'R188', '00-00-04', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3204
WARNING. Abnormal entry count found on day 2016-12-03: -3204
WARNING. Abnormal entry count found on day 2016-12-10: -3647
WARNING. Abnormal entry count found on day 2016-12-10: -3647
WARNING. Abnormal entry count found on day 2016-12-17: -3692
WARNING. Abnormal entry count found on day 2016-12-17: -3692
WARNING. Abnormal entry count found on day 2016-12-24: -3556
WARNING. Abnormal entry count found on day 2016-12-24: -3556
Processing turnstile ('R170', 'R191', '00-03-01', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10917
WARNING. Abnormal entry count found on day 2016-12-03: -10917
WARNING. Abnormal entry count found on day 2016-12-10: -10469
WARNING. Abnormal entry count found on day 2016-12-10: -10469
WARNING. Abnormal entry count found on day 2016-12-17: -9908
WARNING. Abnormal entry count found on day 2016-12-17: -9908
WARNING. Abnormal entry count found on day 2016-12-24: -8131
WARNING. Abnormal entry count found on day 2016-12-24: -8131
Processing turnstile ('N506', 'R022', '00-06-01', '34 ST-HERALD SQ')
Processing turnstile ('R410', 'R450', '00-00-01', 'LONGWOOD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4573
WARNING. Abnormal entry count found on day 2016-12-03: -4573
WARNING. Abnormal entry count found on day 2016-12-10: -4517
WARNING. Abnormal entry count found on day 2016-12-10: -4517
WARNING. Abnormal entry count found on day 2016-12-17: -4024
WARNING. Abnormal entry count found on day 2016-12-17: -4024
WARNING. Abnormal entry count found on day 2016-12-24: -3118
WARNING. Abnormal entry count found on day 2016-12-24: -3118
Processing turnstile ('R204', 'R043', '02-03-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1966
WARNING. Abnormal entry count found on day 2016-12-03: -1966
WARNING. Abnormal entry count found on day 2016-12-10: -1795
WARNING. Abnormal entry count found on day 2016-12-10: -1795
WARNING. Abnormal entry count found on day 2016-12-17: -1710
WARNING. Abnormal entry count found on day 2016-12-17: -1710
WARNING. Abnormal entry count found on day 2016-12-24: -1405
WARNING. Abnormal entry count found on day 2016-12-24: -1405
Processing turnstile ('N531', 'R129', '01-00-01', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2925
WARNING. Abnormal entry count found on day 2016-12-03: -2925
WARNING. Abnormal entry count found on day 2016-12-10: -2919
WARNING. Abnormal entry count found on day 2016-12-10: -2919
WARNING. Abnormal entry count found on day 2016-12-17: -3734
WARNING. Abnormal entry count found on day 2016-12-17: -3734
WARNING. Abnormal entry count found on day 2016-12-24: -2377
WARNING. Abnormal entry count found on day 2016-12-24: -2377
Processing turnstile ('PTH04', 'R551', '00-04-02', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -5044
WARNING. Abnormal entry count found on day 2016-12-03: -5044
WARNING. Abnormal entry count found on day 2016-12-10: -4853
WARNING. Abnormal entry count found on day 2016-12-10: -4853
WARNING. Abnormal entry count found on day 2016-12-17: -4196
WARNING. Abnormal entry count found on day 2016-12-17: -4196
WARNING. Abnormal entry count found on day 2016-12-24: -2695
WARNING. Abnormal entry count found on day 2016-12-24: -2695
Processing turnstile ('N063A', 'R011', '00-00-09', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -651
WARNING. Abnormal entry count found on day 2016-12-03: -651
WARNING. Abnormal entry count found on day 2016-12-10: -688
WARNING. Abnormal entry count found on day 2016-12-10: -688
WARNING. Abnormal entry count found on day 2016-12-17: -649
WARNING. Abnormal entry count found on day 2016-12-17: -649
WARNING. Abnormal entry count found on day 2016-12-24: -703
WARNING. Abnormal entry count found on day 2016-12-24: -703
Processing turnstile ('N536', 'R270', '00-00-00', 'SMITH-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2791
WARNING. Abnormal entry count found on day 2016-12-03: -2791
WARNING. Abnormal entry count found on day 2016-12-10: -2655
WARNING. Abnormal entry count found on day 2016-12-10: -2655
WARNING. Abnormal entry count found on day 2016-12-17: -2728
WARNING. Abnormal entry count found on day 2016-12-17: -2728
WARNING. Abnormal entry count found on day 2016-12-24: -1923
WARNING. Abnormal entry count found on day 2016-12-24: -1923
Processing turnstile ('PTH10', 'R547', '00-00-03', '9TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -3533
WARNING. Abnormal entry count found on day 2016-12-03: -3533
WARNING. Abnormal entry count found on day 2016-12-10: -3723
WARNING. Abnormal entry count found on day 2016-12-10: -3723
WARNING. Abnormal entry count found on day 2016-12-17: -3299
WARNING. Abnormal entry count found on day 2016-12-17: -3299
WARNING. Abnormal entry count found on day 2016-12-24: -2532
WARNING. Abnormal entry count found on day 2016-12-24: -2532
Processing turnstile ('B025', 'R150', '00-05-00', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
Processing turnstile ('N500', 'R020', '00-03-04', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -19941
WARNING. Abnormal entry count found on day 2016-12-03: -19941
WARNING. Abnormal entry count found on day 2016-12-10: -20259
WARNING. Abnormal entry count found on day 2016-12-10: -20259
WARNING. Abnormal entry count found on day 2016-12-17: -20030
WARNING. Abnormal entry count found on day 2016-12-17: -20030
WARNING. Abnormal entry count found on day 2016-12-24: -17927
WARNING. Abnormal entry count found on day 2016-12-24: -17927
Processing turnstile ('R178', 'R273', '00-00-01', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19190
WARNING. Abnormal entry count found on day 2016-12-03: -19190
WARNING. Abnormal entry count found on day 2016-12-10: -18267
WARNING. Abnormal entry count found on day 2016-12-10: -18267
WARNING. Abnormal entry count found on day 2016-12-17: -18645
WARNING. Abnormal entry count found on day 2016-12-17: -18645
WARNING. Abnormal entry count found on day 2016-12-24: -14716
WARNING. Abnormal entry count found on day 2016-12-24: -14716
Processing turnstile ('E013', 'R373', '00-00-00', '20 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12301
WARNING. Abnormal entry count found on day 2016-12-03: -12301
WARNING. Abnormal entry count found on day 2016-12-10: -11780
WARNING. Abnormal entry count found on day 2016-12-10: -11780
WARNING. Abnormal entry count found on day 2016-12-17: -12499
WARNING. Abnormal entry count found on day 2016-12-17: -12499
WARNING. Abnormal entry count found on day 2016-12-24: -11133
WARNING. Abnormal entry count found on day 2016-12-24: -11133
Processing turnstile ('R317', 'R408', '01-00-00', 'SIMPSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2388
WARNING. Abnormal entry count found on day 2016-12-03: -2388
WARNING. Abnormal entry count found on day 2016-12-10: -1684
WARNING. Abnormal entry count found on day 2016-12-10: -1684
WARNING. Abnormal entry count found on day 2016-12-17: -1849
WARNING. Abnormal entry count found on day 2016-12-17: -1849
WARNING. Abnormal entry count found on day 2016-12-24: -902
WARNING. Abnormal entry count found on day 2016-12-24: -902
Processing turnstile ('R250', 'R179', '00-00-09', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -27821
WARNING. Abnormal entry count found on day 2016-12-03: -27821
WARNING. Abnormal entry count found on day 2016-12-10: -29390
WARNING. Abnormal entry count found on day 2016-12-10: -29390
WARNING. Abnormal entry count found on day 2016-12-17: -24760
WARNING. Abnormal entry count found on day 2016-12-17: -24760
WARNING. Abnormal entry count found on day 2016-12-24: -19734
WARNING. Abnormal entry count found on day 2016-12-24: -19734
Processing turnstile ('R518', 'R261', '00-03-00', '40 ST LOWERY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13425
WARNING. Abnormal entry count found on day 2016-12-03: -13425
WARNING. Abnormal entry count found on day 2016-12-10: -14174
WARNING. Abnormal entry count found on day 2016-12-10: -14174
WARNING. Abnormal entry count found on day 2016-12-17: -13227
WARNING. Abnormal entry count found on day 2016-12-17: -13227
WARNING. Abnormal entry count found on day 2016-12-24: -9580
WARNING. Abnormal entry count found on day 2016-12-24: -9580
Processing turnstile ('N039', 'R251', '01-06-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -260
WARNING. Abnormal entry count found on day 2016-12-03: -260
WARNING. Abnormal entry count found on day 2016-12-10: -233
WARNING. Abnormal entry count found on day 2016-12-10: -233
WARNING. Abnormal entry count found on day 2016-12-17: -180
WARNING. Abnormal entry count found on day 2016-12-17: -180
WARNING. Abnormal entry count found on day 2016-12-24: -133
WARNING. Abnormal entry count found on day 2016-12-24: -133
Processing turnstile ('G009', 'R151', '02-05-00', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -13
WARNING. Abnormal entry count found on day 2016-12-03: -13
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-24: -15
WARNING. Abnormal entry count found on day 2016-12-24: -15
Processing turnstile ('H003', 'R163', '01-06-01', '6 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1164
WARNING. Abnormal entry count found on day 2016-12-03: -1164
WARNING. Abnormal entry count found on day 2016-12-10: -1150
WARNING. Abnormal entry count found on day 2016-12-10: -1150
WARNING. Abnormal entry count found on day 2016-12-17: -1183
WARNING. Abnormal entry count found on day 2016-12-17: -1183
WARNING. Abnormal entry count found on day 2016-12-24: -804
WARNING. Abnormal entry count found on day 2016-12-24: -804
Processing turnstile ('PTH01', 'R549', '00-00-01', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-07: -635366
WARNING. Abnormal entry count found on day 2016-12-03: 634720
WARNING. Abnormal entry count found on day 2016-12-07: -635366
WARNING. Abnormal entry count found on day 2016-12-03: 634720
WARNING. Abnormal entry count found on day 2016-12-07: -635366
WARNING. Abnormal entry count found on day 2016-12-10: -2157
WARNING. Abnormal entry count found on day 2016-12-10: -2157
WARNING. Abnormal entry count found on day 2016-12-17: -1687
WARNING. Abnormal entry count found on day 2016-12-17: -1687
WARNING. Abnormal entry count found on day 2016-12-24: -1443
WARNING. Abnormal entry count found on day 2016-12-24: -1443
Processing turnstile ('N502', 'R021', '01-00-01', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -14790
WARNING. Abnormal entry count found on day 2016-12-03: -14790
WARNING. Abnormal entry count found on day 2016-12-10: -14508
WARNING. Abnormal entry count found on day 2016-12-10: -14508
WARNING. Abnormal entry count found on day 2016-12-17: -14215
WARNING. Abnormal entry count found on day 2016-12-17: -14215
WARNING. Abnormal entry count found on day 2016-12-24: -11140
WARNING. Abnormal entry count found on day 2016-12-24: -11140
Processing turnstile ('N309A', 'R140', '00-00-00', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -10516
WARNING. Abnormal entry count found on day 2016-12-03: -10516
WARNING. Abnormal entry count found on day 2016-12-10: -9058
WARNING. Abnormal entry count found on day 2016-12-10: -9058
WARNING. Abnormal entry count found on day 2016-12-17: -8833
WARNING. Abnormal entry count found on day 2016-12-17: -8833
WARNING. Abnormal entry count found on day 2016-12-24: -6122
WARNING. Abnormal entry count found on day 2016-12-24: -6122
Processing turnstile ('N086', 'R282', '00-00-02', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -23344
WARNING. Abnormal entry count found on day 2016-12-03: -23344
WARNING. Abnormal entry count found on day 2016-12-10: -20177
WARNING. Abnormal entry count found on day 2016-12-10: -20177
WARNING. Abnormal entry count found on day 2016-12-17: -18344
WARNING. Abnormal entry count found on day 2016-12-17: -18344
WARNING. Abnormal entry count found on day 2016-12-24: -14281
WARNING. Abnormal entry count found on day 2016-12-24: -14281
Processing turnstile ('R243', 'R049', '00-03-04', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6445
WARNING. Abnormal entry count found on day 2016-12-03: -6445
WARNING. Abnormal entry count found on day 2016-12-10: -6726
WARNING. Abnormal entry count found on day 2016-12-10: -6726
WARNING. Abnormal entry count found on day 2016-12-17: -6322
WARNING. Abnormal entry count found on day 2016-12-17: -6322
WARNING. Abnormal entry count found on day 2016-12-24: -5337
WARNING. Abnormal entry count found on day 2016-12-24: -5337
Processing turnstile ('R142', 'R293', '01-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -8299
WARNING. Abnormal entry count found on day 2016-12-03: -8299
WARNING. Abnormal entry count found on day 2016-12-10: -8041
WARNING. Abnormal entry count found on day 2016-12-10: -8041
WARNING. Abnormal entry count found on day 2016-12-17: -7980
WARNING. Abnormal entry count found on day 2016-12-17: -7980
WARNING. Abnormal entry count found on day 2016-12-24: -6224
WARNING. Abnormal entry count found on day 2016-12-24: -6224
Processing turnstile ('H027', 'R137', '01-06-00', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -11808
WARNING. Abnormal entry count found on day 2016-12-03: -11808
WARNING. Abnormal entry count found on day 2016-12-10: -10499
WARNING. Abnormal entry count found on day 2016-12-10: -10499
WARNING. Abnormal entry count found on day 2016-12-17: -11147
WARNING. Abnormal entry count found on day 2016-12-17: -11147
WARNING. Abnormal entry count found on day 2016-12-24: -8539
WARNING. Abnormal entry count found on day 2016-12-24: -8539
Processing turnstile ('N092', 'R029', '03-00-03', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8780
WARNING. Abnormal entry count found on day 2016-12-03: -8780
WARNING. Abnormal entry count found on day 2016-12-10: -7978
WARNING. Abnormal entry count found on day 2016-12-10: -7978
WARNING. Abnormal entry count found on day 2016-12-17: -6767
WARNING. Abnormal entry count found on day 2016-12-17: -6767
WARNING. Abnormal entry count found on day 2016-12-24: -5387
WARNING. Abnormal entry count found on day 2016-12-24: -5387
Processing turnstile ('R322', 'R386', '00-00-00', '174 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12660
WARNING. Abnormal entry count found on day 2016-12-03: -12660
WARNING. Abnormal entry count found on day 2016-12-10: -14998
WARNING. Abnormal entry count found on day 2016-12-10: -14998
WARNING. Abnormal entry count found on day 2016-12-17: -14884
WARNING. Abnormal entry count found on day 2016-12-17: -14884
WARNING. Abnormal entry count found on day 2016-12-24: -12186
WARNING. Abnormal entry count found on day 2016-12-24: -12186
Processing turnstile ('R284', 'R243', '00-00-03', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16467
WARNING. Abnormal entry count found on day 2016-12-03: -16467
WARNING. Abnormal entry count found on day 2016-12-10: -15620
WARNING. Abnormal entry count found on day 2016-12-10: -15620
WARNING. Abnormal entry count found on day 2016-12-17: -15788
WARNING. Abnormal entry count found on day 2016-12-17: -15788
WARNING. Abnormal entry count found on day 2016-12-24: -13073
WARNING. Abnormal entry count found on day 2016-12-24: -13073
Processing turnstile ('N502', 'R021', '01-00-04', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -19807
WARNING. Abnormal entry count found on day 2016-12-03: -19807
WARNING. Abnormal entry count found on day 2016-12-10: -18941
WARNING. Abnormal entry count found on day 2016-12-10: -18941
WARNING. Abnormal entry count found on day 2016-12-17: -14440
WARNING. Abnormal entry count found on day 2016-12-17: -14440
WARNING. Abnormal entry count found on day 2016-12-24: -10779
WARNING. Abnormal entry count found on day 2016-12-24: -10779
Processing turnstile ('PTH10', 'R547', '00-00-00', '9TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -3813
WARNING. Abnormal entry count found on day 2016-12-03: -3813
WARNING. Abnormal entry count found on day 2016-12-10: -3934
WARNING. Abnormal entry count found on day 2016-12-10: -3934
WARNING. Abnormal entry count found on day 2016-12-17: -3866
WARNING. Abnormal entry count found on day 2016-12-17: -3866
WARNING. Abnormal entry count found on day 2016-12-24: -2264
WARNING. Abnormal entry count found on day 2016-12-24: -2264
Processing turnstile ('N519A', 'R461', '01-05-01', "B'WAY-LAFAYETTE")
Processing turnstile ('N069', 'R013', '01-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11131
WARNING. Abnormal entry count found on day 2016-12-03: -11131
WARNING. Abnormal entry count found on day 2016-12-10: -11427
WARNING. Abnormal entry count found on day 2016-12-10: -11427
WARNING. Abnormal entry count found on day 2016-12-17: -9850
WARNING. Abnormal entry count found on day 2016-12-17: -9850
WARNING. Abnormal entry count found on day 2016-12-24: -6850
WARNING. Abnormal entry count found on day 2016-12-24: -6850
Processing turnstile ('R121', 'R290', '01-06-01', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11519
WARNING. Abnormal entry count found on day 2016-12-03: -11519
WARNING. Abnormal entry count found on day 2016-12-10: -7885
WARNING. Abnormal entry count found on day 2016-12-10: -7885
WARNING. Abnormal entry count found on day 2016-12-17: -8791
WARNING. Abnormal entry count found on day 2016-12-17: -8791
WARNING. Abnormal entry count found on day 2016-12-24: -5151
WARNING. Abnormal entry count found on day 2016-12-24: -5151
Processing turnstile ('R208', 'R014', '03-01-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2838
WARNING. Abnormal entry count found on day 2016-12-03: -2838
WARNING. Abnormal entry count found on day 2016-12-10: -2576
WARNING. Abnormal entry count found on day 2016-12-10: -2576
WARNING. Abnormal entry count found on day 2016-12-17: -2379
WARNING. Abnormal entry count found on day 2016-12-17: -2379
WARNING. Abnormal entry count found on day 2016-12-24: -1963
WARNING. Abnormal entry count found on day 2016-12-24: -1963
Processing turnstile ('R208', 'R014', '03-01-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1113
WARNING. Abnormal entry count found on day 2016-12-03: -1113
WARNING. Abnormal entry count found on day 2016-12-10: -881
WARNING. Abnormal entry count found on day 2016-12-10: -881
WARNING. Abnormal entry count found on day 2016-12-17: -909
WARNING. Abnormal entry count found on day 2016-12-17: -909
WARNING. Abnormal entry count found on day 2016-12-24: -832
WARNING. Abnormal entry count found on day 2016-12-24: -832
Processing turnstile ('PTH19', 'R549', '02-02-01', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1704
WARNING. Abnormal entry count found on day 2016-12-03: -1704
WARNING. Abnormal entry count found on day 2016-12-10: -1685
WARNING. Abnormal entry count found on day 2016-12-10: -1685
WARNING. Abnormal entry count found on day 2016-12-17: -1297
WARNING. Abnormal entry count found on day 2016-12-17: -1297
WARNING. Abnormal entry count found on day 2016-12-24: -627
WARNING. Abnormal entry count found on day 2016-12-24: -627
Processing turnstile ('N332', 'R219', '01-05-01', '67 AV')
Processing turnstile ('R204', 'R043', '02-06-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2510
WARNING. Abnormal entry count found on day 2016-12-03: -2510
WARNING. Abnormal entry count found on day 2016-12-10: -2126
WARNING. Abnormal entry count found on day 2016-12-10: -2126
WARNING. Abnormal entry count found on day 2016-12-17: -2221
WARNING. Abnormal entry count found on day 2016-12-17: -2221
WARNING. Abnormal entry count found on day 2016-12-24: -2023
WARNING. Abnormal entry count found on day 2016-12-24: -2023
Processing turnstile ('R145', 'R032', '00-00-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7050
WARNING. Abnormal entry count found on day 2016-12-03: -7050
WARNING. Abnormal entry count found on day 2016-12-10: -6593
WARNING. Abnormal entry count found on day 2016-12-10: -6593
WARNING. Abnormal entry count found on day 2016-12-17: -6097
WARNING. Abnormal entry count found on day 2016-12-17: -6097
WARNING. Abnormal entry count found on day 2016-12-24: -4497
WARNING. Abnormal entry count found on day 2016-12-24: -4497
Processing turnstile ('R226', 'R131', '02-05-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3476
WARNING. Abnormal entry count found on day 2016-12-03: -3476
WARNING. Abnormal entry count found on day 2016-12-10: -3135
WARNING. Abnormal entry count found on day 2016-12-10: -3135
WARNING. Abnormal entry count found on day 2016-12-17: -2416
WARNING. Abnormal entry count found on day 2016-12-17: -2416
WARNING. Abnormal entry count found on day 2016-12-24: -1311
WARNING. Abnormal entry count found on day 2016-12-24: -1311
Processing turnstile ('C012', 'R258', '01-03-00', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7418
WARNING. Abnormal entry count found on day 2016-12-03: -7418
WARNING. Abnormal entry count found on day 2016-12-10: -7620
WARNING. Abnormal entry count found on day 2016-12-10: -7620
WARNING. Abnormal entry count found on day 2016-12-17: -7077
WARNING. Abnormal entry count found on day 2016-12-17: -7077
WARNING. Abnormal entry count found on day 2016-12-24: -4439
WARNING. Abnormal entry count found on day 2016-12-24: -4439
Processing turnstile ('J001', 'R460', '01-06-01', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14005
WARNING. Abnormal entry count found on day 2016-12-03: -14005
WARNING. Abnormal entry count found on day 2016-12-10: -14610
WARNING. Abnormal entry count found on day 2016-12-10: -14610
WARNING. Abnormal entry count found on day 2016-12-17: -13307
WARNING. Abnormal entry count found on day 2016-12-17: -13307
WARNING. Abnormal entry count found on day 2016-12-24: -10105
WARNING. Abnormal entry count found on day 2016-12-24: -10105
Processing turnstile ('R319', 'R409', '01-00-00', 'FREEMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3331
WARNING. Abnormal entry count found on day 2016-12-03: -3331
WARNING. Abnormal entry count found on day 2016-12-10: -2482
WARNING. Abnormal entry count found on day 2016-12-10: -2482
WARNING. Abnormal entry count found on day 2016-12-17: -2525
WARNING. Abnormal entry count found on day 2016-12-17: -2525
WARNING. Abnormal entry count found on day 2016-12-24: -1782
WARNING. Abnormal entry count found on day 2016-12-24: -1782
Processing turnstile ('R609', 'R056', '01-03-00', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4067
WARNING. Abnormal entry count found on day 2016-12-03: -4067
WARNING. Abnormal entry count found on day 2016-12-10: -4110
WARNING. Abnormal entry count found on day 2016-12-10: -4110
WARNING. Abnormal entry count found on day 2016-12-17: -3812
WARNING. Abnormal entry count found on day 2016-12-17: -3812
WARNING. Abnormal entry count found on day 2016-12-24: -2618
WARNING. Abnormal entry count found on day 2016-12-24: -2618
Processing turnstile ('N303', 'R015', '00-00-02', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8100
WARNING. Abnormal entry count found on day 2016-12-03: -8100
WARNING. Abnormal entry count found on day 2016-12-10: -7877
WARNING. Abnormal entry count found on day 2016-12-10: -7877
WARNING. Abnormal entry count found on day 2016-12-17: -7743
WARNING. Abnormal entry count found on day 2016-12-17: -7743
WARNING. Abnormal entry count found on day 2016-12-24: -6991
WARNING. Abnormal entry count found on day 2016-12-24: -6991
Processing turnstile ('R532H', 'R328', '02-00-00', 'METS-WILLETS PT')
Processing turnstile ('J002', 'R460', '00-05-00', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N001', 'R173', '01-06-01', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2246
WARNING. Abnormal entry count found on day 2016-12-03: -2246
WARNING. Abnormal entry count found on day 2016-12-10: -2462
WARNING. Abnormal entry count found on day 2016-12-10: -2462
WARNING. Abnormal entry count found on day 2016-12-17: -2281
WARNING. Abnormal entry count found on day 2016-12-17: -2281
WARNING. Abnormal entry count found on day 2016-12-24: -1542
WARNING. Abnormal entry count found on day 2016-12-24: -1542
Processing turnstile ('PTH05', 'R543', '00-01-02', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -3289
WARNING. Abnormal entry count found on day 2016-12-03: -3289
WARNING. Abnormal entry count found on day 2016-12-10: -3253
WARNING. Abnormal entry count found on day 2016-12-10: -3253
WARNING. Abnormal entry count found on day 2016-12-17: -2595
WARNING. Abnormal entry count found on day 2016-12-17: -2595
WARNING. Abnormal entry count found on day 2016-12-24: -2145
WARNING. Abnormal entry count found on day 2016-12-24: -2145
Processing turnstile ('N539A', 'R288', '00-06-00', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15601
WARNING. Abnormal entry count found on day 2016-12-03: -15601
WARNING. Abnormal entry count found on day 2016-12-10: -15392
WARNING. Abnormal entry count found on day 2016-12-10: -15392
WARNING. Abnormal entry count found on day 2016-12-17: -14660
WARNING. Abnormal entry count found on day 2016-12-17: -14660
WARNING. Abnormal entry count found on day 2016-12-24: -9021
WARNING. Abnormal entry count found on day 2016-12-24: -9021
Processing turnstile ('R244', 'R050', '00-00-03', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -864
WARNING. Abnormal entry count found on day 2016-12-03: -864
WARNING. Abnormal entry count found on day 2016-12-10: -880
WARNING. Abnormal entry count found on day 2016-12-10: -880
WARNING. Abnormal entry count found on day 2016-12-17: -983
WARNING. Abnormal entry count found on day 2016-12-17: -983
WARNING. Abnormal entry count found on day 2016-12-24: -712
WARNING. Abnormal entry count found on day 2016-12-24: -712
Processing turnstile ('H019', 'R294', '00-06-02', 'MORGAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4750
WARNING. Abnormal entry count found on day 2016-12-03: -4750
WARNING. Abnormal entry count found on day 2016-12-10: -5138
WARNING. Abnormal entry count found on day 2016-12-10: -5138
WARNING. Abnormal entry count found on day 2016-12-17: -3948
WARNING. Abnormal entry count found on day 2016-12-17: -3948
WARNING. Abnormal entry count found on day 2016-12-24: -3018
WARNING. Abnormal entry count found on day 2016-12-24: -3018
Processing turnstile ('C003', 'R089', '00-00-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -5391
WARNING. Abnormal entry count found on day 2016-12-03: -5391
WARNING. Abnormal entry count found on day 2016-12-10: -5063
WARNING. Abnormal entry count found on day 2016-12-10: -5063
WARNING. Abnormal entry count found on day 2016-12-17: -4260
WARNING. Abnormal entry count found on day 2016-12-17: -4260
WARNING. Abnormal entry count found on day 2016-12-24: -2349
WARNING. Abnormal entry count found on day 2016-12-24: -2349
Processing turnstile ('R533', 'R055', '00-00-06', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -14934
WARNING. Abnormal entry count found on day 2016-12-03: -14934
WARNING. Abnormal entry count found on day 2016-12-10: -14161
WARNING. Abnormal entry count found on day 2016-12-10: -14161
WARNING. Abnormal entry count found on day 2016-12-17: -14658
WARNING. Abnormal entry count found on day 2016-12-17: -14658
WARNING. Abnormal entry count found on day 2016-12-24: -12588
WARNING. Abnormal entry count found on day 2016-12-24: -12588
Processing turnstile ('A058', 'R001', '01-06-00', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -1427
WARNING. Abnormal entry count found on day 2016-12-03: -1427
WARNING. Abnormal entry count found on day 2016-12-10: -1402
WARNING. Abnormal entry count found on day 2016-12-10: -1402
WARNING. Abnormal entry count found on day 2016-12-17: -1480
WARNING. Abnormal entry count found on day 2016-12-17: -1480
WARNING. Abnormal entry count found on day 2016-12-24: -1085
WARNING. Abnormal entry count found on day 2016-12-24: -1085
Processing turnstile ('A042', 'R086', '01-00-02', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5914
WARNING. Abnormal entry count found on day 2016-12-03: -5914
WARNING. Abnormal entry count found on day 2016-12-10: -6105
WARNING. Abnormal entry count found on day 2016-12-10: -6105
WARNING. Abnormal entry count found on day 2016-12-17: -6547
WARNING. Abnormal entry count found on day 2016-12-17: -6547
WARNING. Abnormal entry count found on day 2016-12-24: -5841
WARNING. Abnormal entry count found on day 2016-12-24: -5841
Processing turnstile ('R532', 'R328', '00-05-01', 'METS-WILLETS PT')
Processing turnstile ('R158', 'R084', '00-00-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -9030
WARNING. Abnormal entry count found on day 2016-12-03: -9030
WARNING. Abnormal entry count found on day 2016-12-10: -8342
WARNING. Abnormal entry count found on day 2016-12-10: -8342
WARNING. Abnormal entry count found on day 2016-12-17: -7244
WARNING. Abnormal entry count found on day 2016-12-17: -7244
WARNING. Abnormal entry count found on day 2016-12-24: -5072
WARNING. Abnormal entry count found on day 2016-12-24: -5072
Processing turnstile ('N342', 'R019', '01-03-00', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -869
WARNING. Abnormal entry count found on day 2016-12-03: -869
WARNING. Abnormal entry count found on day 2016-12-10: -1020
WARNING. Abnormal entry count found on day 2016-12-10: -1020
WARNING. Abnormal entry count found on day 2016-12-17: -1308
WARNING. Abnormal entry count found on day 2016-12-17: -1308
WARNING. Abnormal entry count found on day 2016-12-24: -660
WARNING. Abnormal entry count found on day 2016-12-24: -660
Processing turnstile ('PTH11', 'R545', '00-04-02', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -645
WARNING. Abnormal entry count found on day 2016-12-03: -645
WARNING. Abnormal entry count found on day 2016-12-10: -411
WARNING. Abnormal entry count found on day 2016-12-10: -411
WARNING. Abnormal entry count found on day 2016-12-17: -513
WARNING. Abnormal entry count found on day 2016-12-17: -513
WARNING. Abnormal entry count found on day 2016-12-24: -474
WARNING. Abnormal entry count found on day 2016-12-24: -474
Processing turnstile ('A021', 'R032', '01-00-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9125
WARNING. Abnormal entry count found on day 2016-12-03: -9125
WARNING. Abnormal entry count found on day 2016-12-10: -9266
WARNING. Abnormal entry count found on day 2016-12-10: -9266
WARNING. Abnormal entry count found on day 2016-12-17: -7738
WARNING. Abnormal entry count found on day 2016-12-17: -7738
WARNING. Abnormal entry count found on day 2016-12-24: -5688
WARNING. Abnormal entry count found on day 2016-12-24: -5688
Processing turnstile ('R291', 'R183', '00-00-02', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -10977
WARNING. Abnormal entry count found on day 2016-12-03: -10977
WARNING. Abnormal entry count found on day 2016-12-10: -10327
WARNING. Abnormal entry count found on day 2016-12-10: -10327
WARNING. Abnormal entry count found on day 2016-12-17: -9651
WARNING. Abnormal entry count found on day 2016-12-17: -9651
WARNING. Abnormal entry count found on day 2016-12-24: -6111
WARNING. Abnormal entry count found on day 2016-12-24: -6111
Processing turnstile ('R317', 'R408', '01-00-01', 'SIMPSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5612
WARNING. Abnormal entry count found on day 2016-12-03: -5612
WARNING. Abnormal entry count found on day 2016-12-10: -4474
WARNING. Abnormal entry count found on day 2016-12-10: -4474
WARNING. Abnormal entry count found on day 2016-12-17: -4815
WARNING. Abnormal entry count found on day 2016-12-17: -4815
WARNING. Abnormal entry count found on day 2016-12-24: -3579
WARNING. Abnormal entry count found on day 2016-12-24: -3579
Processing turnstile ('PTH18', 'R549', '01-02-00', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -3064
WARNING. Abnormal entry count found on day 2016-12-03: -3064
WARNING. Abnormal entry count found on day 2016-12-10: -2590
WARNING. Abnormal entry count found on day 2016-12-10: -2590
WARNING. Abnormal entry count found on day 2016-12-17: -2504
WARNING. Abnormal entry count found on day 2016-12-17: -2504
WARNING. Abnormal entry count found on day 2016-12-24: -2263
WARNING. Abnormal entry count found on day 2016-12-24: -2263
Processing turnstile ('N124', 'R103', '00-00-01', 'BROADWAY JCT')
WARNING. Abnormal entry count found on day 2016-12-03: -2352
WARNING. Abnormal entry count found on day 2016-12-03: -2352
WARNING. Abnormal entry count found on day 2016-12-10: -2238
WARNING. Abnormal entry count found on day 2016-12-10: -2238
WARNING. Abnormal entry count found on day 2016-12-17: -2194
WARNING. Abnormal entry count found on day 2016-12-17: -2194
WARNING. Abnormal entry count found on day 2016-12-24: -1921
WARNING. Abnormal entry count found on day 2016-12-24: -1921
Processing turnstile ('R507', 'R134', '00-00-03', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5064
WARNING. Abnormal entry count found on day 2016-12-03: -5064
WARNING. Abnormal entry count found on day 2016-12-10: -5172
WARNING. Abnormal entry count found on day 2016-12-10: -5172
WARNING. Abnormal entry count found on day 2016-12-17: -4391
WARNING. Abnormal entry count found on day 2016-12-17: -4391
WARNING. Abnormal entry count found on day 2016-12-24: -2274
WARNING. Abnormal entry count found on day 2016-12-24: -2274
Processing turnstile ('R414', 'R162', '00-00-00', 'ELDER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6935
WARNING. Abnormal entry count found on day 2016-12-03: -6935
WARNING. Abnormal entry count found on day 2016-12-10: -7012
WARNING. Abnormal entry count found on day 2016-12-10: -7012
WARNING. Abnormal entry count found on day 2016-12-17: -6888
WARNING. Abnormal entry count found on day 2016-12-17: -6888
WARNING. Abnormal entry count found on day 2016-12-24: -5059
WARNING. Abnormal entry count found on day 2016-12-24: -5059
Processing turnstile ('N046', 'R281', '00-00-00', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14374
WARNING. Abnormal entry count found on day 2016-12-03: -14374
WARNING. Abnormal entry count found on day 2016-12-10: -13513
WARNING. Abnormal entry count found on day 2016-12-10: -13513
WARNING. Abnormal entry count found on day 2016-12-17: -12147
WARNING. Abnormal entry count found on day 2016-12-17: -12147
WARNING. Abnormal entry count found on day 2016-12-24: -12246
WARNING. Abnormal entry count found on day 2016-12-24: -12246
Processing turnstile ('N539A', 'R288', '00-00-02', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -67
WARNING. Abnormal entry count found on day 2016-12-03: -67
WARNING. Abnormal entry count found on day 2016-12-10: -79
WARNING. Abnormal entry count found on day 2016-12-10: -79
WARNING. Abnormal entry count found on day 2016-12-17: -39
WARNING. Abnormal entry count found on day 2016-12-17: -39
WARNING. Abnormal entry count found on day 2016-12-24: -33
WARNING. Abnormal entry count found on day 2016-12-24: -33
Processing turnstile ('R161A', 'R452', '01-00-02', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11534
WARNING. Abnormal entry count found on day 2016-12-03: -11534
WARNING. Abnormal entry count found on day 2016-12-10: -11112
WARNING. Abnormal entry count found on day 2016-12-10: -11112
WARNING. Abnormal entry count found on day 2016-12-17: -10467
WARNING. Abnormal entry count found on day 2016-12-17: -10467
WARNING. Abnormal entry count found on day 2016-12-24: -7925
WARNING. Abnormal entry count found on day 2016-12-24: -7925
Processing turnstile ('R210', 'R044', '00-06-01', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -12412
WARNING. Abnormal entry count found on day 2016-12-03: -12412
WARNING. Abnormal entry count found on day 2016-12-10: -12116
WARNING. Abnormal entry count found on day 2016-12-10: -12116
WARNING. Abnormal entry count found on day 2016-12-17: -9762
WARNING. Abnormal entry count found on day 2016-12-17: -9762
WARNING. Abnormal entry count found on day 2016-12-24: -5791
WARNING. Abnormal entry count found on day 2016-12-24: -5791
Processing turnstile ('G009', 'R151', '02-00-04', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -9256
WARNING. Abnormal entry count found on day 2016-12-03: -9256
WARNING. Abnormal entry count found on day 2016-12-10: -8827
WARNING. Abnormal entry count found on day 2016-12-10: -8827
WARNING. Abnormal entry count found on day 2016-12-17: -8876
WARNING. Abnormal entry count found on day 2016-12-17: -8876
WARNING. Abnormal entry count found on day 2016-12-24: -7115
WARNING. Abnormal entry count found on day 2016-12-24: -7115
Processing turnstile ('N026', 'R102', '00-00-07', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19617
WARNING. Abnormal entry count found on day 2016-12-03: -19617
WARNING. Abnormal entry count found on day 2016-12-10: -18499
WARNING. Abnormal entry count found on day 2016-12-10: -18499
WARNING. Abnormal entry count found on day 2016-12-17: -18890
WARNING. Abnormal entry count found on day 2016-12-17: -18890
WARNING. Abnormal entry count found on day 2016-12-24: -14302
WARNING. Abnormal entry count found on day 2016-12-24: -14302
Processing turnstile ('D002', 'R390', '00-00-00', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9974
WARNING. Abnormal entry count found on day 2016-12-03: -9974
WARNING. Abnormal entry count found on day 2016-12-10: -9197
WARNING. Abnormal entry count found on day 2016-12-10: -9197
WARNING. Abnormal entry count found on day 2016-12-17: -5561
WARNING. Abnormal entry count found on day 2016-12-17: -5561
WARNING. Abnormal entry count found on day 2016-12-24: -8202
WARNING. Abnormal entry count found on day 2016-12-24: -8202
Processing turnstile ('N342', 'R019', '01-03-03', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2501
WARNING. Abnormal entry count found on day 2016-12-03: -2501
WARNING. Abnormal entry count found on day 2016-12-10: -2370
WARNING. Abnormal entry count found on day 2016-12-10: -2370
WARNING. Abnormal entry count found on day 2016-12-17: -2404
WARNING. Abnormal entry count found on day 2016-12-17: -2404
WARNING. Abnormal entry count found on day 2016-12-24: -1833
WARNING. Abnormal entry count found on day 2016-12-24: -1833
Processing turnstile ('R236', 'R045', '00-00-02', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8843
WARNING. Abnormal entry count found on day 2016-12-03: -8843
WARNING. Abnormal entry count found on day 2016-12-10: -8580
WARNING. Abnormal entry count found on day 2016-12-10: -8580
WARNING. Abnormal entry count found on day 2016-12-17: -7426
WARNING. Abnormal entry count found on day 2016-12-17: -7426
WARNING. Abnormal entry count found on day 2016-12-24: -4843
WARNING. Abnormal entry count found on day 2016-12-24: -4843
Processing turnstile ('R161B', 'R452', '00-00-01', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10815
WARNING. Abnormal entry count found on day 2016-12-03: -10815
WARNING. Abnormal entry count found on day 2016-12-10: -11640
WARNING. Abnormal entry count found on day 2016-12-10: -11640
WARNING. Abnormal entry count found on day 2016-12-17: -12467
WARNING. Abnormal entry count found on day 2016-12-17: -12467
WARNING. Abnormal entry count found on day 2016-12-24: -9394
WARNING. Abnormal entry count found on day 2016-12-24: -9394
Processing turnstile ('N305A', 'R016', '00-00-01', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -2895
WARNING. Abnormal entry count found on day 2016-12-03: -2895
WARNING. Abnormal entry count found on day 2016-12-10: -2975
WARNING. Abnormal entry count found on day 2016-12-10: -2975
WARNING. Abnormal entry count found on day 2016-12-17: -2554
WARNING. Abnormal entry count found on day 2016-12-17: -2554
WARNING. Abnormal entry count found on day 2016-12-24: -1533
WARNING. Abnormal entry count found on day 2016-12-24: -1533
Processing turnstile ('N303', 'R015', '00-00-01', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12878
WARNING. Abnormal entry count found on day 2016-12-03: -12878
WARNING. Abnormal entry count found on day 2016-12-10: -12138
WARNING. Abnormal entry count found on day 2016-12-10: -12138
WARNING. Abnormal entry count found on day 2016-12-17: -11401
WARNING. Abnormal entry count found on day 2016-12-17: -11401
WARNING. Abnormal entry count found on day 2016-12-24: -8817
WARNING. Abnormal entry count found on day 2016-12-24: -8817
Processing turnstile ('R245A', 'R051', '01-06-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -798
WARNING. Abnormal entry count found on day 2016-12-03: -798
WARNING. Abnormal entry count found on day 2016-12-10: -1379
WARNING. Abnormal entry count found on day 2016-12-10: -1379
WARNING. Abnormal entry count found on day 2016-12-17: -1344
WARNING. Abnormal entry count found on day 2016-12-17: -1344
WARNING. Abnormal entry count found on day 2016-12-24: -551
WARNING. Abnormal entry count found on day 2016-12-24: -551
Processing turnstile ('PTH03', 'R552', '00-01-04', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -4979
WARNING. Abnormal entry count found on day 2016-12-03: -4979
WARNING. Abnormal entry count found on day 2016-12-10: -4629
WARNING. Abnormal entry count found on day 2016-12-10: -4629
WARNING. Abnormal entry count found on day 2016-12-17: -4690
WARNING. Abnormal entry count found on day 2016-12-17: -4690
WARNING. Abnormal entry count found on day 2016-12-24: -4284
WARNING. Abnormal entry count found on day 2016-12-24: -4284
Processing turnstile ('N338', 'R128', '01-06-00', 'SUTPHIN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -4910
WARNING. Abnormal entry count found on day 2016-12-03: -4910
WARNING. Abnormal entry count found on day 2016-12-10: -4885
WARNING. Abnormal entry count found on day 2016-12-10: -4885
WARNING. Abnormal entry count found on day 2016-12-17: -4890
WARNING. Abnormal entry count found on day 2016-12-17: -4890
WARNING. Abnormal entry count found on day 2016-12-24: -3625
WARNING. Abnormal entry count found on day 2016-12-24: -3625
Processing turnstile ('R423', 'R429', '00-00-00', 'PELHAM BAY PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -1848
WARNING. Abnormal entry count found on day 2016-12-03: -1848
WARNING. Abnormal entry count found on day 2016-12-10: -1872
WARNING. Abnormal entry count found on day 2016-12-10: -1872
WARNING. Abnormal entry count found on day 2016-12-17: -1875
WARNING. Abnormal entry count found on day 2016-12-17: -1875
WARNING. Abnormal entry count found on day 2016-12-24: -1132
WARNING. Abnormal entry count found on day 2016-12-24: -1132
Processing turnstile ('R240', 'R047', '00-03-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-05: -228763
WARNING. Abnormal entry count found on day 2016-12-03: 211547
WARNING. Abnormal entry count found on day 2016-12-05: -228763
WARNING. Abnormal entry count found on day 2016-12-03: 211547
WARNING. Abnormal entry count found on day 2016-12-05: -228763
WARNING. Abnormal entry count found on day 2016-12-10: -21172
WARNING. Abnormal entry count found on day 2016-12-10: -21172
WARNING. Abnormal entry count found on day 2016-12-17: -18355
WARNING. Abnormal entry count found on day 2016-12-17: -18355
WARNING. Abnormal entry count found on day 2016-12-24: -11208
WARNING. Abnormal entry count found on day 2016-12-24: -11208
Processing turnstile ('A002', 'R051', '02-05-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R250', 'R179', '00-00-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -39859
WARNING. Abnormal entry count found on day 2016-12-03: -39859
WARNING. Abnormal entry count found on day 2016-12-10: -37769
WARNING. Abnormal entry count found on day 2016-12-10: -37769
WARNING. Abnormal entry count found on day 2016-12-17: -33604
WARNING. Abnormal entry count found on day 2016-12-17: -33604
WARNING. Abnormal entry count found on day 2016-12-24: -24617
WARNING. Abnormal entry count found on day 2016-12-24: -24617
Processing turnstile ('N324', 'R018', '00-00-03', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -16941
WARNING. Abnormal entry count found on day 2016-12-03: -16941
WARNING. Abnormal entry count found on day 2016-12-10: -17066
WARNING. Abnormal entry count found on day 2016-12-10: -17066
WARNING. Abnormal entry count found on day 2016-12-17: -16719
WARNING. Abnormal entry count found on day 2016-12-17: -16719
WARNING. Abnormal entry count found on day 2016-12-24: -13880
WARNING. Abnormal entry count found on day 2016-12-24: -13880
Processing turnstile ('PTH19', 'R549', '02-00-00', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1600
WARNING. Abnormal entry count found on day 2016-12-03: -1600
WARNING. Abnormal entry count found on day 2016-12-10: -1650
WARNING. Abnormal entry count found on day 2016-12-10: -1650
WARNING. Abnormal entry count found on day 2016-12-17: -1338
WARNING. Abnormal entry count found on day 2016-12-17: -1338
WARNING. Abnormal entry count found on day 2016-12-24: -672
WARNING. Abnormal entry count found on day 2016-12-24: -672
Processing turnstile ('N329A', 'R201', '01-05-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
Processing turnstile ('PTH16', 'R550', '01-02-03', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -226
WARNING. Abnormal entry count found on day 2016-12-03: -226
WARNING. Abnormal entry count found on day 2016-12-10: -415
WARNING. Abnormal entry count found on day 2016-12-10: -415
WARNING. Abnormal entry count found on day 2016-12-17: -430
WARNING. Abnormal entry count found on day 2016-12-17: -430
WARNING. Abnormal entry count found on day 2016-12-24: -41
WARNING. Abnormal entry count found on day 2016-12-24: -41
Processing turnstile ('B024', 'R211', '00-05-01', 'KINGS HWY')
Processing turnstile ('N103', 'R127', '00-00-06', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -5402
WARNING. Abnormal entry count found on day 2016-12-03: -5402
WARNING. Abnormal entry count found on day 2016-12-10: -4984
WARNING. Abnormal entry count found on day 2016-12-10: -4984
WARNING. Abnormal entry count found on day 2016-12-17: -4143
WARNING. Abnormal entry count found on day 2016-12-17: -4143
WARNING. Abnormal entry count found on day 2016-12-24: -2803
WARNING. Abnormal entry count found on day 2016-12-24: -2803
Processing turnstile ('R532H', 'R328', '02-00-01', 'METS-WILLETS PT')
Processing turnstile ('R236', 'R045', '00-00-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10297
WARNING. Abnormal entry count found on day 2016-12-03: -10297
WARNING. Abnormal entry count found on day 2016-12-10: -9955
WARNING. Abnormal entry count found on day 2016-12-10: -9955
WARNING. Abnormal entry count found on day 2016-12-17: -8941
WARNING. Abnormal entry count found on day 2016-12-17: -8941
WARNING. Abnormal entry count found on day 2016-12-24: -6256
WARNING. Abnormal entry count found on day 2016-12-24: -6256
Processing turnstile ('R143', 'R032', '02-03-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6323
WARNING. Abnormal entry count found on day 2016-12-03: -6323
WARNING. Abnormal entry count found on day 2016-12-10: -6487
WARNING. Abnormal entry count found on day 2016-12-10: -6487
WARNING. Abnormal entry count found on day 2016-12-17: -5610
WARNING. Abnormal entry count found on day 2016-12-17: -5610
WARNING. Abnormal entry count found on day 2016-12-24: -3986
WARNING. Abnormal entry count found on day 2016-12-24: -3986
Processing turnstile ('PTH07', 'R550', '00-01-08', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -828
WARNING. Abnormal entry count found on day 2016-12-03: -828
WARNING. Abnormal entry count found on day 2016-12-10: -774
WARNING. Abnormal entry count found on day 2016-12-10: -774
WARNING. Abnormal entry count found on day 2016-12-17: -726
WARNING. Abnormal entry count found on day 2016-12-17: -726
WARNING. Abnormal entry count found on day 2016-12-24: -343
WARNING. Abnormal entry count found on day 2016-12-24: -343
Processing turnstile ('PTH07', 'R550', '00-02-00', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -30
WARNING. Abnormal entry count found on day 2016-12-03: -30
WARNING. Abnormal entry count found on day 2016-12-10: -33
WARNING. Abnormal entry count found on day 2016-12-10: -33
WARNING. Abnormal entry count found on day 2016-12-17: -26
WARNING. Abnormal entry count found on day 2016-12-17: -26
WARNING. Abnormal entry count found on day 2016-12-24: -16
WARNING. Abnormal entry count found on day 2016-12-24: -16
Processing turnstile ('N330C', 'R202', '01-04-01', '63 DR-REGO PARK')
Processing turnstile ('N078', 'R175', '01-03-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -27183
WARNING. Abnormal entry count found on day 2016-12-03: -27183
WARNING. Abnormal entry count found on day 2016-12-10: -26909
WARNING. Abnormal entry count found on day 2016-12-10: -26909
WARNING. Abnormal entry count found on day 2016-12-17: -21961
WARNING. Abnormal entry count found on day 2016-12-17: -21961
WARNING. Abnormal entry count found on day 2016-12-24: -14998
WARNING. Abnormal entry count found on day 2016-12-24: -14998
Processing turnstile ('R241A', 'R048', '00-00-02', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13764
WARNING. Abnormal entry count found on day 2016-12-03: -13764
WARNING. Abnormal entry count found on day 2016-12-10: -15991
WARNING. Abnormal entry count found on day 2016-12-10: -15991
WARNING. Abnormal entry count found on day 2016-12-17: -11175
WARNING. Abnormal entry count found on day 2016-12-17: -11175
WARNING. Abnormal entry count found on day 2016-12-24: -7968
WARNING. Abnormal entry count found on day 2016-12-24: -7968
Processing turnstile ('E005', 'R247', '00-00-01', '55 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3037
WARNING. Abnormal entry count found on day 2016-12-03: -3037
WARNING. Abnormal entry count found on day 2016-12-10: -2935
WARNING. Abnormal entry count found on day 2016-12-10: -2935
WARNING. Abnormal entry count found on day 2016-12-17: -2889
WARNING. Abnormal entry count found on day 2016-12-17: -2889
WARNING. Abnormal entry count found on day 2016-12-24: -2446
WARNING. Abnormal entry count found on day 2016-12-24: -2446
Processing turnstile ('R612', 'R057', '01-00-04', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -3880
WARNING. Abnormal entry count found on day 2016-12-03: -3880
WARNING. Abnormal entry count found on day 2016-12-10: -3438
WARNING. Abnormal entry count found on day 2016-12-10: -3438
WARNING. Abnormal entry count found on day 2016-12-17: -3548
WARNING. Abnormal entry count found on day 2016-12-17: -3548
WARNING. Abnormal entry count found on day 2016-12-24: -2789
WARNING. Abnormal entry count found on day 2016-12-24: -2789
Processing turnstile ('N343', 'R019', '00-00-0B', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18269
WARNING. Abnormal entry count found on day 2016-12-03: -18269
WARNING. Abnormal entry count found on day 2016-12-10: -17152
WARNING. Abnormal entry count found on day 2016-12-10: -17152
WARNING. Abnormal entry count found on day 2016-12-17: -15191
WARNING. Abnormal entry count found on day 2016-12-17: -15191
WARNING. Abnormal entry count found on day 2016-12-24: -12390
WARNING. Abnormal entry count found on day 2016-12-24: -12390
Processing turnstile ('R123', 'R290', '00-00-02', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12934
WARNING. Abnormal entry count found on day 2016-12-03: -12934
WARNING. Abnormal entry count found on day 2016-12-10: -12804
WARNING. Abnormal entry count found on day 2016-12-10: -12804
WARNING. Abnormal entry count found on day 2016-12-17: -11186
WARNING. Abnormal entry count found on day 2016-12-17: -11186
WARNING. Abnormal entry count found on day 2016-12-24: -7027
WARNING. Abnormal entry count found on day 2016-12-24: -7027
Processing turnstile ('R523', 'R147', '00-06-01', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -1461
WARNING. Abnormal entry count found on day 2016-12-03: -1461
WARNING. Abnormal entry count found on day 2016-12-10: -5709
WARNING. Abnormal entry count found on day 2016-12-10: -5709
WARNING. Abnormal entry count found on day 2016-12-17: -5026
WARNING. Abnormal entry count found on day 2016-12-17: -5026
WARNING. Abnormal entry count found on day 2016-12-24: -3380
WARNING. Abnormal entry count found on day 2016-12-24: -3380
Processing turnstile ('H039', 'R375', '00-00-02', 'NEW LOTS')
WARNING. Abnormal entry count found on day 2016-12-03: -6848
WARNING. Abnormal entry count found on day 2016-12-03: -6848
WARNING. Abnormal entry count found on day 2016-12-10: -6828
WARNING. Abnormal entry count found on day 2016-12-10: -6828
WARNING. Abnormal entry count found on day 2016-12-17: -6630
WARNING. Abnormal entry count found on day 2016-12-17: -6630
WARNING. Abnormal entry count found on day 2016-12-24: -4855
WARNING. Abnormal entry count found on day 2016-12-24: -4855
Processing turnstile ('N095A', 'R014', '01-00-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18957
WARNING. Abnormal entry count found on day 2016-12-03: -18957
WARNING. Abnormal entry count found on day 2016-12-10: -19446
WARNING. Abnormal entry count found on day 2016-12-10: -19446
WARNING. Abnormal entry count found on day 2016-12-17: -14771
WARNING. Abnormal entry count found on day 2016-12-17: -14771
WARNING. Abnormal entry count found on day 2016-12-24: -13327
WARNING. Abnormal entry count found on day 2016-12-24: -13327
Processing turnstile ('R605', 'R456', '00-06-00', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5362
WARNING. Abnormal entry count found on day 2016-12-03: -5362
WARNING. Abnormal entry count found on day 2016-12-10: -5401
WARNING. Abnormal entry count found on day 2016-12-10: -5401
WARNING. Abnormal entry count found on day 2016-12-17: -4758
WARNING. Abnormal entry count found on day 2016-12-17: -4758
WARNING. Abnormal entry count found on day 2016-12-24: -3490
WARNING. Abnormal entry count found on day 2016-12-24: -3490
Processing turnstile ('N305', 'R017', '01-03-01', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -5149
WARNING. Abnormal entry count found on day 2016-12-03: -5149
WARNING. Abnormal entry count found on day 2016-12-10: -5221
WARNING. Abnormal entry count found on day 2016-12-10: -5221
WARNING. Abnormal entry count found on day 2016-12-17: -4967
WARNING. Abnormal entry count found on day 2016-12-17: -4967
WARNING. Abnormal entry count found on day 2016-12-24: -3849
WARNING. Abnormal entry count found on day 2016-12-24: -3849
Processing turnstile ('N553', 'R422', '00-00-00', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -796
WARNING. Abnormal entry count found on day 2016-12-03: -796
WARNING. Abnormal entry count found on day 2016-12-10: -743
WARNING. Abnormal entry count found on day 2016-12-10: -743
WARNING. Abnormal entry count found on day 2016-12-17: -804
WARNING. Abnormal entry count found on day 2016-12-17: -804
WARNING. Abnormal entry count found on day 2016-12-24: -578
WARNING. Abnormal entry count found on day 2016-12-24: -578
Processing turnstile ('S101A', 'R070', '01-05-00', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R626', 'R062', '00-05-01', 'CROWN HTS-UTICA')
Processing turnstile ('N095A', 'R014', '01-03-04', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7991
WARNING. Abnormal entry count found on day 2016-12-03: -7991
WARNING. Abnormal entry count found on day 2016-12-10: -7609
WARNING. Abnormal entry count found on day 2016-12-10: -7609
WARNING. Abnormal entry count found on day 2016-12-17: -9426
WARNING. Abnormal entry count found on day 2016-12-17: -9426
WARNING. Abnormal entry count found on day 2016-12-24: -7313
WARNING. Abnormal entry count found on day 2016-12-24: -7313
Processing turnstile ('R609', 'R056', '01-00-00', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4177
WARNING. Abnormal entry count found on day 2016-12-03: -4177
WARNING. Abnormal entry count found on day 2016-12-10: -4674
WARNING. Abnormal entry count found on day 2016-12-10: -4674
WARNING. Abnormal entry count found on day 2016-12-17: -3856
WARNING. Abnormal entry count found on day 2016-12-17: -3856
WARNING. Abnormal entry count found on day 2016-12-24: -2256
WARNING. Abnormal entry count found on day 2016-12-24: -2256
Processing turnstile ('B024', 'R211', '00-00-01', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -12625
WARNING. Abnormal entry count found on day 2016-12-03: -12625
WARNING. Abnormal entry count found on day 2016-12-10: -11966
WARNING. Abnormal entry count found on day 2016-12-10: -11966
WARNING. Abnormal entry count found on day 2016-12-17: -12532
WARNING. Abnormal entry count found on day 2016-12-17: -12532
WARNING. Abnormal entry count found on day 2016-12-24: -10602
WARNING. Abnormal entry count found on day 2016-12-24: -10602
Processing turnstile ('N304', 'R015', '01-06-02', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13147
WARNING. Abnormal entry count found on day 2016-12-03: -13147
WARNING. Abnormal entry count found on day 2016-12-10: -13183
WARNING. Abnormal entry count found on day 2016-12-10: -13183
WARNING. Abnormal entry count found on day 2016-12-17: -12385
WARNING. Abnormal entry count found on day 2016-12-17: -12385
WARNING. Abnormal entry count found on day 2016-12-24: -6666
WARNING. Abnormal entry count found on day 2016-12-24: -6666
Processing turnstile ('J002', 'R460', '00-06-00', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3612
WARNING. Abnormal entry count found on day 2016-12-03: -3612
WARNING. Abnormal entry count found on day 2016-12-10: -3194
WARNING. Abnormal entry count found on day 2016-12-10: -3194
WARNING. Abnormal entry count found on day 2016-12-17: -2949
WARNING. Abnormal entry count found on day 2016-12-17: -2949
WARNING. Abnormal entry count found on day 2016-12-24: -2464
WARNING. Abnormal entry count found on day 2016-12-24: -2464
Processing turnstile ('PTH18', 'R549', '01-02-02', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -1544
WARNING. Abnormal entry count found on day 2016-12-03: -1544
WARNING. Abnormal entry count found on day 2016-12-10: -1288
WARNING. Abnormal entry count found on day 2016-12-10: -1288
WARNING. Abnormal entry count found on day 2016-12-17: -1343
WARNING. Abnormal entry count found on day 2016-12-17: -1343
WARNING. Abnormal entry count found on day 2016-12-24: -1013
WARNING. Abnormal entry count found on day 2016-12-24: -1013
Processing turnstile ('N537', 'R258', '00-00-01', '4 AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3392
WARNING. Abnormal entry count found on day 2016-12-03: -3392
WARNING. Abnormal entry count found on day 2016-12-10: -3393
WARNING. Abnormal entry count found on day 2016-12-10: -3393
WARNING. Abnormal entry count found on day 2016-12-17: -3153
WARNING. Abnormal entry count found on day 2016-12-17: -3153
WARNING. Abnormal entry count found on day 2016-12-24: -2396
WARNING. Abnormal entry count found on day 2016-12-24: -2396
Processing turnstile ('R174', 'R034', '00-00-04', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7961
WARNING. Abnormal entry count found on day 2016-12-03: -7961
WARNING. Abnormal entry count found on day 2016-12-10: -7583
WARNING. Abnormal entry count found on day 2016-12-10: -7583
WARNING. Abnormal entry count found on day 2016-12-17: -6688
WARNING. Abnormal entry count found on day 2016-12-17: -6688
WARNING. Abnormal entry count found on day 2016-12-24: -5477
WARNING. Abnormal entry count found on day 2016-12-24: -5477
Processing turnstile ('R325', 'R388', '00-00-02', 'E 180 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11251
WARNING. Abnormal entry count found on day 2016-12-03: -11251
WARNING. Abnormal entry count found on day 2016-12-10: -12338
WARNING. Abnormal entry count found on day 2016-12-10: -12338
WARNING. Abnormal entry count found on day 2016-12-17: -11940
WARNING. Abnormal entry count found on day 2016-12-17: -11940
WARNING. Abnormal entry count found on day 2016-12-24: -8646
WARNING. Abnormal entry count found on day 2016-12-24: -8646
Processing turnstile ('N305A', 'R016', '00-05-00', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('A081', 'R028', '04-00-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -910
WARNING. Abnormal entry count found on day 2016-12-03: -910
WARNING. Abnormal entry count found on day 2016-12-10: -956
WARNING. Abnormal entry count found on day 2016-12-10: -956
WARNING. Abnormal entry count found on day 2016-12-17: -821
WARNING. Abnormal entry count found on day 2016-12-17: -821
WARNING. Abnormal entry count found on day 2016-12-24: -781
WARNING. Abnormal entry count found on day 2016-12-24: -781
Processing turnstile ('N551', 'R421', '00-06-00', 'AVENUE I')
WARNING. Abnormal entry count found on day 2016-12-03: -1067
WARNING. Abnormal entry count found on day 2016-12-03: -1067
WARNING. Abnormal entry count found on day 2016-12-10: -932
WARNING. Abnormal entry count found on day 2016-12-10: -932
WARNING. Abnormal entry count found on day 2016-12-17: -1000
WARNING. Abnormal entry count found on day 2016-12-17: -1000
WARNING. Abnormal entry count found on day 2016-12-24: -703
WARNING. Abnormal entry count found on day 2016-12-24: -703
Processing turnstile ('R141', 'R031', '00-03-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -9290
WARNING. Abnormal entry count found on day 2016-12-03: -9290
WARNING. Abnormal entry count found on day 2016-12-10: -9832
WARNING. Abnormal entry count found on day 2016-12-10: -9832
WARNING. Abnormal entry count found on day 2016-12-17: -11435
WARNING. Abnormal entry count found on day 2016-12-17: -11435
WARNING. Abnormal entry count found on day 2016-12-24: -9079
WARNING. Abnormal entry count found on day 2016-12-24: -9079
Processing turnstile ('N013', 'R035', '02-05-01', '168 ST')
Processing turnstile ('PTH07', 'R550', '00-00-07', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -12734
WARNING. Abnormal entry count found on day 2016-12-03: -12734
WARNING. Abnormal entry count found on day 2016-12-10: -13086
WARNING. Abnormal entry count found on day 2016-12-10: -13086
WARNING. Abnormal entry count found on day 2016-12-17: -10682
WARNING. Abnormal entry count found on day 2016-12-17: -10682
WARNING. Abnormal entry count found on day 2016-12-24: -8060
WARNING. Abnormal entry count found on day 2016-12-24: -8060
Processing turnstile ('C025', 'R215', '00-00-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9287
WARNING. Abnormal entry count found on day 2016-12-03: -9287
WARNING. Abnormal entry count found on day 2016-12-10: -9105
WARNING. Abnormal entry count found on day 2016-12-10: -9105
WARNING. Abnormal entry count found on day 2016-12-17: -8659
WARNING. Abnormal entry count found on day 2016-12-17: -8659
WARNING. Abnormal entry count found on day 2016-12-24: -6606
WARNING. Abnormal entry count found on day 2016-12-24: -6606
Processing turnstile ('N405', 'R239', '00-06-03', 'GREENPOINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3255
WARNING. Abnormal entry count found on day 2016-12-03: -3255
WARNING. Abnormal entry count found on day 2016-12-10: -3219
WARNING. Abnormal entry count found on day 2016-12-10: -3219
WARNING. Abnormal entry count found on day 2016-12-17: -3199
WARNING. Abnormal entry count found on day 2016-12-17: -3199
WARNING. Abnormal entry count found on day 2016-12-24: -2142
WARNING. Abnormal entry count found on day 2016-12-24: -2142
Processing turnstile ('A060', 'R001', '00-00-05', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -9846
WARNING. Abnormal entry count found on day 2016-12-03: -9846
WARNING. Abnormal entry count found on day 2016-12-10: -9839
WARNING. Abnormal entry count found on day 2016-12-10: -9839
WARNING. Abnormal entry count found on day 2016-12-17: -5963
WARNING. Abnormal entry count found on day 2016-12-17: -5963
WARNING. Abnormal entry count found on day 2016-12-24: -4944
WARNING. Abnormal entry count found on day 2016-12-24: -4944
Processing turnstile ('N507', 'R023', '00-03-06', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -30779
WARNING. Abnormal entry count found on day 2016-12-03: -30779
WARNING. Abnormal entry count found on day 2016-12-10: -30388
WARNING. Abnormal entry count found on day 2016-12-10: -30388
WARNING. Abnormal entry count found on day 2016-12-17: -28506
WARNING. Abnormal entry count found on day 2016-12-17: -28506
WARNING. Abnormal entry count found on day 2016-12-24: -21278
WARNING. Abnormal entry count found on day 2016-12-24: -21278
Processing turnstile ('N422', 'R318', '00-00-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7313
WARNING. Abnormal entry count found on day 2016-12-03: -7313
WARNING. Abnormal entry count found on day 2016-12-10: -7218
WARNING. Abnormal entry count found on day 2016-12-10: -7218
WARNING. Abnormal entry count found on day 2016-12-17: -6741
WARNING. Abnormal entry count found on day 2016-12-17: -6741
WARNING. Abnormal entry count found on day 2016-12-24: -3355
WARNING. Abnormal entry count found on day 2016-12-24: -3355
Processing turnstile ('N606', 'R025', '00-00-02', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -3565
WARNING. Abnormal entry count found on day 2016-12-03: -3565
WARNING. Abnormal entry count found on day 2016-12-10: -7490
WARNING. Abnormal entry count found on day 2016-12-10: -7490
WARNING. Abnormal entry count found on day 2016-12-17: -7607
WARNING. Abnormal entry count found on day 2016-12-17: -7607
WARNING. Abnormal entry count found on day 2016-12-24: -6090
WARNING. Abnormal entry count found on day 2016-12-24: -6090
Processing turnstile ('JFK03', 'R536', '00-00-04', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-03: -5602
WARNING. Abnormal entry count found on day 2016-12-03: -5602
WARNING. Abnormal entry count found on day 2016-12-10: -5433
WARNING. Abnormal entry count found on day 2016-12-10: -5433
WARNING. Abnormal entry count found on day 2016-12-17: -7558
WARNING. Abnormal entry count found on day 2016-12-17: -7558
WARNING. Abnormal entry count found on day 2016-12-24: -5692
WARNING. Abnormal entry count found on day 2016-12-24: -5692
Processing turnstile ('PTH04', 'R551', '00-04-05', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -3819
WARNING. Abnormal entry count found on day 2016-12-03: -3819
WARNING. Abnormal entry count found on day 2016-12-10: -3378
WARNING. Abnormal entry count found on day 2016-12-10: -3378
WARNING. Abnormal entry count found on day 2016-12-17: -1366
WARNING. Abnormal entry count found on day 2016-12-17: -1366
WARNING. Abnormal entry count found on day 2016-12-24: -2068
WARNING. Abnormal entry count found on day 2016-12-24: -2068
Processing turnstile ('R116', 'R030', '00-02-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8960
WARNING. Abnormal entry count found on day 2016-12-03: -8960
WARNING. Abnormal entry count found on day 2016-12-10: -8459
WARNING. Abnormal entry count found on day 2016-12-10: -8459
WARNING. Abnormal entry count found on day 2016-12-17: -7420
WARNING. Abnormal entry count found on day 2016-12-17: -7420
WARNING. Abnormal entry count found on day 2016-12-24: -4659
WARNING. Abnormal entry count found on day 2016-12-24: -4659
Processing turnstile ('N073', 'R013', '02-00-05', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -5883
WARNING. Abnormal entry count found on day 2016-12-03: -5883
WARNING. Abnormal entry count found on day 2016-12-10: -5724
WARNING. Abnormal entry count found on day 2016-12-10: -5724
WARNING. Abnormal entry count found on day 2016-12-17: -5285
WARNING. Abnormal entry count found on day 2016-12-17: -5285
WARNING. Abnormal entry count found on day 2016-12-24: -3651
WARNING. Abnormal entry count found on day 2016-12-24: -3651
Processing turnstile ('H009', 'R235', '00-03-04', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -35403
WARNING. Abnormal entry count found on day 2016-12-03: -35403
WARNING. Abnormal entry count found on day 2016-12-10: -35613
WARNING. Abnormal entry count found on day 2016-12-10: -35613
WARNING. Abnormal entry count found on day 2016-12-17: -32601
WARNING. Abnormal entry count found on day 2016-12-17: -32601
WARNING. Abnormal entry count found on day 2016-12-24: -24724
WARNING. Abnormal entry count found on day 2016-12-24: -24724
Processing turnstile ('N606', 'R025', '00-00-07', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -37307
WARNING. Abnormal entry count found on day 2016-12-03: -37307
WARNING. Abnormal entry count found on day 2016-12-10: -36622
WARNING. Abnormal entry count found on day 2016-12-10: -36622
WARNING. Abnormal entry count found on day 2016-12-17: -37533
WARNING. Abnormal entry count found on day 2016-12-17: -37533
WARNING. Abnormal entry count found on day 2016-12-24: -32778
WARNING. Abnormal entry count found on day 2016-12-24: -32778
Processing turnstile ('R550', 'R072', '00-03-06', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -5421
WARNING. Abnormal entry count found on day 2016-12-03: -5421
WARNING. Abnormal entry count found on day 2016-12-10: -4931
WARNING. Abnormal entry count found on day 2016-12-10: -4931
WARNING. Abnormal entry count found on day 2016-12-17: -4091
WARNING. Abnormal entry count found on day 2016-12-17: -4091
WARNING. Abnormal entry count found on day 2016-12-24: -2939
WARNING. Abnormal entry count found on day 2016-12-24: -2939
Processing turnstile ('N409', 'R268', '00-00-02', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16711
WARNING. Abnormal entry count found on day 2016-12-03: -16711
WARNING. Abnormal entry count found on day 2016-12-10: -16287
WARNING. Abnormal entry count found on day 2016-12-10: -16287
WARNING. Abnormal entry count found on day 2016-12-17: -15474
WARNING. Abnormal entry count found on day 2016-12-17: -15474
WARNING. Abnormal entry count found on day 2016-12-24: -10627
WARNING. Abnormal entry count found on day 2016-12-24: -10627
Processing turnstile ('N417', 'R269', '00-00-01', 'BEDFORD-NOSTRAN')
WARNING. Abnormal entry count found on day 2016-12-03: -7172
WARNING. Abnormal entry count found on day 2016-12-03: -7172
WARNING. Abnormal entry count found on day 2016-12-10: -6896
WARNING. Abnormal entry count found on day 2016-12-10: -6896
WARNING. Abnormal entry count found on day 2016-12-17: -6577
WARNING. Abnormal entry count found on day 2016-12-17: -6577
WARNING. Abnormal entry count found on day 2016-12-24: -4569
WARNING. Abnormal entry count found on day 2016-12-24: -4569
Processing turnstile ('N520', 'R240', '00-00-05', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17451
WARNING. Abnormal entry count found on day 2016-12-03: -17451
WARNING. Abnormal entry count found on day 2016-12-10: -20446
WARNING. Abnormal entry count found on day 2016-12-10: -20446
WARNING. Abnormal entry count found on day 2016-12-17: -18745
WARNING. Abnormal entry count found on day 2016-12-17: -18745
WARNING. Abnormal entry count found on day 2016-12-24: -14418
WARNING. Abnormal entry count found on day 2016-12-24: -14418
Processing turnstile ('H007', 'R248', '00-03-02', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8219
WARNING. Abnormal entry count found on day 2016-12-03: -8219
WARNING. Abnormal entry count found on day 2016-12-10: -9081
WARNING. Abnormal entry count found on day 2016-12-10: -9081
WARNING. Abnormal entry count found on day 2016-12-17: -8209
WARNING. Abnormal entry count found on day 2016-12-17: -8209
WARNING. Abnormal entry count found on day 2016-12-24: -5894
WARNING. Abnormal entry count found on day 2016-12-24: -5894
Processing turnstile ('B020', 'R263', '00-03-02', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -187
WARNING. Abnormal entry count found on day 2016-12-03: -187
WARNING. Abnormal entry count found on day 2016-12-10: -178
WARNING. Abnormal entry count found on day 2016-12-10: -178
WARNING. Abnormal entry count found on day 2016-12-17: -159
WARNING. Abnormal entry count found on day 2016-12-17: -159
WARNING. Abnormal entry count found on day 2016-12-24: -126
WARNING. Abnormal entry count found on day 2016-12-24: -126
Processing turnstile ('N080', 'R138', '00-03-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -15456
WARNING. Abnormal entry count found on day 2016-12-03: -15456
WARNING. Abnormal entry count found on day 2016-12-10: -14580
WARNING. Abnormal entry count found on day 2016-12-10: -14580
WARNING. Abnormal entry count found on day 2016-12-17: -12545
WARNING. Abnormal entry count found on day 2016-12-17: -12545
WARNING. Abnormal entry count found on day 2016-12-24: -3555
WARNING. Abnormal entry count found on day 2016-12-24: -3555
Processing turnstile ('R138', 'R293', '00-03-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -20688
WARNING. Abnormal entry count found on day 2016-12-03: -20688
WARNING. Abnormal entry count found on day 2016-12-10: -22077
WARNING. Abnormal entry count found on day 2016-12-10: -22077
WARNING. Abnormal entry count found on day 2016-12-17: -19482
WARNING. Abnormal entry count found on day 2016-12-17: -19482
WARNING. Abnormal entry count found on day 2016-12-24: -16958
WARNING. Abnormal entry count found on day 2016-12-24: -16958
Processing turnstile ('R645', 'R110', '00-00-00', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -10637
WARNING. Abnormal entry count found on day 2016-12-03: -10637
WARNING. Abnormal entry count found on day 2016-12-10: -10405
WARNING. Abnormal entry count found on day 2016-12-10: -10405
WARNING. Abnormal entry count found on day 2016-12-17: -10340
WARNING. Abnormal entry count found on day 2016-12-17: -10340
WARNING. Abnormal entry count found on day 2016-12-24: -7866
WARNING. Abnormal entry count found on day 2016-12-24: -7866
Processing turnstile ('N010', 'R126', '00-03-00', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1363
WARNING. Abnormal entry count found on day 2016-12-03: -1363
WARNING. Abnormal entry count found on day 2016-12-10: -1210
WARNING. Abnormal entry count found on day 2016-12-10: -1210
WARNING. Abnormal entry count found on day 2016-12-17: -1185
WARNING. Abnormal entry count found on day 2016-12-17: -1185
WARNING. Abnormal entry count found on day 2016-12-24: -1020
WARNING. Abnormal entry count found on day 2016-12-24: -1020
Processing turnstile ('R404', 'R447', '00-00-00', 'CYPRESS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7828
WARNING. Abnormal entry count found on day 2016-12-03: -7828
WARNING. Abnormal entry count found on day 2016-12-10: -8041
WARNING. Abnormal entry count found on day 2016-12-10: -8041
WARNING. Abnormal entry count found on day 2016-12-17: -7650
WARNING. Abnormal entry count found on day 2016-12-17: -7650
WARNING. Abnormal entry count found on day 2016-12-24: -6027
WARNING. Abnormal entry count found on day 2016-12-24: -6027
Processing turnstile ('R646', 'R110', '01-00-01', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-04: -612
WARNING. Abnormal entry count found on day 2016-12-05: -454
WARNING. Abnormal entry count found on day 2016-12-06: -2204
WARNING. Abnormal entry count found on day 2016-12-07: -2224
WARNING. Abnormal entry count found on day 2016-12-08: -2383
WARNING. Abnormal entry count found on day 2016-12-09: -2311
WARNING. Abnormal entry count found on day 2016-12-03: 10188
WARNING. Abnormal entry count found on day 2016-12-04: -612
WARNING. Abnormal entry count found on day 2016-12-05: -454
WARNING. Abnormal entry count found on day 2016-12-06: -2204
WARNING. Abnormal entry count found on day 2016-12-07: -2224
WARNING. Abnormal entry count found on day 2016-12-08: -2383
WARNING. Abnormal entry count found on day 2016-12-09: -2311
WARNING. Abnormal entry count found on day 2016-12-03: 10188
WARNING. Abnormal entry count found on day 2016-12-04: -612
WARNING. Abnormal entry count found on day 2016-12-05: -454
WARNING. Abnormal entry count found on day 2016-12-06: -2204
WARNING. Abnormal entry count found on day 2016-12-07: -2224
WARNING. Abnormal entry count found on day 2016-12-08: -2383
WARNING. Abnormal entry count found on day 2016-12-09: -2311
WARNING. Abnormal entry count found on day 2016-12-10: -1699
WARNING. Abnormal entry count found on day 2016-12-11: -575
WARNING. Abnormal entry count found on day 2016-12-12: -422
WARNING. Abnormal entry count found on day 2016-12-13: -2180
WARNING. Abnormal entry count found on day 2016-12-14: -1886
WARNING. Abnormal entry count found on day 2016-12-15: -2114
WARNING. Abnormal entry count found on day 2016-12-16: -2010
WARNING. Abnormal entry count found on day 2016-12-11: -575
WARNING. Abnormal entry count found on day 2016-12-12: -422
WARNING. Abnormal entry count found on day 2016-12-13: -2180
WARNING. Abnormal entry count found on day 2016-12-14: -1886
WARNING. Abnormal entry count found on day 2016-12-15: -2114
WARNING. Abnormal entry count found on day 2016-12-16: -2010
WARNING. Abnormal entry count found on day 2016-12-11: -575
WARNING. Abnormal entry count found on day 2016-12-12: -422
WARNING. Abnormal entry count found on day 2016-12-13: -2180
WARNING. Abnormal entry count found on day 2016-12-14: -1886
WARNING. Abnormal entry count found on day 2016-12-15: -2114
WARNING. Abnormal entry count found on day 2016-12-16: -2010
WARNING. Abnormal entry count found on day 2016-12-17: -1721
WARNING. Abnormal entry count found on day 2016-12-18: -600
WARNING. Abnormal entry count found on day 2016-12-19: -433
WARNING. Abnormal entry count found on day 2016-12-20: -1988
WARNING. Abnormal entry count found on day 2016-12-21: -1889
WARNING. Abnormal entry count found on day 2016-12-22: -1710
WARNING. Abnormal entry count found on day 2016-12-23: -1533
WARNING. Abnormal entry count found on day 2016-12-18: -600
WARNING. Abnormal entry count found on day 2016-12-19: -433
WARNING. Abnormal entry count found on day 2016-12-20: -1988
WARNING. Abnormal entry count found on day 2016-12-21: -1889
WARNING. Abnormal entry count found on day 2016-12-22: -1710
WARNING. Abnormal entry count found on day 2016-12-23: -1533
WARNING. Abnormal entry count found on day 2016-12-18: -600
WARNING. Abnormal entry count found on day 2016-12-19: -433
WARNING. Abnormal entry count found on day 2016-12-20: -1988
WARNING. Abnormal entry count found on day 2016-12-21: -1889
WARNING. Abnormal entry count found on day 2016-12-22: -1710
WARNING. Abnormal entry count found on day 2016-12-23: -1533
WARNING. Abnormal entry count found on day 2016-12-24: -1291
WARNING. Abnormal entry count found on day 2016-12-25: -424
WARNING. Abnormal entry count found on day 2016-12-26: -239
WARNING. Abnormal entry count found on day 2016-12-27: -480
WARNING. Abnormal entry count found on day 2016-12-28: -1138
WARNING. Abnormal entry count found on day 2016-12-29: -1279
WARNING. Abnormal entry count found on day 2016-12-30: -1146
WARNING. Abnormal entry count found on day 2016-12-25: -424
WARNING. Abnormal entry count found on day 2016-12-26: -239
WARNING. Abnormal entry count found on day 2016-12-27: -480
WARNING. Abnormal entry count found on day 2016-12-28: -1138
WARNING. Abnormal entry count found on day 2016-12-29: -1279
WARNING. Abnormal entry count found on day 2016-12-30: -1146
WARNING. Abnormal entry count found on day 2016-12-25: -424
WARNING. Abnormal entry count found on day 2016-12-26: -239
WARNING. Abnormal entry count found on day 2016-12-27: -480
WARNING. Abnormal entry count found on day 2016-12-28: -1138
WARNING. Abnormal entry count found on day 2016-12-29: -1279
WARNING. Abnormal entry count found on day 2016-12-30: -1146
Processing turnstile ('R176', 'R169', '00-00-03', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -17041
WARNING. Abnormal entry count found on day 2016-12-03: -17041
WARNING. Abnormal entry count found on day 2016-12-10: -15565
WARNING. Abnormal entry count found on day 2016-12-10: -15565
WARNING. Abnormal entry count found on day 2016-12-17: -13367
WARNING. Abnormal entry count found on day 2016-12-17: -13367
WARNING. Abnormal entry count found on day 2016-12-24: -12219
WARNING. Abnormal entry count found on day 2016-12-24: -12219
Processing turnstile ('R533', 'R055', '00-03-03', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -16698
WARNING. Abnormal entry count found on day 2016-12-03: -16698
WARNING. Abnormal entry count found on day 2016-12-10: -15584
WARNING. Abnormal entry count found on day 2016-12-10: -15584
WARNING. Abnormal entry count found on day 2016-12-17: -18895
WARNING. Abnormal entry count found on day 2016-12-17: -18895
WARNING. Abnormal entry count found on day 2016-12-24: -15347
WARNING. Abnormal entry count found on day 2016-12-24: -15347
Processing turnstile ('PTH18', 'R549', '01-00-00', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-07: -199559
WARNING. Abnormal entry count found on day 2016-12-03: 199034
WARNING. Abnormal entry count found on day 2016-12-07: -199559
WARNING. Abnormal entry count found on day 2016-12-03: 199034
WARNING. Abnormal entry count found on day 2016-12-07: -199559
WARNING. Abnormal entry count found on day 2016-12-10: -1514
WARNING. Abnormal entry count found on day 2016-12-10: -1514
WARNING. Abnormal entry count found on day 2016-12-17: -1757
WARNING. Abnormal entry count found on day 2016-12-17: -1757
WARNING. Abnormal entry count found on day 2016-12-24: -2113
WARNING. Abnormal entry count found on day 2016-12-24: -2113
Processing turnstile ('N003', 'R185', '00-00-00', 'DYCKMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15962
WARNING. Abnormal entry count found on day 2016-12-03: -15962
WARNING. Abnormal entry count found on day 2016-12-10: -16083
WARNING. Abnormal entry count found on day 2016-12-10: -16083
WARNING. Abnormal entry count found on day 2016-12-17: -15314
WARNING. Abnormal entry count found on day 2016-12-17: -15314
WARNING. Abnormal entry count found on day 2016-12-24: -11936
WARNING. Abnormal entry count found on day 2016-12-24: -11936
Processing turnstile ('N601A', 'R319', '01-05-01', 'LEXINGTON AV/63')
Processing turnstile ('R228', 'R143', '00-00-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6902
WARNING. Abnormal entry count found on day 2016-12-03: -6902
WARNING. Abnormal entry count found on day 2016-12-10: -7093
WARNING. Abnormal entry count found on day 2016-12-10: -7093
WARNING. Abnormal entry count found on day 2016-12-17: -6239
WARNING. Abnormal entry count found on day 2016-12-17: -6239
WARNING. Abnormal entry count found on day 2016-12-24: -4328
WARNING. Abnormal entry count found on day 2016-12-24: -4328
Processing turnstile ('R147', 'R033', '04-00-04', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16863
WARNING. Abnormal entry count found on day 2016-12-03: -16863
WARNING. Abnormal entry count found on day 2016-12-10: -16344
WARNING. Abnormal entry count found on day 2016-12-10: -16344
WARNING. Abnormal entry count found on day 2016-12-17: -16867
WARNING. Abnormal entry count found on day 2016-12-17: -16867
WARNING. Abnormal entry count found on day 2016-12-24: -18897
WARNING. Abnormal entry count found on day 2016-12-24: -18897
Processing turnstile ('N029', 'R333', '01-00-01', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3352
WARNING. Abnormal entry count found on day 2016-12-03: -3352
WARNING. Abnormal entry count found on day 2016-12-10: -4205
WARNING. Abnormal entry count found on day 2016-12-10: -4205
WARNING. Abnormal entry count found on day 2016-12-17: -3873
WARNING. Abnormal entry count found on day 2016-12-17: -3873
WARNING. Abnormal entry count found on day 2016-12-24: -2816
WARNING. Abnormal entry count found on day 2016-12-24: -2816
Processing turnstile ('N213', 'R154', '00-00-02', 'TREMONT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3621
WARNING. Abnormal entry count found on day 2016-12-03: -3621
WARNING. Abnormal entry count found on day 2016-12-10: -3601
WARNING. Abnormal entry count found on day 2016-12-10: -3601
WARNING. Abnormal entry count found on day 2016-12-17: -3617
WARNING. Abnormal entry count found on day 2016-12-17: -3617
WARNING. Abnormal entry count found on day 2016-12-24: -2920
WARNING. Abnormal entry count found on day 2016-12-24: -2920
Processing turnstile ('B022', 'R229', '00-03-00', 'AVENUE M')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
Processing turnstile ('PTH16', 'R550', '01-00-01', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -1132
WARNING. Abnormal entry count found on day 2016-12-03: -1132
WARNING. Abnormal entry count found on day 2016-12-10: -1081
WARNING. Abnormal entry count found on day 2016-12-10: -1081
WARNING. Abnormal entry count found on day 2016-12-17: -1046
WARNING. Abnormal entry count found on day 2016-12-17: -1046
WARNING. Abnormal entry count found on day 2016-12-24: -593
WARNING. Abnormal entry count found on day 2016-12-24: -593
Processing turnstile ('R406', 'R448', '00-00-01', "E 143/ST MARY'S")
WARNING. Abnormal entry count found on day 2016-12-03: -1120
WARNING. Abnormal entry count found on day 2016-12-03: -1120
WARNING. Abnormal entry count found on day 2016-12-10: -975
WARNING. Abnormal entry count found on day 2016-12-10: -975
WARNING. Abnormal entry count found on day 2016-12-17: -1046
WARNING. Abnormal entry count found on day 2016-12-17: -1046
WARNING. Abnormal entry count found on day 2016-12-24: -677
WARNING. Abnormal entry count found on day 2016-12-24: -677
Processing turnstile ('N203', 'R195', '00-03-02', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -552
WARNING. Abnormal entry count found on day 2016-12-24: -552
Processing turnstile ('N070', 'R012', '04-00-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -12289
WARNING. Abnormal entry count found on day 2016-12-03: -12289
WARNING. Abnormal entry count found on day 2016-12-10: -11389
WARNING. Abnormal entry count found on day 2016-12-10: -11389
WARNING. Abnormal entry count found on day 2016-12-17: -12469
WARNING. Abnormal entry count found on day 2016-12-17: -12469
WARNING. Abnormal entry count found on day 2016-12-24: -10610
WARNING. Abnormal entry count found on day 2016-12-24: -10610
Processing turnstile ('N534', 'R220', '01-00-01', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8042
WARNING. Abnormal entry count found on day 2016-12-03: -8042
WARNING. Abnormal entry count found on day 2016-12-10: -7784
WARNING. Abnormal entry count found on day 2016-12-10: -7784
WARNING. Abnormal entry count found on day 2016-12-17: -7022
WARNING. Abnormal entry count found on day 2016-12-17: -7022
WARNING. Abnormal entry count found on day 2016-12-24: -4524
WARNING. Abnormal entry count found on day 2016-12-24: -4524
Processing turnstile ('N194', 'R338', '00-05-00', 'BEACH 36 ST')
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
Processing turnstile ('PTH19', 'R549', '02-01-06', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -3440
WARNING. Abnormal entry count found on day 2016-12-03: -3440
WARNING. Abnormal entry count found on day 2016-12-10: -3185
WARNING. Abnormal entry count found on day 2016-12-10: -3185
WARNING. Abnormal entry count found on day 2016-12-17: -2156
WARNING. Abnormal entry count found on day 2016-12-17: -2156
WARNING. Abnormal entry count found on day 2016-12-24: -2017
WARNING. Abnormal entry count found on day 2016-12-24: -2017
Processing turnstile ('N080', 'R138', '00-06-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -13076
WARNING. Abnormal entry count found on day 2016-12-03: -13076
WARNING. Abnormal entry count found on day 2016-12-10: -10877
WARNING. Abnormal entry count found on day 2016-12-10: -10877
WARNING. Abnormal entry count found on day 2016-12-17: -7562
WARNING. Abnormal entry count found on day 2016-12-17: -7562
WARNING. Abnormal entry count found on day 2016-12-24: -8581
WARNING. Abnormal entry count found on day 2016-12-24: -8581
Processing turnstile ('D010', 'R394', '00-00-03', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -18243
WARNING. Abnormal entry count found on day 2016-12-03: -18243
WARNING. Abnormal entry count found on day 2016-12-10: -16931
WARNING. Abnormal entry count found on day 2016-12-10: -16931
WARNING. Abnormal entry count found on day 2016-12-17: -17860
WARNING. Abnormal entry count found on day 2016-12-17: -17860
WARNING. Abnormal entry count found on day 2016-12-24: -13892
WARNING. Abnormal entry count found on day 2016-12-24: -13892
Processing turnstile ('R226A', 'R131', '03-05-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N305A', 'R016', '00-03-04', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -9188
WARNING. Abnormal entry count found on day 2016-12-03: -9188
WARNING. Abnormal entry count found on day 2016-12-10: -7642
WARNING. Abnormal entry count found on day 2016-12-10: -7642
WARNING. Abnormal entry count found on day 2016-12-17: -7743
WARNING. Abnormal entry count found on day 2016-12-17: -7743
WARNING. Abnormal entry count found on day 2016-12-24: -5520
WARNING. Abnormal entry count found on day 2016-12-24: -5520
Processing turnstile ('B019', 'R149', '00-00-01', 'NEWKIRK PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -10941
WARNING. Abnormal entry count found on day 2016-12-03: -10941
WARNING. Abnormal entry count found on day 2016-12-10: -11137
WARNING. Abnormal entry count found on day 2016-12-10: -11137
WARNING. Abnormal entry count found on day 2016-12-17: -10258
WARNING. Abnormal entry count found on day 2016-12-17: -10258
WARNING. Abnormal entry count found on day 2016-12-24: -7523
WARNING. Abnormal entry count found on day 2016-12-24: -7523
Processing turnstile ('N049', 'R084', '01-03-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -7094
WARNING. Abnormal entry count found on day 2016-12-03: -7094
WARNING. Abnormal entry count found on day 2016-12-10: -6723
WARNING. Abnormal entry count found on day 2016-12-10: -6723
WARNING. Abnormal entry count found on day 2016-12-17: -6411
WARNING. Abnormal entry count found on day 2016-12-17: -6411
WARNING. Abnormal entry count found on day 2016-12-24: -4375
WARNING. Abnormal entry count found on day 2016-12-24: -4375
Processing turnstile ('R249', 'R179', '01-00-05', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5741
WARNING. Abnormal entry count found on day 2016-12-03: -5741
WARNING. Abnormal entry count found on day 2016-12-10: -5672
WARNING. Abnormal entry count found on day 2016-12-10: -5672
WARNING. Abnormal entry count found on day 2016-12-17: -5784
WARNING. Abnormal entry count found on day 2016-12-17: -5784
WARNING. Abnormal entry count found on day 2016-12-24: -4160
WARNING. Abnormal entry count found on day 2016-12-24: -4160
Processing turnstile ('N557', 'R130', '00-03-01', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -174
WARNING. Abnormal entry count found on day 2016-12-03: -174
WARNING. Abnormal entry count found on day 2016-12-10: -150
WARNING. Abnormal entry count found on day 2016-12-10: -150
WARNING. Abnormal entry count found on day 2016-12-17: -192
WARNING. Abnormal entry count found on day 2016-12-17: -192
WARNING. Abnormal entry count found on day 2016-12-24: -189
WARNING. Abnormal entry count found on day 2016-12-24: -189
Processing turnstile ('R170', 'R191', '00-03-00', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8893
WARNING. Abnormal entry count found on day 2016-12-03: -8893
WARNING. Abnormal entry count found on day 2016-12-10: -8834
WARNING. Abnormal entry count found on day 2016-12-10: -8834
WARNING. Abnormal entry count found on day 2016-12-17: -8303
WARNING. Abnormal entry count found on day 2016-12-17: -8303
WARNING. Abnormal entry count found on day 2016-12-24: -6800
WARNING. Abnormal entry count found on day 2016-12-24: -6800
Processing turnstile ('N092', 'R029', '03-03-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13408
WARNING. Abnormal entry count found on day 2016-12-03: -13408
WARNING. Abnormal entry count found on day 2016-12-10: -845
WARNING. Abnormal entry count found on day 2016-12-10: -845
WARNING. Abnormal entry count found on day 2016-12-17: -9554
WARNING. Abnormal entry count found on day 2016-12-17: -9554
WARNING. Abnormal entry count found on day 2016-12-24: -7074
WARNING. Abnormal entry count found on day 2016-12-24: -7074
Processing turnstile ('N305', 'R017', '01-03-00', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -6471
WARNING. Abnormal entry count found on day 2016-12-03: -6471
WARNING. Abnormal entry count found on day 2016-12-10: -6559
WARNING. Abnormal entry count found on day 2016-12-10: -6559
WARNING. Abnormal entry count found on day 2016-12-17: -6065
WARNING. Abnormal entry count found on day 2016-12-17: -6065
WARNING. Abnormal entry count found on day 2016-12-24: -4277
WARNING. Abnormal entry count found on day 2016-12-24: -4277
Processing turnstile ('R226A', 'R131', '03-05-01', '23 ST')
Processing turnstile ('R512', 'R092', '00-03-01', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -23161
WARNING. Abnormal entry count found on day 2016-12-03: -23161
WARNING. Abnormal entry count found on day 2016-12-10: -22736
WARNING. Abnormal entry count found on day 2016-12-10: -22736
WARNING. Abnormal entry count found on day 2016-12-17: -19452
WARNING. Abnormal entry count found on day 2016-12-17: -19452
WARNING. Abnormal entry count found on day 2016-12-24: -15520
WARNING. Abnormal entry count found on day 2016-12-24: -15520
Processing turnstile ('N111', 'R284', '00-06-00', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10963
WARNING. Abnormal entry count found on day 2016-12-03: -10963
WARNING. Abnormal entry count found on day 2016-12-10: -9291
WARNING. Abnormal entry count found on day 2016-12-10: -9291
WARNING. Abnormal entry count found on day 2016-12-17: -7728
WARNING. Abnormal entry count found on day 2016-12-17: -7728
WARNING. Abnormal entry count found on day 2016-12-24: -6034
WARNING. Abnormal entry count found on day 2016-12-24: -6034
Processing turnstile ('R246', 'R177', '00-03-03', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -17825
WARNING. Abnormal entry count found on day 2016-12-03: -17825
WARNING. Abnormal entry count found on day 2016-12-10: -16104
WARNING. Abnormal entry count found on day 2016-12-10: -16104
WARNING. Abnormal entry count found on day 2016-12-17: -15995
WARNING. Abnormal entry count found on day 2016-12-17: -15995
WARNING. Abnormal entry count found on day 2016-12-24: -10241
WARNING. Abnormal entry count found on day 2016-12-24: -10241
Processing turnstile ('N006A', 'R280', '00-00-01', '190 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7976
WARNING. Abnormal entry count found on day 2016-12-03: -7976
WARNING. Abnormal entry count found on day 2016-12-10: -7890
WARNING. Abnormal entry count found on day 2016-12-10: -7890
WARNING. Abnormal entry count found on day 2016-12-17: -7361
WARNING. Abnormal entry count found on day 2016-12-17: -7361
WARNING. Abnormal entry count found on day 2016-12-24: -5625
WARNING. Abnormal entry count found on day 2016-12-24: -5625
Processing turnstile ('R130', 'R321', '01-00-00', '18 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4821
WARNING. Abnormal entry count found on day 2016-12-03: -4821
WARNING. Abnormal entry count found on day 2016-12-10: -5051
WARNING. Abnormal entry count found on day 2016-12-10: -5051
WARNING. Abnormal entry count found on day 2016-12-17: -4215
WARNING. Abnormal entry count found on day 2016-12-17: -4215
WARNING. Abnormal entry count found on day 2016-12-24: -2376
WARNING. Abnormal entry count found on day 2016-12-24: -2376
Processing turnstile ('R622', 'R123', '00-00-01', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -17751
WARNING. Abnormal entry count found on day 2016-12-03: -17751
WARNING. Abnormal entry count found on day 2016-12-10: -14682
WARNING. Abnormal entry count found on day 2016-12-10: -14682
WARNING. Abnormal entry count found on day 2016-12-17: -14428
WARNING. Abnormal entry count found on day 2016-12-17: -14428
WARNING. Abnormal entry count found on day 2016-12-24: -8784
WARNING. Abnormal entry count found on day 2016-12-24: -8784
Processing turnstile ('R110', 'R027', '01-03-03', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11103
WARNING. Abnormal entry count found on day 2016-12-03: -11103
WARNING. Abnormal entry count found on day 2016-12-10: -10457
WARNING. Abnormal entry count found on day 2016-12-10: -10457
WARNING. Abnormal entry count found on day 2016-12-17: -8362
WARNING. Abnormal entry count found on day 2016-12-17: -8362
WARNING. Abnormal entry count found on day 2016-12-24: -5023
WARNING. Abnormal entry count found on day 2016-12-24: -5023
Processing turnstile ('N342', 'R019', '01-00-02', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7036
WARNING. Abnormal entry count found on day 2016-12-03: -7036
WARNING. Abnormal entry count found on day 2016-12-10: -6919
WARNING. Abnormal entry count found on day 2016-12-10: -6919
WARNING. Abnormal entry count found on day 2016-12-17: -6698
WARNING. Abnormal entry count found on day 2016-12-17: -6698
WARNING. Abnormal entry count found on day 2016-12-24: -4960
WARNING. Abnormal entry count found on day 2016-12-24: -4960
Processing turnstile ('PTH19', 'R549', '02-01-05', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1549
WARNING. Abnormal entry count found on day 2016-12-03: -1549
WARNING. Abnormal entry count found on day 2016-12-10: -1819
WARNING. Abnormal entry count found on day 2016-12-10: -1819
WARNING. Abnormal entry count found on day 2016-12-17: -1772
WARNING. Abnormal entry count found on day 2016-12-17: -1772
WARNING. Abnormal entry count found on day 2016-12-24: -1119
WARNING. Abnormal entry count found on day 2016-12-24: -1119
Processing turnstile ('N095A', 'R014', '01-00-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17993
WARNING. Abnormal entry count found on day 2016-12-03: -17993
WARNING. Abnormal entry count found on day 2016-12-10: -18436
WARNING. Abnormal entry count found on day 2016-12-10: -18436
WARNING. Abnormal entry count found on day 2016-12-17: -15696
WARNING. Abnormal entry count found on day 2016-12-17: -15696
WARNING. Abnormal entry count found on day 2016-12-24: -13960
WARNING. Abnormal entry count found on day 2016-12-24: -13960
Processing turnstile ('R139', 'R031', '04-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -5423
WARNING. Abnormal entry count found on day 2016-12-03: -5423
WARNING. Abnormal entry count found on day 2016-12-10: -5496
WARNING. Abnormal entry count found on day 2016-12-10: -5496
WARNING. Abnormal entry count found on day 2016-12-17: -5189
WARNING. Abnormal entry count found on day 2016-12-17: -5189
WARNING. Abnormal entry count found on day 2016-12-24: -4150
WARNING. Abnormal entry count found on day 2016-12-24: -4150
Processing turnstile ('N110', 'R283', '00-06-01', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4757
WARNING. Abnormal entry count found on day 2016-12-03: -4757
WARNING. Abnormal entry count found on day 2016-12-10: -4865
WARNING. Abnormal entry count found on day 2016-12-10: -4865
WARNING. Abnormal entry count found on day 2016-12-17: -4850
WARNING. Abnormal entry count found on day 2016-12-17: -4850
WARNING. Abnormal entry count found on day 2016-12-24: -3483
WARNING. Abnormal entry count found on day 2016-12-24: -3483
Processing turnstile ('N067', 'R012', '00-03-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -15643
WARNING. Abnormal entry count found on day 2016-12-03: -15643
WARNING. Abnormal entry count found on day 2016-12-10: -14491
WARNING. Abnormal entry count found on day 2016-12-10: -14491
WARNING. Abnormal entry count found on day 2016-12-17: -13344
WARNING. Abnormal entry count found on day 2016-12-17: -13344
WARNING. Abnormal entry count found on day 2016-12-24: -10827
WARNING. Abnormal entry count found on day 2016-12-24: -10827
Processing turnstile ('D002', 'R390', '00-03-01', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -17323
WARNING. Abnormal entry count found on day 2016-12-03: -17323
WARNING. Abnormal entry count found on day 2016-12-10: -16781
WARNING. Abnormal entry count found on day 2016-12-10: -16781
WARNING. Abnormal entry count found on day 2016-12-17: -17548
WARNING. Abnormal entry count found on day 2016-12-17: -17548
WARNING. Abnormal entry count found on day 2016-12-24: -16619
WARNING. Abnormal entry count found on day 2016-12-24: -16619
Processing turnstile ('N089', 'R139', '00-03-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2483
WARNING. Abnormal entry count found on day 2016-12-03: -2483
WARNING. Abnormal entry count found on day 2016-12-10: -2306
WARNING. Abnormal entry count found on day 2016-12-10: -2306
WARNING. Abnormal entry count found on day 2016-12-17: -2430
WARNING. Abnormal entry count found on day 2016-12-17: -2430
WARNING. Abnormal entry count found on day 2016-12-24: -2062
WARNING. Abnormal entry count found on day 2016-12-24: -2062
Processing turnstile ('R646', 'R110', '01-00-02', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -8308
WARNING. Abnormal entry count found on day 2016-12-03: -8308
WARNING. Abnormal entry count found on day 2016-12-10: -7672
WARNING. Abnormal entry count found on day 2016-12-10: -7672
WARNING. Abnormal entry count found on day 2016-12-17: -6901
WARNING. Abnormal entry count found on day 2016-12-17: -6901
WARNING. Abnormal entry count found on day 2016-12-24: -4023
WARNING. Abnormal entry count found on day 2016-12-24: -4023
Processing turnstile ('H009', 'R235', '00-00-00', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -18572
WARNING. Abnormal entry count found on day 2016-12-03: -18572
WARNING. Abnormal entry count found on day 2016-12-10: -17022
WARNING. Abnormal entry count found on day 2016-12-10: -17022
WARNING. Abnormal entry count found on day 2016-12-17: -13121
WARNING. Abnormal entry count found on day 2016-12-17: -13121
WARNING. Abnormal entry count found on day 2016-12-24: -11936
WARNING. Abnormal entry count found on day 2016-12-24: -11936
Processing turnstile ('N185', 'R417', '00-00-01', 'BEACH 98 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -766
WARNING. Abnormal entry count found on day 2016-12-03: -766
WARNING. Abnormal entry count found on day 2016-12-10: -789
WARNING. Abnormal entry count found on day 2016-12-10: -789
WARNING. Abnormal entry count found on day 2016-12-17: -703
WARNING. Abnormal entry count found on day 2016-12-17: -703
WARNING. Abnormal entry count found on day 2016-12-24: -445
WARNING. Abnormal entry count found on day 2016-12-24: -445
Processing turnstile ('N501A', 'R020', '02-06-02', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-17: -24
WARNING. Abnormal entry count found on day 2016-12-17: -24
WARNING. Abnormal entry count found on day 2016-12-24: -43
WARNING. Abnormal entry count found on day 2016-12-24: -43
Processing turnstile ('N507', 'R023', '00-03-03', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -16678
WARNING. Abnormal entry count found on day 2016-12-03: -16678
WARNING. Abnormal entry count found on day 2016-12-10: -17128
WARNING. Abnormal entry count found on day 2016-12-10: -17128
WARNING. Abnormal entry count found on day 2016-12-17: -16571
WARNING. Abnormal entry count found on day 2016-12-17: -16571
WARNING. Abnormal entry count found on day 2016-12-24: -11529
WARNING. Abnormal entry count found on day 2016-12-24: -11529
Processing turnstile ('R641', 'R210', '00-00-02', 'BEVERLY RD')
WARNING. Abnormal entry count found on day 2016-12-03: -5992
WARNING. Abnormal entry count found on day 2016-12-03: -5992
WARNING. Abnormal entry count found on day 2016-12-10: -6102
WARNING. Abnormal entry count found on day 2016-12-10: -6102
WARNING. Abnormal entry count found on day 2016-12-17: -5535
WARNING. Abnormal entry count found on day 2016-12-17: -5535
WARNING. Abnormal entry count found on day 2016-12-24: -4239
WARNING. Abnormal entry count found on day 2016-12-24: -4239
Processing turnstile ('N128', 'R200', '00-00-00', 'EUCLID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8314
WARNING. Abnormal entry count found on day 2016-12-03: -8314
WARNING. Abnormal entry count found on day 2016-12-10: -8186
WARNING. Abnormal entry count found on day 2016-12-10: -8186
WARNING. Abnormal entry count found on day 2016-12-17: -7773
WARNING. Abnormal entry count found on day 2016-12-17: -7773
WARNING. Abnormal entry count found on day 2016-12-24: -5764
WARNING. Abnormal entry count found on day 2016-12-24: -5764
Processing turnstile ('R165', 'R167', '01-00-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6229
WARNING. Abnormal entry count found on day 2016-12-03: -6229
WARNING. Abnormal entry count found on day 2016-12-10: -6113
WARNING. Abnormal entry count found on day 2016-12-10: -6113
WARNING. Abnormal entry count found on day 2016-12-17: -6366
WARNING. Abnormal entry count found on day 2016-12-17: -6366
WARNING. Abnormal entry count found on day 2016-12-24: -4314
WARNING. Abnormal entry count found on day 2016-12-24: -4314
Processing turnstile ('H022', 'R279', '00-06-00', 'JEFFERSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3232
WARNING. Abnormal entry count found on day 2016-12-03: -3232
WARNING. Abnormal entry count found on day 2016-12-10: -3380
WARNING. Abnormal entry count found on day 2016-12-10: -3380
WARNING. Abnormal entry count found on day 2016-12-17: -2854
WARNING. Abnormal entry count found on day 2016-12-17: -2854
WARNING. Abnormal entry count found on day 2016-12-24: -2366
WARNING. Abnormal entry count found on day 2016-12-24: -2366
Processing turnstile ('N013', 'R035', '02-00-03', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6695
WARNING. Abnormal entry count found on day 2016-12-03: -6695
WARNING. Abnormal entry count found on day 2016-12-10: -6338
WARNING. Abnormal entry count found on day 2016-12-10: -6338
WARNING. Abnormal entry count found on day 2016-12-17: -6401
WARNING. Abnormal entry count found on day 2016-12-17: -6401
WARNING. Abnormal entry count found on day 2016-12-24: -4323
WARNING. Abnormal entry count found on day 2016-12-24: -4323
Processing turnstile ('E001', 'R368', '00-00-00', '9 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2946
WARNING. Abnormal entry count found on day 2016-12-03: -2946
WARNING. Abnormal entry count found on day 2016-12-10: -2850
WARNING. Abnormal entry count found on day 2016-12-10: -2850
WARNING. Abnormal entry count found on day 2016-12-17: -2793
WARNING. Abnormal entry count found on day 2016-12-17: -2793
WARNING. Abnormal entry count found on day 2016-12-24: -2184
WARNING. Abnormal entry count found on day 2016-12-24: -2184
Processing turnstile ('E011', 'R371', '00-00-01', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7672
WARNING. Abnormal entry count found on day 2016-12-03: -7672
WARNING. Abnormal entry count found on day 2016-12-10: -7195
WARNING. Abnormal entry count found on day 2016-12-10: -7195
WARNING. Abnormal entry count found on day 2016-12-17: -7666
WARNING. Abnormal entry count found on day 2016-12-17: -7666
WARNING. Abnormal entry count found on day 2016-12-24: -5802
WARNING. Abnormal entry count found on day 2016-12-24: -5802
Processing turnstile ('N068', 'R012', '03-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -13856
WARNING. Abnormal entry count found on day 2016-12-03: -13856
WARNING. Abnormal entry count found on day 2016-12-10: -13912
WARNING. Abnormal entry count found on day 2016-12-10: -13912
WARNING. Abnormal entry count found on day 2016-12-17: -11475
WARNING. Abnormal entry count found on day 2016-12-17: -11475
WARNING. Abnormal entry count found on day 2016-12-24: -8568
WARNING. Abnormal entry count found on day 2016-12-24: -8568
Processing turnstile ('R101', 'R001', '02-00-06', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -4975
WARNING. Abnormal entry count found on day 2016-12-03: -4975
WARNING. Abnormal entry count found on day 2016-12-10: -4792
WARNING. Abnormal entry count found on day 2016-12-10: -4792
WARNING. Abnormal entry count found on day 2016-12-17: -4759
WARNING. Abnormal entry count found on day 2016-12-17: -4759
WARNING. Abnormal entry count found on day 2016-12-24: -4311
WARNING. Abnormal entry count found on day 2016-12-24: -4311
Processing turnstile ('B029', 'R172', '00-00-04', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -16729
WARNING. Abnormal entry count found on day 2016-12-03: -16729
WARNING. Abnormal entry count found on day 2016-12-10: -16027
WARNING. Abnormal entry count found on day 2016-12-10: -16027
WARNING. Abnormal entry count found on day 2016-12-17: -13693
WARNING. Abnormal entry count found on day 2016-12-17: -13693
WARNING. Abnormal entry count found on day 2016-12-24: -10221
WARNING. Abnormal entry count found on day 2016-12-24: -10221
Processing turnstile ('A010', 'R080', '00-00-03', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6892
WARNING. Abnormal entry count found on day 2016-12-03: -6892
WARNING. Abnormal entry count found on day 2016-12-10: -7158
WARNING. Abnormal entry count found on day 2016-12-10: -7158
WARNING. Abnormal entry count found on day 2016-12-17: -6930
WARNING. Abnormal entry count found on day 2016-12-17: -6930
WARNING. Abnormal entry count found on day 2016-12-24: -5710
WARNING. Abnormal entry count found on day 2016-12-24: -5710
Processing turnstile ('H026', 'R137', '00-05-00', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -13
WARNING. Abnormal entry count found on day 2016-12-03: -13
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
Processing turnstile ('R232A', 'R176', '03-05-00', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('R419', 'R326', '00-05-00', 'ZEREGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
Processing turnstile ('N043', 'R186', '00-06-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9267
WARNING. Abnormal entry count found on day 2016-12-03: -9267
WARNING. Abnormal entry count found on day 2016-12-10: -9714
WARNING. Abnormal entry count found on day 2016-12-10: -9714
WARNING. Abnormal entry count found on day 2016-12-17: -6468
WARNING. Abnormal entry count found on day 2016-12-17: -6468
WARNING. Abnormal entry count found on day 2016-12-24: -3734
WARNING. Abnormal entry count found on day 2016-12-24: -3734
Processing turnstile ('R169', 'R168', '01-00-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6264
WARNING. Abnormal entry count found on day 2016-12-03: -6264
WARNING. Abnormal entry count found on day 2016-12-10: -5909
WARNING. Abnormal entry count found on day 2016-12-10: -5909
WARNING. Abnormal entry count found on day 2016-12-17: -5295
WARNING. Abnormal entry count found on day 2016-12-17: -5295
WARNING. Abnormal entry count found on day 2016-12-24: -3988
WARNING. Abnormal entry count found on day 2016-12-24: -3988
Processing turnstile ('N049', 'R084', '01-06-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -5735
WARNING. Abnormal entry count found on day 2016-12-03: -5735
WARNING. Abnormal entry count found on day 2016-12-10: -5117
WARNING. Abnormal entry count found on day 2016-12-10: -5117
WARNING. Abnormal entry count found on day 2016-12-17: -5100
WARNING. Abnormal entry count found on day 2016-12-17: -5100
WARNING. Abnormal entry count found on day 2016-12-24: -3923
WARNING. Abnormal entry count found on day 2016-12-24: -3923
Processing turnstile ('R323', 'R387', '00-06-00', 'WEST FARMS SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -1175
WARNING. Abnormal entry count found on day 2016-12-03: -1175
WARNING. Abnormal entry count found on day 2016-12-10: -1224
WARNING. Abnormal entry count found on day 2016-12-10: -1224
WARNING. Abnormal entry count found on day 2016-12-17: -1132
WARNING. Abnormal entry count found on day 2016-12-17: -1132
WARNING. Abnormal entry count found on day 2016-12-24: -851
WARNING. Abnormal entry count found on day 2016-12-24: -851
Processing turnstile ('R118', 'R343', '01-00-00', 'FRANKLIN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1962
WARNING. Abnormal entry count found on day 2016-12-03: -1962
WARNING. Abnormal entry count found on day 2016-12-10: -2066
WARNING. Abnormal entry count found on day 2016-12-10: -2066
WARNING. Abnormal entry count found on day 2016-12-17: -1578
WARNING. Abnormal entry count found on day 2016-12-17: -1578
WARNING. Abnormal entry count found on day 2016-12-24: -1070
WARNING. Abnormal entry count found on day 2016-12-24: -1070
Processing turnstile ('N334B', 'R341', '00-00-00', '75 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -307
WARNING. Abnormal entry count found on day 2016-12-03: -307
WARNING. Abnormal entry count found on day 2016-12-10: -281
WARNING. Abnormal entry count found on day 2016-12-10: -281
WARNING. Abnormal entry count found on day 2016-12-17: -388
WARNING. Abnormal entry count found on day 2016-12-17: -388
WARNING. Abnormal entry count found on day 2016-12-24: -299
WARNING. Abnormal entry count found on day 2016-12-24: -299
Processing turnstile ('N062A', 'R010', '00-00-02', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -3558
WARNING. Abnormal entry count found on day 2016-12-03: -3558
WARNING. Abnormal entry count found on day 2016-12-10: -3958
WARNING. Abnormal entry count found on day 2016-12-10: -3958
WARNING. Abnormal entry count found on day 2016-12-17: -4502
WARNING. Abnormal entry count found on day 2016-12-17: -4502
WARNING. Abnormal entry count found on day 2016-12-24: -7515
WARNING. Abnormal entry count found on day 2016-12-24: -7515
Processing turnstile ('N539A', 'R288', '00-06-02', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14517
WARNING. Abnormal entry count found on day 2016-12-03: -14517
WARNING. Abnormal entry count found on day 2016-12-10: -14302
WARNING. Abnormal entry count found on day 2016-12-10: -14302
WARNING. Abnormal entry count found on day 2016-12-17: -13800
WARNING. Abnormal entry count found on day 2016-12-17: -13800
WARNING. Abnormal entry count found on day 2016-12-24: -8747
WARNING. Abnormal entry count found on day 2016-12-24: -8747
Processing turnstile ('A037', 'R170', '05-00-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -29937
WARNING. Abnormal entry count found on day 2016-12-03: -29937
WARNING. Abnormal entry count found on day 2016-12-10: -30718
WARNING. Abnormal entry count found on day 2016-12-10: -30718
WARNING. Abnormal entry count found on day 2016-12-17: -28626
WARNING. Abnormal entry count found on day 2016-12-17: -28626
WARNING. Abnormal entry count found on day 2016-12-24: -18623
WARNING. Abnormal entry count found on day 2016-12-24: -18623
Processing turnstile ('PTH01', 'R549', '00-01-02', 'NEWARK HW BMEBE')
Processing turnstile ('PTH05', 'R543', '00-04-05', 'EXCHANGE PLACE')
Processing turnstile ('N339', 'R114', '01-05-00', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
Processing turnstile ('N078', 'R175', '01-03-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11367
WARNING. Abnormal entry count found on day 2016-12-03: -11367
WARNING. Abnormal entry count found on day 2016-12-10: -11502
WARNING. Abnormal entry count found on day 2016-12-10: -11502
WARNING. Abnormal entry count found on day 2016-12-17: -10518
WARNING. Abnormal entry count found on day 2016-12-17: -10518
WARNING. Abnormal entry count found on day 2016-12-24: -6044
WARNING. Abnormal entry count found on day 2016-12-24: -6044
Processing turnstile ('N546', 'R204', '00-00-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4310
WARNING. Abnormal entry count found on day 2016-12-03: -4310
WARNING. Abnormal entry count found on day 2016-12-10: -4110
WARNING. Abnormal entry count found on day 2016-12-10: -4110
WARNING. Abnormal entry count found on day 2016-12-17: -4115
WARNING. Abnormal entry count found on day 2016-12-17: -4115
WARNING. Abnormal entry count found on day 2016-12-24: -3407
WARNING. Abnormal entry count found on day 2016-12-24: -3407
Processing turnstile ('N342', 'R019', '01-03-01', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1757
WARNING. Abnormal entry count found on day 2016-12-03: -1757
WARNING. Abnormal entry count found on day 2016-12-10: -1746
WARNING. Abnormal entry count found on day 2016-12-10: -1746
WARNING. Abnormal entry count found on day 2016-12-17: -1839
WARNING. Abnormal entry count found on day 2016-12-17: -1839
WARNING. Abnormal entry count found on day 2016-12-24: -1243
WARNING. Abnormal entry count found on day 2016-12-24: -1243
Processing turnstile ('R169', 'R168', '01-05-01', '96 ST')
Processing turnstile ('R221', 'R170', '01-06-03', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -5351
WARNING. Abnormal entry count found on day 2016-12-03: -5351
WARNING. Abnormal entry count found on day 2016-12-10: -5889
WARNING. Abnormal entry count found on day 2016-12-10: -5889
WARNING. Abnormal entry count found on day 2016-12-17: -7348
WARNING. Abnormal entry count found on day 2016-12-17: -7348
WARNING. Abnormal entry count found on day 2016-12-24: -4650
WARNING. Abnormal entry count found on day 2016-12-24: -4650
Processing turnstile ('H041', 'R152', '00-00-02', 'CANARSIE-ROCKAW')
WARNING. Abnormal entry count found on day 2016-12-03: -16937
WARNING. Abnormal entry count found on day 2016-12-03: -16937
WARNING. Abnormal entry count found on day 2016-12-10: -16693
WARNING. Abnormal entry count found on day 2016-12-10: -16693
WARNING. Abnormal entry count found on day 2016-12-17: -15709
WARNING. Abnormal entry count found on day 2016-12-17: -15709
WARNING. Abnormal entry count found on day 2016-12-24: -12356
WARNING. Abnormal entry count found on day 2016-12-24: -12356
Processing turnstile ('N606', 'R025', '00-00-00', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -4835
WARNING. Abnormal entry count found on day 2016-12-03: -4835
WARNING. Abnormal entry count found on day 2016-12-10: -3965
WARNING. Abnormal entry count found on day 2016-12-10: -3965
WARNING. Abnormal entry count found on day 2016-12-17: -4121
WARNING. Abnormal entry count found on day 2016-12-17: -4121
WARNING. Abnormal entry count found on day 2016-12-24: -3390
WARNING. Abnormal entry count found on day 2016-12-24: -3390
Processing turnstile ('B024A', 'R211', '02-00-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -4286
WARNING. Abnormal entry count found on day 2016-12-03: -4286
WARNING. Abnormal entry count found on day 2016-12-10: -4022
WARNING. Abnormal entry count found on day 2016-12-10: -4022
WARNING. Abnormal entry count found on day 2016-12-17: -4016
WARNING. Abnormal entry count found on day 2016-12-17: -4016
WARNING. Abnormal entry count found on day 2016-12-24: -2251
WARNING. Abnormal entry count found on day 2016-12-24: -2251
Processing turnstile ('C016', 'R278', '00-00-00', '25 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3219
WARNING. Abnormal entry count found on day 2016-12-03: -3219
WARNING. Abnormal entry count found on day 2016-12-10: -3177
WARNING. Abnormal entry count found on day 2016-12-10: -3177
WARNING. Abnormal entry count found on day 2016-12-17: -2883
WARNING. Abnormal entry count found on day 2016-12-17: -2883
WARNING. Abnormal entry count found on day 2016-12-24: -2124
WARNING. Abnormal entry count found on day 2016-12-24: -2124
Processing turnstile ('R229', 'R143', '01-00-01', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16699
WARNING. Abnormal entry count found on day 2016-12-03: -16699
WARNING. Abnormal entry count found on day 2016-12-10: -16588
WARNING. Abnormal entry count found on day 2016-12-10: -16588
WARNING. Abnormal entry count found on day 2016-12-17: -14345
WARNING. Abnormal entry count found on day 2016-12-17: -14345
WARNING. Abnormal entry count found on day 2016-12-24: -9920
WARNING. Abnormal entry count found on day 2016-12-24: -9920
Processing turnstile ('N120A', 'R153', '01-00-00', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7139
WARNING. Abnormal entry count found on day 2016-12-03: -7139
WARNING. Abnormal entry count found on day 2016-12-10: -7163
WARNING. Abnormal entry count found on day 2016-12-10: -7163
WARNING. Abnormal entry count found on day 2016-12-17: -6733
WARNING. Abnormal entry count found on day 2016-12-17: -6733
WARNING. Abnormal entry count found on day 2016-12-24: -5270
WARNING. Abnormal entry count found on day 2016-12-24: -5270
Processing turnstile ('J030', 'R005', '00-00-00', '85 ST-FOREST PK')
WARNING. Abnormal entry count found on day 2016-12-03: -7567
WARNING. Abnormal entry count found on day 2016-12-03: -7567
WARNING. Abnormal entry count found on day 2016-12-10: -7355
WARNING. Abnormal entry count found on day 2016-12-10: -7355
WARNING. Abnormal entry count found on day 2016-12-17: -7304
WARNING. Abnormal entry count found on day 2016-12-17: -7304
WARNING. Abnormal entry count found on day 2016-12-24: -5959
WARNING. Abnormal entry count found on day 2016-12-24: -5959
Processing turnstile ('H015', 'R250', '01-00-01', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9146
WARNING. Abnormal entry count found on day 2016-12-03: -9146
WARNING. Abnormal entry count found on day 2016-12-10: -9221
WARNING. Abnormal entry count found on day 2016-12-10: -9221
WARNING. Abnormal entry count found on day 2016-12-17: -8308
WARNING. Abnormal entry count found on day 2016-12-17: -8308
WARNING. Abnormal entry count found on day 2016-12-24: -5280
WARNING. Abnormal entry count found on day 2016-12-24: -5280
Processing turnstile ('N327', 'R254', '00-05-00', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -1582
WARNING. Abnormal entry count found on day 2016-12-03: -1582
WARNING. Abnormal entry count found on day 2016-12-10: -1591
WARNING. Abnormal entry count found on day 2016-12-10: -1591
WARNING. Abnormal entry count found on day 2016-12-17: -1735
WARNING. Abnormal entry count found on day 2016-12-17: -1735
WARNING. Abnormal entry count found on day 2016-12-24: -1005
WARNING. Abnormal entry count found on day 2016-12-24: -1005
Processing turnstile ('R612', 'R057', '01-03-03', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -6470
WARNING. Abnormal entry count found on day 2016-12-03: -6470
WARNING. Abnormal entry count found on day 2016-12-10: -5896
WARNING. Abnormal entry count found on day 2016-12-10: -5896
WARNING. Abnormal entry count found on day 2016-12-17: -6114
WARNING. Abnormal entry count found on day 2016-12-17: -6114
WARNING. Abnormal entry count found on day 2016-12-24: -4848
WARNING. Abnormal entry count found on day 2016-12-24: -4848
Processing turnstile ('R317', 'R408', '01-05-01', 'SIMPSON ST')
Processing turnstile ('N319', 'R298', '01-00-02', 'NORTHERN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -1587
WARNING. Abnormal entry count found on day 2016-12-03: -1587
WARNING. Abnormal entry count found on day 2016-12-10: -1529
WARNING. Abnormal entry count found on day 2016-12-10: -1529
WARNING. Abnormal entry count found on day 2016-12-17: -1688
WARNING. Abnormal entry count found on day 2016-12-17: -1688
WARNING. Abnormal entry count found on day 2016-12-24: -1096
WARNING. Abnormal entry count found on day 2016-12-24: -1096
Processing turnstile ('R408', 'R449', '00-00-00', 'E 149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7824
WARNING. Abnormal entry count found on day 2016-12-03: -7824
WARNING. Abnormal entry count found on day 2016-12-10: -7433
WARNING. Abnormal entry count found on day 2016-12-10: -7433
WARNING. Abnormal entry count found on day 2016-12-17: -7438
WARNING. Abnormal entry count found on day 2016-12-17: -7438
WARNING. Abnormal entry count found on day 2016-12-24: -5950
WARNING. Abnormal entry count found on day 2016-12-24: -5950
Processing turnstile ('A043', 'R462', '00-03-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3389
WARNING. Abnormal entry count found on day 2016-12-03: -3389
WARNING. Abnormal entry count found on day 2016-12-10: -3397
WARNING. Abnormal entry count found on day 2016-12-10: -3397
WARNING. Abnormal entry count found on day 2016-12-17: -3561
WARNING. Abnormal entry count found on day 2016-12-17: -3561
WARNING. Abnormal entry count found on day 2016-12-24: -4196
WARNING. Abnormal entry count found on day 2016-12-24: -4196
Processing turnstile ('R182', 'R035', '00-00-01', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4243
WARNING. Abnormal entry count found on day 2016-12-03: -4243
WARNING. Abnormal entry count found on day 2016-12-10: -4006
WARNING. Abnormal entry count found on day 2016-12-10: -4006
WARNING. Abnormal entry count found on day 2016-12-17: -3629
WARNING. Abnormal entry count found on day 2016-12-17: -3629
WARNING. Abnormal entry count found on day 2016-12-24: -2086
WARNING. Abnormal entry count found on day 2016-12-24: -2086
Processing turnstile ('A077', 'R028', '03-00-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5665
WARNING. Abnormal entry count found on day 2016-12-03: -5665
WARNING. Abnormal entry count found on day 2016-12-10: -5440
WARNING. Abnormal entry count found on day 2016-12-10: -5440
WARNING. Abnormal entry count found on day 2016-12-17: -4738
WARNING. Abnormal entry count found on day 2016-12-17: -4738
WARNING. Abnormal entry count found on day 2016-12-24: -3372
WARNING. Abnormal entry count found on day 2016-12-24: -3372
Processing turnstile ('PTH16', 'R550', '01-00-06', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -1948
WARNING. Abnormal entry count found on day 2016-12-03: -1948
WARNING. Abnormal entry count found on day 2016-12-10: -1826
WARNING. Abnormal entry count found on day 2016-12-10: -1826
WARNING. Abnormal entry count found on day 2016-12-17: -2063
WARNING. Abnormal entry count found on day 2016-12-17: -2063
WARNING. Abnormal entry count found on day 2016-12-24: -1005
WARNING. Abnormal entry count found on day 2016-12-24: -1005
Processing turnstile ('N310', 'R140', '01-00-00', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -6754
WARNING. Abnormal entry count found on day 2016-12-03: -6754
WARNING. Abnormal entry count found on day 2016-12-10: -6165
WARNING. Abnormal entry count found on day 2016-12-10: -6165
WARNING. Abnormal entry count found on day 2016-12-17: -5773
WARNING. Abnormal entry count found on day 2016-12-17: -5773
WARNING. Abnormal entry count found on day 2016-12-24: -3954
WARNING. Abnormal entry count found on day 2016-12-24: -3954
Processing turnstile ('R116', 'R030', '00-06-02', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16229
WARNING. Abnormal entry count found on day 2016-12-03: -16229
WARNING. Abnormal entry count found on day 2016-12-10: -14944
WARNING. Abnormal entry count found on day 2016-12-10: -14944
WARNING. Abnormal entry count found on day 2016-12-17: -11975
WARNING. Abnormal entry count found on day 2016-12-17: -11975
WARNING. Abnormal entry count found on day 2016-12-24: -6342
WARNING. Abnormal entry count found on day 2016-12-24: -6342
Processing turnstile ('R194', 'R040', '00-05-01', '231 ST')
Processing turnstile ('PTH17', 'R541', '01-00-04', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1591
WARNING. Abnormal entry count found on day 2016-12-03: -1591
WARNING. Abnormal entry count found on day 2016-12-10: -1479
WARNING. Abnormal entry count found on day 2016-12-10: -1479
WARNING. Abnormal entry count found on day 2016-12-17: -1517
WARNING. Abnormal entry count found on day 2016-12-17: -1517
Processing turnstile ('N337', 'R255', '00-00-00', 'BRIARWOOD')
WARNING. Abnormal entry count found on day 2016-12-03: -11534
WARNING. Abnormal entry count found on day 2016-12-03: -11534
WARNING. Abnormal entry count found on day 2016-12-10: -12776
WARNING. Abnormal entry count found on day 2016-12-10: -12776
WARNING. Abnormal entry count found on day 2016-12-17: -12410
WARNING. Abnormal entry count found on day 2016-12-17: -12410
WARNING. Abnormal entry count found on day 2016-12-24: -9469
WARNING. Abnormal entry count found on day 2016-12-24: -9469
Processing turnstile ('R166', 'R167', '02-00-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9588
WARNING. Abnormal entry count found on day 2016-12-03: -9588
WARNING. Abnormal entry count found on day 2016-12-10: -9325
WARNING. Abnormal entry count found on day 2016-12-10: -9325
WARNING. Abnormal entry count found on day 2016-12-17: -8503
WARNING. Abnormal entry count found on day 2016-12-17: -8503
WARNING. Abnormal entry count found on day 2016-12-24: -5797
WARNING. Abnormal entry count found on day 2016-12-24: -5797
Processing turnstile ('R132', 'R190', '01-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6013
WARNING. Abnormal entry count found on day 2016-12-03: -6013
WARNING. Abnormal entry count found on day 2016-12-10: -6294
WARNING. Abnormal entry count found on day 2016-12-10: -6294
WARNING. Abnormal entry count found on day 2016-12-17: -5405
WARNING. Abnormal entry count found on day 2016-12-17: -5405
WARNING. Abnormal entry count found on day 2016-12-24: -3414
WARNING. Abnormal entry count found on day 2016-12-24: -3414
Processing turnstile ('J005', 'R353', '00-00-02', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5571
WARNING. Abnormal entry count found on day 2016-12-03: -5571
WARNING. Abnormal entry count found on day 2016-12-10: -5032
WARNING. Abnormal entry count found on day 2016-12-10: -5032
WARNING. Abnormal entry count found on day 2016-12-17: -5137
WARNING. Abnormal entry count found on day 2016-12-17: -5137
WARNING. Abnormal entry count found on day 2016-12-24: -3702
WARNING. Abnormal entry count found on day 2016-12-24: -3702
Processing turnstile ('N063', 'R011', '02-00-03', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -5888
WARNING. Abnormal entry count found on day 2016-12-03: -5888
WARNING. Abnormal entry count found on day 2016-12-10: -6232
WARNING. Abnormal entry count found on day 2016-12-10: -6232
WARNING. Abnormal entry count found on day 2016-12-17: -5788
WARNING. Abnormal entry count found on day 2016-12-17: -5788
WARNING. Abnormal entry count found on day 2016-12-24: -5455
WARNING. Abnormal entry count found on day 2016-12-24: -5455
Processing turnstile ('R232A', 'R176', '03-06-00', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11659
WARNING. Abnormal entry count found on day 2016-12-03: -11659
WARNING. Abnormal entry count found on day 2016-12-10: -11510
WARNING. Abnormal entry count found on day 2016-12-10: -11510
WARNING. Abnormal entry count found on day 2016-12-17: -10245
WARNING. Abnormal entry count found on day 2016-12-17: -10245
WARNING. Abnormal entry count found on day 2016-12-24: -7225
WARNING. Abnormal entry count found on day 2016-12-24: -7225
Processing turnstile ('R520', 'R223', '01-05-01', '46 ST BLISS ST')
Processing turnstile ('N012', 'R035', '01-05-01', '168 ST')
Processing turnstile ('R257', 'R182', '01-03-00', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7376
WARNING. Abnormal entry count found on day 2016-12-03: -7376
WARNING. Abnormal entry count found on day 2016-12-10: -8002
WARNING. Abnormal entry count found on day 2016-12-10: -8002
WARNING. Abnormal entry count found on day 2016-12-17: -7443
WARNING. Abnormal entry count found on day 2016-12-17: -7443
WARNING. Abnormal entry count found on day 2016-12-24: -5285
WARNING. Abnormal entry count found on day 2016-12-24: -5285
Processing turnstile ('K025', 'R404', '00-00-02', 'FRESH POND RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3415
WARNING. Abnormal entry count found on day 2016-12-03: -3415
WARNING. Abnormal entry count found on day 2016-12-10: -3380
WARNING. Abnormal entry count found on day 2016-12-10: -3380
WARNING. Abnormal entry count found on day 2016-12-17: -3302
WARNING. Abnormal entry count found on day 2016-12-17: -3302
WARNING. Abnormal entry count found on day 2016-12-24: -2517
WARNING. Abnormal entry count found on day 2016-12-24: -2517
Processing turnstile ('B017', 'R262', '00-00-01', 'BEVERLEY ROAD')
WARNING. Abnormal entry count found on day 2016-12-03: -5352
WARNING. Abnormal entry count found on day 2016-12-03: -5352
WARNING. Abnormal entry count found on day 2016-12-10: -5779
WARNING. Abnormal entry count found on day 2016-12-10: -5779
WARNING. Abnormal entry count found on day 2016-12-17: -5230
WARNING. Abnormal entry count found on day 2016-12-17: -5230
WARNING. Abnormal entry count found on day 2016-12-24: -3827
WARNING. Abnormal entry count found on day 2016-12-24: -3827
Processing turnstile ('N094', 'R029', '01-06-00', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -10002
WARNING. Abnormal entry count found on day 2016-12-03: -10002
WARNING. Abnormal entry count found on day 2016-12-10: -9681
WARNING. Abnormal entry count found on day 2016-12-10: -9681
WARNING. Abnormal entry count found on day 2016-12-17: -9193
WARNING. Abnormal entry count found on day 2016-12-17: -9193
WARNING. Abnormal entry count found on day 2016-12-24: -7578
WARNING. Abnormal entry count found on day 2016-12-24: -7578
Processing turnstile ('N539A', 'R288', '00-00-01', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -45
WARNING. Abnormal entry count found on day 2016-12-03: -45
WARNING. Abnormal entry count found on day 2016-12-10: -76
WARNING. Abnormal entry count found on day 2016-12-10: -76
WARNING. Abnormal entry count found on day 2016-12-17: -54
WARNING. Abnormal entry count found on day 2016-12-17: -54
WARNING. Abnormal entry count found on day 2016-12-24: -28
WARNING. Abnormal entry count found on day 2016-12-24: -28
Processing turnstile ('R514', 'R094', '00-00-03', 'ASTORIA BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -19235
WARNING. Abnormal entry count found on day 2016-12-03: -19235
WARNING. Abnormal entry count found on day 2016-12-10: -17867
WARNING. Abnormal entry count found on day 2016-12-10: -17867
WARNING. Abnormal entry count found on day 2016-12-17: -17235
WARNING. Abnormal entry count found on day 2016-12-17: -17235
WARNING. Abnormal entry count found on day 2016-12-24: -13779
WARNING. Abnormal entry count found on day 2016-12-24: -13779
Processing turnstile ('N213', 'R154', '00-00-00', 'TREMONT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9113
WARNING. Abnormal entry count found on day 2016-12-03: -9113
WARNING. Abnormal entry count found on day 2016-12-10: -8799
WARNING. Abnormal entry count found on day 2016-12-10: -8799
WARNING. Abnormal entry count found on day 2016-12-17: -8708
WARNING. Abnormal entry count found on day 2016-12-17: -8708
WARNING. Abnormal entry count found on day 2016-12-24: -7065
WARNING. Abnormal entry count found on day 2016-12-24: -7065
Processing turnstile ('A054', 'R227', '01-06-00', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4204
WARNING. Abnormal entry count found on day 2016-12-03: -4204
WARNING. Abnormal entry count found on day 2016-12-10: -4393
WARNING. Abnormal entry count found on day 2016-12-10: -4393
WARNING. Abnormal entry count found on day 2016-12-17: -3836
WARNING. Abnormal entry count found on day 2016-12-17: -3836
WARNING. Abnormal entry count found on day 2016-12-24: -3494
WARNING. Abnormal entry count found on day 2016-12-24: -3494
Processing turnstile ('N024', 'R332', '00-00-01', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4165
WARNING. Abnormal entry count found on day 2016-12-03: -4165
WARNING. Abnormal entry count found on day 2016-12-10: -3770
WARNING. Abnormal entry count found on day 2016-12-10: -3770
WARNING. Abnormal entry count found on day 2016-12-17: -3423
WARNING. Abnormal entry count found on day 2016-12-17: -3423
WARNING. Abnormal entry count found on day 2016-12-24: -2326
WARNING. Abnormal entry count found on day 2016-12-24: -2326
Processing turnstile ('N051', 'R084', '02-05-01', '59 ST COLUMBUS')
Processing turnstile ('N194', 'R338', '00-00-01', 'BEACH 36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1465
WARNING. Abnormal entry count found on day 2016-12-03: -1465
WARNING. Abnormal entry count found on day 2016-12-10: -1513
WARNING. Abnormal entry count found on day 2016-12-10: -1513
WARNING. Abnormal entry count found on day 2016-12-17: -1455
WARNING. Abnormal entry count found on day 2016-12-17: -1455
WARNING. Abnormal entry count found on day 2016-12-24: -1183
WARNING. Abnormal entry count found on day 2016-12-24: -1183
Processing turnstile ('N062A', 'R010', '00-00-05', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -11737
WARNING. Abnormal entry count found on day 2016-12-03: -11737
WARNING. Abnormal entry count found on day 2016-12-10: -11344
WARNING. Abnormal entry count found on day 2016-12-10: -11344
WARNING. Abnormal entry count found on day 2016-12-17: -11809
WARNING. Abnormal entry count found on day 2016-12-17: -11809
WARNING. Abnormal entry count found on day 2016-12-24: -14734
WARNING. Abnormal entry count found on day 2016-12-24: -14734
Processing turnstile ('R519', 'R223', '00-03-01', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7663
WARNING. Abnormal entry count found on day 2016-12-03: -7663
WARNING. Abnormal entry count found on day 2016-12-10: -8113
WARNING. Abnormal entry count found on day 2016-12-10: -8113
WARNING. Abnormal entry count found on day 2016-12-17: -7638
WARNING. Abnormal entry count found on day 2016-12-17: -7638
WARNING. Abnormal entry count found on day 2016-12-24: -5726
WARNING. Abnormal entry count found on day 2016-12-24: -5726
Processing turnstile ('N223', 'R156', '01-06-01', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -6632
WARNING. Abnormal entry count found on day 2016-12-03: -6632
WARNING. Abnormal entry count found on day 2016-12-10: -6512
WARNING. Abnormal entry count found on day 2016-12-10: -6512
WARNING. Abnormal entry count found on day 2016-12-17: -6570
WARNING. Abnormal entry count found on day 2016-12-17: -6570
WARNING. Abnormal entry count found on day 2016-12-24: -3926
WARNING. Abnormal entry count found on day 2016-12-24: -3926
Processing turnstile ('PTH11', 'R545', '00-04-00', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-06: -115
WARNING. Abnormal entry count found on day 2016-12-06: -115
WARNING. Abnormal entry count found on day 2016-12-10: -102
WARNING. Abnormal entry count found on day 2016-12-10: -102
WARNING. Abnormal entry count found on day 2016-12-17: -113
WARNING. Abnormal entry count found on day 2016-12-17: -113
WARNING. Abnormal entry count found on day 2016-12-24: -96
WARNING. Abnormal entry count found on day 2016-12-24: -96
Processing turnstile ('A031', 'R083', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16743
WARNING. Abnormal entry count found on day 2016-12-03: -16743
WARNING. Abnormal entry count found on day 2016-12-10: -15401
WARNING. Abnormal entry count found on day 2016-12-10: -15401
WARNING. Abnormal entry count found on day 2016-12-17: -12786
WARNING. Abnormal entry count found on day 2016-12-17: -12786
WARNING. Abnormal entry count found on day 2016-12-24: -9902
WARNING. Abnormal entry count found on day 2016-12-24: -9902
Processing turnstile ('N601A', 'R319', '01-00-01', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-24: -130
WARNING. Abnormal entry count found on day 2016-12-24: -130
Processing turnstile ('N195', 'R358', '00-05-00', 'BEACH 25 ST')
Processing turnstile ('N553', 'R422', '00-00-02', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -4108
WARNING. Abnormal entry count found on day 2016-12-03: -4108
WARNING. Abnormal entry count found on day 2016-12-10: -3536
WARNING. Abnormal entry count found on day 2016-12-10: -3536
WARNING. Abnormal entry count found on day 2016-12-17: -3669
WARNING. Abnormal entry count found on day 2016-12-17: -3669
WARNING. Abnormal entry count found on day 2016-12-24: -2710
WARNING. Abnormal entry count found on day 2016-12-24: -2710
Processing turnstile ('R412', 'R146', '00-00-02', 'HUNTS POINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9986
WARNING. Abnormal entry count found on day 2016-12-03: -9986
WARNING. Abnormal entry count found on day 2016-12-10: -9437
WARNING. Abnormal entry count found on day 2016-12-10: -9437
WARNING. Abnormal entry count found on day 2016-12-17: -9309
WARNING. Abnormal entry count found on day 2016-12-17: -9309
WARNING. Abnormal entry count found on day 2016-12-24: -6803
WARNING. Abnormal entry count found on day 2016-12-24: -6803
Processing turnstile ('N071', 'R013', '00-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -4349
WARNING. Abnormal entry count found on day 2016-12-03: -4349
WARNING. Abnormal entry count found on day 2016-12-10: -4407
WARNING. Abnormal entry count found on day 2016-12-10: -4407
WARNING. Abnormal entry count found on day 2016-12-17: -4093
WARNING. Abnormal entry count found on day 2016-12-17: -4093
WARNING. Abnormal entry count found on day 2016-12-24: -4024
WARNING. Abnormal entry count found on day 2016-12-24: -4024
Processing turnstile ('R622', 'R123', '00-00-04', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7066
WARNING. Abnormal entry count found on day 2016-12-03: -7066
WARNING. Abnormal entry count found on day 2016-12-10: -6275
WARNING. Abnormal entry count found on day 2016-12-10: -6275
WARNING. Abnormal entry count found on day 2016-12-17: -5852
WARNING. Abnormal entry count found on day 2016-12-17: -5852
WARNING. Abnormal entry count found on day 2016-12-24: -4144
WARNING. Abnormal entry count found on day 2016-12-24: -4144
Processing turnstile ('PTH20', 'R549', '03-01-06', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -85
WARNING. Abnormal entry count found on day 2016-12-03: -85
WARNING. Abnormal entry count found on day 2016-12-10: -147
WARNING. Abnormal entry count found on day 2016-12-10: -147
WARNING. Abnormal entry count found on day 2016-12-17: -148
WARNING. Abnormal entry count found on day 2016-12-17: -148
WARNING. Abnormal entry count found on day 2016-12-24: -74
WARNING. Abnormal entry count found on day 2016-12-24: -74
Processing turnstile ('N537', 'R258', '00-03-01', '4 AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6953
WARNING. Abnormal entry count found on day 2016-12-03: -6953
WARNING. Abnormal entry count found on day 2016-12-10: -6751
WARNING. Abnormal entry count found on day 2016-12-10: -6751
WARNING. Abnormal entry count found on day 2016-12-17: -6222
WARNING. Abnormal entry count found on day 2016-12-17: -6222
WARNING. Abnormal entry count found on day 2016-12-24: -4526
WARNING. Abnormal entry count found on day 2016-12-24: -4526
Processing turnstile ('N509', 'R203', '00-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18155
WARNING. Abnormal entry count found on day 2016-12-03: -18155
WARNING. Abnormal entry count found on day 2016-12-10: -18530
WARNING. Abnormal entry count found on day 2016-12-10: -18530
WARNING. Abnormal entry count found on day 2016-12-17: -16863
WARNING. Abnormal entry count found on day 2016-12-17: -16863
WARNING. Abnormal entry count found on day 2016-12-24: -10670
WARNING. Abnormal entry count found on day 2016-12-24: -10670
Processing turnstile ('R416', 'R245', '00-03-01', 'ST LAWRENCE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9195
WARNING. Abnormal entry count found on day 2016-12-03: -9195
WARNING. Abnormal entry count found on day 2016-12-10: -8895
WARNING. Abnormal entry count found on day 2016-12-10: -8895
WARNING. Abnormal entry count found on day 2016-12-17: -8571
WARNING. Abnormal entry count found on day 2016-12-17: -8571
WARNING. Abnormal entry count found on day 2016-12-24: -6953
WARNING. Abnormal entry count found on day 2016-12-24: -6953
Processing turnstile ('R533', 'R055', '00-03-04', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -14373
WARNING. Abnormal entry count found on day 2016-12-03: -14373
WARNING. Abnormal entry count found on day 2016-12-10: -13927
WARNING. Abnormal entry count found on day 2016-12-10: -13927
WARNING. Abnormal entry count found on day 2016-12-17: -16186
WARNING. Abnormal entry count found on day 2016-12-17: -16186
WARNING. Abnormal entry count found on day 2016-12-24: -13721
WARNING. Abnormal entry count found on day 2016-12-24: -13721
Processing turnstile ('A050', 'R088', '00-03-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1734
WARNING. Abnormal entry count found on day 2016-12-03: -1734
WARNING. Abnormal entry count found on day 2016-12-10: -1385
WARNING. Abnormal entry count found on day 2016-12-10: -1385
WARNING. Abnormal entry count found on day 2016-12-17: -1859
WARNING. Abnormal entry count found on day 2016-12-17: -1859
WARNING. Abnormal entry count found on day 2016-12-24: -3542
WARNING. Abnormal entry count found on day 2016-12-24: -3542
Processing turnstile ('N342', 'R019', '01-00-03', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3866
WARNING. Abnormal entry count found on day 2016-12-03: -3866
WARNING. Abnormal entry count found on day 2016-12-10: -3972
WARNING. Abnormal entry count found on day 2016-12-10: -3972
WARNING. Abnormal entry count found on day 2016-12-17: -4004
WARNING. Abnormal entry count found on day 2016-12-17: -4004
WARNING. Abnormal entry count found on day 2016-12-24: -2759
WARNING. Abnormal entry count found on day 2016-12-24: -2759
Processing turnstile ('N011', 'R126', '01-05-00', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('N034', 'R334', '01-00-02', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -8919
WARNING. Abnormal entry count found on day 2016-12-03: -8919
WARNING. Abnormal entry count found on day 2016-12-10: -8866
WARNING. Abnormal entry count found on day 2016-12-10: -8866
WARNING. Abnormal entry count found on day 2016-12-17: -8198
WARNING. Abnormal entry count found on day 2016-12-17: -8198
WARNING. Abnormal entry count found on day 2016-12-24: -5995
WARNING. Abnormal entry count found on day 2016-12-24: -5995
Processing turnstile ('H023', 'R236', '00-06-00', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-04: -1651
WARNING. Abnormal entry count found on day 2016-12-05: -1182
WARNING. Abnormal entry count found on day 2016-12-06: -2201
WARNING. Abnormal entry count found on day 2016-12-07: -2412
WARNING. Abnormal entry count found on day 2016-12-08: -2366
WARNING. Abnormal entry count found on day 2016-12-09: -2284
WARNING. Abnormal entry count found on day 2016-12-03: 12096
WARNING. Abnormal entry count found on day 2016-12-04: -1651
WARNING. Abnormal entry count found on day 2016-12-05: -1182
WARNING. Abnormal entry count found on day 2016-12-06: -2201
WARNING. Abnormal entry count found on day 2016-12-07: -2412
WARNING. Abnormal entry count found on day 2016-12-08: -2366
WARNING. Abnormal entry count found on day 2016-12-09: -2284
WARNING. Abnormal entry count found on day 2016-12-03: 12096
WARNING. Abnormal entry count found on day 2016-12-04: -1651
WARNING. Abnormal entry count found on day 2016-12-05: -1182
WARNING. Abnormal entry count found on day 2016-12-06: -2201
WARNING. Abnormal entry count found on day 2016-12-07: -2412
WARNING. Abnormal entry count found on day 2016-12-08: -2366
WARNING. Abnormal entry count found on day 2016-12-09: -2284
WARNING. Abnormal entry count found on day 2016-12-10: -2420
WARNING. Abnormal entry count found on day 2016-12-11: -1986
WARNING. Abnormal entry count found on day 2016-12-12: -1310
WARNING. Abnormal entry count found on day 2016-12-13: -2224
WARNING. Abnormal entry count found on day 2016-12-14: -2251
WARNING. Abnormal entry count found on day 2016-12-15: -2402
WARNING. Abnormal entry count found on day 2016-12-16: -2317
WARNING. Abnormal entry count found on day 2016-12-10: 12490
WARNING. Abnormal entry count found on day 2016-12-11: -1986
WARNING. Abnormal entry count found on day 2016-12-12: -1310
WARNING. Abnormal entry count found on day 2016-12-13: -2224
WARNING. Abnormal entry count found on day 2016-12-14: -2251
WARNING. Abnormal entry count found on day 2016-12-15: -2402
WARNING. Abnormal entry count found on day 2016-12-16: -2317
WARNING. Abnormal entry count found on day 2016-12-10: 12490
WARNING. Abnormal entry count found on day 2016-12-11: -1986
WARNING. Abnormal entry count found on day 2016-12-12: -1310
WARNING. Abnormal entry count found on day 2016-12-13: -2224
WARNING. Abnormal entry count found on day 2016-12-14: -2251
WARNING. Abnormal entry count found on day 2016-12-15: -2402
WARNING. Abnormal entry count found on day 2016-12-16: -2317
WARNING. Abnormal entry count found on day 2016-12-17: -2388
WARNING. Abnormal entry count found on day 2016-12-18: -1645
WARNING. Abnormal entry count found on day 2016-12-19: -2077
WARNING. Abnormal entry count found on day 2016-12-20: -2179
WARNING. Abnormal entry count found on day 2016-12-21: -2254
WARNING. Abnormal entry count found on day 2016-12-22: -2107
WARNING. Abnormal entry count found on day 2016-12-23: -1998
WARNING. Abnormal entry count found on day 2016-12-17: 12260
WARNING. Abnormal entry count found on day 2016-12-18: -1645
WARNING. Abnormal entry count found on day 2016-12-19: -2077
WARNING. Abnormal entry count found on day 2016-12-20: -2179
WARNING. Abnormal entry count found on day 2016-12-21: -2254
WARNING. Abnormal entry count found on day 2016-12-22: -2107
WARNING. Abnormal entry count found on day 2016-12-23: -1998
WARNING. Abnormal entry count found on day 2016-12-17: 12260
WARNING. Abnormal entry count found on day 2016-12-18: -1645
WARNING. Abnormal entry count found on day 2016-12-19: -2077
WARNING. Abnormal entry count found on day 2016-12-20: -2179
WARNING. Abnormal entry count found on day 2016-12-21: -2254
WARNING. Abnormal entry count found on day 2016-12-22: -2107
WARNING. Abnormal entry count found on day 2016-12-23: -1998
WARNING. Abnormal entry count found on day 2016-12-24: -1840
WARNING. Abnormal entry count found on day 2016-12-25: -932
WARNING. Abnormal entry count found on day 2016-12-26: -531
WARNING. Abnormal entry count found on day 2016-12-27: -924
WARNING. Abnormal entry count found on day 2016-12-28: -1456
WARNING. Abnormal entry count found on day 2016-12-29: -2169
WARNING. Abnormal entry count found on day 2016-12-30: -1661
WARNING. Abnormal entry count found on day 2016-12-25: -932
WARNING. Abnormal entry count found on day 2016-12-26: -531
WARNING. Abnormal entry count found on day 2016-12-27: -924
WARNING. Abnormal entry count found on day 2016-12-28: -1456
WARNING. Abnormal entry count found on day 2016-12-29: -2169
WARNING. Abnormal entry count found on day 2016-12-30: -1661
WARNING. Abnormal entry count found on day 2016-12-25: -932
WARNING. Abnormal entry count found on day 2016-12-26: -531
WARNING. Abnormal entry count found on day 2016-12-27: -924
WARNING. Abnormal entry count found on day 2016-12-28: -1456
WARNING. Abnormal entry count found on day 2016-12-29: -2169
WARNING. Abnormal entry count found on day 2016-12-30: -1661
Processing turnstile ('R259', 'R307', '00-00-01', '138/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-12-03: -5431
WARNING. Abnormal entry count found on day 2016-12-03: -5431
WARNING. Abnormal entry count found on day 2016-12-10: -5089
WARNING. Abnormal entry count found on day 2016-12-10: -5089
WARNING. Abnormal entry count found on day 2016-12-17: -5539
WARNING. Abnormal entry count found on day 2016-12-17: -5539
WARNING. Abnormal entry count found on day 2016-12-24: -3610
WARNING. Abnormal entry count found on day 2016-12-24: -3610
Processing turnstile ('N332', 'R219', '01-06-03', '67 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2047
WARNING. Abnormal entry count found on day 2016-12-03: -2047
WARNING. Abnormal entry count found on day 2016-12-10: -1930
WARNING. Abnormal entry count found on day 2016-12-10: -1930
WARNING. Abnormal entry count found on day 2016-12-17: -1921
WARNING. Abnormal entry count found on day 2016-12-17: -1921
WARNING. Abnormal entry count found on day 2016-12-24: -1100
WARNING. Abnormal entry count found on day 2016-12-24: -1100
Processing turnstile ('N022', 'R332', '02-05-01', '135 ST')
Processing turnstile ('R730', 'R431', '00-00-01', 'EASTCHSTER/DYRE')
WARNING. Abnormal entry count found on day 2016-12-03: -5684
WARNING. Abnormal entry count found on day 2016-12-03: -5684
WARNING. Abnormal entry count found on day 2016-12-10: -5669
WARNING. Abnormal entry count found on day 2016-12-10: -5669
WARNING. Abnormal entry count found on day 2016-12-17: -5383
WARNING. Abnormal entry count found on day 2016-12-17: -5383
WARNING. Abnormal entry count found on day 2016-12-24: -4300
WARNING. Abnormal entry count found on day 2016-12-24: -4300
Processing turnstile ('R312', 'R405', '00-05-01', 'JACKSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4310
WARNING. Abnormal entry count found on day 2016-12-03: -4310
WARNING. Abnormal entry count found on day 2016-12-10: -3589
WARNING. Abnormal entry count found on day 2016-12-10: -3589
WARNING. Abnormal entry count found on day 2016-12-17: -3855
WARNING. Abnormal entry count found on day 2016-12-17: -3855
WARNING. Abnormal entry count found on day 2016-12-24: -2461
WARNING. Abnormal entry count found on day 2016-12-24: -2461
Processing turnstile ('PTH13', 'R541', '00-04-02', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11932
WARNING. Abnormal entry count found on day 2016-12-03: -11932
WARNING. Abnormal entry count found on day 2016-12-10: -14745
WARNING. Abnormal entry count found on day 2016-12-10: -14745
WARNING. Abnormal entry count found on day 2016-12-17: -10580
WARNING. Abnormal entry count found on day 2016-12-17: -10580
WARNING. Abnormal entry count found on day 2016-12-24: -11700
WARNING. Abnormal entry count found on day 2016-12-24: -11700
Processing turnstile ('PTH03', 'R552', '00-00-01', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -4785
WARNING. Abnormal entry count found on day 2016-12-03: -4785
WARNING. Abnormal entry count found on day 2016-12-10: -4744
WARNING. Abnormal entry count found on day 2016-12-10: -4744
WARNING. Abnormal entry count found on day 2016-12-17: -4776
WARNING. Abnormal entry count found on day 2016-12-17: -4776
WARNING. Abnormal entry count found on day 2016-12-24: -3945
WARNING. Abnormal entry count found on day 2016-12-24: -3945
Processing turnstile ('N414', 'R316', '00-00-01', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2080
WARNING. Abnormal entry count found on day 2016-12-03: -2080
WARNING. Abnormal entry count found on day 2016-12-10: -1993
WARNING. Abnormal entry count found on day 2016-12-10: -1993
WARNING. Abnormal entry count found on day 2016-12-17: -1865
WARNING. Abnormal entry count found on day 2016-12-17: -1865
WARNING. Abnormal entry count found on day 2016-12-24: -1437
WARNING. Abnormal entry count found on day 2016-12-24: -1437
Processing turnstile ('R204A', 'R043', '03-06-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -866
WARNING. Abnormal entry count found on day 2016-12-03: -866
WARNING. Abnormal entry count found on day 2016-12-10: -976
WARNING. Abnormal entry count found on day 2016-12-10: -976
WARNING. Abnormal entry count found on day 2016-12-17: -808
WARNING. Abnormal entry count found on day 2016-12-17: -808
WARNING. Abnormal entry count found on day 2016-12-24: -526
WARNING. Abnormal entry count found on day 2016-12-24: -526
Processing turnstile ('A015', 'R081', '00-03-00', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7819
WARNING. Abnormal entry count found on day 2016-12-03: -7819
WARNING. Abnormal entry count found on day 2016-12-10: -7798
WARNING. Abnormal entry count found on day 2016-12-10: -7798
WARNING. Abnormal entry count found on day 2016-12-17: -7625
WARNING. Abnormal entry count found on day 2016-12-17: -7625
WARNING. Abnormal entry count found on day 2016-12-24: -7907
WARNING. Abnormal entry count found on day 2016-12-24: -7907
Processing turnstile ('R259', 'R307', '00-00-02', '138/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-12-03: -6307
WARNING. Abnormal entry count found on day 2016-12-03: -6307
WARNING. Abnormal entry count found on day 2016-12-10: -5911
WARNING. Abnormal entry count found on day 2016-12-10: -5911
WARNING. Abnormal entry count found on day 2016-12-17: -5798
WARNING. Abnormal entry count found on day 2016-12-17: -5798
WARNING. Abnormal entry count found on day 2016-12-24: -3926
WARNING. Abnormal entry count found on day 2016-12-24: -3926
Processing turnstile ('R245', 'R051', '00-05-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9649
WARNING. Abnormal entry count found on day 2016-12-03: -9649
WARNING. Abnormal entry count found on day 2016-12-10: -9602
WARNING. Abnormal entry count found on day 2016-12-10: -9602
WARNING. Abnormal entry count found on day 2016-12-17: -9625
WARNING. Abnormal entry count found on day 2016-12-17: -9625
WARNING. Abnormal entry count found on day 2016-12-24: -6387
WARNING. Abnormal entry count found on day 2016-12-24: -6387
Processing turnstile ('H037', 'R349', '00-00-00', 'SUTTER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16789
WARNING. Abnormal entry count found on day 2016-12-03: -16789
WARNING. Abnormal entry count found on day 2016-12-10: -16542
WARNING. Abnormal entry count found on day 2016-12-10: -16542
WARNING. Abnormal entry count found on day 2016-12-17: -16307
WARNING. Abnormal entry count found on day 2016-12-17: -16307
WARNING. Abnormal entry count found on day 2016-12-24: -12910
WARNING. Abnormal entry count found on day 2016-12-24: -12910
Processing turnstile ('A054', 'R227', '01-03-01', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7193
WARNING. Abnormal entry count found on day 2016-12-03: -7193
WARNING. Abnormal entry count found on day 2016-12-10: -7409
WARNING. Abnormal entry count found on day 2016-12-10: -7409
WARNING. Abnormal entry count found on day 2016-12-17: -6977
WARNING. Abnormal entry count found on day 2016-12-17: -6977
WARNING. Abnormal entry count found on day 2016-12-24: -7290
WARNING. Abnormal entry count found on day 2016-12-24: -7290
Processing turnstile ('R517', 'R291', '01-05-00', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N303', 'R015', '00-00-0B', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3912
WARNING. Abnormal entry count found on day 2016-12-03: -3912
WARNING. Abnormal entry count found on day 2016-12-10: -4005
WARNING. Abnormal entry count found on day 2016-12-10: -4005
WARNING. Abnormal entry count found on day 2016-12-17: -4869
WARNING. Abnormal entry count found on day 2016-12-17: -4869
WARNING. Abnormal entry count found on day 2016-12-24: -4608
WARNING. Abnormal entry count found on day 2016-12-24: -4608
Processing turnstile ('N557', 'R130', '00-00-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10072
WARNING. Abnormal entry count found on day 2016-12-03: -10072
WARNING. Abnormal entry count found on day 2016-12-10: -8884
WARNING. Abnormal entry count found on day 2016-12-10: -8884
WARNING. Abnormal entry count found on day 2016-12-17: -9742
WARNING. Abnormal entry count found on day 2016-12-17: -9742
WARNING. Abnormal entry count found on day 2016-12-24: -7799
WARNING. Abnormal entry count found on day 2016-12-24: -7799
Processing turnstile ('A002', 'R051', '02-05-01', '59 ST')
Processing turnstile ('B031', 'R172', '01-06-02', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -485
WARNING. Abnormal entry count found on day 2016-12-03: -485
WARNING. Abnormal entry count found on day 2016-12-10: -477
WARNING. Abnormal entry count found on day 2016-12-10: -477
WARNING. Abnormal entry count found on day 2016-12-17: -491
WARNING. Abnormal entry count found on day 2016-12-17: -491
WARNING. Abnormal entry count found on day 2016-12-24: -412
WARNING. Abnormal entry count found on day 2016-12-24: -412
Processing turnstile ('R246', 'R177', '00-00-00', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -27816
WARNING. Abnormal entry count found on day 2016-12-03: -27816
WARNING. Abnormal entry count found on day 2016-12-10: -24475
WARNING. Abnormal entry count found on day 2016-12-10: -24475
WARNING. Abnormal entry count found on day 2016-12-17: -20053
WARNING. Abnormal entry count found on day 2016-12-17: -20053
WARNING. Abnormal entry count found on day 2016-12-24: -11511
WARNING. Abnormal entry count found on day 2016-12-24: -11511
Processing turnstile ('N090', 'R139', '01-06-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-24: -18
WARNING. Abnormal entry count found on day 2016-12-24: -18
Processing turnstile ('H006', 'R330', '01-00-02', '3 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7524
WARNING. Abnormal entry count found on day 2016-12-03: -7524
WARNING. Abnormal entry count found on day 2016-12-10: -7592
WARNING. Abnormal entry count found on day 2016-12-10: -7592
WARNING. Abnormal entry count found on day 2016-12-17: -6704
WARNING. Abnormal entry count found on day 2016-12-17: -6704
WARNING. Abnormal entry count found on day 2016-12-24: -4843
WARNING. Abnormal entry count found on day 2016-12-24: -4843
Processing turnstile ('R175', 'R169', '01-00-04', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -4290
WARNING. Abnormal entry count found on day 2016-12-03: -4290
WARNING. Abnormal entry count found on day 2016-12-10: -3044
WARNING. Abnormal entry count found on day 2016-12-10: -3044
WARNING. Abnormal entry count found on day 2016-12-17: -2586
WARNING. Abnormal entry count found on day 2016-12-17: -2586
WARNING. Abnormal entry count found on day 2016-12-24: -1819
WARNING. Abnormal entry count found on day 2016-12-24: -1819
Processing turnstile ('R245A', 'R051', '01-00-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24466
WARNING. Abnormal entry count found on day 2016-12-03: -24466
WARNING. Abnormal entry count found on day 2016-12-10: -25194
WARNING. Abnormal entry count found on day 2016-12-10: -25194
WARNING. Abnormal entry count found on day 2016-12-17: -21532
WARNING. Abnormal entry count found on day 2016-12-17: -21532
WARNING. Abnormal entry count found on day 2016-12-24: -17716
WARNING. Abnormal entry count found on day 2016-12-24: -17716
Processing turnstile ('N083', 'R138', '01-06-00', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -25686
WARNING. Abnormal entry count found on day 2016-12-03: -25686
WARNING. Abnormal entry count found on day 2016-12-10: -24018
WARNING. Abnormal entry count found on day 2016-12-10: -24018
WARNING. Abnormal entry count found on day 2016-12-17: -22706
WARNING. Abnormal entry count found on day 2016-12-17: -22706
WARNING. Abnormal entry count found on day 2016-12-24: -16294
WARNING. Abnormal entry count found on day 2016-12-24: -16294
Processing turnstile ('N324', 'R018', '00-00-00', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -5643
WARNING. Abnormal entry count found on day 2016-12-03: -5643
WARNING. Abnormal entry count found on day 2016-12-10: -4736
WARNING. Abnormal entry count found on day 2016-12-10: -4736
WARNING. Abnormal entry count found on day 2016-12-17: -5413
WARNING. Abnormal entry count found on day 2016-12-17: -5413
WARNING. Abnormal entry count found on day 2016-12-24: -3869
WARNING. Abnormal entry count found on day 2016-12-24: -3869
Processing turnstile ('N095', 'R014', '00-05-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -21
WARNING. Abnormal entry count found on day 2016-12-03: -21
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-17: -16
WARNING. Abnormal entry count found on day 2016-12-17: -16
WARNING. Abnormal entry count found on day 2016-12-24: -11
WARNING. Abnormal entry count found on day 2016-12-24: -11
Processing turnstile ('N332', 'R219', '01-05-00', '67 AV')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N103', 'R127', '00-00-05', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -8616
WARNING. Abnormal entry count found on day 2016-12-03: -8616
WARNING. Abnormal entry count found on day 2016-12-10: -8118
WARNING. Abnormal entry count found on day 2016-12-10: -8118
WARNING. Abnormal entry count found on day 2016-12-17: -6796
WARNING. Abnormal entry count found on day 2016-12-17: -6796
WARNING. Abnormal entry count found on day 2016-12-24: -4535
WARNING. Abnormal entry count found on day 2016-12-24: -4535
Processing turnstile ('R110', 'R027', '01-00-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5410
WARNING. Abnormal entry count found on day 2016-12-03: -5410
WARNING. Abnormal entry count found on day 2016-12-10: -5561
WARNING. Abnormal entry count found on day 2016-12-10: -5561
WARNING. Abnormal entry count found on day 2016-12-17: -4857
WARNING. Abnormal entry count found on day 2016-12-17: -4857
WARNING. Abnormal entry count found on day 2016-12-24: -2884
WARNING. Abnormal entry count found on day 2016-12-24: -2884
Processing turnstile ('S101A', 'R070', '01-00-04', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -3246
WARNING. Abnormal entry count found on day 2016-12-03: -3246
WARNING. Abnormal entry count found on day 2016-12-10: -2990
WARNING. Abnormal entry count found on day 2016-12-10: -2990
WARNING. Abnormal entry count found on day 2016-12-17: -2788
WARNING. Abnormal entry count found on day 2016-12-17: -2788
WARNING. Abnormal entry count found on day 2016-12-24: -2071
WARNING. Abnormal entry count found on day 2016-12-24: -2071
Processing turnstile ('N336', 'R158', '00-03-02', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -19293
WARNING. Abnormal entry count found on day 2016-12-03: -19293
WARNING. Abnormal entry count found on day 2016-12-10: -18398
WARNING. Abnormal entry count found on day 2016-12-10: -18398
WARNING. Abnormal entry count found on day 2016-12-17: -17702
WARNING. Abnormal entry count found on day 2016-12-17: -17702
WARNING. Abnormal entry count found on day 2016-12-24: -12426
WARNING. Abnormal entry count found on day 2016-12-24: -12426
Processing turnstile ('N187', 'R419', '00-05-00', 'ROCKAWAY PARK B')
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('R612', 'R057', '01-03-05', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -9272
WARNING. Abnormal entry count found on day 2016-12-03: -9272
WARNING. Abnormal entry count found on day 2016-12-10: -8744
WARNING. Abnormal entry count found on day 2016-12-10: -8744
WARNING. Abnormal entry count found on day 2016-12-17: -8696
WARNING. Abnormal entry count found on day 2016-12-17: -8696
WARNING. Abnormal entry count found on day 2016-12-24: -7036
WARNING. Abnormal entry count found on day 2016-12-24: -7036
Processing turnstile ('N606', 'R025', '00-00-06', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -33154
WARNING. Abnormal entry count found on day 2016-12-03: -33154
WARNING. Abnormal entry count found on day 2016-12-10: -31845
WARNING. Abnormal entry count found on day 2016-12-10: -31845
WARNING. Abnormal entry count found on day 2016-12-17: -24925
WARNING. Abnormal entry count found on day 2016-12-17: -24925
WARNING. Abnormal entry count found on day 2016-12-24: -8051
WARNING. Abnormal entry count found on day 2016-12-24: -8051
Processing turnstile ('C015', 'R454', '00-00-01', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1435
WARNING. Abnormal entry count found on day 2016-12-03: -1435
WARNING. Abnormal entry count found on day 2016-12-10: -1470
WARNING. Abnormal entry count found on day 2016-12-10: -1470
WARNING. Abnormal entry count found on day 2016-12-17: -1339
WARNING. Abnormal entry count found on day 2016-12-17: -1339
WARNING. Abnormal entry count found on day 2016-12-24: -823
WARNING. Abnormal entry count found on day 2016-12-24: -823
Processing turnstile ('B024', 'R211', '00-00-03', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -7096
WARNING. Abnormal entry count found on day 2016-12-03: -7096
WARNING. Abnormal entry count found on day 2016-12-10: -7503
WARNING. Abnormal entry count found on day 2016-12-10: -7503
WARNING. Abnormal entry count found on day 2016-12-17: -7380
WARNING. Abnormal entry count found on day 2016-12-17: -7380
WARNING. Abnormal entry count found on day 2016-12-24: -5879
WARNING. Abnormal entry count found on day 2016-12-24: -5879
Processing turnstile ('N007A', 'R174', '00-00-00', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12812
WARNING. Abnormal entry count found on day 2016-12-03: -12812
WARNING. Abnormal entry count found on day 2016-12-10: -12027
WARNING. Abnormal entry count found on day 2016-12-10: -12027
WARNING. Abnormal entry count found on day 2016-12-17: -10635
WARNING. Abnormal entry count found on day 2016-12-17: -10635
WARNING. Abnormal entry count found on day 2016-12-24: -8964
WARNING. Abnormal entry count found on day 2016-12-24: -8964
Processing turnstile ('N067', 'R012', '00-03-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -13573
WARNING. Abnormal entry count found on day 2016-12-03: -13573
WARNING. Abnormal entry count found on day 2016-12-10: -13445
WARNING. Abnormal entry count found on day 2016-12-10: -13445
WARNING. Abnormal entry count found on day 2016-12-17: -12342
WARNING. Abnormal entry count found on day 2016-12-17: -12342
WARNING. Abnormal entry count found on day 2016-12-24: -10080
WARNING. Abnormal entry count found on day 2016-12-24: -10080
Processing turnstile ('R246', 'R177', '00-03-00', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -512
WARNING. Abnormal entry count found on day 2016-12-03: -512
WARNING. Abnormal entry count found on day 2016-12-10: -536
WARNING. Abnormal entry count found on day 2016-12-10: -536
WARNING. Abnormal entry count found on day 2016-12-17: -472
WARNING. Abnormal entry count found on day 2016-12-17: -472
WARNING. Abnormal entry count found on day 2016-12-24: -356
WARNING. Abnormal entry count found on day 2016-12-24: -356
Processing turnstile ('N501', 'R020', '01-03-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -14417
WARNING. Abnormal entry count found on day 2016-12-03: -14417
WARNING. Abnormal entry count found on day 2016-12-10: -14572
WARNING. Abnormal entry count found on day 2016-12-10: -14572
WARNING. Abnormal entry count found on day 2016-12-17: -13845
WARNING. Abnormal entry count found on day 2016-12-17: -13845
WARNING. Abnormal entry count found on day 2016-12-24: -11050
WARNING. Abnormal entry count found on day 2016-12-24: -11050
Processing turnstile ('R138', 'R293', '00-03-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -19269
WARNING. Abnormal entry count found on day 2016-12-03: -19269
WARNING. Abnormal entry count found on day 2016-12-10: -20059
WARNING. Abnormal entry count found on day 2016-12-10: -20059
WARNING. Abnormal entry count found on day 2016-12-17: -18211
WARNING. Abnormal entry count found on day 2016-12-17: -18211
WARNING. Abnormal entry count found on day 2016-12-24: -13757
WARNING. Abnormal entry count found on day 2016-12-24: -13757
Processing turnstile ('N111', 'R284', '00-00-01', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2851
WARNING. Abnormal entry count found on day 2016-12-03: -2851
WARNING. Abnormal entry count found on day 2016-12-10: -2938
WARNING. Abnormal entry count found on day 2016-12-10: -2938
WARNING. Abnormal entry count found on day 2016-12-17: -2570
WARNING. Abnormal entry count found on day 2016-12-17: -2570
WARNING. Abnormal entry count found on day 2016-12-24: -1956
WARNING. Abnormal entry count found on day 2016-12-24: -1956
Processing turnstile ('PTH11', 'R545', '00-04-03', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -244
WARNING. Abnormal entry count found on day 2016-12-03: -244
WARNING. Abnormal entry count found on day 2016-12-10: -138
WARNING. Abnormal entry count found on day 2016-12-10: -138
WARNING. Abnormal entry count found on day 2016-12-17: -169
WARNING. Abnormal entry count found on day 2016-12-17: -169
WARNING. Abnormal entry count found on day 2016-12-24: -190
WARNING. Abnormal entry count found on day 2016-12-24: -190
Processing turnstile ('N098', 'R028', '00-05-01', 'FULTON ST')
Processing turnstile ('R256', 'R182', '00-00-02', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11630
WARNING. Abnormal entry count found on day 2016-12-03: -11630
WARNING. Abnormal entry count found on day 2016-12-10: -11410
WARNING. Abnormal entry count found on day 2016-12-10: -11410
WARNING. Abnormal entry count found on day 2016-12-17: -11270
WARNING. Abnormal entry count found on day 2016-12-17: -11270
WARNING. Abnormal entry count found on day 2016-12-24: -8192
WARNING. Abnormal entry count found on day 2016-12-24: -8192
Processing turnstile ('N505', 'R022', '02-00-09', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -14992
WARNING. Abnormal entry count found on day 2016-12-03: -14992
WARNING. Abnormal entry count found on day 2016-12-10: -14950
WARNING. Abnormal entry count found on day 2016-12-10: -14950
WARNING. Abnormal entry count found on day 2016-12-17: -14417
WARNING. Abnormal entry count found on day 2016-12-17: -14417
WARNING. Abnormal entry count found on day 2016-12-24: -11393
WARNING. Abnormal entry count found on day 2016-12-24: -11393
Processing turnstile ('R249', 'R179', '01-00-03', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9242
WARNING. Abnormal entry count found on day 2016-12-03: -9242
WARNING. Abnormal entry count found on day 2016-12-10: -9099
WARNING. Abnormal entry count found on day 2016-12-10: -9099
WARNING. Abnormal entry count found on day 2016-12-17: -9015
WARNING. Abnormal entry count found on day 2016-12-17: -9015
WARNING. Abnormal entry count found on day 2016-12-24: -7143
WARNING. Abnormal entry count found on day 2016-12-24: -7143
Processing turnstile ('R621', 'R060', '00-06-00', 'EASTN PKWY-MUSM')
WARNING. Abnormal entry count found on day 2016-12-03: -6039
WARNING. Abnormal entry count found on day 2016-12-03: -6039
WARNING. Abnormal entry count found on day 2016-12-10: -5921
WARNING. Abnormal entry count found on day 2016-12-10: -5921
WARNING. Abnormal entry count found on day 2016-12-17: -5397
WARNING. Abnormal entry count found on day 2016-12-17: -5397
WARNING. Abnormal entry count found on day 2016-12-24: -3335
WARNING. Abnormal entry count found on day 2016-12-24: -3335
Processing turnstile ('R165', 'R167', '01-00-04', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11123
WARNING. Abnormal entry count found on day 2016-12-03: -11123
WARNING. Abnormal entry count found on day 2016-12-10: -11568
WARNING. Abnormal entry count found on day 2016-12-10: -11568
WARNING. Abnormal entry count found on day 2016-12-17: -10502
WARNING. Abnormal entry count found on day 2016-12-17: -10502
WARNING. Abnormal entry count found on day 2016-12-24: -7967
WARNING. Abnormal entry count found on day 2016-12-24: -7967
Processing turnstile ('R183', 'R260', '00-00-02', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9986
WARNING. Abnormal entry count found on day 2016-12-03: -9986
WARNING. Abnormal entry count found on day 2016-12-10: -9532
WARNING. Abnormal entry count found on day 2016-12-10: -9532
WARNING. Abnormal entry count found on day 2016-12-17: -9882
WARNING. Abnormal entry count found on day 2016-12-17: -9882
WARNING. Abnormal entry count found on day 2016-12-24: -7921
WARNING. Abnormal entry count found on day 2016-12-24: -7921
Processing turnstile ('N507', 'R023', '00-03-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -10092
WARNING. Abnormal entry count found on day 2016-12-03: -10092
WARNING. Abnormal entry count found on day 2016-12-10: -10575
WARNING. Abnormal entry count found on day 2016-12-10: -10575
WARNING. Abnormal entry count found on day 2016-12-17: -10239
WARNING. Abnormal entry count found on day 2016-12-17: -10239
WARNING. Abnormal entry count found on day 2016-12-24: -6872
WARNING. Abnormal entry count found on day 2016-12-24: -6872
Processing turnstile ('N100', 'R252', '00-00-02', 'HIGH ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13389
WARNING. Abnormal entry count found on day 2016-12-03: -13389
WARNING. Abnormal entry count found on day 2016-12-10: -12634
WARNING. Abnormal entry count found on day 2016-12-10: -12634
WARNING. Abnormal entry count found on day 2016-12-17: -11355
WARNING. Abnormal entry count found on day 2016-12-17: -11355
WARNING. Abnormal entry count found on day 2016-12-24: -10695
WARNING. Abnormal entry count found on day 2016-12-24: -10695
Processing turnstile ('R510', 'R090', '00-00-00', '39 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10159
WARNING. Abnormal entry count found on day 2016-12-03: -10159
WARNING. Abnormal entry count found on day 2016-12-10: -9280
WARNING. Abnormal entry count found on day 2016-12-10: -9280
WARNING. Abnormal entry count found on day 2016-12-17: -7810
WARNING. Abnormal entry count found on day 2016-12-17: -7810
WARNING. Abnormal entry count found on day 2016-12-24: -8064
WARNING. Abnormal entry count found on day 2016-12-24: -8064
Processing turnstile ('R405', 'R447', '01-00-01', 'CYPRESS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1268
WARNING. Abnormal entry count found on day 2016-12-03: -1268
WARNING. Abnormal entry count found on day 2016-12-10: -1238
WARNING. Abnormal entry count found on day 2016-12-10: -1238
WARNING. Abnormal entry count found on day 2016-12-17: -1151
WARNING. Abnormal entry count found on day 2016-12-17: -1151
WARNING. Abnormal entry count found on day 2016-12-24: -997
WARNING. Abnormal entry count found on day 2016-12-24: -997
Processing turnstile ('A061', 'R142', '00-03-01', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -3441
WARNING. Abnormal entry count found on day 2016-12-03: -3441
WARNING. Abnormal entry count found on day 2016-12-10: -3446
WARNING. Abnormal entry count found on day 2016-12-10: -3446
WARNING. Abnormal entry count found on day 2016-12-17: -3299
WARNING. Abnormal entry count found on day 2016-12-17: -3299
WARNING. Abnormal entry count found on day 2016-12-24: -2447
WARNING. Abnormal entry count found on day 2016-12-24: -2447
Processing turnstile ('PTH04', 'R551', '00-00-04', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -5031
WARNING. Abnormal entry count found on day 2016-12-03: -5031
WARNING. Abnormal entry count found on day 2016-12-10: -4666
WARNING. Abnormal entry count found on day 2016-12-10: -4666
WARNING. Abnormal entry count found on day 2016-12-17: -4079
WARNING. Abnormal entry count found on day 2016-12-17: -4079
WARNING. Abnormal entry count found on day 2016-12-24: -3125
WARNING. Abnormal entry count found on day 2016-12-24: -3125
Processing turnstile ('J023', 'R436', '00-00-01', 'NORWOOD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7729
WARNING. Abnormal entry count found on day 2016-12-03: -7729
WARNING. Abnormal entry count found on day 2016-12-10: -7282
WARNING. Abnormal entry count found on day 2016-12-10: -7282
WARNING. Abnormal entry count found on day 2016-12-17: -7323
WARNING. Abnormal entry count found on day 2016-12-17: -7323
WARNING. Abnormal entry count found on day 2016-12-24: -5870
WARNING. Abnormal entry count found on day 2016-12-24: -5870
Processing turnstile ('N607', 'R025', '01-06-04', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -11507
WARNING. Abnormal entry count found on day 2016-12-03: -11507
WARNING. Abnormal entry count found on day 2016-12-10: -10543
WARNING. Abnormal entry count found on day 2016-12-10: -10543
WARNING. Abnormal entry count found on day 2016-12-17: -9591
WARNING. Abnormal entry count found on day 2016-12-17: -9591
WARNING. Abnormal entry count found on day 2016-12-24: -7142
WARNING. Abnormal entry count found on day 2016-12-24: -7142
Processing turnstile ('R247', 'R178', '01-00-01', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6739
WARNING. Abnormal entry count found on day 2016-12-03: -6739
WARNING. Abnormal entry count found on day 2016-12-10: -6465
WARNING. Abnormal entry count found on day 2016-12-10: -6465
WARNING. Abnormal entry count found on day 2016-12-17: -6183
WARNING. Abnormal entry count found on day 2016-12-17: -6183
WARNING. Abnormal entry count found on day 2016-12-24: -4682
WARNING. Abnormal entry count found on day 2016-12-24: -4682
Processing turnstile ('A002', 'R051', '02-03-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8840
WARNING. Abnormal entry count found on day 2016-12-03: -8840
WARNING. Abnormal entry count found on day 2016-12-10: -9085
WARNING. Abnormal entry count found on day 2016-12-10: -9085
WARNING. Abnormal entry count found on day 2016-12-17: -9254
WARNING. Abnormal entry count found on day 2016-12-17: -9254
WARNING. Abnormal entry count found on day 2016-12-24: -7235
WARNING. Abnormal entry count found on day 2016-12-24: -7235
Processing turnstile ('R288', 'R275', '00-00-00', '183 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8078
WARNING. Abnormal entry count found on day 2016-12-03: -8078
WARNING. Abnormal entry count found on day 2016-12-10: -8445
WARNING. Abnormal entry count found on day 2016-12-10: -8445
WARNING. Abnormal entry count found on day 2016-12-17: -8436
WARNING. Abnormal entry count found on day 2016-12-17: -8436
WARNING. Abnormal entry count found on day 2016-12-24: -6653
WARNING. Abnormal entry count found on day 2016-12-24: -6653
Processing turnstile ('N128', 'R200', '00-00-05', 'EUCLID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16588
WARNING. Abnormal entry count found on day 2016-12-03: -16588
WARNING. Abnormal entry count found on day 2016-12-10: -15848
WARNING. Abnormal entry count found on day 2016-12-10: -15848
WARNING. Abnormal entry count found on day 2016-12-17: -15494
WARNING. Abnormal entry count found on day 2016-12-17: -15494
WARNING. Abnormal entry count found on day 2016-12-24: -12791
WARNING. Abnormal entry count found on day 2016-12-24: -12791
Processing turnstile ('R247', 'R178', '01-03-00', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3443
WARNING. Abnormal entry count found on day 2016-12-03: -3443
WARNING. Abnormal entry count found on day 2016-12-10: -3588
WARNING. Abnormal entry count found on day 2016-12-10: -3588
WARNING. Abnormal entry count found on day 2016-12-17: -3092
WARNING. Abnormal entry count found on day 2016-12-17: -3092
WARNING. Abnormal entry count found on day 2016-12-24: -2355
WARNING. Abnormal entry count found on day 2016-12-24: -2355
Processing turnstile ('R403', 'R446', '01-00-02', 'BROOK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2627
WARNING. Abnormal entry count found on day 2016-12-03: -2627
WARNING. Abnormal entry count found on day 2016-12-10: -2421
WARNING. Abnormal entry count found on day 2016-12-10: -2421
WARNING. Abnormal entry count found on day 2016-12-17: -2517
WARNING. Abnormal entry count found on day 2016-12-17: -2517
WARNING. Abnormal entry count found on day 2016-12-24: -1913
WARNING. Abnormal entry count found on day 2016-12-24: -1913
Processing turnstile ('N309A', 'R140', '00-00-02', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -3186
WARNING. Abnormal entry count found on day 2016-12-03: -3186
WARNING. Abnormal entry count found on day 2016-12-10: -2975
WARNING. Abnormal entry count found on day 2016-12-10: -2975
WARNING. Abnormal entry count found on day 2016-12-17: -2532
WARNING. Abnormal entry count found on day 2016-12-17: -2532
WARNING. Abnormal entry count found on day 2016-12-24: -1779
WARNING. Abnormal entry count found on day 2016-12-24: -1779
Processing turnstile ('N501A', 'R020', '02-03-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -2298
WARNING. Abnormal entry count found on day 2016-12-03: -2298
WARNING. Abnormal entry count found on day 2016-12-10: -2316
WARNING. Abnormal entry count found on day 2016-12-10: -2316
WARNING. Abnormal entry count found on day 2016-12-17: -2867
WARNING. Abnormal entry count found on day 2016-12-17: -2867
WARNING. Abnormal entry count found on day 2016-12-24: -3990
WARNING. Abnormal entry count found on day 2016-12-24: -3990
Processing turnstile ('H009', 'R235', '00-06-05', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12877
WARNING. Abnormal entry count found on day 2016-12-03: -12877
WARNING. Abnormal entry count found on day 2016-12-10: -12697
WARNING. Abnormal entry count found on day 2016-12-10: -12697
WARNING. Abnormal entry count found on day 2016-12-17: -9185
WARNING. Abnormal entry count found on day 2016-12-17: -9185
WARNING. Abnormal entry count found on day 2016-12-24: -6633
WARNING. Abnormal entry count found on day 2016-12-24: -6633
Processing turnstile ('N086', 'R282', '00-00-01', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16925
WARNING. Abnormal entry count found on day 2016-12-03: -16925
WARNING. Abnormal entry count found on day 2016-12-10: -17881
WARNING. Abnormal entry count found on day 2016-12-10: -17881
WARNING. Abnormal entry count found on day 2016-12-17: -17372
WARNING. Abnormal entry count found on day 2016-12-17: -17372
WARNING. Abnormal entry count found on day 2016-12-24: -11297
WARNING. Abnormal entry count found on day 2016-12-24: -11297
Processing turnstile ('R229', 'R143', '01-00-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12325
WARNING. Abnormal entry count found on day 2016-12-03: -12325
WARNING. Abnormal entry count found on day 2016-12-10: -12229
WARNING. Abnormal entry count found on day 2016-12-10: -12229
WARNING. Abnormal entry count found on day 2016-12-17: -10140
WARNING. Abnormal entry count found on day 2016-12-17: -10140
WARNING. Abnormal entry count found on day 2016-12-24: -7128
WARNING. Abnormal entry count found on day 2016-12-24: -7128
Processing turnstile ('B024A', 'R211', '02-00-01', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -6601
WARNING. Abnormal entry count found on day 2016-12-03: -6601
WARNING. Abnormal entry count found on day 2016-12-10: -6619
WARNING. Abnormal entry count found on day 2016-12-10: -6619
WARNING. Abnormal entry count found on day 2016-12-17: -6402
WARNING. Abnormal entry count found on day 2016-12-17: -6402
WARNING. Abnormal entry count found on day 2016-12-24: -4351
WARNING. Abnormal entry count found on day 2016-12-24: -4351
Processing turnstile ('A084', 'R125', '01-00-01', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3062
WARNING. Abnormal entry count found on day 2016-12-03: -3062
WARNING. Abnormal entry count found on day 2016-12-10: -3172
WARNING. Abnormal entry count found on day 2016-12-10: -3172
WARNING. Abnormal entry count found on day 2016-12-17: -2671
WARNING. Abnormal entry count found on day 2016-12-17: -2671
WARNING. Abnormal entry count found on day 2016-12-24: -1974
WARNING. Abnormal entry count found on day 2016-12-24: -1974
Processing turnstile ('N013', 'R035', '02-00-00', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8129
WARNING. Abnormal entry count found on day 2016-12-03: -8129
WARNING. Abnormal entry count found on day 2016-12-10: -7799
WARNING. Abnormal entry count found on day 2016-12-10: -7799
WARNING. Abnormal entry count found on day 2016-12-17: -7593
WARNING. Abnormal entry count found on day 2016-12-17: -7593
WARNING. Abnormal entry count found on day 2016-12-24: -5637
WARNING. Abnormal entry count found on day 2016-12-24: -5637
Processing turnstile ('N208', 'R443', '01-05-01', '170 ST')
Processing turnstile ('J020', 'R433', '00-00-02', 'ALABAMA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7935
WARNING. Abnormal entry count found on day 2016-12-03: -7935
WARNING. Abnormal entry count found on day 2016-12-10: -7474
WARNING. Abnormal entry count found on day 2016-12-10: -7474
WARNING. Abnormal entry count found on day 2016-12-17: -7566
WARNING. Abnormal entry count found on day 2016-12-17: -7566
WARNING. Abnormal entry count found on day 2016-12-24: -6091
WARNING. Abnormal entry count found on day 2016-12-24: -6091
Processing turnstile ('N343', 'R019', '00-00-01', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5138
WARNING. Abnormal entry count found on day 2016-12-03: -5138
WARNING. Abnormal entry count found on day 2016-12-10: -4987
WARNING. Abnormal entry count found on day 2016-12-10: -4987
WARNING. Abnormal entry count found on day 2016-12-17: -5119
WARNING. Abnormal entry count found on day 2016-12-17: -5119
WARNING. Abnormal entry count found on day 2016-12-24: -4130
WARNING. Abnormal entry count found on day 2016-12-24: -4130
Processing turnstile ('R634', 'R069', '00-00-01', 'NEW LOTS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -781
WARNING. Abnormal entry count found on day 2016-12-03: -781
WARNING. Abnormal entry count found on day 2016-12-10: -3496
WARNING. Abnormal entry count found on day 2016-12-10: -3496
WARNING. Abnormal entry count found on day 2016-12-17: -3474
WARNING. Abnormal entry count found on day 2016-12-17: -3474
WARNING. Abnormal entry count found on day 2016-12-24: -2865
WARNING. Abnormal entry count found on day 2016-12-24: -2865
Processing turnstile ('S101', 'R070', '00-03-01', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -4368
WARNING. Abnormal entry count found on day 2016-12-03: -4368
WARNING. Abnormal entry count found on day 2016-12-10: -3961
WARNING. Abnormal entry count found on day 2016-12-10: -3961
WARNING. Abnormal entry count found on day 2016-12-17: -3646
WARNING. Abnormal entry count found on day 2016-12-17: -3646
WARNING. Abnormal entry count found on day 2016-12-24: -3232
WARNING. Abnormal entry count found on day 2016-12-24: -3232
Processing turnstile ('A084', 'R125', '01-00-03', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1018
WARNING. Abnormal entry count found on day 2016-12-03: -1018
WARNING. Abnormal entry count found on day 2016-12-10: -1032
WARNING. Abnormal entry count found on day 2016-12-10: -1032
WARNING. Abnormal entry count found on day 2016-12-17: -790
WARNING. Abnormal entry count found on day 2016-12-17: -790
WARNING. Abnormal entry count found on day 2016-12-24: -470
WARNING. Abnormal entry count found on day 2016-12-24: -470
Processing turnstile ('R142', 'R293', '01-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11683
WARNING. Abnormal entry count found on day 2016-12-03: -11683
WARNING. Abnormal entry count found on day 2016-12-10: -11713
WARNING. Abnormal entry count found on day 2016-12-10: -11713
WARNING. Abnormal entry count found on day 2016-12-17: -11395
WARNING. Abnormal entry count found on day 2016-12-17: -11395
WARNING. Abnormal entry count found on day 2016-12-24: -9303
WARNING. Abnormal entry count found on day 2016-12-24: -9303
Processing turnstile ('N400A', 'R359', '02-00-00', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -1360
WARNING. Abnormal entry count found on day 2016-12-03: -1360
WARNING. Abnormal entry count found on day 2016-12-10: -1363
WARNING. Abnormal entry count found on day 2016-12-10: -1363
WARNING. Abnormal entry count found on day 2016-12-17: -1102
WARNING. Abnormal entry count found on day 2016-12-17: -1102
WARNING. Abnormal entry count found on day 2016-12-24: -621
WARNING. Abnormal entry count found on day 2016-12-24: -621
Processing turnstile ('N316A', 'R267', '01-00-00', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4422
WARNING. Abnormal entry count found on day 2016-12-03: -4422
WARNING. Abnormal entry count found on day 2016-12-10: -4445
WARNING. Abnormal entry count found on day 2016-12-10: -4445
WARNING. Abnormal entry count found on day 2016-12-17: -4087
WARNING. Abnormal entry count found on day 2016-12-17: -4087
WARNING. Abnormal entry count found on day 2016-12-24: -2868
WARNING. Abnormal entry count found on day 2016-12-24: -2868
Processing turnstile ('C024', 'R214', '00-00-03', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9345
WARNING. Abnormal entry count found on day 2016-12-03: -9345
WARNING. Abnormal entry count found on day 2016-12-10: -9046
WARNING. Abnormal entry count found on day 2016-12-10: -9046
WARNING. Abnormal entry count found on day 2016-12-17: -8674
WARNING. Abnormal entry count found on day 2016-12-17: -8674
WARNING. Abnormal entry count found on day 2016-12-24: -6488
WARNING. Abnormal entry count found on day 2016-12-24: -6488
Processing turnstile ('N191', 'R335', '00-00-02', 'BEACH 67 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5094
WARNING. Abnormal entry count found on day 2016-12-03: -5094
WARNING. Abnormal entry count found on day 2016-12-10: -4768
WARNING. Abnormal entry count found on day 2016-12-10: -4768
WARNING. Abnormal entry count found on day 2016-12-17: -4792
WARNING. Abnormal entry count found on day 2016-12-17: -4792
WARNING. Abnormal entry count found on day 2016-12-24: -3930
WARNING. Abnormal entry count found on day 2016-12-24: -3930
Processing turnstile ('R529', 'R208', '00-00-02', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-12-03: -10602
WARNING. Abnormal entry count found on day 2016-12-03: -10602
WARNING. Abnormal entry count found on day 2016-12-10: -10434
WARNING. Abnormal entry count found on day 2016-12-10: -10434
WARNING. Abnormal entry count found on day 2016-12-17: -10544
WARNING. Abnormal entry count found on day 2016-12-17: -10544
WARNING. Abnormal entry count found on day 2016-12-24: -8542
WARNING. Abnormal entry count found on day 2016-12-24: -8542
Processing turnstile ('N117', 'R198', '01-00-01', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10400
WARNING. Abnormal entry count found on day 2016-12-03: -10400
WARNING. Abnormal entry count found on day 2016-12-10: -10328
WARNING. Abnormal entry count found on day 2016-12-10: -10328
WARNING. Abnormal entry count found on day 2016-12-17: -10286
WARNING. Abnormal entry count found on day 2016-12-17: -10286
WARNING. Abnormal entry count found on day 2016-12-24: -7670
WARNING. Abnormal entry count found on day 2016-12-24: -7670
Processing turnstile ('PTH05', 'R543', '00-00-07', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -739
WARNING. Abnormal entry count found on day 2016-12-03: -739
WARNING. Abnormal entry count found on day 2016-12-10: -873
WARNING. Abnormal entry count found on day 2016-12-10: -873
WARNING. Abnormal entry count found on day 2016-12-17: -903
WARNING. Abnormal entry count found on day 2016-12-17: -903
WARNING. Abnormal entry count found on day 2016-12-24: -662
WARNING. Abnormal entry count found on day 2016-12-24: -662
Processing turnstile ('R509', 'R121', '00-00-04', 'QUEENSBORO PLZ')
WARNING. Abnormal entry count found on day 2016-12-06: -2362718
WARNING. Abnormal entry count found on day 2016-12-03: 2357846
WARNING. Abnormal entry count found on day 2016-12-06: -2362718
WARNING. Abnormal entry count found on day 2016-12-03: 2357846
WARNING. Abnormal entry count found on day 2016-12-06: -2362718
WARNING. Abnormal entry count found on day 2016-12-10: -7674
WARNING. Abnormal entry count found on day 2016-12-10: -7674
WARNING. Abnormal entry count found on day 2016-12-17: -6847
WARNING. Abnormal entry count found on day 2016-12-17: -6847
WARNING. Abnormal entry count found on day 2016-12-24: -4559
WARNING. Abnormal entry count found on day 2016-12-24: -4559
Processing turnstile ('N541', 'R241', '01-05-00', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
Processing turnstile ('PTH04', 'R551', '00-01-01', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -14655
WARNING. Abnormal entry count found on day 2016-12-03: -14655
WARNING. Abnormal entry count found on day 2016-12-10: -14642
WARNING. Abnormal entry count found on day 2016-12-10: -14642
WARNING. Abnormal entry count found on day 2016-12-17: -13020
WARNING. Abnormal entry count found on day 2016-12-17: -13020
WARNING. Abnormal entry count found on day 2016-12-24: -8943
WARNING. Abnormal entry count found on day 2016-12-24: -8943
Processing turnstile ('D002', 'R390', '00-00-01', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12971
WARNING. Abnormal entry count found on day 2016-12-03: -12971
WARNING. Abnormal entry count found on day 2016-12-10: -11949
WARNING. Abnormal entry count found on day 2016-12-10: -11949
WARNING. Abnormal entry count found on day 2016-12-17: -14746
WARNING. Abnormal entry count found on day 2016-12-17: -14746
WARNING. Abnormal entry count found on day 2016-12-24: -10692
WARNING. Abnormal entry count found on day 2016-12-24: -10692
Processing turnstile ('G009', 'R151', '02-00-00', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -4331
WARNING. Abnormal entry count found on day 2016-12-03: -4331
WARNING. Abnormal entry count found on day 2016-12-10: -4193
WARNING. Abnormal entry count found on day 2016-12-10: -4193
WARNING. Abnormal entry count found on day 2016-12-17: -3913
WARNING. Abnormal entry count found on day 2016-12-17: -3913
WARNING. Abnormal entry count found on day 2016-12-24: -3363
WARNING. Abnormal entry count found on day 2016-12-24: -3363
Processing turnstile ('R178', 'R273', '00-00-03', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6943
WARNING. Abnormal entry count found on day 2016-12-03: -6943
WARNING. Abnormal entry count found on day 2016-12-10: -6914
WARNING. Abnormal entry count found on day 2016-12-10: -6914
WARNING. Abnormal entry count found on day 2016-12-17: -7107
WARNING. Abnormal entry count found on day 2016-12-17: -7107
WARNING. Abnormal entry count found on day 2016-12-24: -4873
WARNING. Abnormal entry count found on day 2016-12-24: -4873
Processing turnstile ('R326', 'R389', '00-00-02', 'BRONX PARK EAST')
WARNING. Abnormal entry count found on day 2016-12-03: -5833
WARNING. Abnormal entry count found on day 2016-12-03: -5833
WARNING. Abnormal entry count found on day 2016-12-10: -5240
WARNING. Abnormal entry count found on day 2016-12-10: -5240
WARNING. Abnormal entry count found on day 2016-12-17: -6659
WARNING. Abnormal entry count found on day 2016-12-17: -6659
WARNING. Abnormal entry count found on day 2016-12-24: -4985
WARNING. Abnormal entry count found on day 2016-12-24: -4985
Processing turnstile ('N131', 'R383', '00-00-02', '80 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6639
WARNING. Abnormal entry count found on day 2016-12-03: -6639
WARNING. Abnormal entry count found on day 2016-12-10: -6474
WARNING. Abnormal entry count found on day 2016-12-10: -6474
WARNING. Abnormal entry count found on day 2016-12-17: -6162
WARNING. Abnormal entry count found on day 2016-12-17: -6162
WARNING. Abnormal entry count found on day 2016-12-24: -4760
WARNING. Abnormal entry count found on day 2016-12-24: -4760
Processing turnstile ('H008', 'R248', '01-00-01', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4660
WARNING. Abnormal entry count found on day 2016-12-03: -4660
WARNING. Abnormal entry count found on day 2016-12-10: -6596
WARNING. Abnormal entry count found on day 2016-12-10: -6596
WARNING. Abnormal entry count found on day 2016-12-17: -4109
WARNING. Abnormal entry count found on day 2016-12-17: -4109
WARNING. Abnormal entry count found on day 2016-12-24: -2745
WARNING. Abnormal entry count found on day 2016-12-24: -2745
Processing turnstile ('J035', 'R008', '00-00-03', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6190
WARNING. Abnormal entry count found on day 2016-12-03: -6190
WARNING. Abnormal entry count found on day 2016-12-10: -5805
WARNING. Abnormal entry count found on day 2016-12-10: -5805
WARNING. Abnormal entry count found on day 2016-12-17: -5698
WARNING. Abnormal entry count found on day 2016-12-17: -5698
WARNING. Abnormal entry count found on day 2016-12-24: -4254
WARNING. Abnormal entry count found on day 2016-12-24: -4254
Processing turnstile ('A011', 'R080', '01-00-04', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13465
WARNING. Abnormal entry count found on day 2016-12-03: -13465
WARNING. Abnormal entry count found on day 2016-12-10: -13434
WARNING. Abnormal entry count found on day 2016-12-10: -13434
WARNING. Abnormal entry count found on day 2016-12-17: -10440
WARNING. Abnormal entry count found on day 2016-12-17: -10440
WARNING. Abnormal entry count found on day 2016-12-24: -9673
WARNING. Abnormal entry count found on day 2016-12-24: -9673
Processing turnstile ('R258', 'R132', '00-05-01', '125 ST')
Processing turnstile ('N094', 'R029', '01-06-01', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -16428
WARNING. Abnormal entry count found on day 2016-12-03: -16428
WARNING. Abnormal entry count found on day 2016-12-10: -15078
WARNING. Abnormal entry count found on day 2016-12-10: -15078
WARNING. Abnormal entry count found on day 2016-12-17: -14287
WARNING. Abnormal entry count found on day 2016-12-17: -14287
WARNING. Abnormal entry count found on day 2016-12-24: -11011
WARNING. Abnormal entry count found on day 2016-12-24: -11011
Processing turnstile ('R180', 'R193', '00-00-02', '157 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9018
WARNING. Abnormal entry count found on day 2016-12-03: -9018
WARNING. Abnormal entry count found on day 2016-12-10: -8769
WARNING. Abnormal entry count found on day 2016-12-10: -8769
WARNING. Abnormal entry count found on day 2016-12-17: -8210
WARNING. Abnormal entry count found on day 2016-12-17: -8210
WARNING. Abnormal entry count found on day 2016-12-24: -6271
WARNING. Abnormal entry count found on day 2016-12-24: -6271
Processing turnstile ('C023', 'R213', '00-00-05', 'BAY RIDGE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12153
WARNING. Abnormal entry count found on day 2016-12-03: -12153
WARNING. Abnormal entry count found on day 2016-12-10: -11538
WARNING. Abnormal entry count found on day 2016-12-10: -11538
WARNING. Abnormal entry count found on day 2016-12-17: -11175
WARNING. Abnormal entry count found on day 2016-12-17: -11175
WARNING. Abnormal entry count found on day 2016-12-24: -8486
WARNING. Abnormal entry count found on day 2016-12-24: -8486
Processing turnstile ('N309A', 'R140', '00-00-01', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -5720
WARNING. Abnormal entry count found on day 2016-12-03: -5720
WARNING. Abnormal entry count found on day 2016-12-10: -5540
WARNING. Abnormal entry count found on day 2016-12-10: -5540
WARNING. Abnormal entry count found on day 2016-12-17: -4701
WARNING. Abnormal entry count found on day 2016-12-17: -4701
WARNING. Abnormal entry count found on day 2016-12-24: -3181
WARNING. Abnormal entry count found on day 2016-12-24: -3181
Processing turnstile ('R237B', 'R047', '01-00-02', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6399
WARNING. Abnormal entry count found on day 2016-12-03: -6399
WARNING. Abnormal entry count found on day 2016-12-10: -6414
WARNING. Abnormal entry count found on day 2016-12-10: -6414
WARNING. Abnormal entry count found on day 2016-12-17: -5278
WARNING. Abnormal entry count found on day 2016-12-17: -5278
WARNING. Abnormal entry count found on day 2016-12-24: -2710
WARNING. Abnormal entry count found on day 2016-12-24: -2710
Processing turnstile ('R186', 'R036', '00-00-00', 'DYCKMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10391
WARNING. Abnormal entry count found on day 2016-12-03: -10391
WARNING. Abnormal entry count found on day 2016-12-10: -11116
WARNING. Abnormal entry count found on day 2016-12-10: -11116
WARNING. Abnormal entry count found on day 2016-12-17: -11551
WARNING. Abnormal entry count found on day 2016-12-17: -11551
WARNING. Abnormal entry count found on day 2016-12-24: -9307
WARNING. Abnormal entry count found on day 2016-12-24: -9307
Processing turnstile ('PTH16', 'R550', '01-02-01', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -1753
WARNING. Abnormal entry count found on day 2016-12-03: -1753
WARNING. Abnormal entry count found on day 2016-12-10: -861
WARNING. Abnormal entry count found on day 2016-12-10: -861
WARNING. Abnormal entry count found on day 2016-12-22: -53700
WARNING. Abnormal entry count found on day 2016-12-17: 53538
WARNING. Abnormal entry count found on day 2016-12-22: -53700
WARNING. Abnormal entry count found on day 2016-12-17: 53538
WARNING. Abnormal entry count found on day 2016-12-22: -53700
WARNING. Abnormal entry count found on day 2016-12-24: -62
WARNING. Abnormal entry count found on day 2016-12-24: -62
Processing turnstile ('N026', 'R102', '00-00-03', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10082
WARNING. Abnormal entry count found on day 2016-12-03: -10082
WARNING. Abnormal entry count found on day 2016-12-10: -10130
WARNING. Abnormal entry count found on day 2016-12-10: -10130
WARNING. Abnormal entry count found on day 2016-12-17: -10034
WARNING. Abnormal entry count found on day 2016-12-17: -10034
WARNING. Abnormal entry count found on day 2016-12-24: -8509
WARNING. Abnormal entry count found on day 2016-12-24: -8509
Processing turnstile ('R321', 'R386', '01-00-01', '174 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3612
WARNING. Abnormal entry count found on day 2016-12-03: -3612
WARNING. Abnormal entry count found on day 2016-12-10: -2518
WARNING. Abnormal entry count found on day 2016-12-10: -2518
WARNING. Abnormal entry count found on day 2016-12-17: -2733
WARNING. Abnormal entry count found on day 2016-12-17: -2733
WARNING. Abnormal entry count found on day 2016-12-24: -1916
WARNING. Abnormal entry count found on day 2016-12-24: -1916
Processing turnstile ('R154', 'R116', '00-00-02', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10461
WARNING. Abnormal entry count found on day 2016-12-03: -10461
WARNING. Abnormal entry count found on day 2016-12-10: -10576
WARNING. Abnormal entry count found on day 2016-12-10: -10576
WARNING. Abnormal entry count found on day 2016-12-17: -9231
WARNING. Abnormal entry count found on day 2016-12-17: -9231
WARNING. Abnormal entry count found on day 2016-12-24: -7595
WARNING. Abnormal entry count found on day 2016-12-24: -7595
Processing turnstile ('R217A', 'R194', '00-05-01', 'BLEECKER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11114
WARNING. Abnormal entry count found on day 2016-12-03: -11114
WARNING. Abnormal entry count found on day 2016-12-10: -11157
WARNING. Abnormal entry count found on day 2016-12-10: -11157
WARNING. Abnormal entry count found on day 2016-12-17: -10181
WARNING. Abnormal entry count found on day 2016-12-17: -10181
WARNING. Abnormal entry count found on day 2016-12-24: -7347
WARNING. Abnormal entry count found on day 2016-12-24: -7347
Processing turnstile ('N324', 'R018', '00-03-01', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -18430
WARNING. Abnormal entry count found on day 2016-12-03: -18430
WARNING. Abnormal entry count found on day 2016-12-10: -18485
WARNING. Abnormal entry count found on day 2016-12-10: -18485
WARNING. Abnormal entry count found on day 2016-12-17: -18897
WARNING. Abnormal entry count found on day 2016-12-17: -18897
WARNING. Abnormal entry count found on day 2016-12-24: -15783
WARNING. Abnormal entry count found on day 2016-12-24: -15783
Processing turnstile ('K026', 'R100', '00-05-00', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
Processing turnstile ('S101A', 'R070', '01-00-01', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -1813
WARNING. Abnormal entry count found on day 2016-12-03: -1813
WARNING. Abnormal entry count found on day 2016-12-10: -1518
WARNING. Abnormal entry count found on day 2016-12-10: -1518
WARNING. Abnormal entry count found on day 2016-12-17: -1512
WARNING. Abnormal entry count found on day 2016-12-17: -1512
WARNING. Abnormal entry count found on day 2016-12-24: -1015
WARNING. Abnormal entry count found on day 2016-12-24: -1015
Processing turnstile ('N400A', 'R359', '02-06-06', 'COURT SQ')
Processing turnstile ('R262', 'R195', '03-00-02', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -5146
WARNING. Abnormal entry count found on day 2016-12-03: -5146
WARNING. Abnormal entry count found on day 2016-12-10: -5573
WARNING. Abnormal entry count found on day 2016-12-10: -5573
WARNING. Abnormal entry count found on day 2016-12-17: -4937
WARNING. Abnormal entry count found on day 2016-12-17: -4937
WARNING. Abnormal entry count found on day 2016-12-24: -3932
WARNING. Abnormal entry count found on day 2016-12-24: -3932
Processing turnstile ('R228', 'R143', '00-00-04', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5660
WARNING. Abnormal entry count found on day 2016-12-03: -5660
WARNING. Abnormal entry count found on day 2016-12-10: -5568
WARNING. Abnormal entry count found on day 2016-12-10: -5568
WARNING. Abnormal entry count found on day 2016-12-17: -4978
WARNING. Abnormal entry count found on day 2016-12-17: -4978
WARNING. Abnormal entry count found on day 2016-12-24: -3254
WARNING. Abnormal entry count found on day 2016-12-24: -3254
Processing turnstile ('R160', 'R164', '02-00-02', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -15783
WARNING. Abnormal entry count found on day 2016-12-03: -15783
WARNING. Abnormal entry count found on day 2016-12-10: -16297
WARNING. Abnormal entry count found on day 2016-12-10: -16297
WARNING. Abnormal entry count found on day 2016-12-17: -16059
WARNING. Abnormal entry count found on day 2016-12-17: -16059
WARNING. Abnormal entry count found on day 2016-12-24: -10289
WARNING. Abnormal entry count found on day 2016-12-24: -10289
Processing turnstile ('R169', 'R168', '01-00-04', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5939
WARNING. Abnormal entry count found on day 2016-12-03: -5939
WARNING. Abnormal entry count found on day 2016-12-10: -5878
WARNING. Abnormal entry count found on day 2016-12-10: -5878
WARNING. Abnormal entry count found on day 2016-12-17: -5233
WARNING. Abnormal entry count found on day 2016-12-17: -5233
WARNING. Abnormal entry count found on day 2016-12-24: -4069
WARNING. Abnormal entry count found on day 2016-12-24: -4069
Processing turnstile ('N539A', 'R288', '00-03-02', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10969
WARNING. Abnormal entry count found on day 2016-12-03: -10969
WARNING. Abnormal entry count found on day 2016-12-10: -10671
WARNING. Abnormal entry count found on day 2016-12-10: -10671
WARNING. Abnormal entry count found on day 2016-12-17: -9595
WARNING. Abnormal entry count found on day 2016-12-17: -9595
WARNING. Abnormal entry count found on day 2016-12-24: -5816
WARNING. Abnormal entry count found on day 2016-12-24: -5816
Processing turnstile ('R326', 'R389', '00-00-00', 'BRONX PARK EAST')
WARNING. Abnormal entry count found on day 2016-12-03: -5048
WARNING. Abnormal entry count found on day 2016-12-03: -5048
WARNING. Abnormal entry count found on day 2016-12-10: -4918
WARNING. Abnormal entry count found on day 2016-12-10: -4918
WARNING. Abnormal entry count found on day 2016-12-17: -4596
WARNING. Abnormal entry count found on day 2016-12-17: -4596
WARNING. Abnormal entry count found on day 2016-12-24: -3404
WARNING. Abnormal entry count found on day 2016-12-24: -3404
Processing turnstile ('A006', 'R079', '00-00-01', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10754
WARNING. Abnormal entry count found on day 2016-12-03: -10754
WARNING. Abnormal entry count found on day 2016-12-10: -10590
WARNING. Abnormal entry count found on day 2016-12-10: -10590
WARNING. Abnormal entry count found on day 2016-12-17: -9853
WARNING. Abnormal entry count found on day 2016-12-17: -9853
WARNING. Abnormal entry count found on day 2016-12-24: -8257
WARNING. Abnormal entry count found on day 2016-12-24: -8257
Processing turnstile ('A002', 'R051', '02-03-05', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17227
WARNING. Abnormal entry count found on day 2016-12-03: -17227
WARNING. Abnormal entry count found on day 2016-12-10: -17606
WARNING. Abnormal entry count found on day 2016-12-10: -17606
WARNING. Abnormal entry count found on day 2016-12-17: -16354
WARNING. Abnormal entry count found on day 2016-12-17: -16354
WARNING. Abnormal entry count found on day 2016-12-24: -12244
WARNING. Abnormal entry count found on day 2016-12-24: -12244
Processing turnstile ('N606', 'R025', '00-00-03', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -13861
WARNING. Abnormal entry count found on day 2016-12-03: -13861
WARNING. Abnormal entry count found on day 2016-12-10: -11126
WARNING. Abnormal entry count found on day 2016-12-10: -11126
WARNING. Abnormal entry count found on day 2016-12-17: -11360
WARNING. Abnormal entry count found on day 2016-12-17: -11360
WARNING. Abnormal entry count found on day 2016-12-24: -8827
WARNING. Abnormal entry count found on day 2016-12-24: -8827
Processing turnstile ('R532', 'R328', '00-06-05', 'METS-WILLETS PT')
Processing turnstile ('N526', 'R142', '02-00-01', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -7115
WARNING. Abnormal entry count found on day 2016-12-03: -7115
WARNING. Abnormal entry count found on day 2016-12-10: -6937
WARNING. Abnormal entry count found on day 2016-12-10: -6937
WARNING. Abnormal entry count found on day 2016-12-17: -6961
WARNING. Abnormal entry count found on day 2016-12-17: -6961
WARNING. Abnormal entry count found on day 2016-12-24: -4680
WARNING. Abnormal entry count found on day 2016-12-24: -4680
Processing turnstile ('A022', 'R022', '01-00-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -30480
WARNING. Abnormal entry count found on day 2016-12-03: -30480
WARNING. Abnormal entry count found on day 2016-12-10: -26962
WARNING. Abnormal entry count found on day 2016-12-10: -26962
WARNING. Abnormal entry count found on day 2016-12-17: -31647
WARNING. Abnormal entry count found on day 2016-12-17: -31647
WARNING. Abnormal entry count found on day 2016-12-24: -28314
WARNING. Abnormal entry count found on day 2016-12-24: -28314
Processing turnstile ('N339A', 'R114', '00-00-01', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3270
WARNING. Abnormal entry count found on day 2016-12-03: -3270
WARNING. Abnormal entry count found on day 2016-12-10: -3245
WARNING. Abnormal entry count found on day 2016-12-10: -3245
WARNING. Abnormal entry count found on day 2016-12-17: -3288
WARNING. Abnormal entry count found on day 2016-12-17: -3288
WARNING. Abnormal entry count found on day 2016-12-24: -2494
WARNING. Abnormal entry count found on day 2016-12-24: -2494
Processing turnstile ('N062', 'R011', '01-05-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-24: -11
WARNING. Abnormal entry count found on day 2016-12-24: -11
Processing turnstile ('PTH01', 'R549', '00-00-0A', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -3712
WARNING. Abnormal entry count found on day 2016-12-03: -3712
WARNING. Abnormal entry count found on day 2016-12-10: -3170
WARNING. Abnormal entry count found on day 2016-12-10: -3170
WARNING. Abnormal entry count found on day 2016-12-17: -3312
WARNING. Abnormal entry count found on day 2016-12-17: -3312
WARNING. Abnormal entry count found on day 2016-12-24: -2619
WARNING. Abnormal entry count found on day 2016-12-24: -2619
Processing turnstile ('J022', 'R435', '00-00-00', 'CLEVELAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11439
WARNING. Abnormal entry count found on day 2016-12-03: -11439
WARNING. Abnormal entry count found on day 2016-12-10: -10858
WARNING. Abnormal entry count found on day 2016-12-10: -10858
WARNING. Abnormal entry count found on day 2016-12-17: -10722
WARNING. Abnormal entry count found on day 2016-12-17: -10722
WARNING. Abnormal entry count found on day 2016-12-24: -8063
WARNING. Abnormal entry count found on day 2016-12-24: -8063
Processing turnstile ('R422', 'R428', '00-05-01', 'BUHRE AV')
Processing turnstile ('R423', 'R429', '00-00-04', 'PELHAM BAY PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -3374
WARNING. Abnormal entry count found on day 2016-12-03: -3374
WARNING. Abnormal entry count found on day 2016-12-10: -3840
WARNING. Abnormal entry count found on day 2016-12-10: -3840
WARNING. Abnormal entry count found on day 2016-12-17: -3995
WARNING. Abnormal entry count found on day 2016-12-17: -3995
WARNING. Abnormal entry count found on day 2016-12-24: -2789
WARNING. Abnormal entry count found on day 2016-12-24: -2789
Processing turnstile ('N523', 'R300', '00-00-01', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13009
WARNING. Abnormal entry count found on day 2016-12-03: -13009
WARNING. Abnormal entry count found on day 2016-12-10: -12634
WARNING. Abnormal entry count found on day 2016-12-10: -12634
WARNING. Abnormal entry count found on day 2016-12-17: -11666
WARNING. Abnormal entry count found on day 2016-12-17: -11666
WARNING. Abnormal entry count found on day 2016-12-24: -9547
WARNING. Abnormal entry count found on day 2016-12-24: -9547
Processing turnstile ('N528', 'R257', '01-05-00', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R147', 'R033', '04-05-01', 'TIMES SQ-42 ST')
Processing turnstile ('R526', 'R096', '00-03-00', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -10715
WARNING. Abnormal entry count found on day 2016-12-03: -10715
WARNING. Abnormal entry count found on day 2016-12-10: -8918
WARNING. Abnormal entry count found on day 2016-12-10: -8918
WARNING. Abnormal entry count found on day 2016-12-17: -8946
WARNING. Abnormal entry count found on day 2016-12-17: -8946
WARNING. Abnormal entry count found on day 2016-12-24: -7630
WARNING. Abnormal entry count found on day 2016-12-24: -7630
Processing turnstile ('N194', 'R338', '00-00-02', 'BEACH 36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2295
WARNING. Abnormal entry count found on day 2016-12-03: -2295
WARNING. Abnormal entry count found on day 2016-12-10: -2220
WARNING. Abnormal entry count found on day 2016-12-10: -2220
WARNING. Abnormal entry count found on day 2016-12-17: -2215
WARNING. Abnormal entry count found on day 2016-12-17: -2215
WARNING. Abnormal entry count found on day 2016-12-24: -1625
WARNING. Abnormal entry count found on day 2016-12-24: -1625
Processing turnstile ('R177', 'R273', '01-00-00', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4353
WARNING. Abnormal entry count found on day 2016-12-03: -4353
WARNING. Abnormal entry count found on day 2016-12-10: -4159
WARNING. Abnormal entry count found on day 2016-12-10: -4159
WARNING. Abnormal entry count found on day 2016-12-17: -4836
WARNING. Abnormal entry count found on day 2016-12-17: -4836
WARNING. Abnormal entry count found on day 2016-12-24: -3102
WARNING. Abnormal entry count found on day 2016-12-24: -3102
Processing turnstile ('N026', 'R102', '00-05-01', '125 ST')
Processing turnstile ('JFK03', 'R536', '00-03-03', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-06: -2762
WARNING. Abnormal entry count found on day 2016-12-03: -303
WARNING. Abnormal entry count found on day 2016-12-06: -2762
WARNING. Abnormal entry count found on day 2016-12-03: -303
WARNING. Abnormal entry count found on day 2016-12-06: -2762
WARNING. Abnormal entry count found on day 2016-12-10: -3723
WARNING. Abnormal entry count found on day 2016-12-10: -3723
WARNING. Abnormal entry count found on day 2016-12-17: -5910
WARNING. Abnormal entry count found on day 2016-12-17: -5910
WARNING. Abnormal entry count found on day 2016-12-24: -4525
WARNING. Abnormal entry count found on day 2016-12-24: -4525
Processing turnstile ('R550', 'R072', '00-03-0B', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -2237
WARNING. Abnormal entry count found on day 2016-12-03: -2237
WARNING. Abnormal entry count found on day 2016-12-10: -2297
WARNING. Abnormal entry count found on day 2016-12-10: -2297
WARNING. Abnormal entry count found on day 2016-12-17: -1984
WARNING. Abnormal entry count found on day 2016-12-17: -1984
WARNING. Abnormal entry count found on day 2016-12-24: -1659
WARNING. Abnormal entry count found on day 2016-12-24: -1659
Processing turnstile ('N092', 'R029', '03-06-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9124
WARNING. Abnormal entry count found on day 2016-12-03: -9124
WARNING. Abnormal entry count found on day 2016-12-10: -7852
WARNING. Abnormal entry count found on day 2016-12-10: -7852
WARNING. Abnormal entry count found on day 2016-12-17: -6340
WARNING. Abnormal entry count found on day 2016-12-17: -6340
WARNING. Abnormal entry count found on day 2016-12-24: -4424
WARNING. Abnormal entry count found on day 2016-12-24: -4424
Processing turnstile ('N324', 'R018', '00-06-03', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -18392
WARNING. Abnormal entry count found on day 2016-12-03: -18392
WARNING. Abnormal entry count found on day 2016-12-10: -18177
WARNING. Abnormal entry count found on day 2016-12-10: -18177
WARNING. Abnormal entry count found on day 2016-12-17: -20475
WARNING. Abnormal entry count found on day 2016-12-17: -20475
WARNING. Abnormal entry count found on day 2016-12-24: -15334
WARNING. Abnormal entry count found on day 2016-12-24: -15334
Processing turnstile ('JFK02', 'R535', '01-00-01', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -756
WARNING. Abnormal entry count found on day 2016-12-03: -756
WARNING. Abnormal entry count found on day 2016-12-10: -608
WARNING. Abnormal entry count found on day 2016-12-10: -608
WARNING. Abnormal entry count found on day 2016-12-17: -1062
WARNING. Abnormal entry count found on day 2016-12-17: -1062
WARNING. Abnormal entry count found on day 2016-12-24: -1254
WARNING. Abnormal entry count found on day 2016-12-24: -1254
Processing turnstile ('N528', 'R257', '01-00-03', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -8852
WARNING. Abnormal entry count found on day 2016-12-03: -8852
WARNING. Abnormal entry count found on day 2016-12-10: -8644
WARNING. Abnormal entry count found on day 2016-12-10: -8644
WARNING. Abnormal entry count found on day 2016-12-17: -8974
WARNING. Abnormal entry count found on day 2016-12-17: -8974
WARNING. Abnormal entry count found on day 2016-12-24: -7776
WARNING. Abnormal entry count found on day 2016-12-24: -7776
Processing turnstile ('A043', 'R462', '00-03-04', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4290
WARNING. Abnormal entry count found on day 2016-12-03: -4290
WARNING. Abnormal entry count found on day 2016-12-10: -4280
WARNING. Abnormal entry count found on day 2016-12-10: -4280
WARNING. Abnormal entry count found on day 2016-12-17: -4241
WARNING. Abnormal entry count found on day 2016-12-17: -4241
WARNING. Abnormal entry count found on day 2016-12-24: -4162
WARNING. Abnormal entry count found on day 2016-12-24: -4162
Processing turnstile ('N070', 'R012', '04-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -8496
WARNING. Abnormal entry count found on day 2016-12-03: -8496
WARNING. Abnormal entry count found on day 2016-12-10: -8396
WARNING. Abnormal entry count found on day 2016-12-10: -8396
WARNING. Abnormal entry count found on day 2016-12-17: -8940
WARNING. Abnormal entry count found on day 2016-12-17: -8940
WARNING. Abnormal entry count found on day 2016-12-24: -7211
WARNING. Abnormal entry count found on day 2016-12-24: -7211
Processing turnstile ('R159', 'R164', '01-00-02', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -7077
WARNING. Abnormal entry count found on day 2016-12-03: -7077
WARNING. Abnormal entry count found on day 2016-12-10: -6142
WARNING. Abnormal entry count found on day 2016-12-10: -6142
WARNING. Abnormal entry count found on day 2016-12-17: -6553
WARNING. Abnormal entry count found on day 2016-12-17: -6553
WARNING. Abnormal entry count found on day 2016-12-24: -4895
WARNING. Abnormal entry count found on day 2016-12-24: -4895
Processing turnstile ('R183', 'R260', '00-00-00', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14781
WARNING. Abnormal entry count found on day 2016-12-03: -14781
WARNING. Abnormal entry count found on day 2016-12-10: -14008
WARNING. Abnormal entry count found on day 2016-12-10: -14008
WARNING. Abnormal entry count found on day 2016-12-17: -14613
WARNING. Abnormal entry count found on day 2016-12-17: -14613
WARNING. Abnormal entry count found on day 2016-12-24: -12057
WARNING. Abnormal entry count found on day 2016-12-24: -12057
Processing turnstile ('N129', 'R382', '00-00-01', 'GRANT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8233
WARNING. Abnormal entry count found on day 2016-12-03: -8233
WARNING. Abnormal entry count found on day 2016-12-10: -8117
WARNING. Abnormal entry count found on day 2016-12-10: -8117
WARNING. Abnormal entry count found on day 2016-12-17: -7404
WARNING. Abnormal entry count found on day 2016-12-17: -7404
WARNING. Abnormal entry count found on day 2016-12-24: -5368
WARNING. Abnormal entry count found on day 2016-12-24: -5368
Processing turnstile ('R612', 'R057', '01-00-02', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -2634
WARNING. Abnormal entry count found on day 2016-12-03: -2634
WARNING. Abnormal entry count found on day 2016-12-10: -2418
WARNING. Abnormal entry count found on day 2016-12-10: -2418
WARNING. Abnormal entry count found on day 2016-12-17: -2512
WARNING. Abnormal entry count found on day 2016-12-17: -2512
WARNING. Abnormal entry count found on day 2016-12-24: -2050
WARNING. Abnormal entry count found on day 2016-12-24: -2050
Processing turnstile ('N137', 'R354', '00-06-00', '104 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -110
WARNING. Abnormal entry count found on day 2016-12-03: -110
WARNING. Abnormal entry count found on day 2016-12-10: -122
WARNING. Abnormal entry count found on day 2016-12-10: -122
WARNING. Abnormal entry count found on day 2016-12-17: -118
WARNING. Abnormal entry count found on day 2016-12-17: -118
WARNING. Abnormal entry count found on day 2016-12-24: -67
WARNING. Abnormal entry count found on day 2016-12-24: -67
Processing turnstile ('R307', 'R207', '01-05-00', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('A035', 'R170', '00-00-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -9864
WARNING. Abnormal entry count found on day 2016-12-03: -9864
WARNING. Abnormal entry count found on day 2016-12-10: -11201
WARNING. Abnormal entry count found on day 2016-12-10: -11201
WARNING. Abnormal entry count found on day 2016-12-17: -10692
WARNING. Abnormal entry count found on day 2016-12-17: -10692
WARNING. Abnormal entry count found on day 2016-12-24: -5655
WARNING. Abnormal entry count found on day 2016-12-24: -5655
Processing turnstile ('N521', 'R300', '01-00-01', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10071
WARNING. Abnormal entry count found on day 2016-12-03: -10071
WARNING. Abnormal entry count found on day 2016-12-10: -9616
WARNING. Abnormal entry count found on day 2016-12-10: -9616
WARNING. Abnormal entry count found on day 2016-12-17: -9219
WARNING. Abnormal entry count found on day 2016-12-17: -9219
WARNING. Abnormal entry count found on day 2016-12-24: -7875
WARNING. Abnormal entry count found on day 2016-12-24: -7875
Processing turnstile ('R244A', 'R050', '01-00-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6253
WARNING. Abnormal entry count found on day 2016-12-03: -6253
WARNING. Abnormal entry count found on day 2016-12-10: -7099
WARNING. Abnormal entry count found on day 2016-12-10: -7099
WARNING. Abnormal entry count found on day 2016-12-17: -6922
WARNING. Abnormal entry count found on day 2016-12-17: -6922
WARNING. Abnormal entry count found on day 2016-12-24: -5305
WARNING. Abnormal entry count found on day 2016-12-24: -5305
Processing turnstile ('PTH05', 'R543', '00-04-01', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-09: -268076
WARNING. Abnormal entry count found on day 2016-12-03: 264512
WARNING. Abnormal entry count found on day 2016-12-09: -268076
WARNING. Abnormal entry count found on day 2016-12-03: 264512
WARNING. Abnormal entry count found on day 2016-12-09: -268076
WARNING. Abnormal entry count found on day 2016-12-10: -5043
WARNING. Abnormal entry count found on day 2016-12-10: -5043
WARNING. Abnormal entry count found on day 2016-12-17: -4659
WARNING. Abnormal entry count found on day 2016-12-17: -4659
WARNING. Abnormal entry count found on day 2016-12-24: -3116
WARNING. Abnormal entry count found on day 2016-12-24: -3116
Processing turnstile ('B020', 'R263', '00-05-02', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -3310
WARNING. Abnormal entry count found on day 2016-12-03: -3310
WARNING. Abnormal entry count found on day 2016-12-10: -3143
WARNING. Abnormal entry count found on day 2016-12-10: -3143
WARNING. Abnormal entry count found on day 2016-12-17: -3056
WARNING. Abnormal entry count found on day 2016-12-17: -3056
WARNING. Abnormal entry count found on day 2016-12-24: -1176
WARNING. Abnormal entry count found on day 2016-12-24: -1176
Processing turnstile ('N119', 'R199', '00-00-01', 'KINGSTON-THROOP')
WARNING. Abnormal entry count found on day 2016-12-03: -8520
WARNING. Abnormal entry count found on day 2016-12-03: -8520
WARNING. Abnormal entry count found on day 2016-12-10: -8455
WARNING. Abnormal entry count found on day 2016-12-10: -8455
WARNING. Abnormal entry count found on day 2016-12-17: -8011
WARNING. Abnormal entry count found on day 2016-12-17: -8011
WARNING. Abnormal entry count found on day 2016-12-24: -6136
WARNING. Abnormal entry count found on day 2016-12-24: -6136
Processing turnstile ('R629', 'R065', '00-03-01', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4326
WARNING. Abnormal entry count found on day 2016-12-03: -4326
WARNING. Abnormal entry count found on day 2016-12-10: -4504
WARNING. Abnormal entry count found on day 2016-12-10: -4504
WARNING. Abnormal entry count found on day 2016-12-17: -5051
WARNING. Abnormal entry count found on day 2016-12-17: -5051
WARNING. Abnormal entry count found on day 2016-12-24: -3020
WARNING. Abnormal entry count found on day 2016-12-24: -3020
Processing turnstile ('H003', 'R163', '01-06-00', '6 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -179
WARNING. Abnormal entry count found on day 2016-12-03: -179
WARNING. Abnormal entry count found on day 2016-12-10: -170
WARNING. Abnormal entry count found on day 2016-12-10: -170
WARNING. Abnormal entry count found on day 2016-12-17: -166
WARNING. Abnormal entry count found on day 2016-12-17: -166
WARNING. Abnormal entry count found on day 2016-12-24: -150
WARNING. Abnormal entry count found on day 2016-12-24: -150
Processing turnstile ('N072', 'R012', '05-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -2195
WARNING. Abnormal entry count found on day 2016-12-03: -2195
WARNING. Abnormal entry count found on day 2016-12-10: -2500
WARNING. Abnormal entry count found on day 2016-12-10: -2500
WARNING. Abnormal entry count found on day 2016-12-17: -2080
WARNING. Abnormal entry count found on day 2016-12-17: -2080
WARNING. Abnormal entry count found on day 2016-12-24: -2150
WARNING. Abnormal entry count found on day 2016-12-24: -2150
Processing turnstile ('N110', 'R283', '00-00-00', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1039
WARNING. Abnormal entry count found on day 2016-12-03: -1039
WARNING. Abnormal entry count found on day 2016-12-10: -1021
WARNING. Abnormal entry count found on day 2016-12-10: -1021
WARNING. Abnormal entry count found on day 2016-12-17: -1120
WARNING. Abnormal entry count found on day 2016-12-17: -1120
WARNING. Abnormal entry count found on day 2016-12-24: -896
WARNING. Abnormal entry count found on day 2016-12-24: -896
Processing turnstile ('R411', 'R450', '01-00-00', 'LONGWOOD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2182
WARNING. Abnormal entry count found on day 2016-12-03: -2182
WARNING. Abnormal entry count found on day 2016-12-10: -2119
WARNING. Abnormal entry count found on day 2016-12-10: -2119
WARNING. Abnormal entry count found on day 2016-12-17: -1970
WARNING. Abnormal entry count found on day 2016-12-17: -1970
WARNING. Abnormal entry count found on day 2016-12-24: -1398
WARNING. Abnormal entry count found on day 2016-12-24: -1398
Processing turnstile ('R618', 'R058', '01-06-01', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -110
WARNING. Abnormal entry count found on day 2016-12-03: -110
WARNING. Abnormal entry count found on day 2016-12-10: -87
WARNING. Abnormal entry count found on day 2016-12-10: -87
WARNING. Abnormal entry count found on day 2016-12-17: -96
WARNING. Abnormal entry count found on day 2016-12-17: -96
WARNING. Abnormal entry count found on day 2016-12-24: -80
WARNING. Abnormal entry count found on day 2016-12-24: -80
Processing turnstile ('R158', 'R084', '00-06-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -9483
WARNING. Abnormal entry count found on day 2016-12-03: -9483
WARNING. Abnormal entry count found on day 2016-12-10: -9501
WARNING. Abnormal entry count found on day 2016-12-10: -9501
WARNING. Abnormal entry count found on day 2016-12-17: -8785
WARNING. Abnormal entry count found on day 2016-12-17: -8785
WARNING. Abnormal entry count found on day 2016-12-24: -8133
WARNING. Abnormal entry count found on day 2016-12-24: -8133
Processing turnstile ('R626', 'R062', '00-00-03', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -11565
WARNING. Abnormal entry count found on day 2016-12-03: -11565
WARNING. Abnormal entry count found on day 2016-12-10: -11341
WARNING. Abnormal entry count found on day 2016-12-10: -11341
WARNING. Abnormal entry count found on day 2016-12-17: -10887
WARNING. Abnormal entry count found on day 2016-12-17: -10887
WARNING. Abnormal entry count found on day 2016-12-24: -8722
WARNING. Abnormal entry count found on day 2016-12-24: -8722
Processing turnstile ('N112A', 'R284', '01-06-00', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1576
WARNING. Abnormal entry count found on day 2016-12-03: -1576
WARNING. Abnormal entry count found on day 2016-12-10: -271
WARNING. Abnormal entry count found on day 2016-12-10: -271
WARNING. Abnormal entry count found on day 2016-12-17: -114
WARNING. Abnormal entry count found on day 2016-12-17: -114
WARNING. Abnormal entry count found on day 2016-12-24: -84005196
WARNING. Abnormal entry count found on day 2016-12-24: -715
WARNING. Abnormal entry count found on day 2016-12-24: -715
Processing turnstile ('R242', 'R049', '01-03-04', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12180
WARNING. Abnormal entry count found on day 2016-12-03: -12180
WARNING. Abnormal entry count found on day 2016-12-10: -12510
WARNING. Abnormal entry count found on day 2016-12-10: -12510
WARNING. Abnormal entry count found on day 2016-12-17: -11387
WARNING. Abnormal entry count found on day 2016-12-17: -11387
WARNING. Abnormal entry count found on day 2016-12-24: -9400
WARNING. Abnormal entry count found on day 2016-12-24: -9400
Processing turnstile ('R550', 'R072', '00-00-01', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -104
WARNING. Abnormal entry count found on day 2016-12-03: -104
WARNING. Abnormal entry count found on day 2016-12-10: -96
WARNING. Abnormal entry count found on day 2016-12-10: -96
WARNING. Abnormal entry count found on day 2016-12-17: -89
WARNING. Abnormal entry count found on day 2016-12-17: -89
WARNING. Abnormal entry count found on day 2016-12-24: -148
WARNING. Abnormal entry count found on day 2016-12-24: -148
Processing turnstile ('N501A', 'R020', '02-03-02', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -4889
WARNING. Abnormal entry count found on day 2016-12-03: -4889
WARNING. Abnormal entry count found on day 2016-12-10: -4944
WARNING. Abnormal entry count found on day 2016-12-10: -4944
WARNING. Abnormal entry count found on day 2016-12-17: -5559
WARNING. Abnormal entry count found on day 2016-12-17: -5559
WARNING. Abnormal entry count found on day 2016-12-24: -6098
WARNING. Abnormal entry count found on day 2016-12-24: -6098
Processing turnstile ('N419', 'R287', '00-00-02', 'CLASSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12431
WARNING. Abnormal entry count found on day 2016-12-03: -12431
WARNING. Abnormal entry count found on day 2016-12-10: -12389
WARNING. Abnormal entry count found on day 2016-12-10: -12389
WARNING. Abnormal entry count found on day 2016-12-17: -10945
WARNING. Abnormal entry count found on day 2016-12-17: -10945
WARNING. Abnormal entry count found on day 2016-12-24: -7233
WARNING. Abnormal entry count found on day 2016-12-24: -7233
Processing turnstile ('R501', 'R054', '00-00-06', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -3645
WARNING. Abnormal entry count found on day 2016-12-03: -3645
WARNING. Abnormal entry count found on day 2016-12-10: -3663
WARNING. Abnormal entry count found on day 2016-12-10: -3663
WARNING. Abnormal entry count found on day 2016-12-17: -3704
WARNING. Abnormal entry count found on day 2016-12-17: -3704
WARNING. Abnormal entry count found on day 2016-12-24: -3403
WARNING. Abnormal entry count found on day 2016-12-24: -3403
Processing turnstile ('R523', 'R147', '00-00-07', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -3526
WARNING. Abnormal entry count found on day 2016-12-03: -3526
WARNING. Abnormal entry count found on day 2016-12-10: 11239
WARNING. Abnormal entry count found on day 2016-12-10: -13107
WARNING. Abnormal entry count found on day 2016-12-10: -13107
WARNING. Abnormal entry count found on day 2016-12-17: -13242
WARNING. Abnormal entry count found on day 2016-12-17: -13242
WARNING. Abnormal entry count found on day 2016-12-24: -10583
WARNING. Abnormal entry count found on day 2016-12-24: -10583
Processing turnstile ('N182', 'R414', '00-06-01', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -587
WARNING. Abnormal entry count found on day 2016-12-03: -587
WARNING. Abnormal entry count found on day 2016-12-10: -573
WARNING. Abnormal entry count found on day 2016-12-10: -573
WARNING. Abnormal entry count found on day 2016-12-17: -667
WARNING. Abnormal entry count found on day 2016-12-17: -667
WARNING. Abnormal entry count found on day 2016-12-24: -491
WARNING. Abnormal entry count found on day 2016-12-24: -491
Processing turnstile ('C009', 'R057', '03-03-02', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -10315
WARNING. Abnormal entry count found on day 2016-12-03: -10315
WARNING. Abnormal entry count found on day 2016-12-10: -10180
WARNING. Abnormal entry count found on day 2016-12-10: -10180
WARNING. Abnormal entry count found on day 2016-12-17: -10236
WARNING. Abnormal entry count found on day 2016-12-17: -10236
WARNING. Abnormal entry count found on day 2016-12-24: -6590
WARNING. Abnormal entry count found on day 2016-12-24: -6590
Processing turnstile ('A021', 'R032', '01-00-06', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6022
WARNING. Abnormal entry count found on day 2016-12-03: -6022
WARNING. Abnormal entry count found on day 2016-12-10: -5480
WARNING. Abnormal entry count found on day 2016-12-10: -5480
WARNING. Abnormal entry count found on day 2016-12-17: -4813
WARNING. Abnormal entry count found on day 2016-12-17: -4813
WARNING. Abnormal entry count found on day 2016-12-24: -3218
WARNING. Abnormal entry count found on day 2016-12-24: -3218
Processing turnstile ('H019', 'R294', '00-00-00', 'MORGAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11523
WARNING. Abnormal entry count found on day 2016-12-03: -11523
WARNING. Abnormal entry count found on day 2016-12-10: -10952
WARNING. Abnormal entry count found on day 2016-12-10: -10952
WARNING. Abnormal entry count found on day 2016-12-17: -10344
WARNING. Abnormal entry count found on day 2016-12-17: -10344
WARNING. Abnormal entry count found on day 2016-12-24: -7689
WARNING. Abnormal entry count found on day 2016-12-24: -7689
Processing turnstile ('N338B', 'R128', '00-00-00', 'SUTPHIN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -4350
WARNING. Abnormal entry count found on day 2016-12-03: -4350
WARNING. Abnormal entry count found on day 2016-12-10: -4347
WARNING. Abnormal entry count found on day 2016-12-10: -4347
WARNING. Abnormal entry count found on day 2016-12-17: -4144
WARNING. Abnormal entry count found on day 2016-12-17: -4144
WARNING. Abnormal entry count found on day 2016-12-24: -3226
WARNING. Abnormal entry count found on day 2016-12-24: -3226
Processing turnstile ('N193', 'R337', '00-00-02', 'BEACH 44 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2027
WARNING. Abnormal entry count found on day 2016-12-03: -2027
WARNING. Abnormal entry count found on day 2016-12-10: -2057
WARNING. Abnormal entry count found on day 2016-12-10: -2057
WARNING. Abnormal entry count found on day 2016-12-17: -1993
WARNING. Abnormal entry count found on day 2016-12-17: -1993
WARNING. Abnormal entry count found on day 2016-12-24: -1568
WARNING. Abnormal entry count found on day 2016-12-24: -1568
Processing turnstile ('J037', 'R009', '00-06-01', '121 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -324
WARNING. Abnormal entry count found on day 2016-12-03: -324
WARNING. Abnormal entry count found on day 2016-12-10: -732
WARNING. Abnormal entry count found on day 2016-12-10: -732
WARNING. Abnormal entry count found on day 2016-12-17: -625
WARNING. Abnormal entry count found on day 2016-12-17: -625
WARNING. Abnormal entry count found on day 2016-12-24: -763
WARNING. Abnormal entry count found on day 2016-12-24: -763
Processing turnstile ('R623', 'R061', '00-00-00', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8399
WARNING. Abnormal entry count found on day 2016-12-03: -8399
WARNING. Abnormal entry count found on day 2016-12-10: -8030
WARNING. Abnormal entry count found on day 2016-12-10: -8030
WARNING. Abnormal entry count found on day 2016-12-17: -7641
WARNING. Abnormal entry count found on day 2016-12-17: -7641
WARNING. Abnormal entry count found on day 2016-12-24: -5314
WARNING. Abnormal entry count found on day 2016-12-24: -5314
Processing turnstile ('N051', 'R084', '02-05-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -19
WARNING. Abnormal entry count found on day 2016-12-03: -19
WARNING. Abnormal entry count found on day 2016-12-10: -18
WARNING. Abnormal entry count found on day 2016-12-10: -18
WARNING. Abnormal entry count found on day 2016-12-17: -15
WARNING. Abnormal entry count found on day 2016-12-17: -15
WARNING. Abnormal entry count found on day 2016-12-24: -13
WARNING. Abnormal entry count found on day 2016-12-24: -13
Processing turnstile ('N600', 'R302', '00-03-02', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2490
WARNING. Abnormal entry count found on day 2016-12-03: -2490
WARNING. Abnormal entry count found on day 2016-12-10: -2328
WARNING. Abnormal entry count found on day 2016-12-10: -2328
WARNING. Abnormal entry count found on day 2016-12-17: -2463
WARNING. Abnormal entry count found on day 2016-12-17: -2463
WARNING. Abnormal entry count found on day 2016-12-24: -2274
WARNING. Abnormal entry count found on day 2016-12-24: -2274
Processing turnstile ('PTH05', 'R543', '00-01-05', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -4137
WARNING. Abnormal entry count found on day 2016-12-03: -4137
WARNING. Abnormal entry count found on day 2016-12-10: -3231
WARNING. Abnormal entry count found on day 2016-12-10: -3231
WARNING. Abnormal entry count found on day 2016-12-17: -2835
WARNING. Abnormal entry count found on day 2016-12-17: -2835
WARNING. Abnormal entry count found on day 2016-12-24: -2462
WARNING. Abnormal entry count found on day 2016-12-24: -2462
Processing turnstile ('R126', 'R189', '01-00-02', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-04: -1169
WARNING. Abnormal entry count found on day 2016-12-05: -731
WARNING. Abnormal entry count found on day 2016-12-06: -1163
WARNING. Abnormal entry count found on day 2016-12-07: -1296
WARNING. Abnormal entry count found on day 2016-12-08: -1307
WARNING. Abnormal entry count found on day 2016-12-09: -1313
WARNING. Abnormal entry count found on day 2016-12-04: -1169
WARNING. Abnormal entry count found on day 2016-12-05: -731
WARNING. Abnormal entry count found on day 2016-12-06: -1163
WARNING. Abnormal entry count found on day 2016-12-07: -1296
WARNING. Abnormal entry count found on day 2016-12-08: -1307
WARNING. Abnormal entry count found on day 2016-12-09: -1313
WARNING. Abnormal entry count found on day 2016-12-04: -1169
WARNING. Abnormal entry count found on day 2016-12-05: -731
WARNING. Abnormal entry count found on day 2016-12-06: -1163
WARNING. Abnormal entry count found on day 2016-12-07: -1296
WARNING. Abnormal entry count found on day 2016-12-08: -1307
WARNING. Abnormal entry count found on day 2016-12-09: -1313
WARNING. Abnormal entry count found on day 2016-12-10: -1436
WARNING. Abnormal entry count found on day 2016-12-11: -1141
WARNING. Abnormal entry count found on day 2016-12-12: -769
WARNING. Abnormal entry count found on day 2016-12-13: -1192
WARNING. Abnormal entry count found on day 2016-12-14: -1241
WARNING. Abnormal entry count found on day 2016-12-15: -1309
WARNING. Abnormal entry count found on day 2016-12-16: -1358
WARNING. Abnormal entry count found on day 2016-12-11: -1141
WARNING. Abnormal entry count found on day 2016-12-12: -769
WARNING. Abnormal entry count found on day 2016-12-13: -1192
WARNING. Abnormal entry count found on day 2016-12-14: -1241
WARNING. Abnormal entry count found on day 2016-12-15: -1309
WARNING. Abnormal entry count found on day 2016-12-16: -1358
WARNING. Abnormal entry count found on day 2016-12-11: -1141
WARNING. Abnormal entry count found on day 2016-12-12: -769
WARNING. Abnormal entry count found on day 2016-12-13: -1192
WARNING. Abnormal entry count found on day 2016-12-14: -1241
WARNING. Abnormal entry count found on day 2016-12-15: -1309
WARNING. Abnormal entry count found on day 2016-12-16: -1358
WARNING. Abnormal entry count found on day 2016-12-17: -1397
WARNING. Abnormal entry count found on day 2016-12-18: -896
WARNING. Abnormal entry count found on day 2016-12-19: -745
WARNING. Abnormal entry count found on day 2016-12-20: -1024
WARNING. Abnormal entry count found on day 2016-12-21: -1152
WARNING. Abnormal entry count found on day 2016-12-22: -1172
WARNING. Abnormal entry count found on day 2016-12-23: -1141
WARNING. Abnormal entry count found on day 2016-12-18: -896
WARNING. Abnormal entry count found on day 2016-12-19: -745
WARNING. Abnormal entry count found on day 2016-12-20: -1024
WARNING. Abnormal entry count found on day 2016-12-21: -1152
WARNING. Abnormal entry count found on day 2016-12-22: -1172
WARNING. Abnormal entry count found on day 2016-12-23: -1141
WARNING. Abnormal entry count found on day 2016-12-18: -896
WARNING. Abnormal entry count found on day 2016-12-19: -745
WARNING. Abnormal entry count found on day 2016-12-20: -1024
WARNING. Abnormal entry count found on day 2016-12-21: -1152
WARNING. Abnormal entry count found on day 2016-12-22: -1172
WARNING. Abnormal entry count found on day 2016-12-23: -1141
WARNING. Abnormal entry count found on day 2016-12-24: -921
WARNING. Abnormal entry count found on day 2016-12-25: -432
WARNING. Abnormal entry count found on day 2016-12-26: -325
WARNING. Abnormal entry count found on day 2016-12-27: -544
WARNING. Abnormal entry count found on day 2016-12-28: -922
WARNING. Abnormal entry count found on day 2016-12-29: -950
WARNING. Abnormal entry count found on day 2016-12-30: -916
WARNING. Abnormal entry count found on day 2016-12-25: -432
WARNING. Abnormal entry count found on day 2016-12-26: -325
WARNING. Abnormal entry count found on day 2016-12-27: -544
WARNING. Abnormal entry count found on day 2016-12-28: -922
WARNING. Abnormal entry count found on day 2016-12-29: -950
WARNING. Abnormal entry count found on day 2016-12-30: -916
WARNING. Abnormal entry count found on day 2016-12-25: -432
WARNING. Abnormal entry count found on day 2016-12-26: -325
WARNING. Abnormal entry count found on day 2016-12-27: -544
WARNING. Abnormal entry count found on day 2016-12-28: -922
WARNING. Abnormal entry count found on day 2016-12-29: -950
WARNING. Abnormal entry count found on day 2016-12-30: -916
Processing turnstile ('H028', 'R266', '00-06-00', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15221
WARNING. Abnormal entry count found on day 2016-12-03: -15221
WARNING. Abnormal entry count found on day 2016-12-10: -13201
WARNING. Abnormal entry count found on day 2016-12-10: -13201
WARNING. Abnormal entry count found on day 2016-12-17: -13894
WARNING. Abnormal entry count found on day 2016-12-17: -13894
WARNING. Abnormal entry count found on day 2016-12-24: -10036
WARNING. Abnormal entry count found on day 2016-12-24: -10036
Processing turnstile ('R332', 'R365', '00-00-00', '219 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7736
WARNING. Abnormal entry count found on day 2016-12-03: -7736
WARNING. Abnormal entry count found on day 2016-12-10: -7699
WARNING. Abnormal entry count found on day 2016-12-10: -7699
WARNING. Abnormal entry count found on day 2016-12-17: -7427
WARNING. Abnormal entry count found on day 2016-12-17: -7427
WARNING. Abnormal entry count found on day 2016-12-24: -5927
WARNING. Abnormal entry count found on day 2016-12-24: -5927
Processing turnstile ('N324', 'R018', '00-06-00', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -12454
WARNING. Abnormal entry count found on day 2016-12-03: -12454
WARNING. Abnormal entry count found on day 2016-12-10: -9709
WARNING. Abnormal entry count found on day 2016-12-10: -9709
WARNING. Abnormal entry count found on day 2016-12-17: -11673
WARNING. Abnormal entry count found on day 2016-12-17: -11673
WARNING. Abnormal entry count found on day 2016-12-24: -9996
WARNING. Abnormal entry count found on day 2016-12-24: -9996
Processing turnstile ('N327', 'R254', '00-00-01', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -506
WARNING. Abnormal entry count found on day 2016-12-03: -506
WARNING. Abnormal entry count found on day 2016-12-10: -480
WARNING. Abnormal entry count found on day 2016-12-10: -480
WARNING. Abnormal entry count found on day 2016-12-17: -529
WARNING. Abnormal entry count found on day 2016-12-17: -529
WARNING. Abnormal entry count found on day 2016-12-24: -426
WARNING. Abnormal entry count found on day 2016-12-24: -426
Processing turnstile ('R148', 'R033', '01-00-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17628
WARNING. Abnormal entry count found on day 2016-12-03: -17628
WARNING. Abnormal entry count found on day 2016-12-10: -16980
WARNING. Abnormal entry count found on day 2016-12-10: -16980
WARNING. Abnormal entry count found on day 2016-12-17: -15832
WARNING. Abnormal entry count found on day 2016-12-17: -15832
WARNING. Abnormal entry count found on day 2016-12-24: -12305
WARNING. Abnormal entry count found on day 2016-12-24: -12305
Processing turnstile ('R532', 'R328', '00-06-02', 'METS-WILLETS PT')
Processing turnstile ('B015', 'R098', '01-00-01', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7768
WARNING. Abnormal entry count found on day 2016-12-03: -7768
WARNING. Abnormal entry count found on day 2016-12-10: -7553
WARNING. Abnormal entry count found on day 2016-12-10: -7553
WARNING. Abnormal entry count found on day 2016-12-17: -6896
WARNING. Abnormal entry count found on day 2016-12-17: -6896
WARNING. Abnormal entry count found on day 2016-12-24: -5022
WARNING. Abnormal entry count found on day 2016-12-24: -5022
Processing turnstile ('A066', 'R118', '00-00-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-04: -4448
WARNING. Abnormal entry count found on day 2016-12-05: -3431
WARNING. Abnormal entry count found on day 2016-12-06: -4216
WARNING. Abnormal entry count found on day 2016-12-07: -3982
WARNING. Abnormal entry count found on day 2016-12-08: -3972
WARNING. Abnormal entry count found on day 2016-12-09: -4048
WARNING. Abnormal entry count found on day 2016-12-03: 24097
WARNING. Abnormal entry count found on day 2016-12-04: -4448
WARNING. Abnormal entry count found on day 2016-12-05: -3431
WARNING. Abnormal entry count found on day 2016-12-06: -4216
WARNING. Abnormal entry count found on day 2016-12-07: -3982
WARNING. Abnormal entry count found on day 2016-12-08: -3972
WARNING. Abnormal entry count found on day 2016-12-09: -4048
WARNING. Abnormal entry count found on day 2016-12-03: 24097
WARNING. Abnormal entry count found on day 2016-12-04: -4448
WARNING. Abnormal entry count found on day 2016-12-05: -3431
WARNING. Abnormal entry count found on day 2016-12-06: -4216
WARNING. Abnormal entry count found on day 2016-12-07: -3982
WARNING. Abnormal entry count found on day 2016-12-08: -3972
WARNING. Abnormal entry count found on day 2016-12-09: -4048
WARNING. Abnormal entry count found on day 2016-12-10: -4468
WARNING. Abnormal entry count found on day 2016-12-11: -3706
WARNING. Abnormal entry count found on day 2016-12-12: -3205
WARNING. Abnormal entry count found on day 2016-12-13: -2246
WARNING. Abnormal entry count found on day 2016-12-14: -4336
WARNING. Abnormal entry count found on day 2016-12-15: -4282
WARNING. Abnormal entry count found on day 2016-12-16: -3922
WARNING. Abnormal entry count found on day 2016-12-10: 21697
WARNING. Abnormal entry count found on day 2016-12-11: -3706
WARNING. Abnormal entry count found on day 2016-12-12: -3205
WARNING. Abnormal entry count found on day 2016-12-13: -2246
WARNING. Abnormal entry count found on day 2016-12-14: -4336
WARNING. Abnormal entry count found on day 2016-12-15: -4282
WARNING. Abnormal entry count found on day 2016-12-16: -3922
WARNING. Abnormal entry count found on day 2016-12-10: 21697
WARNING. Abnormal entry count found on day 2016-12-11: -3706
WARNING. Abnormal entry count found on day 2016-12-12: -3205
WARNING. Abnormal entry count found on day 2016-12-13: -2246
WARNING. Abnormal entry count found on day 2016-12-14: -4336
WARNING. Abnormal entry count found on day 2016-12-15: -4282
WARNING. Abnormal entry count found on day 2016-12-16: -3922
WARNING. Abnormal entry count found on day 2016-12-17: -3764
WARNING. Abnormal entry count found on day 2016-12-18: -3120
WARNING. Abnormal entry count found on day 2016-12-19: -3090
WARNING. Abnormal entry count found on day 2016-12-20: -3123
WARNING. Abnormal entry count found on day 2016-12-21: -3323
WARNING. Abnormal entry count found on day 2016-12-22: -3920
WARNING. Abnormal entry count found on day 2016-12-23: -4108
WARNING. Abnormal entry count found on day 2016-12-17: 20684
WARNING. Abnormal entry count found on day 2016-12-18: -3120
WARNING. Abnormal entry count found on day 2016-12-19: -3090
WARNING. Abnormal entry count found on day 2016-12-20: -3123
WARNING. Abnormal entry count found on day 2016-12-21: -3323
WARNING. Abnormal entry count found on day 2016-12-22: -3920
WARNING. Abnormal entry count found on day 2016-12-23: -4108
WARNING. Abnormal entry count found on day 2016-12-17: 20684
WARNING. Abnormal entry count found on day 2016-12-18: -3120
WARNING. Abnormal entry count found on day 2016-12-19: -3090
WARNING. Abnormal entry count found on day 2016-12-20: -3123
WARNING. Abnormal entry count found on day 2016-12-21: -3323
WARNING. Abnormal entry count found on day 2016-12-22: -3920
WARNING. Abnormal entry count found on day 2016-12-23: -4108
WARNING. Abnormal entry count found on day 2016-12-24: -4115
WARNING. Abnormal entry count found on day 2016-12-25: -2987
WARNING. Abnormal entry count found on day 2016-12-26: -2862
WARNING. Abnormal entry count found on day 2016-12-27: -3551
WARNING. Abnormal entry count found on day 2016-12-28: -4154
WARNING. Abnormal entry count found on day 2016-12-29: -4012
WARNING. Abnormal entry count found on day 2016-12-30: -3684
WARNING. Abnormal entry count found on day 2016-12-24: 21250
WARNING. Abnormal entry count found on day 2016-12-25: -2987
WARNING. Abnormal entry count found on day 2016-12-26: -2862
WARNING. Abnormal entry count found on day 2016-12-27: -3551
WARNING. Abnormal entry count found on day 2016-12-28: -4154
WARNING. Abnormal entry count found on day 2016-12-29: -4012
WARNING. Abnormal entry count found on day 2016-12-30: -3684
WARNING. Abnormal entry count found on day 2016-12-24: 21250
WARNING. Abnormal entry count found on day 2016-12-25: -2987
WARNING. Abnormal entry count found on day 2016-12-26: -2862
WARNING. Abnormal entry count found on day 2016-12-27: -3551
WARNING. Abnormal entry count found on day 2016-12-28: -4154
WARNING. Abnormal entry count found on day 2016-12-29: -4012
WARNING. Abnormal entry count found on day 2016-12-30: -3684
Processing turnstile ('R646', 'R110', '01-00-00', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -14967
WARNING. Abnormal entry count found on day 2016-12-03: -14967
WARNING. Abnormal entry count found on day 2016-12-10: -13685
WARNING. Abnormal entry count found on day 2016-12-10: -13685
WARNING. Abnormal entry count found on day 2016-12-17: -12552
WARNING. Abnormal entry count found on day 2016-12-17: -12552
WARNING. Abnormal entry count found on day 2016-12-24: -7934
WARNING. Abnormal entry count found on day 2016-12-24: -7934
Processing turnstile ('N420B', 'R317', '00-03-02', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -466
WARNING. Abnormal entry count found on day 2016-12-03: -466
WARNING. Abnormal entry count found on day 2016-12-10: -577
WARNING. Abnormal entry count found on day 2016-12-10: -577
WARNING. Abnormal entry count found on day 2016-12-17: -546
WARNING. Abnormal entry count found on day 2016-12-17: -546
WARNING. Abnormal entry count found on day 2016-12-24: -365
WARNING. Abnormal entry count found on day 2016-12-24: -365
Processing turnstile ('PTH05', 'R543', '00-00-02', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -8933
WARNING. Abnormal entry count found on day 2016-12-03: -8933
WARNING. Abnormal entry count found on day 2016-12-10: -8669
WARNING. Abnormal entry count found on day 2016-12-10: -8669
WARNING. Abnormal entry count found on day 2016-12-17: -7590
WARNING. Abnormal entry count found on day 2016-12-17: -7590
WARNING. Abnormal entry count found on day 2016-12-24: -5257
WARNING. Abnormal entry count found on day 2016-12-24: -5257
Processing turnstile ('R308', 'R344', '00-00-00', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5451
WARNING. Abnormal entry count found on day 2016-12-03: -5451
WARNING. Abnormal entry count found on day 2016-12-10: -5377
WARNING. Abnormal entry count found on day 2016-12-10: -5377
WARNING. Abnormal entry count found on day 2016-12-17: -5158
WARNING. Abnormal entry count found on day 2016-12-17: -5158
WARNING. Abnormal entry count found on day 2016-12-24: -3792
WARNING. Abnormal entry count found on day 2016-12-24: -3792
Processing turnstile ('R258', 'R132', '00-06-01', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11656
WARNING. Abnormal entry count found on day 2016-12-03: -11656
WARNING. Abnormal entry count found on day 2016-12-10: -11541
WARNING. Abnormal entry count found on day 2016-12-10: -11541
WARNING. Abnormal entry count found on day 2016-12-17: -10859
WARNING. Abnormal entry count found on day 2016-12-17: -10859
WARNING. Abnormal entry count found on day 2016-12-24: -7652
WARNING. Abnormal entry count found on day 2016-12-24: -7652
Processing turnstile ('R622', 'R123', '00-00-02', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -728
WARNING. Abnormal entry count found on day 2016-12-03: -728
WARNING. Abnormal entry count found on day 2016-12-10: -8139
WARNING. Abnormal entry count found on day 2016-12-10: -8139
WARNING. Abnormal entry count found on day 2016-12-17: -4337
WARNING. Abnormal entry count found on day 2016-12-17: -4337
WARNING. Abnormal entry count found on day 2016-12-24: -4703
WARNING. Abnormal entry count found on day 2016-12-24: -4703
Processing turnstile ('N408A', 'R256', '00-03-01', 'NASSAU ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4329
WARNING. Abnormal entry count found on day 2016-12-03: -4329
WARNING. Abnormal entry count found on day 2016-12-10: -4230
WARNING. Abnormal entry count found on day 2016-12-10: -4230
WARNING. Abnormal entry count found on day 2016-12-17: -3904
WARNING. Abnormal entry count found on day 2016-12-17: -3904
WARNING. Abnormal entry count found on day 2016-12-24: -2665
WARNING. Abnormal entry count found on day 2016-12-24: -2665
Processing turnstile ('B020', 'R263', '00-00-01', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -4512
WARNING. Abnormal entry count found on day 2016-12-03: -4512
WARNING. Abnormal entry count found on day 2016-12-10: -4175
WARNING. Abnormal entry count found on day 2016-12-10: -4175
WARNING. Abnormal entry count found on day 2016-12-17: -3572
WARNING. Abnormal entry count found on day 2016-12-17: -3572
WARNING. Abnormal entry count found on day 2016-12-24: -2697
WARNING. Abnormal entry count found on day 2016-12-24: -2697
Processing turnstile ('R147', 'R033', '04-00-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17314
WARNING. Abnormal entry count found on day 2016-12-03: -17314
WARNING. Abnormal entry count found on day 2016-12-10: -15888
WARNING. Abnormal entry count found on day 2016-12-10: -15888
WARNING. Abnormal entry count found on day 2016-12-17: -17309
WARNING. Abnormal entry count found on day 2016-12-17: -17309
WARNING. Abnormal entry count found on day 2016-12-24: -19427
WARNING. Abnormal entry count found on day 2016-12-24: -19427
Processing turnstile ('R514', 'R094', '00-03-00', 'ASTORIA BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -16160
WARNING. Abnormal entry count found on day 2016-12-03: -16160
WARNING. Abnormal entry count found on day 2016-12-10: -14877
WARNING. Abnormal entry count found on day 2016-12-10: -14877
WARNING. Abnormal entry count found on day 2016-12-17: -13902
WARNING. Abnormal entry count found on day 2016-12-17: -13902
WARNING. Abnormal entry count found on day 2016-12-24: -9990
WARNING. Abnormal entry count found on day 2016-12-24: -9990
Processing turnstile ('N051', 'R084', '02-00-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -37219
WARNING. Abnormal entry count found on day 2016-12-03: -37219
WARNING. Abnormal entry count found on day 2016-12-10: -35190
WARNING. Abnormal entry count found on day 2016-12-10: -35190
WARNING. Abnormal entry count found on day 2016-12-17: -36745
WARNING. Abnormal entry count found on day 2016-12-17: -36745
WARNING. Abnormal entry count found on day 2016-12-24: -23990
WARNING. Abnormal entry count found on day 2016-12-24: -23990
Processing turnstile ('R413', 'R325', '00-05-01', 'WHITLOCK AV')
Processing turnstile ('N090', 'R139', '01-00-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1764
WARNING. Abnormal entry count found on day 2016-12-03: -1764
WARNING. Abnormal entry count found on day 2016-12-10: -1883
WARNING. Abnormal entry count found on day 2016-12-10: -1883
WARNING. Abnormal entry count found on day 2016-12-17: -1613
WARNING. Abnormal entry count found on day 2016-12-17: -1613
WARNING. Abnormal entry count found on day 2016-12-24: -1221
WARNING. Abnormal entry count found on day 2016-12-24: -1221
Processing turnstile ('N505', 'R022', '02-00-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12671
WARNING. Abnormal entry count found on day 2016-12-03: -12671
WARNING. Abnormal entry count found on day 2016-12-10: -13294
WARNING. Abnormal entry count found on day 2016-12-10: -13294
WARNING. Abnormal entry count found on day 2016-12-17: -11757
WARNING. Abnormal entry count found on day 2016-12-17: -11757
WARNING. Abnormal entry count found on day 2016-12-24: -8797
WARNING. Abnormal entry count found on day 2016-12-24: -8797
Processing turnstile ('N181A', 'R464', '00-06-01', 'AQUEDUCT RACETR')
WARNING. Abnormal entry count found on day 2016-12-03: -3356
WARNING. Abnormal entry count found on day 2016-12-03: -3356
WARNING. Abnormal entry count found on day 2016-12-10: -3112
WARNING. Abnormal entry count found on day 2016-12-10: -3112
WARNING. Abnormal entry count found on day 2016-12-17: -2868
WARNING. Abnormal entry count found on day 2016-12-17: -2868
WARNING. Abnormal entry count found on day 2016-12-24: -2993
WARNING. Abnormal entry count found on day 2016-12-24: -2993
Processing turnstile ('N212', 'R253', '01-06-00', '174-175 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -154
WARNING. Abnormal entry count found on day 2016-12-03: -154
WARNING. Abnormal entry count found on day 2016-12-10: -135
WARNING. Abnormal entry count found on day 2016-12-10: -135
WARNING. Abnormal entry count found on day 2016-12-17: -129
WARNING. Abnormal entry count found on day 2016-12-17: -129
WARNING. Abnormal entry count found on day 2016-12-24: -137
WARNING. Abnormal entry count found on day 2016-12-24: -137
Processing turnstile ('R608', 'R056', '00-00-01', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8178
WARNING. Abnormal entry count found on day 2016-12-03: -8178
WARNING. Abnormal entry count found on day 2016-12-10: -7895
WARNING. Abnormal entry count found on day 2016-12-10: -7895
WARNING. Abnormal entry count found on day 2016-12-17: -7908
WARNING. Abnormal entry count found on day 2016-12-17: -7908
WARNING. Abnormal entry count found on day 2016-12-24: -5488
WARNING. Abnormal entry count found on day 2016-12-24: -5488
Processing turnstile ('R532H', 'R328', '02-05-01', 'METS-WILLETS PT')
Processing turnstile ('N225', 'R157', '01-00-02', 'NORWOOD 205 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4735
WARNING. Abnormal entry count found on day 2016-12-03: -4735
WARNING. Abnormal entry count found on day 2016-12-10: -4282
WARNING. Abnormal entry count found on day 2016-12-10: -4282
WARNING. Abnormal entry count found on day 2016-12-17: -2835
WARNING. Abnormal entry count found on day 2016-12-17: -2835
WARNING. Abnormal entry count found on day 2016-12-24: -3367
WARNING. Abnormal entry count found on day 2016-12-24: -3367
Processing turnstile ('N013', 'R035', '02-00-02', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5591
WARNING. Abnormal entry count found on day 2016-12-03: -5591
WARNING. Abnormal entry count found on day 2016-12-10: -5348
WARNING. Abnormal entry count found on day 2016-12-10: -5348
WARNING. Abnormal entry count found on day 2016-12-17: -5313
WARNING. Abnormal entry count found on day 2016-12-17: -5313
WARNING. Abnormal entry count found on day 2016-12-24: -3718
WARNING. Abnormal entry count found on day 2016-12-24: -3718
Processing turnstile ('R318', 'R408', '00-00-02', 'SIMPSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13555
WARNING. Abnormal entry count found on day 2016-12-03: -13555
WARNING. Abnormal entry count found on day 2016-12-10: -15803
WARNING. Abnormal entry count found on day 2016-12-10: -15803
WARNING. Abnormal entry count found on day 2016-12-17: -16205
WARNING. Abnormal entry count found on day 2016-12-17: -16205
WARNING. Abnormal entry count found on day 2016-12-24: -12650
WARNING. Abnormal entry count found on day 2016-12-24: -12650
Processing turnstile ('N503', 'R021', '00-00-02', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -10730
WARNING. Abnormal entry count found on day 2016-12-03: -10730
WARNING. Abnormal entry count found on day 2016-12-10: -10140
WARNING. Abnormal entry count found on day 2016-12-10: -10140
WARNING. Abnormal entry count found on day 2016-12-17: -10946
WARNING. Abnormal entry count found on day 2016-12-17: -10946
WARNING. Abnormal entry count found on day 2016-12-24: -9786
WARNING. Abnormal entry count found on day 2016-12-24: -9786
Processing turnstile ('R112A', 'R027', '03-00-02', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3699
WARNING. Abnormal entry count found on day 2016-12-03: -3699
WARNING. Abnormal entry count found on day 2016-12-10: -3663
WARNING. Abnormal entry count found on day 2016-12-10: -3663
WARNING. Abnormal entry count found on day 2016-12-17: -3061
WARNING. Abnormal entry count found on day 2016-12-17: -3061
WARNING. Abnormal entry count found on day 2016-12-24: -1527
WARNING. Abnormal entry count found on day 2016-12-24: -1527
Processing turnstile ('N419', 'R287', '00-00-01', 'CLASSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7101
WARNING. Abnormal entry count found on day 2016-12-03: -7101
WARNING. Abnormal entry count found on day 2016-12-10: -7182
WARNING. Abnormal entry count found on day 2016-12-10: -7182
WARNING. Abnormal entry count found on day 2016-12-17: -6191
WARNING. Abnormal entry count found on day 2016-12-17: -6191
WARNING. Abnormal entry count found on day 2016-12-24: -4393
WARNING. Abnormal entry count found on day 2016-12-24: -4393
Processing turnstile ('H012', 'R268', '01-06-00', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-04: -3747
WARNING. Abnormal entry count found on day 2016-12-04: -3747
WARNING. Abnormal entry count found on day 2016-12-10: -4893
WARNING. Abnormal entry count found on day 2016-12-10: -4893
WARNING. Abnormal entry count found on day 2016-12-17: -4836
WARNING. Abnormal entry count found on day 2016-12-17: -4836
WARNING. Abnormal entry count found on day 2016-12-24: -3509
WARNING. Abnormal entry count found on day 2016-12-24: -3509
Processing turnstile ('B015', 'R098', '01-03-01', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3054
WARNING. Abnormal entry count found on day 2016-12-03: -3054
WARNING. Abnormal entry count found on day 2016-12-10: -2770
WARNING. Abnormal entry count found on day 2016-12-10: -2770
WARNING. Abnormal entry count found on day 2016-12-17: -2560
WARNING. Abnormal entry count found on day 2016-12-17: -2560
WARNING. Abnormal entry count found on day 2016-12-24: -1684
WARNING. Abnormal entry count found on day 2016-12-24: -1684
Processing turnstile ('R415', 'R120', '00-05-00', 'MORISN AV/SNDVW')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
Processing turnstile ('R242A', 'R049', '02-03-01', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3607
WARNING. Abnormal entry count found on day 2016-12-03: -3607
WARNING. Abnormal entry count found on day 2016-12-10: -3291
WARNING. Abnormal entry count found on day 2016-12-10: -3291
WARNING. Abnormal entry count found on day 2016-12-17: -3150
WARNING. Abnormal entry count found on day 2016-12-17: -3150
WARNING. Abnormal entry count found on day 2016-12-24: -2342
WARNING. Abnormal entry count found on day 2016-12-24: -2342
Processing turnstile ('N110', 'R283', '00-00-01', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -435
WARNING. Abnormal entry count found on day 2016-12-03: -435
WARNING. Abnormal entry count found on day 2016-12-10: -405
WARNING. Abnormal entry count found on day 2016-12-10: -405
WARNING. Abnormal entry count found on day 2016-12-17: -490
WARNING. Abnormal entry count found on day 2016-12-17: -490
WARNING. Abnormal entry count found on day 2016-12-24: -397
WARNING. Abnormal entry count found on day 2016-12-24: -397
Processing turnstile ('R217A', 'R194', '00-03-02', 'BLEECKER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6638
WARNING. Abnormal entry count found on day 2016-12-03: -6638
WARNING. Abnormal entry count found on day 2016-12-10: -6697
WARNING. Abnormal entry count found on day 2016-12-10: -6697
WARNING. Abnormal entry count found on day 2016-12-17: -6151
WARNING. Abnormal entry count found on day 2016-12-17: -6151
WARNING. Abnormal entry count found on day 2016-12-24: -3969
WARNING. Abnormal entry count found on day 2016-12-24: -3969
Processing turnstile ('N083', 'R138', '01-05-01', 'W 4 ST-WASH SQ')
Processing turnstile ('N185', 'R417', '00-00-00', 'BEACH 98 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1092
WARNING. Abnormal entry count found on day 2016-12-03: -1092
WARNING. Abnormal entry count found on day 2016-12-10: -1066
WARNING. Abnormal entry count found on day 2016-12-10: -1066
WARNING. Abnormal entry count found on day 2016-12-17: -968
WARNING. Abnormal entry count found on day 2016-12-17: -968
WARNING. Abnormal entry count found on day 2016-12-24: -563
WARNING. Abnormal entry count found on day 2016-12-24: -563
Processing turnstile ('J035', 'R008', '00-00-02', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2930
WARNING. Abnormal entry count found on day 2016-12-03: -2930
WARNING. Abnormal entry count found on day 2016-12-10: -2922
WARNING. Abnormal entry count found on day 2016-12-10: -2922
WARNING. Abnormal entry count found on day 2016-12-17: -2874
WARNING. Abnormal entry count found on day 2016-12-17: -2874
WARNING. Abnormal entry count found on day 2016-12-24: -2040
WARNING. Abnormal entry count found on day 2016-12-24: -2040
Processing turnstile ('G009', 'R151', '02-00-05', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -14433
WARNING. Abnormal entry count found on day 2016-12-03: -14433
WARNING. Abnormal entry count found on day 2016-12-10: -14146
WARNING. Abnormal entry count found on day 2016-12-10: -14146
WARNING. Abnormal entry count found on day 2016-12-17: -13970
WARNING. Abnormal entry count found on day 2016-12-17: -13970
WARNING. Abnormal entry count found on day 2016-12-24: -11595
WARNING. Abnormal entry count found on day 2016-12-24: -11595
Processing turnstile ('N077', 'R111', '02-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8412
WARNING. Abnormal entry count found on day 2016-12-03: -8412
WARNING. Abnormal entry count found on day 2016-12-10: -8233
WARNING. Abnormal entry count found on day 2016-12-10: -8233
WARNING. Abnormal entry count found on day 2016-12-17: -7372
WARNING. Abnormal entry count found on day 2016-12-17: -7372
WARNING. Abnormal entry count found on day 2016-12-24: -5259
WARNING. Abnormal entry count found on day 2016-12-24: -5259
Processing turnstile ('R331', 'R364', '00-00-03', 'GUN HILL RD')
WARNING. Abnormal entry count found on day 2016-12-03: -11090
WARNING. Abnormal entry count found on day 2016-12-03: -11090
WARNING. Abnormal entry count found on day 2016-12-10: -10554
WARNING. Abnormal entry count found on day 2016-12-10: -10554
WARNING. Abnormal entry count found on day 2016-12-17: -9986
WARNING. Abnormal entry count found on day 2016-12-17: -9986
WARNING. Abnormal entry count found on day 2016-12-24: -6933
WARNING. Abnormal entry count found on day 2016-12-24: -6933
Processing turnstile ('C025', 'R215', '00-03-02', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -21134
WARNING. Abnormal entry count found on day 2016-12-03: -21134
WARNING. Abnormal entry count found on day 2016-12-10: -20424
WARNING. Abnormal entry count found on day 2016-12-10: -20424
WARNING. Abnormal entry count found on day 2016-12-17: -21793
WARNING. Abnormal entry count found on day 2016-12-17: -21793
WARNING. Abnormal entry count found on day 2016-12-24: -17333
WARNING. Abnormal entry count found on day 2016-12-24: -17333
Processing turnstile ('B031', 'R172', '01-00-02', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -2611
WARNING. Abnormal entry count found on day 2016-12-03: -2611
WARNING. Abnormal entry count found on day 2016-12-10: -2569
WARNING. Abnormal entry count found on day 2016-12-10: -2569
WARNING. Abnormal entry count found on day 2016-12-17: -2547
WARNING. Abnormal entry count found on day 2016-12-17: -2547
WARNING. Abnormal entry count found on day 2016-12-24: -2080
WARNING. Abnormal entry count found on day 2016-12-24: -2080
Processing turnstile ('PTH19', 'R549', '02-02-03', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1573
WARNING. Abnormal entry count found on day 2016-12-03: -1573
WARNING. Abnormal entry count found on day 2016-12-10: -1561
WARNING. Abnormal entry count found on day 2016-12-10: -1561
WARNING. Abnormal entry count found on day 2016-12-17: -1144
WARNING. Abnormal entry count found on day 2016-12-17: -1144
WARNING. Abnormal entry count found on day 2016-12-24: -570
WARNING. Abnormal entry count found on day 2016-12-24: -570
Processing turnstile ('R238', 'R046', '00-05-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -28
WARNING. Abnormal entry count found on day 2016-12-03: -28
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-17: -20
WARNING. Abnormal entry count found on day 2016-12-17: -20
WARNING. Abnormal entry count found on day 2016-12-24: -7
WARNING. Abnormal entry count found on day 2016-12-24: -7
Processing turnstile ('R516', 'R291', '00-00-01', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9095
WARNING. Abnormal entry count found on day 2016-12-03: -9095
WARNING. Abnormal entry count found on day 2016-12-10: -6733
WARNING. Abnormal entry count found on day 2016-12-10: -6733
WARNING. Abnormal entry count found on day 2016-12-17: -4896
WARNING. Abnormal entry count found on day 2016-12-17: -4896
WARNING. Abnormal entry count found on day 2016-12-24: -2079
WARNING. Abnormal entry count found on day 2016-12-24: -2079
Processing turnstile ('N124', 'R103', '00-00-03', 'BROADWAY JCT')
WARNING. Abnormal entry count found on day 2016-12-03: -3515
WARNING. Abnormal entry count found on day 2016-12-03: -3515
WARNING. Abnormal entry count found on day 2016-12-10: -3484
WARNING. Abnormal entry count found on day 2016-12-10: -3484
WARNING. Abnormal entry count found on day 2016-12-17: -3275
WARNING. Abnormal entry count found on day 2016-12-17: -3275
WARNING. Abnormal entry count found on day 2016-12-24: -2541
WARNING. Abnormal entry count found on day 2016-12-24: -2541
Processing turnstile ('R523', 'R147', '00-00-00', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -4409
WARNING. Abnormal entry count found on day 2016-12-03: -4409
WARNING. Abnormal entry count found on day 2016-12-10: 12983
WARNING. Abnormal entry count found on day 2016-12-10: -14971
WARNING. Abnormal entry count found on day 2016-12-10: -14971
WARNING. Abnormal entry count found on day 2016-12-17: -14612
WARNING. Abnormal entry count found on day 2016-12-17: -14612
WARNING. Abnormal entry count found on day 2016-12-24: -12771
WARNING. Abnormal entry count found on day 2016-12-24: -12771
Processing turnstile ('R147', 'R033', '04-00-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -21093
WARNING. Abnormal entry count found on day 2016-12-03: -21093
WARNING. Abnormal entry count found on day 2016-12-10: -19845
WARNING. Abnormal entry count found on day 2016-12-10: -19845
WARNING. Abnormal entry count found on day 2016-12-17: -22297
WARNING. Abnormal entry count found on day 2016-12-17: -22297
WARNING. Abnormal entry count found on day 2016-12-24: -23152
WARNING. Abnormal entry count found on day 2016-12-24: -23152
Processing turnstile ('A054', 'R227', '01-00-02', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1908
WARNING. Abnormal entry count found on day 2016-12-03: -1908
WARNING. Abnormal entry count found on day 2016-12-10: -1904
WARNING. Abnormal entry count found on day 2016-12-10: -1904
WARNING. Abnormal entry count found on day 2016-12-17: -1852
WARNING. Abnormal entry count found on day 2016-12-17: -1852
WARNING. Abnormal entry count found on day 2016-12-24: -1967
WARNING. Abnormal entry count found on day 2016-12-24: -1967
Processing turnstile ('R124', 'R290', '03-00-02', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2394
WARNING. Abnormal entry count found on day 2016-12-03: -2394
WARNING. Abnormal entry count found on day 2016-12-10: -2477
WARNING. Abnormal entry count found on day 2016-12-10: -2477
WARNING. Abnormal entry count found on day 2016-12-17: -1782
WARNING. Abnormal entry count found on day 2016-12-17: -1782
WARNING. Abnormal entry count found on day 2016-12-24: -1400
WARNING. Abnormal entry count found on day 2016-12-24: -1400
Processing turnstile ('N324', 'R018', '00-03-04', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -11685
WARNING. Abnormal entry count found on day 2016-12-03: -11685
WARNING. Abnormal entry count found on day 2016-12-10: -11507
WARNING. Abnormal entry count found on day 2016-12-10: -11507
WARNING. Abnormal entry count found on day 2016-12-17: -12344
WARNING. Abnormal entry count found on day 2016-12-17: -12344
WARNING. Abnormal entry count found on day 2016-12-24: -9988
WARNING. Abnormal entry count found on day 2016-12-24: -9988
Processing turnstile ('N401', 'R360', '00-00-00', '21 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3525
WARNING. Abnormal entry count found on day 2016-12-03: -3525
WARNING. Abnormal entry count found on day 2016-12-10: -3554
WARNING. Abnormal entry count found on day 2016-12-10: -3554
WARNING. Abnormal entry count found on day 2016-12-17: -3310
WARNING. Abnormal entry count found on day 2016-12-17: -3310
WARNING. Abnormal entry count found on day 2016-12-24: -2325
WARNING. Abnormal entry count found on day 2016-12-24: -2325
Processing turnstile ('R622', 'R123', '00-00-07', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9198
WARNING. Abnormal entry count found on day 2016-12-03: -9198
WARNING. Abnormal entry count found on day 2016-12-10: -8788
WARNING. Abnormal entry count found on day 2016-12-10: -8788
WARNING. Abnormal entry count found on day 2016-12-17: -7897
WARNING. Abnormal entry count found on day 2016-12-17: -7897
WARNING. Abnormal entry count found on day 2016-12-24: -4695
WARNING. Abnormal entry count found on day 2016-12-24: -4695
Processing turnstile ('R248', 'R178', '00-00-04', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18225
WARNING. Abnormal entry count found on day 2016-12-03: -18225
WARNING. Abnormal entry count found on day 2016-12-10: -19461
WARNING. Abnormal entry count found on day 2016-12-10: -19461
WARNING. Abnormal entry count found on day 2016-12-17: -15116
WARNING. Abnormal entry count found on day 2016-12-17: -15116
WARNING. Abnormal entry count found on day 2016-12-24: -10945
WARNING. Abnormal entry count found on day 2016-12-24: -10945
Processing turnstile ('R116', 'R030', '00-06-03', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -26654
WARNING. Abnormal entry count found on day 2016-12-03: -26654
WARNING. Abnormal entry count found on day 2016-12-10: -24923
WARNING. Abnormal entry count found on day 2016-12-10: -24923
WARNING. Abnormal entry count found on day 2016-12-17: -20362
WARNING. Abnormal entry count found on day 2016-12-17: -20362
WARNING. Abnormal entry count found on day 2016-12-24: -11597
WARNING. Abnormal entry count found on day 2016-12-24: -11597
Processing turnstile ('G001', 'R151', '00-00-04', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -2033
WARNING. Abnormal entry count found on day 2016-12-03: -2033
WARNING. Abnormal entry count found on day 2016-12-10: -1920
WARNING. Abnormal entry count found on day 2016-12-10: -1920
WARNING. Abnormal entry count found on day 2016-12-17: -1988
WARNING. Abnormal entry count found on day 2016-12-17: -1988
WARNING. Abnormal entry count found on day 2016-12-24: -1968
WARNING. Abnormal entry count found on day 2016-12-24: -1968
Processing turnstile ('JFK03', 'R536', '00-03-01', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-03: -4779
WARNING. Abnormal entry count found on day 2016-12-03: -4779
WARNING. Abnormal entry count found on day 2016-12-10: -5749
WARNING. Abnormal entry count found on day 2016-12-10: -5749
WARNING. Abnormal entry count found on day 2016-12-17: -7884
WARNING. Abnormal entry count found on day 2016-12-17: -7884
WARNING. Abnormal entry count found on day 2016-12-24: -6110
WARNING. Abnormal entry count found on day 2016-12-24: -6110
Processing turnstile ('N317', 'R267', '02-06-00', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -553
WARNING. Abnormal entry count found on day 2016-12-03: -553
WARNING. Abnormal entry count found on day 2016-12-10: -542
WARNING. Abnormal entry count found on day 2016-12-10: -542
WARNING. Abnormal entry count found on day 2016-12-17: -638
WARNING. Abnormal entry count found on day 2016-12-17: -638
WARNING. Abnormal entry count found on day 2016-12-24: -470
WARNING. Abnormal entry count found on day 2016-12-24: -470
Processing turnstile ('C023', 'R213', '00-00-00', 'BAY RIDGE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10561
WARNING. Abnormal entry count found on day 2016-12-03: -10561
WARNING. Abnormal entry count found on day 2016-12-10: -9999
WARNING. Abnormal entry count found on day 2016-12-10: -9999
WARNING. Abnormal entry count found on day 2016-12-17: -9988
WARNING. Abnormal entry count found on day 2016-12-17: -9988
WARNING. Abnormal entry count found on day 2016-12-24: -7359
WARNING. Abnormal entry count found on day 2016-12-24: -7359
Processing turnstile ('R206', 'R014', '02-00-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4365
WARNING. Abnormal entry count found on day 2016-12-03: -4365
WARNING. Abnormal entry count found on day 2016-12-10: -4198
WARNING. Abnormal entry count found on day 2016-12-10: -4198
WARNING. Abnormal entry count found on day 2016-12-17: -4353
WARNING. Abnormal entry count found on day 2016-12-17: -4353
WARNING. Abnormal entry count found on day 2016-12-24: -4057
WARNING. Abnormal entry count found on day 2016-12-24: -4057
Processing turnstile ('N049', 'R084', '01-02-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -15959
WARNING. Abnormal entry count found on day 2016-12-03: -15959
WARNING. Abnormal entry count found on day 2016-12-10: -14719
WARNING. Abnormal entry count found on day 2016-12-10: -14719
WARNING. Abnormal entry count found on day 2016-12-17: -13600
WARNING. Abnormal entry count found on day 2016-12-17: -13600
WARNING. Abnormal entry count found on day 2016-12-24: -9521
WARNING. Abnormal entry count found on day 2016-12-24: -9521
Processing turnstile ('N009', 'R174', '01-00-02', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9404
WARNING. Abnormal entry count found on day 2016-12-03: -9404
WARNING. Abnormal entry count found on day 2016-12-10: -9572
WARNING. Abnormal entry count found on day 2016-12-10: -9572
WARNING. Abnormal entry count found on day 2016-12-17: -9100
WARNING. Abnormal entry count found on day 2016-12-17: -9100
WARNING. Abnormal entry count found on day 2016-12-24: -6611
WARNING. Abnormal entry count found on day 2016-12-24: -6611
Processing turnstile ('N605', 'R024', '00-00-00', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -9846
WARNING. Abnormal entry count found on day 2016-12-03: -9846
WARNING. Abnormal entry count found on day 2016-12-10: -9592
WARNING. Abnormal entry count found on day 2016-12-10: -9592
WARNING. Abnormal entry count found on day 2016-12-17: -9825
WARNING. Abnormal entry count found on day 2016-12-17: -9825
WARNING. Abnormal entry count found on day 2016-12-24: -9176
WARNING. Abnormal entry count found on day 2016-12-24: -9176
Processing turnstile ('R203', 'R043', '00-00-02', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9849
WARNING. Abnormal entry count found on day 2016-12-03: -9849
WARNING. Abnormal entry count found on day 2016-12-10: -9556
WARNING. Abnormal entry count found on day 2016-12-10: -9556
WARNING. Abnormal entry count found on day 2016-12-17: -8399
WARNING. Abnormal entry count found on day 2016-12-17: -8399
WARNING. Abnormal entry count found on day 2016-12-24: -5519
WARNING. Abnormal entry count found on day 2016-12-24: -5519
Processing turnstile ('R532H', 'R328', '02-06-00', 'METS-WILLETS PT')
Processing turnstile ('R533', 'R055', '00-00-03', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -4447
WARNING. Abnormal entry count found on day 2016-12-03: -4447
WARNING. Abnormal entry count found on day 2016-12-10: -4219
WARNING. Abnormal entry count found on day 2016-12-10: -4219
WARNING. Abnormal entry count found on day 2016-12-17: -4603
WARNING. Abnormal entry count found on day 2016-12-17: -4603
WARNING. Abnormal entry count found on day 2016-12-24: -4366
WARNING. Abnormal entry count found on day 2016-12-24: -4366
Processing turnstile ('N539A', 'R288', '00-06-01', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9964
WARNING. Abnormal entry count found on day 2016-12-03: -9964
WARNING. Abnormal entry count found on day 2016-12-10: -9649
WARNING. Abnormal entry count found on day 2016-12-10: -9649
WARNING. Abnormal entry count found on day 2016-12-17: -9499
WARNING. Abnormal entry count found on day 2016-12-17: -9499
WARNING. Abnormal entry count found on day 2016-12-24: -5376
WARNING. Abnormal entry count found on day 2016-12-24: -5376
Processing turnstile ('R173', 'R159', '00-03-00', '116 ST-COLUMBIA')
WARNING. Abnormal entry count found on day 2016-12-03: -18533
WARNING. Abnormal entry count found on day 2016-12-03: -18533
WARNING. Abnormal entry count found on day 2016-12-10: -17388
WARNING. Abnormal entry count found on day 2016-12-10: -17388
WARNING. Abnormal entry count found on day 2016-12-17: -15563
WARNING. Abnormal entry count found on day 2016-12-17: -15563
WARNING. Abnormal entry count found on day 2016-12-24: -6349
WARNING. Abnormal entry count found on day 2016-12-24: -6349
Processing turnstile ('A055', 'R227', '00-00-01', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1721
WARNING. Abnormal entry count found on day 2016-12-03: -1721
WARNING. Abnormal entry count found on day 2016-12-10: -1666
WARNING. Abnormal entry count found on day 2016-12-10: -1666
WARNING. Abnormal entry count found on day 2016-12-17: -1535
WARNING. Abnormal entry count found on day 2016-12-17: -1535
WARNING. Abnormal entry count found on day 2016-12-24: -1228
WARNING. Abnormal entry count found on day 2016-12-24: -1228
Processing turnstile ('H001', 'R175', '00-00-03', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12610
WARNING. Abnormal entry count found on day 2016-12-03: -12610
WARNING. Abnormal entry count found on day 2016-12-10: -13233
WARNING. Abnormal entry count found on day 2016-12-10: -13233
WARNING. Abnormal entry count found on day 2016-12-17: -12028
WARNING. Abnormal entry count found on day 2016-12-17: -12028
WARNING. Abnormal entry count found on day 2016-12-24: -10541
WARNING. Abnormal entry count found on day 2016-12-24: -10541
Processing turnstile ('R127', 'R105', '00-03-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15006
WARNING. Abnormal entry count found on day 2016-12-03: -15006
WARNING. Abnormal entry count found on day 2016-12-10: -14958
WARNING. Abnormal entry count found on day 2016-12-10: -14958
WARNING. Abnormal entry count found on day 2016-12-17: -13875
WARNING. Abnormal entry count found on day 2016-12-17: -13875
WARNING. Abnormal entry count found on day 2016-12-24: -10538
WARNING. Abnormal entry count found on day 2016-12-24: -10538
Processing turnstile ('PTH18', 'R549', '01-01-00', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -5706
WARNING. Abnormal entry count found on day 2016-12-03: -5706
WARNING. Abnormal entry count found on day 2016-12-10: -5228
WARNING. Abnormal entry count found on day 2016-12-10: -5228
WARNING. Abnormal entry count found on day 2016-12-17: -5889
WARNING. Abnormal entry count found on day 2016-12-17: -5889
WARNING. Abnormal entry count found on day 2016-12-24: -4406
WARNING. Abnormal entry count found on day 2016-12-24: -4406
Processing turnstile ('C016', 'R278', '00-00-01', '25 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4691
WARNING. Abnormal entry count found on day 2016-12-03: -4691
WARNING. Abnormal entry count found on day 2016-12-10: -4374
WARNING. Abnormal entry count found on day 2016-12-10: -4374
WARNING. Abnormal entry count found on day 2016-12-17: -4143
WARNING. Abnormal entry count found on day 2016-12-17: -4143
WARNING. Abnormal entry count found on day 2016-12-24: -3263
WARNING. Abnormal entry count found on day 2016-12-24: -3263
Processing turnstile ('N091', 'R029', '02-05-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2868
WARNING. Abnormal entry count found on day 2016-12-03: -2868
WARNING. Abnormal entry count found on day 2016-12-10: -2622
WARNING. Abnormal entry count found on day 2016-12-10: -2622
WARNING. Abnormal entry count found on day 2016-12-17: -2394
WARNING. Abnormal entry count found on day 2016-12-17: -2394
WARNING. Abnormal entry count found on day 2016-12-24: -1833
WARNING. Abnormal entry count found on day 2016-12-24: -1833
Processing turnstile ('R252', 'R180', '00-03-01', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10431
WARNING. Abnormal entry count found on day 2016-12-03: -10431
WARNING. Abnormal entry count found on day 2016-12-10: -5789
WARNING. Abnormal entry count found on day 2016-12-10: -5789
WARNING. Abnormal entry count found on day 2016-12-17: -8194
WARNING. Abnormal entry count found on day 2016-12-17: -8194
WARNING. Abnormal entry count found on day 2016-12-24: -5283
WARNING. Abnormal entry count found on day 2016-12-24: -5283
Processing turnstile ('R238A', 'R046', '02-03-01', 'GRD CNTRL-42 ST')
Processing turnstile ('N306', 'R017', '00-00-01', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -6250
WARNING. Abnormal entry count found on day 2016-12-03: -6250
WARNING. Abnormal entry count found on day 2016-12-10: -6088
WARNING. Abnormal entry count found on day 2016-12-10: -6088
WARNING. Abnormal entry count found on day 2016-12-17: -5969
WARNING. Abnormal entry count found on day 2016-12-17: -5969
WARNING. Abnormal entry count found on day 2016-12-24: -4124
WARNING. Abnormal entry count found on day 2016-12-24: -4124
Processing turnstile ('N529', 'R257', '00-00-00', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -18926
WARNING. Abnormal entry count found on day 2016-12-03: -18926
WARNING. Abnormal entry count found on day 2016-12-10: -18072
WARNING. Abnormal entry count found on day 2016-12-10: -18072
WARNING. Abnormal entry count found on day 2016-12-17: -16922
WARNING. Abnormal entry count found on day 2016-12-17: -16922
WARNING. Abnormal entry count found on day 2016-12-24: -13968
WARNING. Abnormal entry count found on day 2016-12-24: -13968
Processing turnstile ('N063A', 'R011', '00-00-04', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-04: -2126
WARNING. Abnormal entry count found on day 2016-12-05: -1475
WARNING. Abnormal entry count found on day 2016-12-06: -4428
WARNING. Abnormal entry count found on day 2016-12-07: -4143
WARNING. Abnormal entry count found on day 2016-12-08: -4054
WARNING. Abnormal entry count found on day 2016-12-09: -3845
WARNING. Abnormal entry count found on day 2016-12-03: 20071
WARNING. Abnormal entry count found on day 2016-12-04: -2126
WARNING. Abnormal entry count found on day 2016-12-05: -1475
WARNING. Abnormal entry count found on day 2016-12-06: -4428
WARNING. Abnormal entry count found on day 2016-12-07: -4143
WARNING. Abnormal entry count found on day 2016-12-08: -4054
WARNING. Abnormal entry count found on day 2016-12-09: -3845
WARNING. Abnormal entry count found on day 2016-12-03: 20071
WARNING. Abnormal entry count found on day 2016-12-04: -2126
WARNING. Abnormal entry count found on day 2016-12-05: -1475
WARNING. Abnormal entry count found on day 2016-12-06: -4428
WARNING. Abnormal entry count found on day 2016-12-07: -4143
WARNING. Abnormal entry count found on day 2016-12-08: -4054
WARNING. Abnormal entry count found on day 2016-12-09: -3845
WARNING. Abnormal entry count found on day 2016-12-10: -4218
WARNING. Abnormal entry count found on day 2016-12-11: -2144
WARNING. Abnormal entry count found on day 2016-12-12: -1532
WARNING. Abnormal entry count found on day 2016-12-13: -4554
WARNING. Abnormal entry count found on day 2016-12-14: -4054
WARNING. Abnormal entry count found on day 2016-12-15: -4150
WARNING. Abnormal entry count found on day 2016-12-16: -4585
WARNING. Abnormal entry count found on day 2016-12-10: 21019
WARNING. Abnormal entry count found on day 2016-12-11: -2144
WARNING. Abnormal entry count found on day 2016-12-12: -1532
WARNING. Abnormal entry count found on day 2016-12-13: -4554
WARNING. Abnormal entry count found on day 2016-12-14: -4054
WARNING. Abnormal entry count found on day 2016-12-15: -4150
WARNING. Abnormal entry count found on day 2016-12-16: -4585
WARNING. Abnormal entry count found on day 2016-12-10: 21019
WARNING. Abnormal entry count found on day 2016-12-11: -2144
WARNING. Abnormal entry count found on day 2016-12-12: -1532
WARNING. Abnormal entry count found on day 2016-12-13: -4554
WARNING. Abnormal entry count found on day 2016-12-14: -4054
WARNING. Abnormal entry count found on day 2016-12-15: -4150
WARNING. Abnormal entry count found on day 2016-12-16: -4585
WARNING. Abnormal entry count found on day 2016-12-17: -4546
WARNING. Abnormal entry count found on day 2016-12-18: -2176
WARNING. Abnormal entry count found on day 2016-12-19: -1632
WARNING. Abnormal entry count found on day 2016-12-20: -4586
WARNING. Abnormal entry count found on day 2016-12-21: -4450
WARNING. Abnormal entry count found on day 2016-12-22: -4045
WARNING. Abnormal entry count found on day 2016-12-23: -3928
WARNING. Abnormal entry count found on day 2016-12-17: 20817
WARNING. Abnormal entry count found on day 2016-12-18: -2176
WARNING. Abnormal entry count found on day 2016-12-19: -1632
WARNING. Abnormal entry count found on day 2016-12-20: -4586
WARNING. Abnormal entry count found on day 2016-12-21: -4450
WARNING. Abnormal entry count found on day 2016-12-22: -4045
WARNING. Abnormal entry count found on day 2016-12-23: -3928
WARNING. Abnormal entry count found on day 2016-12-17: 20817
WARNING. Abnormal entry count found on day 2016-12-18: -2176
WARNING. Abnormal entry count found on day 2016-12-19: -1632
WARNING. Abnormal entry count found on day 2016-12-20: -4586
WARNING. Abnormal entry count found on day 2016-12-21: -4450
WARNING. Abnormal entry count found on day 2016-12-22: -4045
WARNING. Abnormal entry count found on day 2016-12-23: -3928
WARNING. Abnormal entry count found on day 2016-12-24: -3279
WARNING. Abnormal entry count found on day 2016-12-25: -1520
WARNING. Abnormal entry count found on day 2016-12-26: -1131
WARNING. Abnormal entry count found on day 2016-12-27: -2104
WARNING. Abnormal entry count found on day 2016-12-28: -3363
WARNING. Abnormal entry count found on day 2016-12-29: -3645
WARNING. Abnormal entry count found on day 2016-12-30: -3659
WARNING. Abnormal entry count found on day 2016-12-24: 15422
WARNING. Abnormal entry count found on day 2016-12-25: -1520
WARNING. Abnormal entry count found on day 2016-12-26: -1131
WARNING. Abnormal entry count found on day 2016-12-27: -2104
WARNING. Abnormal entry count found on day 2016-12-28: -3363
WARNING. Abnormal entry count found on day 2016-12-29: -3645
WARNING. Abnormal entry count found on day 2016-12-30: -3659
WARNING. Abnormal entry count found on day 2016-12-24: 15422
WARNING. Abnormal entry count found on day 2016-12-25: -1520
WARNING. Abnormal entry count found on day 2016-12-26: -1131
WARNING. Abnormal entry count found on day 2016-12-27: -2104
WARNING. Abnormal entry count found on day 2016-12-28: -3363
WARNING. Abnormal entry count found on day 2016-12-29: -3645
WARNING. Abnormal entry count found on day 2016-12-30: -3659
Processing turnstile ('N506', 'R022', '00-05-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -7785
WARNING. Abnormal entry count found on day 2016-12-03: -7785
WARNING. Abnormal entry count found on day 2016-12-10: -7929
WARNING. Abnormal entry count found on day 2016-12-10: -7929
WARNING. Abnormal entry count found on day 2016-12-17: -10953
WARNING. Abnormal entry count found on day 2016-12-17: -10953
WARNING. Abnormal entry count found on day 2016-12-24: -11506
WARNING. Abnormal entry count found on day 2016-12-24: -11506
Processing turnstile ('N603', 'R303', '00-00-00', '21 ST-QNSBRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -8175
WARNING. Abnormal entry count found on day 2016-12-03: -8175
WARNING. Abnormal entry count found on day 2016-12-10: -8577
WARNING. Abnormal entry count found on day 2016-12-10: -8577
WARNING. Abnormal entry count found on day 2016-12-17: -7880
WARNING. Abnormal entry count found on day 2016-12-17: -7880
WARNING. Abnormal entry count found on day 2016-12-24: -5947
WARNING. Abnormal entry count found on day 2016-12-24: -5947
Processing turnstile ('R634', 'R069', '00-03-02', 'NEW LOTS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15869
WARNING. Abnormal entry count found on day 2016-12-03: -15869
WARNING. Abnormal entry count found on day 2016-12-10: -11882
WARNING. Abnormal entry count found on day 2016-12-10: -11882
WARNING. Abnormal entry count found on day 2016-12-17: -11771
WARNING. Abnormal entry count found on day 2016-12-17: -11771
WARNING. Abnormal entry count found on day 2016-12-24: -9551
WARNING. Abnormal entry count found on day 2016-12-24: -9551
Processing turnstile ('R161B', 'R452', '00-03-01', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19746
WARNING. Abnormal entry count found on day 2016-12-03: -19746
WARNING. Abnormal entry count found on day 2016-12-10: -19603
WARNING. Abnormal entry count found on day 2016-12-10: -19603
WARNING. Abnormal entry count found on day 2016-12-17: -16805
WARNING. Abnormal entry count found on day 2016-12-17: -16805
WARNING. Abnormal entry count found on day 2016-12-24: -12413
WARNING. Abnormal entry count found on day 2016-12-24: -12413
Processing turnstile ('R226', 'R131', '02-05-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4103
WARNING. Abnormal entry count found on day 2016-12-03: -4103
WARNING. Abnormal entry count found on day 2016-12-10: -3364
WARNING. Abnormal entry count found on day 2016-12-10: -3364
WARNING. Abnormal entry count found on day 2016-12-17: -3030
WARNING. Abnormal entry count found on day 2016-12-17: -3030
WARNING. Abnormal entry count found on day 2016-12-24: -1622
WARNING. Abnormal entry count found on day 2016-12-24: -1622
Processing turnstile ('H026', 'R137', '00-00-00', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -2917
WARNING. Abnormal entry count found on day 2016-12-03: -2917
WARNING. Abnormal entry count found on day 2016-12-10: -11286
WARNING. Abnormal entry count found on day 2016-12-10: -11286
WARNING. Abnormal entry count found on day 2016-12-17: -11614
WARNING. Abnormal entry count found on day 2016-12-17: -11614
WARNING. Abnormal entry count found on day 2016-12-24: -9616
WARNING. Abnormal entry count found on day 2016-12-24: -9616
Processing turnstile ('N316A', 'R267', '01-06-00', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3571
WARNING. Abnormal entry count found on day 2016-12-03: -3571
WARNING. Abnormal entry count found on day 2016-12-10: -3367
WARNING. Abnormal entry count found on day 2016-12-10: -3367
WARNING. Abnormal entry count found on day 2016-12-17: -3368
WARNING. Abnormal entry count found on day 2016-12-17: -3368
WARNING. Abnormal entry count found on day 2016-12-24: -2461
WARNING. Abnormal entry count found on day 2016-12-24: -2461
Processing turnstile ('N044', 'R187', '00-03-00', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -6659
WARNING. Abnormal entry count found on day 2016-12-03: -6659
WARNING. Abnormal entry count found on day 2016-12-10: -6716
WARNING. Abnormal entry count found on day 2016-12-10: -6716
WARNING. Abnormal entry count found on day 2016-12-17: -6607
WARNING. Abnormal entry count found on day 2016-12-17: -6607
WARNING. Abnormal entry count found on day 2016-12-24: -9053
WARNING. Abnormal entry count found on day 2016-12-24: -9053
Processing turnstile ('R302', 'R324', '01-00-03', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7741
WARNING. Abnormal entry count found on day 2016-12-03: -7741
WARNING. Abnormal entry count found on day 2016-12-10: -5733
WARNING. Abnormal entry count found on day 2016-12-10: -5733
WARNING. Abnormal entry count found on day 2016-12-18: -3485
WARNING. Abnormal entry count found on day 2016-12-18: -3485
WARNING. Abnormal entry count found on day 2016-12-24: -5671
WARNING. Abnormal entry count found on day 2016-12-24: -5671
Processing turnstile ('PTH05', 'R543', '00-01-07', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -3140
WARNING. Abnormal entry count found on day 2016-12-03: -3140
WARNING. Abnormal entry count found on day 2016-12-10: -3084
WARNING. Abnormal entry count found on day 2016-12-10: -3084
WARNING. Abnormal entry count found on day 2016-12-17: -2440
WARNING. Abnormal entry count found on day 2016-12-17: -2440
WARNING. Abnormal entry count found on day 2016-12-24: -1721
WARNING. Abnormal entry count found on day 2016-12-24: -1721
Processing turnstile ('N221', 'R155', '00-00-01', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3771
WARNING. Abnormal entry count found on day 2016-12-03: -3771
WARNING. Abnormal entry count found on day 2016-12-10: -4005
WARNING. Abnormal entry count found on day 2016-12-10: -4005
WARNING. Abnormal entry count found on day 2016-12-17: -3920
WARNING. Abnormal entry count found on day 2016-12-17: -3920
WARNING. Abnormal entry count found on day 2016-12-24: -3522
WARNING. Abnormal entry count found on day 2016-12-24: -3522
Processing turnstile ('R410', 'R450', '00-00-02', 'LONGWOOD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5803
WARNING. Abnormal entry count found on day 2016-12-03: -5803
WARNING. Abnormal entry count found on day 2016-12-10: -5727
WARNING. Abnormal entry count found on day 2016-12-10: -5727
WARNING. Abnormal entry count found on day 2016-12-17: -5301
WARNING. Abnormal entry count found on day 2016-12-17: -5301
WARNING. Abnormal entry count found on day 2016-12-24: -4229
WARNING. Abnormal entry count found on day 2016-12-24: -4229
Processing turnstile ('N330', 'R202', '00-00-01', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -10133
WARNING. Abnormal entry count found on day 2016-12-03: -10133
WARNING. Abnormal entry count found on day 2016-12-10: -10157
WARNING. Abnormal entry count found on day 2016-12-10: -10157
WARNING. Abnormal entry count found on day 2016-12-17: -10984
WARNING. Abnormal entry count found on day 2016-12-17: -10984
WARNING. Abnormal entry count found on day 2016-12-24: -8133
WARNING. Abnormal entry count found on day 2016-12-24: -8133
Processing turnstile ('N120A', 'R153', '01-00-01', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3778
WARNING. Abnormal entry count found on day 2016-12-03: -3778
WARNING. Abnormal entry count found on day 2016-12-10: -3882
WARNING. Abnormal entry count found on day 2016-12-10: -3882
WARNING. Abnormal entry count found on day 2016-12-17: -3517
WARNING. Abnormal entry count found on day 2016-12-17: -3517
WARNING. Abnormal entry count found on day 2016-12-24: -2785
WARNING. Abnormal entry count found on day 2016-12-24: -2785
Processing turnstile ('N062A', 'R010', '00-00-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -11215
WARNING. Abnormal entry count found on day 2016-12-03: -11215
WARNING. Abnormal entry count found on day 2016-12-10: -10151
WARNING. Abnormal entry count found on day 2016-12-10: -10151
WARNING. Abnormal entry count found on day 2016-12-17: -12829
WARNING. Abnormal entry count found on day 2016-12-17: -12829
WARNING. Abnormal entry count found on day 2016-12-24: -15843
WARNING. Abnormal entry count found on day 2016-12-24: -15843
Processing turnstile ('N319', 'R298', '01-06-01', 'NORTHERN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -514
WARNING. Abnormal entry count found on day 2016-12-03: -514
WARNING. Abnormal entry count found on day 2016-12-10: -405
WARNING. Abnormal entry count found on day 2016-12-10: -405
WARNING. Abnormal entry count found on day 2016-12-17: -431
WARNING. Abnormal entry count found on day 2016-12-17: -431
WARNING. Abnormal entry count found on day 2016-12-24: -379
WARNING. Abnormal entry count found on day 2016-12-24: -379
Processing turnstile ('N128', 'R200', '00-00-02', 'EUCLID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8868
WARNING. Abnormal entry count found on day 2016-12-03: -8868
WARNING. Abnormal entry count found on day 2016-12-10: -8924
WARNING. Abnormal entry count found on day 2016-12-10: -8924
WARNING. Abnormal entry count found on day 2016-12-17: -8311
WARNING. Abnormal entry count found on day 2016-12-17: -8311
WARNING. Abnormal entry count found on day 2016-12-24: -6197
WARNING. Abnormal entry count found on day 2016-12-24: -6197
Processing turnstile ('R262', 'R195', '03-03-02', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -7811
WARNING. Abnormal entry count found on day 2016-12-03: -7811
WARNING. Abnormal entry count found on day 2016-12-10: -7884
WARNING. Abnormal entry count found on day 2016-12-10: -7884
WARNING. Abnormal entry count found on day 2016-12-17: -7904
WARNING. Abnormal entry count found on day 2016-12-17: -7904
WARNING. Abnormal entry count found on day 2016-12-24: -6140
WARNING. Abnormal entry count found on day 2016-12-24: -6140
Processing turnstile ('A082', 'R028', '05-05-01', 'FULTON ST')
Processing turnstile ('R406', 'R448', '00-00-02', "E 143/ST MARY'S")
WARNING. Abnormal entry count found on day 2016-12-03: -1036
WARNING. Abnormal entry count found on day 2016-12-03: -1036
WARNING. Abnormal entry count found on day 2016-12-10: -1035
WARNING. Abnormal entry count found on day 2016-12-10: -1035
WARNING. Abnormal entry count found on day 2016-12-17: -1056
WARNING. Abnormal entry count found on day 2016-12-17: -1056
WARNING. Abnormal entry count found on day 2016-12-24: -752
WARNING. Abnormal entry count found on day 2016-12-24: -752
Processing turnstile ('N026', 'R102', '00-00-05', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9560
WARNING. Abnormal entry count found on day 2016-12-03: -9560
WARNING. Abnormal entry count found on day 2016-12-10: -9421
WARNING. Abnormal entry count found on day 2016-12-10: -9421
WARNING. Abnormal entry count found on day 2016-12-17: -9518
WARNING. Abnormal entry count found on day 2016-12-17: -9518
WARNING. Abnormal entry count found on day 2016-12-24: -7603
WARNING. Abnormal entry count found on day 2016-12-24: -7603
Processing turnstile ('R244', 'R050', '00-06-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17092
WARNING. Abnormal entry count found on day 2016-12-03: -17092
WARNING. Abnormal entry count found on day 2016-12-10: -15488
WARNING. Abnormal entry count found on day 2016-12-10: -15488
WARNING. Abnormal entry count found on day 2016-12-17: -14333
WARNING. Abnormal entry count found on day 2016-12-17: -14333
WARNING. Abnormal entry count found on day 2016-12-24: -10640
WARNING. Abnormal entry count found on day 2016-12-24: -10640
Processing turnstile ('A006', 'R079', '00-00-04', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6597
WARNING. Abnormal entry count found on day 2016-12-03: -6597
WARNING. Abnormal entry count found on day 2016-12-10: -6370
WARNING. Abnormal entry count found on day 2016-12-10: -6370
WARNING. Abnormal entry count found on day 2016-12-17: -6263
WARNING. Abnormal entry count found on day 2016-12-17: -6263
WARNING. Abnormal entry count found on day 2016-12-24: -5700
WARNING. Abnormal entry count found on day 2016-12-24: -5700
Processing turnstile ('R262B', 'R195', '05-00-01', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -166
WARNING. Abnormal entry count found on day 2016-12-24: -166
Processing turnstile ('R608', 'R056', '00-03-00', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5386
WARNING. Abnormal entry count found on day 2016-12-03: -5386
WARNING. Abnormal entry count found on day 2016-12-10: -5161
WARNING. Abnormal entry count found on day 2016-12-10: -5161
WARNING. Abnormal entry count found on day 2016-12-17: -5379
WARNING. Abnormal entry count found on day 2016-12-17: -5379
WARNING. Abnormal entry count found on day 2016-12-24: -3993
WARNING. Abnormal entry count found on day 2016-12-24: -3993
Processing turnstile ('R523', 'R147', '00-00-05', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -2933
WARNING. Abnormal entry count found on day 2016-12-03: -2933
WARNING. Abnormal entry count found on day 2016-12-10: -9930
WARNING. Abnormal entry count found on day 2016-12-10: -9930
WARNING. Abnormal entry count found on day 2016-12-17: -10113
WARNING. Abnormal entry count found on day 2016-12-17: -10113
WARNING. Abnormal entry count found on day 2016-12-24: -7763
WARNING. Abnormal entry count found on day 2016-12-24: -7763
Processing turnstile ('N601A', 'R319', '01-00-00', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-24: -61
WARNING. Abnormal entry count found on day 2016-12-24: -61
Processing turnstile ('N416', 'R286', '01-06-00', 'MYRTLE-WILLOUGH')
WARNING. Abnormal entry count found on day 2016-12-03: -6948
WARNING. Abnormal entry count found on day 2016-12-03: -6948
WARNING. Abnormal entry count found on day 2016-12-10: -7212
WARNING. Abnormal entry count found on day 2016-12-10: -7212
WARNING. Abnormal entry count found on day 2016-12-17: -6632
WARNING. Abnormal entry count found on day 2016-12-17: -6632
WARNING. Abnormal entry count found on day 2016-12-24: -4617
WARNING. Abnormal entry count found on day 2016-12-24: -4617
Processing turnstile ('N537', 'R258', '00-03-00', '4 AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4904
WARNING. Abnormal entry count found on day 2016-12-03: -4904
WARNING. Abnormal entry count found on day 2016-12-10: -5037
WARNING. Abnormal entry count found on day 2016-12-10: -5037
WARNING. Abnormal entry count found on day 2016-12-17: -4508
WARNING. Abnormal entry count found on day 2016-12-17: -4508
WARNING. Abnormal entry count found on day 2016-12-24: -3489
WARNING. Abnormal entry count found on day 2016-12-24: -3489
Processing turnstile ('N329', 'R201', '00-00-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -10422
WARNING. Abnormal entry count found on day 2016-12-03: -10422
WARNING. Abnormal entry count found on day 2016-12-10: -5976
WARNING. Abnormal entry count found on day 2016-12-10: -5976
WARNING. Abnormal entry count found on day 2016-12-17: -2742
WARNING. Abnormal entry count found on day 2016-12-17: -2742
WARNING. Abnormal entry count found on day 2016-12-24: -8721
WARNING. Abnormal entry count found on day 2016-12-24: -8721
Processing turnstile ('A071', 'R044', '02-06-02', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13139
WARNING. Abnormal entry count found on day 2016-12-03: -13139
WARNING. Abnormal entry count found on day 2016-12-10: -12277
WARNING. Abnormal entry count found on day 2016-12-10: -12277
WARNING. Abnormal entry count found on day 2016-12-17: -8793
WARNING. Abnormal entry count found on day 2016-12-17: -8793
WARNING. Abnormal entry count found on day 2016-12-24: -7230
WARNING. Abnormal entry count found on day 2016-12-24: -7230
Processing turnstile ('R158', 'R084', '00-00-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -9790
WARNING. Abnormal entry count found on day 2016-12-03: -9790
WARNING. Abnormal entry count found on day 2016-12-10: -9105
WARNING. Abnormal entry count found on day 2016-12-10: -9105
WARNING. Abnormal entry count found on day 2016-12-17: -8063
WARNING. Abnormal entry count found on day 2016-12-17: -8063
WARNING. Abnormal entry count found on day 2016-12-24: -6174
WARNING. Abnormal entry count found on day 2016-12-24: -6174
Processing turnstile ('PTH07', 'R550', '00-00-02', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -10683
WARNING. Abnormal entry count found on day 2016-12-03: -10683
WARNING. Abnormal entry count found on day 2016-12-10: -10761
WARNING. Abnormal entry count found on day 2016-12-10: -10761
WARNING. Abnormal entry count found on day 2016-12-17: -9693
WARNING. Abnormal entry count found on day 2016-12-17: -9693
WARNING. Abnormal entry count found on day 2016-12-24: -6933
WARNING. Abnormal entry count found on day 2016-12-24: -6933
Processing turnstile ('J013', 'R380', '00-00-00', 'GATES AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15922
WARNING. Abnormal entry count found on day 2016-12-03: -15922
WARNING. Abnormal entry count found on day 2016-12-10: -14783
WARNING. Abnormal entry count found on day 2016-12-10: -14783
WARNING. Abnormal entry count found on day 2016-12-17: -15154
WARNING. Abnormal entry count found on day 2016-12-17: -15154
WARNING. Abnormal entry count found on day 2016-12-24: -11998
WARNING. Abnormal entry count found on day 2016-12-24: -11998
Processing turnstile ('N340', 'R115', '00-00-02', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2263
WARNING. Abnormal entry count found on day 2016-12-03: -2263
WARNING. Abnormal entry count found on day 2016-12-10: -2252
WARNING. Abnormal entry count found on day 2016-12-10: -2252
WARNING. Abnormal entry count found on day 2016-12-17: -2371
WARNING. Abnormal entry count found on day 2016-12-17: -2371
WARNING. Abnormal entry count found on day 2016-12-24: -1536
WARNING. Abnormal entry count found on day 2016-12-24: -1536
Processing turnstile ('N605', 'R024', '00-00-06', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -17080
WARNING. Abnormal entry count found on day 2016-12-03: -17080
WARNING. Abnormal entry count found on day 2016-12-10: -16250
WARNING. Abnormal entry count found on day 2016-12-10: -16250
WARNING. Abnormal entry count found on day 2016-12-17: -16876
WARNING. Abnormal entry count found on day 2016-12-17: -16876
WARNING. Abnormal entry count found on day 2016-12-24: -15656
WARNING. Abnormal entry count found on day 2016-12-24: -15656
Processing turnstile ('N114', 'R297', '01-00-02', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4549
WARNING. Abnormal entry count found on day 2016-12-03: -4549
WARNING. Abnormal entry count found on day 2016-12-10: -4355
WARNING. Abnormal entry count found on day 2016-12-10: -4355
WARNING. Abnormal entry count found on day 2016-12-17: -4466
WARNING. Abnormal entry count found on day 2016-12-17: -4466
WARNING. Abnormal entry count found on day 2016-12-24: -3414
WARNING. Abnormal entry count found on day 2016-12-24: -3414
Processing turnstile ('N073', 'R013', '02-00-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -6697
WARNING. Abnormal entry count found on day 2016-12-03: -6697
WARNING. Abnormal entry count found on day 2016-12-10: -6777
WARNING. Abnormal entry count found on day 2016-12-10: -6777
WARNING. Abnormal entry count found on day 2016-12-17: -6125
WARNING. Abnormal entry count found on day 2016-12-17: -6125
WARNING. Abnormal entry count found on day 2016-12-24: -4140
WARNING. Abnormal entry count found on day 2016-12-24: -4140
Processing turnstile ('A041', 'R086', '00-00-02', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13125
WARNING. Abnormal entry count found on day 2016-12-03: -13125
WARNING. Abnormal entry count found on day 2016-12-10: -13053
WARNING. Abnormal entry count found on day 2016-12-10: -13053
WARNING. Abnormal entry count found on day 2016-12-17: -14276
WARNING. Abnormal entry count found on day 2016-12-17: -14276
WARNING. Abnormal entry count found on day 2016-12-24: -12584
WARNING. Abnormal entry count found on day 2016-12-24: -12584
Processing turnstile ('N506', 'R022', '00-05-05', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -30628
WARNING. Abnormal entry count found on day 2016-12-03: -30628
WARNING. Abnormal entry count found on day 2016-12-10: -25867
WARNING. Abnormal entry count found on day 2016-12-10: -25867
WARNING. Abnormal entry count found on day 2016-12-17: -14527
WARNING. Abnormal entry count found on day 2016-12-17: -14527
Processing turnstile ('R231', 'R176', '00-00-04', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8568
WARNING. Abnormal entry count found on day 2016-12-03: -8568
WARNING. Abnormal entry count found on day 2016-12-10: -8545
WARNING. Abnormal entry count found on day 2016-12-10: -8545
WARNING. Abnormal entry count found on day 2016-12-17: -7759
WARNING. Abnormal entry count found on day 2016-12-17: -7759
WARNING. Abnormal entry count found on day 2016-12-24: -5735
WARNING. Abnormal entry count found on day 2016-12-24: -5735
Processing turnstile ('N504', 'R021', '02-06-00', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -6332
WARNING. Abnormal entry count found on day 2016-12-03: -6332
WARNING. Abnormal entry count found on day 2016-12-10: -6103
WARNING. Abnormal entry count found on day 2016-12-10: -6103
WARNING. Abnormal entry count found on day 2016-12-17: -5853
WARNING. Abnormal entry count found on day 2016-12-17: -5853
WARNING. Abnormal entry count found on day 2016-12-24: -4679
WARNING. Abnormal entry count found on day 2016-12-24: -4679
Processing turnstile ('J017', 'R432', '00-00-01', 'CHAUNCEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6378
WARNING. Abnormal entry count found on day 2016-12-03: -6378
WARNING. Abnormal entry count found on day 2016-12-10: -7082
WARNING. Abnormal entry count found on day 2016-12-10: -7082
WARNING. Abnormal entry count found on day 2016-12-17: -6050
WARNING. Abnormal entry count found on day 2016-12-17: -6050
WARNING. Abnormal entry count found on day 2016-12-24: -4910
WARNING. Abnormal entry count found on day 2016-12-24: -4910
Processing turnstile ('R242A', 'R049', '02-03-00', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-08: -8173
WARNING. Abnormal entry count found on day 2016-12-08: -8173
WARNING. Abnormal entry count found on day 2016-12-08: -8173
WARNING. Abnormal entry count found on day 2016-12-10: -3994
WARNING. Abnormal entry count found on day 2016-12-10: -3994
WARNING. Abnormal entry count found on day 2016-12-17: -3843
WARNING. Abnormal entry count found on day 2016-12-17: -3843
WARNING. Abnormal entry count found on day 2016-12-24: -2871
WARNING. Abnormal entry count found on day 2016-12-24: -2871
Processing turnstile ('R422', 'R428', '00-00-00', 'BUHRE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4016
WARNING. Abnormal entry count found on day 2016-12-03: -4016
WARNING. Abnormal entry count found on day 2016-12-10: -4289
WARNING. Abnormal entry count found on day 2016-12-10: -4289
WARNING. Abnormal entry count found on day 2016-12-17: -4370
WARNING. Abnormal entry count found on day 2016-12-17: -4370
WARNING. Abnormal entry count found on day 2016-12-24: -3146
WARNING. Abnormal entry count found on day 2016-12-24: -3146
Processing turnstile ('R201', 'R041', '00-03-03', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -4516
WARNING. Abnormal entry count found on day 2016-12-03: -4516
WARNING. Abnormal entry count found on day 2016-12-10: -4499
WARNING. Abnormal entry count found on day 2016-12-10: -4499
WARNING. Abnormal entry count found on day 2016-12-17: -3946
WARNING. Abnormal entry count found on day 2016-12-17: -3946
WARNING. Abnormal entry count found on day 2016-12-24: -2663
WARNING. Abnormal entry count found on day 2016-12-24: -2663
Processing turnstile ('R154', 'R116', '00-00-03', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8518
WARNING. Abnormal entry count found on day 2016-12-03: -8518
WARNING. Abnormal entry count found on day 2016-12-10: -8694
WARNING. Abnormal entry count found on day 2016-12-10: -8694
WARNING. Abnormal entry count found on day 2016-12-17: -7874
WARNING. Abnormal entry count found on day 2016-12-17: -7874
WARNING. Abnormal entry count found on day 2016-12-24: -6559
WARNING. Abnormal entry count found on day 2016-12-24: -6559
Processing turnstile ('PTH06', 'R546', '00-00-06', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -4711
WARNING. Abnormal entry count found on day 2016-12-03: -4711
WARNING. Abnormal entry count found on day 2016-12-10: -4703
WARNING. Abnormal entry count found on day 2016-12-10: -4703
WARNING. Abnormal entry count found on day 2016-12-17: -4672
WARNING. Abnormal entry count found on day 2016-12-17: -4672
WARNING. Abnormal entry count found on day 2016-12-24: -6866
WARNING. Abnormal entry count found on day 2016-12-24: -6866
Processing turnstile ('N604', 'R342', '00-00-02', 'JAMAICA VAN WK')
WARNING. Abnormal entry count found on day 2016-12-03: -6155
WARNING. Abnormal entry count found on day 2016-12-03: -6155
WARNING. Abnormal entry count found on day 2016-12-10: -5888
WARNING. Abnormal entry count found on day 2016-12-10: -5888
WARNING. Abnormal entry count found on day 2016-12-17: -5932
WARNING. Abnormal entry count found on day 2016-12-17: -5932
WARNING. Abnormal entry count found on day 2016-12-24: -4517
WARNING. Abnormal entry count found on day 2016-12-24: -4517
Processing turnstile ('PTH16', 'R550', '01-01-02', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -2603
WARNING. Abnormal entry count found on day 2016-12-03: -2603
WARNING. Abnormal entry count found on day 2016-12-10: -2824
WARNING. Abnormal entry count found on day 2016-12-10: -2824
WARNING. Abnormal entry count found on day 2016-12-17: -2273
WARNING. Abnormal entry count found on day 2016-12-17: -2273
WARNING. Abnormal entry count found on day 2016-12-24: -1365
WARNING. Abnormal entry count found on day 2016-12-24: -1365
Processing turnstile ('R138', 'R293', '00-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -30693
WARNING. Abnormal entry count found on day 2016-12-03: -30693
WARNING. Abnormal entry count found on day 2016-12-10: -31567
WARNING. Abnormal entry count found on day 2016-12-10: -31567
WARNING. Abnormal entry count found on day 2016-12-17: -29133
WARNING. Abnormal entry count found on day 2016-12-17: -29133
WARNING. Abnormal entry count found on day 2016-12-24: -23702
WARNING. Abnormal entry count found on day 2016-12-24: -23702
Processing turnstile ('R421', 'R427', '00-06-00', 'MIDDLETOWN RD')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('N340A', 'R115', '01-03-03', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4798
WARNING. Abnormal entry count found on day 2016-12-03: -4798
WARNING. Abnormal entry count found on day 2016-12-10: -5272
WARNING. Abnormal entry count found on day 2016-12-10: -5272
WARNING. Abnormal entry count found on day 2016-12-17: -5515
WARNING. Abnormal entry count found on day 2016-12-17: -5515
WARNING. Abnormal entry count found on day 2016-12-24: -3404
WARNING. Abnormal entry count found on day 2016-12-24: -3404
Processing turnstile ('B023', 'R211', '01-06-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10057
WARNING. Abnormal entry count found on day 2016-12-03: -10057
WARNING. Abnormal entry count found on day 2016-12-10: -10243
WARNING. Abnormal entry count found on day 2016-12-10: -10243
WARNING. Abnormal entry count found on day 2016-12-17: -9564
WARNING. Abnormal entry count found on day 2016-12-17: -9564
WARNING. Abnormal entry count found on day 2016-12-24: -7788
WARNING. Abnormal entry count found on day 2016-12-24: -7788
Processing turnstile ('A041', 'R086', '00-00-04', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12366
WARNING. Abnormal entry count found on day 2016-12-03: -12366
WARNING. Abnormal entry count found on day 2016-12-10: -11947
WARNING. Abnormal entry count found on day 2016-12-10: -11947
WARNING. Abnormal entry count found on day 2016-12-17: -13501
WARNING. Abnormal entry count found on day 2016-12-17: -13501
WARNING. Abnormal entry count found on day 2016-12-24: -11522
WARNING. Abnormal entry count found on day 2016-12-24: -11522
Processing turnstile ('A010', 'R080', '00-00-02', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10054
WARNING. Abnormal entry count found on day 2016-12-03: -10054
WARNING. Abnormal entry count found on day 2016-12-10: -10087
WARNING. Abnormal entry count found on day 2016-12-10: -10087
WARNING. Abnormal entry count found on day 2016-12-17: -10277
WARNING. Abnormal entry count found on day 2016-12-17: -10277
WARNING. Abnormal entry count found on day 2016-12-24: -8268
WARNING. Abnormal entry count found on day 2016-12-24: -8268
Processing turnstile ('C001', 'R108', '01-00-02', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -2903
WARNING. Abnormal entry count found on day 2016-12-03: -2903
WARNING. Abnormal entry count found on day 2016-12-10: -2880
WARNING. Abnormal entry count found on day 2016-12-10: -2880
WARNING. Abnormal entry count found on day 2016-12-17: -2599
WARNING. Abnormal entry count found on day 2016-12-17: -2599
WARNING. Abnormal entry count found on day 2016-12-24: -2363
WARNING. Abnormal entry count found on day 2016-12-24: -2363
Processing turnstile ('A049', 'R088', '02-00-03', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4456
WARNING. Abnormal entry count found on day 2016-12-03: -4456
WARNING. Abnormal entry count found on day 2016-12-10: -4262
WARNING. Abnormal entry count found on day 2016-12-10: -4262
WARNING. Abnormal entry count found on day 2016-12-17: -7238
WARNING. Abnormal entry count found on day 2016-12-17: -7238
WARNING. Abnormal entry count found on day 2016-12-24: -6780
WARNING. Abnormal entry count found on day 2016-12-24: -6780
Processing turnstile ('R244A', 'R050', '01-06-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7572
WARNING. Abnormal entry count found on day 2016-12-03: -7572
WARNING. Abnormal entry count found on day 2016-12-10: -7445
WARNING. Abnormal entry count found on day 2016-12-10: -7445
WARNING. Abnormal entry count found on day 2016-12-17: -7482
WARNING. Abnormal entry count found on day 2016-12-17: -7482
WARNING. Abnormal entry count found on day 2016-12-24: -5717
WARNING. Abnormal entry count found on day 2016-12-24: -5717
Processing turnstile ('N316', 'R267', '00-00-00', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5850
WARNING. Abnormal entry count found on day 2016-12-03: -5850
WARNING. Abnormal entry count found on day 2016-12-10: -5944
WARNING. Abnormal entry count found on day 2016-12-10: -5944
WARNING. Abnormal entry count found on day 2016-12-17: -5390
WARNING. Abnormal entry count found on day 2016-12-17: -5390
WARNING. Abnormal entry count found on day 2016-12-24: -4222
WARNING. Abnormal entry count found on day 2016-12-24: -4222
Processing turnstile ('R204', 'R043', '02-05-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -144
WARNING. Abnormal entry count found on day 2016-12-03: -144
WARNING. Abnormal entry count found on day 2016-12-10: -138
WARNING. Abnormal entry count found on day 2016-12-10: -138
WARNING. Abnormal entry count found on day 2016-12-17: -138
WARNING. Abnormal entry count found on day 2016-12-17: -138
WARNING. Abnormal entry count found on day 2016-12-24: -137
WARNING. Abnormal entry count found on day 2016-12-24: -137
Processing turnstile ('K017', 'R401', '00-00-00', 'CENTRAL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3173
WARNING. Abnormal entry count found on day 2016-12-03: -3173
WARNING. Abnormal entry count found on day 2016-12-10: -2874
WARNING. Abnormal entry count found on day 2016-12-10: -2874
WARNING. Abnormal entry count found on day 2016-12-17: -2900
WARNING. Abnormal entry count found on day 2016-12-17: -2900
WARNING. Abnormal entry count found on day 2016-12-24: -2306
WARNING. Abnormal entry count found on day 2016-12-24: -2306
Processing turnstile ('N520', 'R240', '00-00-04', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14148
WARNING. Abnormal entry count found on day 2016-12-03: -14148
WARNING. Abnormal entry count found on day 2016-12-10: -16153
WARNING. Abnormal entry count found on day 2016-12-10: -16153
WARNING. Abnormal entry count found on day 2016-12-17: -16337
WARNING. Abnormal entry count found on day 2016-12-17: -16337
WARNING. Abnormal entry count found on day 2016-12-24: -12728
WARNING. Abnormal entry count found on day 2016-12-24: -12728
Processing turnstile ('R639', 'R109', '00-05-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-17: -10
WARNING. Abnormal entry count found on day 2016-12-17: -10
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R129', 'R321', '00-00-02', '18 ST')
WARNING. Abnormal entry count found on day 2016-12-10: -10246
WARNING. Abnormal entry count found on day 2016-12-10: -10246
WARNING. Abnormal entry count found on day 2016-12-17: -12416
WARNING. Abnormal entry count found on day 2016-12-17: -12416
WARNING. Abnormal entry count found on day 2016-12-24: -7153
WARNING. Abnormal entry count found on day 2016-12-24: -7153
Processing turnstile ('R208', 'R014', '03-00-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -541
WARNING. Abnormal entry count found on day 2016-12-03: -541
WARNING. Abnormal entry count found on day 2016-12-10: -454
WARNING. Abnormal entry count found on day 2016-12-10: -454
WARNING. Abnormal entry count found on day 2016-12-17: -423
WARNING. Abnormal entry count found on day 2016-12-17: -423
WARNING. Abnormal entry count found on day 2016-12-24: -484
WARNING. Abnormal entry count found on day 2016-12-24: -484
Processing turnstile ('N607', 'R025', '01-06-00', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -287
WARNING. Abnormal entry count found on day 2016-12-03: -287
WARNING. Abnormal entry count found on day 2016-12-10: -694
WARNING. Abnormal entry count found on day 2016-12-10: -694
WARNING. Abnormal entry count found on day 2016-12-17: -407
WARNING. Abnormal entry count found on day 2016-12-17: -407
WARNING. Abnormal entry count found on day 2016-12-24: -129
WARNING. Abnormal entry count found on day 2016-12-24: -129
Processing turnstile ('R192', 'R039', '00-00-02', 'MARBLE HILL-225')
WARNING. Abnormal entry count found on day 2016-12-03: -5201
WARNING. Abnormal entry count found on day 2016-12-03: -5201
WARNING. Abnormal entry count found on day 2016-12-10: -6556
WARNING. Abnormal entry count found on day 2016-12-10: -6556
WARNING. Abnormal entry count found on day 2016-12-17: -5325
WARNING. Abnormal entry count found on day 2016-12-17: -5325
WARNING. Abnormal entry count found on day 2016-12-24: -3829
WARNING. Abnormal entry count found on day 2016-12-24: -3829
Processing turnstile ('R647', 'R110', '02-05-02', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -607
WARNING. Abnormal entry count found on day 2016-12-03: -607
WARNING. Abnormal entry count found on day 2016-12-10: -604
WARNING. Abnormal entry count found on day 2016-12-10: -604
WARNING. Abnormal entry count found on day 2016-12-17: -500
WARNING. Abnormal entry count found on day 2016-12-17: -500
WARNING. Abnormal entry count found on day 2016-12-24: -274
WARNING. Abnormal entry count found on day 2016-12-24: -274
Processing turnstile ('R508', 'R346', '00-05-01', 'COURT SQ')
Processing turnstile ('B029', 'R172', '00-00-00', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -8234
WARNING. Abnormal entry count found on day 2016-12-03: -8234
WARNING. Abnormal entry count found on day 2016-12-10: -7848
WARNING. Abnormal entry count found on day 2016-12-10: -7848
WARNING. Abnormal entry count found on day 2016-12-17: -7087
WARNING. Abnormal entry count found on day 2016-12-17: -7087
WARNING. Abnormal entry count found on day 2016-12-24: -5883
WARNING. Abnormal entry count found on day 2016-12-24: -5883
Processing turnstile ('H022', 'R279', '00-06-01', 'JEFFERSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11448
WARNING. Abnormal entry count found on day 2016-12-03: -11448
WARNING. Abnormal entry count found on day 2016-12-10: -11217
WARNING. Abnormal entry count found on day 2016-12-10: -11217
WARNING. Abnormal entry count found on day 2016-12-17: -9755
WARNING. Abnormal entry count found on day 2016-12-17: -9755
WARNING. Abnormal entry count found on day 2016-12-24: -7557
WARNING. Abnormal entry count found on day 2016-12-24: -7557
Processing turnstile ('R626', 'R062', '00-03-02', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -17537
WARNING. Abnormal entry count found on day 2016-12-03: -17537
WARNING. Abnormal entry count found on day 2016-12-10: -17053
WARNING. Abnormal entry count found on day 2016-12-10: -17053
WARNING. Abnormal entry count found on day 2016-12-17: -16369
WARNING. Abnormal entry count found on day 2016-12-17: -16369
WARNING. Abnormal entry count found on day 2016-12-24: -12633
WARNING. Abnormal entry count found on day 2016-12-24: -12633
Processing turnstile ('N528', 'R257', '01-06-00', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -2251
WARNING. Abnormal entry count found on day 2016-12-03: -2251
WARNING. Abnormal entry count found on day 2016-12-10: -2736
WARNING. Abnormal entry count found on day 2016-12-10: -2736
WARNING. Abnormal entry count found on day 2016-12-17: -3033
WARNING. Abnormal entry count found on day 2016-12-17: -3033
WARNING. Abnormal entry count found on day 2016-12-24: -1589
WARNING. Abnormal entry count found on day 2016-12-24: -1589
Processing turnstile ('R730', 'R431', '00-00-04', 'EASTCHSTER/DYRE')
WARNING. Abnormal entry count found on day 2016-12-03: -2306
WARNING. Abnormal entry count found on day 2016-12-03: -2306
WARNING. Abnormal entry count found on day 2016-12-10: -2418
WARNING. Abnormal entry count found on day 2016-12-10: -2418
WARNING. Abnormal entry count found on day 2016-12-17: -2149
WARNING. Abnormal entry count found on day 2016-12-17: -2149
WARNING. Abnormal entry count found on day 2016-12-24: -1338
WARNING. Abnormal entry count found on day 2016-12-24: -1338
Processing turnstile ('A084', 'R125', '01-06-02', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12719
WARNING. Abnormal entry count found on day 2016-12-03: -12719
WARNING. Abnormal entry count found on day 2016-12-10: -10344
WARNING. Abnormal entry count found on day 2016-12-10: -10344
WARNING. Abnormal entry count found on day 2016-12-17: -10796
WARNING. Abnormal entry count found on day 2016-12-17: -10796
WARNING. Abnormal entry count found on day 2016-12-24: -6262
WARNING. Abnormal entry count found on day 2016-12-24: -6262
Processing turnstile ('N323', 'R018', '01-00-00', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -16820
WARNING. Abnormal entry count found on day 2016-12-03: -16820
WARNING. Abnormal entry count found on day 2016-12-10: -16187
WARNING. Abnormal entry count found on day 2016-12-10: -16187
WARNING. Abnormal entry count found on day 2016-12-17: -16171
WARNING. Abnormal entry count found on day 2016-12-17: -16171
WARNING. Abnormal entry count found on day 2016-12-24: -13334
WARNING. Abnormal entry count found on day 2016-12-24: -13334
Processing turnstile ('R113', 'R028', '01-04-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3937
WARNING. Abnormal entry count found on day 2016-12-03: -3937
WARNING. Abnormal entry count found on day 2016-12-10: -3710
WARNING. Abnormal entry count found on day 2016-12-10: -3710
WARNING. Abnormal entry count found on day 2016-12-17: -3332
WARNING. Abnormal entry count found on day 2016-12-17: -3332
WARNING. Abnormal entry count found on day 2016-12-24: -1909
WARNING. Abnormal entry count found on day 2016-12-24: -1909
Processing turnstile ('PTH05', 'R543', '00-04-09', 'EXCHANGE PLACE')
Processing turnstile ('R182', 'R035', '00-05-01', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20509
WARNING. Abnormal entry count found on day 2016-12-03: -20509
WARNING. Abnormal entry count found on day 2016-12-10: -20312
WARNING. Abnormal entry count found on day 2016-12-10: -20312
WARNING. Abnormal entry count found on day 2016-12-17: -18746
WARNING. Abnormal entry count found on day 2016-12-17: -18746
WARNING. Abnormal entry count found on day 2016-12-24: -13637
WARNING. Abnormal entry count found on day 2016-12-24: -13637
Processing turnstile ('N338', 'R128', '01-05-01', 'SUTPHIN BLVD')
Processing turnstile ('N305A', 'R016', '00-05-01', 'LEXINGTON AV/53')
Processing turnstile ('N501A', 'R020', '02-03-03', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -7744
WARNING. Abnormal entry count found on day 2016-12-03: -7744
WARNING. Abnormal entry count found on day 2016-12-10: -7607
WARNING. Abnormal entry count found on day 2016-12-10: -7607
WARNING. Abnormal entry count found on day 2016-12-17: -7987
WARNING. Abnormal entry count found on day 2016-12-17: -7987
WARNING. Abnormal entry count found on day 2016-12-24: -7697
WARNING. Abnormal entry count found on day 2016-12-24: -7697
Processing turnstile ('R170', 'R191', '00-00-01', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13591
WARNING. Abnormal entry count found on day 2016-12-03: -13591
WARNING. Abnormal entry count found on day 2016-12-10: -13658
WARNING. Abnormal entry count found on day 2016-12-10: -13658
WARNING. Abnormal entry count found on day 2016-12-17: -12794
WARNING. Abnormal entry count found on day 2016-12-17: -12794
WARNING. Abnormal entry count found on day 2016-12-24: -9708
WARNING. Abnormal entry count found on day 2016-12-24: -9708
Processing turnstile ('N512', 'R163', '00-00-04', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8037
WARNING. Abnormal entry count found on day 2016-12-03: -8037
WARNING. Abnormal entry count found on day 2016-12-10: -8000
WARNING. Abnormal entry count found on day 2016-12-10: -8000
WARNING. Abnormal entry count found on day 2016-12-17: -7197
WARNING. Abnormal entry count found on day 2016-12-17: -7197
WARNING. Abnormal entry count found on day 2016-12-24: -4658
WARNING. Abnormal entry count found on day 2016-12-24: -4658
Processing turnstile ('G001', 'R151', '00-00-03', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -3226
WARNING. Abnormal entry count found on day 2016-12-03: -3226
WARNING. Abnormal entry count found on day 2016-12-10: -2893
WARNING. Abnormal entry count found on day 2016-12-10: -2893
WARNING. Abnormal entry count found on day 2016-12-17: -3081
WARNING. Abnormal entry count found on day 2016-12-17: -3081
WARNING. Abnormal entry count found on day 2016-12-24: -2976
WARNING. Abnormal entry count found on day 2016-12-24: -2976
Processing turnstile ('N225', 'R157', '01-00-00', 'NORWOOD 205 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10380
WARNING. Abnormal entry count found on day 2016-12-03: -10380
WARNING. Abnormal entry count found on day 2016-12-10: -9585
WARNING. Abnormal entry count found on day 2016-12-10: -9585
WARNING. Abnormal entry count found on day 2016-12-17: -11692
WARNING. Abnormal entry count found on day 2016-12-17: -11692
WARNING. Abnormal entry count found on day 2016-12-24: -7855
WARNING. Abnormal entry count found on day 2016-12-24: -7855
Processing turnstile ('R226', 'R131', '02-06-01', '23 ST')
Processing turnstile ('R506', 'R276', '02-06-01', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -11556
WARNING. Abnormal entry count found on day 2016-12-03: -11556
WARNING. Abnormal entry count found on day 2016-12-10: -9456
WARNING. Abnormal entry count found on day 2016-12-10: -9456
WARNING. Abnormal entry count found on day 2016-12-17: -7157
WARNING. Abnormal entry count found on day 2016-12-17: -7157
WARNING. Abnormal entry count found on day 2016-12-24: -5941
WARNING. Abnormal entry count found on day 2016-12-24: -5941
Processing turnstile ('N102', 'R127', '01-06-01', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -8255
WARNING. Abnormal entry count found on day 2016-12-03: -8255
WARNING. Abnormal entry count found on day 2016-12-10: -7193
WARNING. Abnormal entry count found on day 2016-12-10: -7193
WARNING. Abnormal entry count found on day 2016-12-17: -5474
WARNING. Abnormal entry count found on day 2016-12-17: -5474
WARNING. Abnormal entry count found on day 2016-12-24: -2696
WARNING. Abnormal entry count found on day 2016-12-24: -2696
Processing turnstile ('B009', 'R411', '00-00-01', 'PARK PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -2141
WARNING. Abnormal entry count found on day 2016-12-03: -2141
WARNING. Abnormal entry count found on day 2016-12-10: -2452
WARNING. Abnormal entry count found on day 2016-12-10: -2452
WARNING. Abnormal entry count found on day 2016-12-17: -2165
WARNING. Abnormal entry count found on day 2016-12-17: -2165
WARNING. Abnormal entry count found on day 2016-12-24: -1504
WARNING. Abnormal entry count found on day 2016-12-24: -1504
Processing turnstile ('N303', 'R015', '00-00-09', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2998
WARNING. Abnormal entry count found on day 2016-12-03: -2998
WARNING. Abnormal entry count found on day 2016-12-10: -3123
WARNING. Abnormal entry count found on day 2016-12-10: -3123
WARNING. Abnormal entry count found on day 2016-12-17: -3408
WARNING. Abnormal entry count found on day 2016-12-17: -3408
WARNING. Abnormal entry count found on day 2016-12-24: -3636
WARNING. Abnormal entry count found on day 2016-12-24: -3636
Processing turnstile ('R230', 'R143', '02-06-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -88
WARNING. Abnormal entry count found on day 2016-12-03: -88
WARNING. Abnormal entry count found on day 2016-12-10: -81
WARNING. Abnormal entry count found on day 2016-12-10: -81
WARNING. Abnormal entry count found on day 2016-12-17: -189
WARNING. Abnormal entry count found on day 2016-12-17: -189
WARNING. Abnormal entry count found on day 2016-12-24: -36
WARNING. Abnormal entry count found on day 2016-12-24: -36
Processing turnstile ('R142', 'R293', '01-06-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -4970
WARNING. Abnormal entry count found on day 2016-12-03: -4970
WARNING. Abnormal entry count found on day 2016-12-10: -4889
WARNING. Abnormal entry count found on day 2016-12-10: -4889
WARNING. Abnormal entry count found on day 2016-12-17: -5114
WARNING. Abnormal entry count found on day 2016-12-17: -5114
WARNING. Abnormal entry count found on day 2016-12-24: -4370
WARNING. Abnormal entry count found on day 2016-12-24: -4370
Processing turnstile ('N501', 'R020', '01-06-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -2908
WARNING. Abnormal entry count found on day 2016-12-03: -2908
WARNING. Abnormal entry count found on day 2016-12-10: -2961
WARNING. Abnormal entry count found on day 2016-12-10: -2961
WARNING. Abnormal entry count found on day 2016-12-17: -2631
WARNING. Abnormal entry count found on day 2016-12-17: -2631
WARNING. Abnormal entry count found on day 2016-12-24: -1632
WARNING. Abnormal entry count found on day 2016-12-24: -1632
Processing turnstile ('E014', 'R374', '00-05-01', 'BAY PKWY')
Processing turnstile ('R625', 'R062', '01-00-00', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -3256
WARNING. Abnormal entry count found on day 2016-12-03: -3256
WARNING. Abnormal entry count found on day 2016-12-10: -3363
WARNING. Abnormal entry count found on day 2016-12-10: -3363
WARNING. Abnormal entry count found on day 2016-12-17: -3081
WARNING. Abnormal entry count found on day 2016-12-17: -3081
WARNING. Abnormal entry count found on day 2016-12-24: -1814
WARNING. Abnormal entry count found on day 2016-12-24: -1814
Processing turnstile ('N019', 'R101', '01-00-01', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10890
WARNING. Abnormal entry count found on day 2016-12-03: -10890
WARNING. Abnormal entry count found on day 2016-12-10: -11020
WARNING. Abnormal entry count found on day 2016-12-10: -11020
WARNING. Abnormal entry count found on day 2016-12-17: -10261
WARNING. Abnormal entry count found on day 2016-12-17: -10261
WARNING. Abnormal entry count found on day 2016-12-24: -7461
WARNING. Abnormal entry count found on day 2016-12-24: -7461
Processing turnstile ('R262', 'R195', '03-06-01', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -3438
WARNING. Abnormal entry count found on day 2016-12-03: -3438
WARNING. Abnormal entry count found on day 2016-12-10: -3404
WARNING. Abnormal entry count found on day 2016-12-10: -3404
WARNING. Abnormal entry count found on day 2016-12-17: -3124
WARNING. Abnormal entry count found on day 2016-12-17: -3124
WARNING. Abnormal entry count found on day 2016-12-24: -2389
WARNING. Abnormal entry count found on day 2016-12-24: -2389
Processing turnstile ('N600', 'R302', '00-03-01', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2062
WARNING. Abnormal entry count found on day 2016-12-03: -2062
WARNING. Abnormal entry count found on day 2016-12-10: -2440
WARNING. Abnormal entry count found on day 2016-12-10: -2440
WARNING. Abnormal entry count found on day 2016-12-17: -2328
WARNING. Abnormal entry count found on day 2016-12-17: -2328
WARNING. Abnormal entry count found on day 2016-12-24: -2156
WARNING. Abnormal entry count found on day 2016-12-24: -2156
Processing turnstile ('N519A', 'R461', '01-05-03', "B'WAY-LAFAYETTE")
Processing turnstile ('R602', 'R108', '00-00-02', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -7100
WARNING. Abnormal entry count found on day 2016-12-03: -7100
WARNING. Abnormal entry count found on day 2016-12-10: -6890
WARNING. Abnormal entry count found on day 2016-12-10: -6890
WARNING. Abnormal entry count found on day 2016-12-17: -6251
WARNING. Abnormal entry count found on day 2016-12-17: -6251
WARNING. Abnormal entry count found on day 2016-12-24: -4082
WARNING. Abnormal entry count found on day 2016-12-24: -4082
Processing turnstile ('R323', 'R387', '00-00-03', 'WEST FARMS SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -9026
WARNING. Abnormal entry count found on day 2016-12-03: -9026
WARNING. Abnormal entry count found on day 2016-12-10: -8874
WARNING. Abnormal entry count found on day 2016-12-10: -8874
WARNING. Abnormal entry count found on day 2016-12-17: -9146
WARNING. Abnormal entry count found on day 2016-12-17: -9146
WARNING. Abnormal entry count found on day 2016-12-24: -6964
WARNING. Abnormal entry count found on day 2016-12-24: -6964
Processing turnstile ('N078', 'R175', '01-00-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12306
WARNING. Abnormal entry count found on day 2016-12-03: -12306
WARNING. Abnormal entry count found on day 2016-12-10: -12511
WARNING. Abnormal entry count found on day 2016-12-10: -12511
WARNING. Abnormal entry count found on day 2016-12-17: -11728
WARNING. Abnormal entry count found on day 2016-12-17: -11728
WARNING. Abnormal entry count found on day 2016-12-24: -7677
WARNING. Abnormal entry count found on day 2016-12-24: -7677
Processing turnstile ('R294', 'R052', '00-00-00', 'WOODLAWN')
WARNING. Abnormal entry count found on day 2016-12-03: -11851
WARNING. Abnormal entry count found on day 2016-12-03: -11851
WARNING. Abnormal entry count found on day 2016-12-10: -11558
WARNING. Abnormal entry count found on day 2016-12-10: -11558
WARNING. Abnormal entry count found on day 2016-12-17: -11034
WARNING. Abnormal entry count found on day 2016-12-17: -11034
WARNING. Abnormal entry count found on day 2016-12-24: -9086
WARNING. Abnormal entry count found on day 2016-12-24: -9086
Processing turnstile ('N600', 'R302', '00-00-02', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4422
WARNING. Abnormal entry count found on day 2016-12-03: -4422
WARNING. Abnormal entry count found on day 2016-12-10: -3747
WARNING. Abnormal entry count found on day 2016-12-10: -3747
WARNING. Abnormal entry count found on day 2016-12-17: -4284
WARNING. Abnormal entry count found on day 2016-12-17: -4284
WARNING. Abnormal entry count found on day 2016-12-24: -3901
WARNING. Abnormal entry count found on day 2016-12-24: -3901
Processing turnstile ('C009', 'R057', '03-03-01', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -7921
WARNING. Abnormal entry count found on day 2016-12-03: -7921
WARNING. Abnormal entry count found on day 2016-12-10: -7663
WARNING. Abnormal entry count found on day 2016-12-10: -7663
WARNING. Abnormal entry count found on day 2016-12-17: -8465
WARNING. Abnormal entry count found on day 2016-12-17: -8465
WARNING. Abnormal entry count found on day 2016-12-24: -5104
WARNING. Abnormal entry count found on day 2016-12-24: -5104
Processing turnstile ('R331', 'R364', '00-00-02', 'GUN HILL RD')
WARNING. Abnormal entry count found on day 2016-12-03: -11723
WARNING. Abnormal entry count found on day 2016-12-03: -11723
WARNING. Abnormal entry count found on day 2016-12-10: -10922
WARNING. Abnormal entry count found on day 2016-12-10: -10922
WARNING. Abnormal entry count found on day 2016-12-17: -10849
WARNING. Abnormal entry count found on day 2016-12-17: -10849
WARNING. Abnormal entry count found on day 2016-12-24: -7394
WARNING. Abnormal entry count found on day 2016-12-24: -7394
Processing turnstile ('N602', 'R259', '00-05-01', 'ROOSEVELT ISLND')
Processing turnstile ('JFK03', 'R536', '00-00-05', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-03: -4709
WARNING. Abnormal entry count found on day 2016-12-03: -4709
WARNING. Abnormal entry count found on day 2016-12-10: -4622
WARNING. Abnormal entry count found on day 2016-12-10: -4622
WARNING. Abnormal entry count found on day 2016-12-17: -8626
WARNING. Abnormal entry count found on day 2016-12-17: -8626
WARNING. Abnormal entry count found on day 2016-12-24: -6379
WARNING. Abnormal entry count found on day 2016-12-24: -6379
Processing turnstile ('N405', 'R239', '00-06-02', 'GREENPOINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5389
WARNING. Abnormal entry count found on day 2016-12-03: -5389
WARNING. Abnormal entry count found on day 2016-12-10: -5686
WARNING. Abnormal entry count found on day 2016-12-10: -5686
WARNING. Abnormal entry count found on day 2016-12-17: -4648
WARNING. Abnormal entry count found on day 2016-12-17: -4648
WARNING. Abnormal entry count found on day 2016-12-24: -3485
WARNING. Abnormal entry count found on day 2016-12-24: -3485
Processing turnstile ('PTH04', 'R551', '00-01-02', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -5545
WARNING. Abnormal entry count found on day 2016-12-03: -5545
WARNING. Abnormal entry count found on day 2016-12-10: -6687
WARNING. Abnormal entry count found on day 2016-12-10: -6687
WARNING. Abnormal entry count found on day 2016-12-17: -5543
WARNING. Abnormal entry count found on day 2016-12-17: -5543
WARNING. Abnormal entry count found on day 2016-12-24: -3754
WARNING. Abnormal entry count found on day 2016-12-24: -3754
Processing turnstile ('N339A', 'R114', '00-03-04', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -9014
WARNING. Abnormal entry count found on day 2016-12-03: -9014
WARNING. Abnormal entry count found on day 2016-12-10: -8634
WARNING. Abnormal entry count found on day 2016-12-10: -8634
WARNING. Abnormal entry count found on day 2016-12-17: -8571
WARNING. Abnormal entry count found on day 2016-12-17: -8571
WARNING. Abnormal entry count found on day 2016-12-24: -6059
WARNING. Abnormal entry count found on day 2016-12-24: -6059
Processing turnstile ('R423', 'R429', '00-05-00', 'PELHAM BAY PARK')
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-24: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
Processing turnstile ('R232', 'R176', '02-00-00', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5608
WARNING. Abnormal entry count found on day 2016-12-03: -5608
WARNING. Abnormal entry count found on day 2016-12-10: -5567
WARNING. Abnormal entry count found on day 2016-12-10: -5567
WARNING. Abnormal entry count found on day 2016-12-17: -4703
WARNING. Abnormal entry count found on day 2016-12-17: -4703
WARNING. Abnormal entry count found on day 2016-12-24: -3328
WARNING. Abnormal entry count found on day 2016-12-24: -3328
Processing turnstile ('R101', 'R001', '02-06-01', 'SOUTH FERRY')
Processing turnstile ('R419', 'R326', '00-03-01', 'ZEREGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6467
WARNING. Abnormal entry count found on day 2016-12-03: -6467
WARNING. Abnormal entry count found on day 2016-12-10: -6644
WARNING. Abnormal entry count found on day 2016-12-10: -6644
WARNING. Abnormal entry count found on day 2016-12-17: -6193
WARNING. Abnormal entry count found on day 2016-12-17: -6193
WARNING. Abnormal entry count found on day 2016-12-24: -4934
WARNING. Abnormal entry count found on day 2016-12-24: -4934
Processing turnstile ('N103', 'R127', '00-00-03', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -7318
WARNING. Abnormal entry count found on day 2016-12-03: -7318
WARNING. Abnormal entry count found on day 2016-12-10: -6989
WARNING. Abnormal entry count found on day 2016-12-10: -6989
WARNING. Abnormal entry count found on day 2016-12-17: -6179
WARNING. Abnormal entry count found on day 2016-12-17: -6179
WARNING. Abnormal entry count found on day 2016-12-24: -4336
WARNING. Abnormal entry count found on day 2016-12-24: -4336
Processing turnstile ('N337', 'R255', '00-03-01', 'BRIARWOOD')
WARNING. Abnormal entry count found on day 2016-12-03: -452
WARNING. Abnormal entry count found on day 2016-12-03: -452
WARNING. Abnormal entry count found on day 2016-12-10: -570
WARNING. Abnormal entry count found on day 2016-12-10: -570
WARNING. Abnormal entry count found on day 2016-12-17: -470
WARNING. Abnormal entry count found on day 2016-12-17: -470
WARNING. Abnormal entry count found on day 2016-12-24: -343
WARNING. Abnormal entry count found on day 2016-12-24: -343
Processing turnstile ('R204A', 'R043', '03-05-01', 'WALL ST')
Processing turnstile ('N520', 'R240', '00-00-03', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15345
WARNING. Abnormal entry count found on day 2016-12-03: -15345
WARNING. Abnormal entry count found on day 2016-12-10: -15947
WARNING. Abnormal entry count found on day 2016-12-10: -15947
WARNING. Abnormal entry count found on day 2016-12-17: -16115
WARNING. Abnormal entry count found on day 2016-12-17: -16115
WARNING. Abnormal entry count found on day 2016-12-24: -13486
WARNING. Abnormal entry count found on day 2016-12-24: -13486
Processing turnstile ('D002', 'R390', '00-00-02', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14683
WARNING. Abnormal entry count found on day 2016-12-03: -14683
WARNING. Abnormal entry count found on day 2016-12-10: -14098
WARNING. Abnormal entry count found on day 2016-12-10: -14098
WARNING. Abnormal entry count found on day 2016-12-17: -15414
WARNING. Abnormal entry count found on day 2016-12-17: -15414
WARNING. Abnormal entry count found on day 2016-12-24: -13225
WARNING. Abnormal entry count found on day 2016-12-24: -13225
Processing turnstile ('R241A', 'R048', '00-00-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12503
WARNING. Abnormal entry count found on day 2016-12-03: -12503
WARNING. Abnormal entry count found on day 2016-12-10: -12019
WARNING. Abnormal entry count found on day 2016-12-10: -12019
WARNING. Abnormal entry count found on day 2016-12-17: -14713
WARNING. Abnormal entry count found on day 2016-12-17: -14713
WARNING. Abnormal entry count found on day 2016-12-24: -5974
WARNING. Abnormal entry count found on day 2016-12-24: -5974
Processing turnstile ('S101', 'R070', '00-00-00', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -3393
WARNING. Abnormal entry count found on day 2016-12-03: -3393
WARNING. Abnormal entry count found on day 2016-12-10: -2969
WARNING. Abnormal entry count found on day 2016-12-10: -2969
WARNING. Abnormal entry count found on day 2016-12-17: -2856
WARNING. Abnormal entry count found on day 2016-12-17: -2856
WARNING. Abnormal entry count found on day 2016-12-24: -2141
WARNING. Abnormal entry count found on day 2016-12-24: -2141
Processing turnstile ('E011', 'R371', '00-00-02', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8908
WARNING. Abnormal entry count found on day 2016-12-03: -8908
WARNING. Abnormal entry count found on day 2016-12-10: -8393
WARNING. Abnormal entry count found on day 2016-12-10: -8393
WARNING. Abnormal entry count found on day 2016-12-17: -8550
WARNING. Abnormal entry count found on day 2016-12-17: -8550
WARNING. Abnormal entry count found on day 2016-12-24: -6714
WARNING. Abnormal entry count found on day 2016-12-24: -6714
Processing turnstile ('N316A', 'R267', '01-03-00', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5020
WARNING. Abnormal entry count found on day 2016-12-03: -5020
WARNING. Abnormal entry count found on day 2016-12-10: -4840
WARNING. Abnormal entry count found on day 2016-12-10: -4840
WARNING. Abnormal entry count found on day 2016-12-17: -5073
WARNING. Abnormal entry count found on day 2016-12-17: -5073
WARNING. Abnormal entry count found on day 2016-12-24: -3704
WARNING. Abnormal entry count found on day 2016-12-24: -3704
Processing turnstile ('R532H', 'R328', '02-03-04', 'METS-WILLETS PT')
Processing turnstile ('K025', 'R404', '00-03-01', 'FRESH POND RD')
WARNING. Abnormal entry count found on day 2016-12-03: -6461
WARNING. Abnormal entry count found on day 2016-12-03: -6461
WARNING. Abnormal entry count found on day 2016-12-10: -6216
WARNING. Abnormal entry count found on day 2016-12-10: -6216
WARNING. Abnormal entry count found on day 2016-12-17: -6128
WARNING. Abnormal entry count found on day 2016-12-17: -6128
WARNING. Abnormal entry count found on day 2016-12-24: -4767
WARNING. Abnormal entry count found on day 2016-12-24: -4767
Processing turnstile ('R161A', 'R452', '01-00-01', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9600
WARNING. Abnormal entry count found on day 2016-12-03: -9600
WARNING. Abnormal entry count found on day 2016-12-10: -9426
WARNING. Abnormal entry count found on day 2016-12-10: -9426
WARNING. Abnormal entry count found on day 2016-12-17: -8502
WARNING. Abnormal entry count found on day 2016-12-17: -8502
WARNING. Abnormal entry count found on day 2016-12-24: -6359
WARNING. Abnormal entry count found on day 2016-12-24: -6359
Processing turnstile ('R102', 'R304', '01-06-01', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -190
WARNING. Abnormal entry count found on day 2016-12-03: -190
WARNING. Abnormal entry count found on day 2016-12-10: -158
WARNING. Abnormal entry count found on day 2016-12-10: -158
WARNING. Abnormal entry count found on day 2016-12-17: -179
WARNING. Abnormal entry count found on day 2016-12-17: -179
WARNING. Abnormal entry count found on day 2016-12-24: -192
WARNING. Abnormal entry count found on day 2016-12-24: -192
Processing turnstile ('R200A', 'R041', '01-00-06', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -16246
WARNING. Abnormal entry count found on day 2016-12-03: -16246
WARNING. Abnormal entry count found on day 2016-12-10: -15624
WARNING. Abnormal entry count found on day 2016-12-10: -15624
WARNING. Abnormal entry count found on day 2016-12-17: -14336
WARNING. Abnormal entry count found on day 2016-12-17: -14336
WARNING. Abnormal entry count found on day 2016-12-24: -9870
WARNING. Abnormal entry count found on day 2016-12-24: -9870
Processing turnstile ('N333B', 'R141', '02-01-00', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -6435
WARNING. Abnormal entry count found on day 2016-12-03: -6435
WARNING. Abnormal entry count found on day 2016-12-10: -5890
WARNING. Abnormal entry count found on day 2016-12-10: -5890
WARNING. Abnormal entry count found on day 2016-12-17: -5825
WARNING. Abnormal entry count found on day 2016-12-17: -5825
WARNING. Abnormal entry count found on day 2016-12-24: -4252
WARNING. Abnormal entry count found on day 2016-12-24: -4252
Processing turnstile ('PTH17', 'R541', '01-01-03', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9746
WARNING. Abnormal entry count found on day 2016-12-03: -9746
WARNING. Abnormal entry count found on day 2016-12-10: -9825
WARNING. Abnormal entry count found on day 2016-12-10: -9825
WARNING. Abnormal entry count found on day 2016-12-17: -9016
WARNING. Abnormal entry count found on day 2016-12-17: -9016
WARNING. Abnormal entry count found on day 2016-12-24: -9498
WARNING. Abnormal entry count found on day 2016-12-24: -9498
Processing turnstile ('R161A', 'R452', '01-06-01', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -25481
WARNING. Abnormal entry count found on day 2016-12-03: -25481
WARNING. Abnormal entry count found on day 2016-12-10: -21829
WARNING. Abnormal entry count found on day 2016-12-10: -21829
WARNING. Abnormal entry count found on day 2016-12-17: -22400
WARNING. Abnormal entry count found on day 2016-12-17: -22400
WARNING. Abnormal entry count found on day 2016-12-24: -16051
WARNING. Abnormal entry count found on day 2016-12-24: -16051
Processing turnstile ('R236', 'R045', '00-03-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11652
WARNING. Abnormal entry count found on day 2016-12-03: -11652
WARNING. Abnormal entry count found on day 2016-12-10: -12307
WARNING. Abnormal entry count found on day 2016-12-10: -12307
WARNING. Abnormal entry count found on day 2016-12-17: -10801
WARNING. Abnormal entry count found on day 2016-12-17: -10801
WARNING. Abnormal entry count found on day 2016-12-24: -7336
WARNING. Abnormal entry count found on day 2016-12-24: -7336
Processing turnstile ('N312', 'R339', '00-00-02', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3889
WARNING. Abnormal entry count found on day 2016-12-03: -3889
WARNING. Abnormal entry count found on day 2016-12-10: -4458
WARNING. Abnormal entry count found on day 2016-12-10: -4458
WARNING. Abnormal entry count found on day 2016-12-17: -4522
WARNING. Abnormal entry count found on day 2016-12-17: -4522
WARNING. Abnormal entry count found on day 2016-12-24: -3394
WARNING. Abnormal entry count found on day 2016-12-24: -3394
Processing turnstile ('R523', 'R147', '00-00-02', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -2365
WARNING. Abnormal entry count found on day 2016-12-03: -2365
WARNING. Abnormal entry count found on day 2016-12-10: -9109
WARNING. Abnormal entry count found on day 2016-12-10: -9109
WARNING. Abnormal entry count found on day 2016-12-17: -9081
WARNING. Abnormal entry count found on day 2016-12-17: -9081
WARNING. Abnormal entry count found on day 2016-12-24: -7432
WARNING. Abnormal entry count found on day 2016-12-24: -7432
Processing turnstile ('H023', 'R236', '00-00-02', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13705
WARNING. Abnormal entry count found on day 2016-12-03: -13705
WARNING. Abnormal entry count found on day 2016-12-10: -13503
WARNING. Abnormal entry count found on day 2016-12-10: -13503
WARNING. Abnormal entry count found on day 2016-12-17: -13085
WARNING. Abnormal entry count found on day 2016-12-17: -13085
WARNING. Abnormal entry count found on day 2016-12-24: -9736
WARNING. Abnormal entry count found on day 2016-12-24: -9736
Processing turnstile ('R206', 'R014', '02-03-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3687
WARNING. Abnormal entry count found on day 2016-12-03: -3687
WARNING. Abnormal entry count found on day 2016-12-10: -3919
WARNING. Abnormal entry count found on day 2016-12-10: -3919
WARNING. Abnormal entry count found on day 2016-12-17: -3689
WARNING. Abnormal entry count found on day 2016-12-17: -3689
WARNING. Abnormal entry count found on day 2016-12-24: -2878
WARNING. Abnormal entry count found on day 2016-12-24: -2878
Processing turnstile ('R145', 'R032', '00-00-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6170
WARNING. Abnormal entry count found on day 2016-12-03: -6170
WARNING. Abnormal entry count found on day 2016-12-10: -6077
WARNING. Abnormal entry count found on day 2016-12-10: -6077
WARNING. Abnormal entry count found on day 2016-12-17: -5405
WARNING. Abnormal entry count found on day 2016-12-17: -5405
WARNING. Abnormal entry count found on day 2016-12-24: -3660
WARNING. Abnormal entry count found on day 2016-12-24: -3660
Processing turnstile ('N327', 'R254', '00-03-01', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -2562
WARNING. Abnormal entry count found on day 2016-12-03: -2562
WARNING. Abnormal entry count found on day 2016-12-10: -2470
WARNING. Abnormal entry count found on day 2016-12-10: -2470
WARNING. Abnormal entry count found on day 2016-12-17: -2525
WARNING. Abnormal entry count found on day 2016-12-17: -2525
WARNING. Abnormal entry count found on day 2016-12-24: -2182
WARNING. Abnormal entry count found on day 2016-12-24: -2182
Processing turnstile ('N039', 'R251', '01-00-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12548
WARNING. Abnormal entry count found on day 2016-12-03: -12548
WARNING. Abnormal entry count found on day 2016-12-10: -11181
WARNING. Abnormal entry count found on day 2016-12-10: -11181
WARNING. Abnormal entry count found on day 2016-12-17: -10093
WARNING. Abnormal entry count found on day 2016-12-17: -10093
WARNING. Abnormal entry count found on day 2016-12-24: -6867
WARNING. Abnormal entry count found on day 2016-12-24: -6867
Processing turnstile ('H030', 'R266', '01-00-01', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1601
WARNING. Abnormal entry count found on day 2016-12-03: -1601
WARNING. Abnormal entry count found on day 2016-12-10: -1657
WARNING. Abnormal entry count found on day 2016-12-10: -1657
WARNING. Abnormal entry count found on day 2016-12-17: -1558
WARNING. Abnormal entry count found on day 2016-12-17: -1558
WARNING. Abnormal entry count found on day 2016-12-24: -1213
WARNING. Abnormal entry count found on day 2016-12-24: -1213
Processing turnstile ('B024', 'R211', '00-00-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -13816
WARNING. Abnormal entry count found on day 2016-12-03: -13816
WARNING. Abnormal entry count found on day 2016-12-10: -13065
WARNING. Abnormal entry count found on day 2016-12-10: -13065
WARNING. Abnormal entry count found on day 2016-12-17: -13264
WARNING. Abnormal entry count found on day 2016-12-17: -13264
WARNING. Abnormal entry count found on day 2016-12-24: -11509
WARNING. Abnormal entry count found on day 2016-12-24: -11509
Processing turnstile ('R173', 'R159', '00-00-00', '116 ST-COLUMBIA')
WARNING. Abnormal entry count found on day 2016-12-03: -17180
WARNING. Abnormal entry count found on day 2016-12-03: -17180
WARNING. Abnormal entry count found on day 2016-12-10: -15051
WARNING. Abnormal entry count found on day 2016-12-10: -15051
WARNING. Abnormal entry count found on day 2016-12-17: -10625
WARNING. Abnormal entry count found on day 2016-12-17: -10625
WARNING. Abnormal entry count found on day 2016-12-24: -5694
WARNING. Abnormal entry count found on day 2016-12-24: -5694
Processing turnstile ('R526', 'R096', '00-03-01', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -7628
WARNING. Abnormal entry count found on day 2016-12-03: -7628
WARNING. Abnormal entry count found on day 2016-12-10: -6172
WARNING. Abnormal entry count found on day 2016-12-10: -6172
WARNING. Abnormal entry count found on day 2016-12-17: -6333
WARNING. Abnormal entry count found on day 2016-12-17: -6333
WARNING. Abnormal entry count found on day 2016-12-24: -5349
WARNING. Abnormal entry count found on day 2016-12-24: -5349
Processing turnstile ('PTH09', 'R548', '00-00-00', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5277
WARNING. Abnormal entry count found on day 2016-12-03: -5277
WARNING. Abnormal entry count found on day 2016-12-10: -3571
WARNING. Abnormal entry count found on day 2016-12-10: -3571
WARNING. Abnormal entry count found on day 2016-12-17: -3158
WARNING. Abnormal entry count found on day 2016-12-17: -3158
WARNING. Abnormal entry count found on day 2016-12-24: -2048
WARNING. Abnormal entry count found on day 2016-12-24: -2048
Processing turnstile ('R206', 'R014', '02-03-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3968
WARNING. Abnormal entry count found on day 2016-12-03: -3968
WARNING. Abnormal entry count found on day 2016-12-10: -4058
WARNING. Abnormal entry count found on day 2016-12-10: -4058
WARNING. Abnormal entry count found on day 2016-12-17: -3604
WARNING. Abnormal entry count found on day 2016-12-17: -3604
WARNING. Abnormal entry count found on day 2016-12-24: -2482
WARNING. Abnormal entry count found on day 2016-12-24: -2482
Processing turnstile ('R236', 'R045', '00-00-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4214
WARNING. Abnormal entry count found on day 2016-12-03: -4214
WARNING. Abnormal entry count found on day 2016-12-10: -4329
WARNING. Abnormal entry count found on day 2016-12-10: -4329
WARNING. Abnormal entry count found on day 2016-12-17: -3732
WARNING. Abnormal entry count found on day 2016-12-17: -3732
WARNING. Abnormal entry count found on day 2016-12-24: -2783
WARNING. Abnormal entry count found on day 2016-12-24: -2783
Processing turnstile ('R188', 'R037', '00-00-01', '207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9364
WARNING. Abnormal entry count found on day 2016-12-03: -9364
WARNING. Abnormal entry count found on day 2016-12-10: -9016
WARNING. Abnormal entry count found on day 2016-12-10: -9016
WARNING. Abnormal entry count found on day 2016-12-17: -8757
WARNING. Abnormal entry count found on day 2016-12-17: -8757
WARNING. Abnormal entry count found on day 2016-12-24: -6670
WARNING. Abnormal entry count found on day 2016-12-24: -6670
Processing turnstile ('N071', 'R013', '00-06-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -1549
WARNING. Abnormal entry count found on day 2016-12-03: -1549
WARNING. Abnormal entry count found on day 2016-12-10: -1703
WARNING. Abnormal entry count found on day 2016-12-10: -1703
WARNING. Abnormal entry count found on day 2016-12-17: -1425
WARNING. Abnormal entry count found on day 2016-12-17: -1425
WARNING. Abnormal entry count found on day 2016-12-24: -1200
WARNING. Abnormal entry count found on day 2016-12-24: -1200
Processing turnstile ('A081', 'R028', '04-00-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2116
WARNING. Abnormal entry count found on day 2016-12-03: -2116
WARNING. Abnormal entry count found on day 2016-12-10: -1895
WARNING. Abnormal entry count found on day 2016-12-10: -1895
WARNING. Abnormal entry count found on day 2016-12-17: -1763
WARNING. Abnormal entry count found on day 2016-12-17: -1763
WARNING. Abnormal entry count found on day 2016-12-24: -1544
WARNING. Abnormal entry count found on day 2016-12-24: -1544
Processing turnstile ('N343', 'R019', '00-00-08', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7655
WARNING. Abnormal entry count found on day 2016-12-03: -7655
WARNING. Abnormal entry count found on day 2016-12-10: -7127
WARNING. Abnormal entry count found on day 2016-12-10: -7127
WARNING. Abnormal entry count found on day 2016-12-17: -7404
WARNING. Abnormal entry count found on day 2016-12-17: -7404
WARNING. Abnormal entry count found on day 2016-12-24: -5257
WARNING. Abnormal entry count found on day 2016-12-24: -5257
Processing turnstile ('R514', 'R094', '00-05-00', 'ASTORIA BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3814
WARNING. Abnormal entry count found on day 2016-12-03: -3814
WARNING. Abnormal entry count found on day 2016-12-10: -3979
WARNING. Abnormal entry count found on day 2016-12-10: -3979
WARNING. Abnormal entry count found on day 2016-12-17: -3492
WARNING. Abnormal entry count found on day 2016-12-17: -3492
WARNING. Abnormal entry count found on day 2016-12-24: -2259
WARNING. Abnormal entry count found on day 2016-12-24: -2259
Processing turnstile ('PTH05', 'R543', '00-04-00', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -1952
WARNING. Abnormal entry count found on day 2016-12-03: -1952
WARNING. Abnormal entry count found on day 2016-12-10: -1306
WARNING. Abnormal entry count found on day 2016-12-10: -1306
WARNING. Abnormal entry count found on day 2016-12-17: -1218
WARNING. Abnormal entry count found on day 2016-12-17: -1218
WARNING. Abnormal entry count found on day 2016-12-24: -870
WARNING. Abnormal entry count found on day 2016-12-24: -870
Processing turnstile ('R283', 'R221', '00-00-00', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12090
WARNING. Abnormal entry count found on day 2016-12-03: -12090
WARNING. Abnormal entry count found on day 2016-12-10: -11559
WARNING. Abnormal entry count found on day 2016-12-10: -11559
WARNING. Abnormal entry count found on day 2016-12-17: -11848
WARNING. Abnormal entry count found on day 2016-12-17: -11848
WARNING. Abnormal entry count found on day 2016-12-24: -7270
WARNING. Abnormal entry count found on day 2016-12-24: -7270
Processing turnstile ('N116', 'R198', '00-00-01', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -19349
WARNING. Abnormal entry count found on day 2016-12-03: -19349
WARNING. Abnormal entry count found on day 2016-12-10: -18878
WARNING. Abnormal entry count found on day 2016-12-10: -18878
WARNING. Abnormal entry count found on day 2016-12-17: -17277
WARNING. Abnormal entry count found on day 2016-12-17: -17277
WARNING. Abnormal entry count found on day 2016-12-24: -12680
WARNING. Abnormal entry count found on day 2016-12-24: -12680
Processing turnstile ('N063A', 'R011', '00-00-08', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-04: -1883
WARNING. Abnormal entry count found on day 2016-12-05: -1430
WARNING. Abnormal entry count found on day 2016-12-06: -4998
WARNING. Abnormal entry count found on day 2016-12-07: -5266
WARNING. Abnormal entry count found on day 2016-12-08: -5077
WARNING. Abnormal entry count found on day 2016-12-09: -5012
WARNING. Abnormal entry count found on day 2016-12-03: 23666
WARNING. Abnormal entry count found on day 2016-12-04: -1883
WARNING. Abnormal entry count found on day 2016-12-05: -1430
WARNING. Abnormal entry count found on day 2016-12-06: -4998
WARNING. Abnormal entry count found on day 2016-12-07: -5266
WARNING. Abnormal entry count found on day 2016-12-08: -5077
WARNING. Abnormal entry count found on day 2016-12-09: -5012
WARNING. Abnormal entry count found on day 2016-12-03: 23666
WARNING. Abnormal entry count found on day 2016-12-04: -1883
WARNING. Abnormal entry count found on day 2016-12-05: -1430
WARNING. Abnormal entry count found on day 2016-12-06: -4998
WARNING. Abnormal entry count found on day 2016-12-07: -5266
WARNING. Abnormal entry count found on day 2016-12-08: -5077
WARNING. Abnormal entry count found on day 2016-12-09: -5012
WARNING. Abnormal entry count found on day 2016-12-10: -4869
WARNING. Abnormal entry count found on day 2016-12-11: -2077
WARNING. Abnormal entry count found on day 2016-12-12: -1553
WARNING. Abnormal entry count found on day 2016-12-13: -4947
WARNING. Abnormal entry count found on day 2016-12-14: -4823
WARNING. Abnormal entry count found on day 2016-12-15: -5002
WARNING. Abnormal entry count found on day 2016-12-16: -5279
WARNING. Abnormal entry count found on day 2016-12-10: 23681
WARNING. Abnormal entry count found on day 2016-12-11: -2077
WARNING. Abnormal entry count found on day 2016-12-12: -1553
WARNING. Abnormal entry count found on day 2016-12-13: -4947
WARNING. Abnormal entry count found on day 2016-12-14: -4823
WARNING. Abnormal entry count found on day 2016-12-15: -5002
WARNING. Abnormal entry count found on day 2016-12-16: -5279
WARNING. Abnormal entry count found on day 2016-12-10: 23681
WARNING. Abnormal entry count found on day 2016-12-11: -2077
WARNING. Abnormal entry count found on day 2016-12-12: -1553
WARNING. Abnormal entry count found on day 2016-12-13: -4947
WARNING. Abnormal entry count found on day 2016-12-14: -4823
WARNING. Abnormal entry count found on day 2016-12-15: -5002
WARNING. Abnormal entry count found on day 2016-12-16: -5279
WARNING. Abnormal entry count found on day 2016-12-17: -5202
WARNING. Abnormal entry count found on day 2016-12-18: -2141
WARNING. Abnormal entry count found on day 2016-12-19: -1732
WARNING. Abnormal entry count found on day 2016-12-20: -5406
WARNING. Abnormal entry count found on day 2016-12-21: -5184
WARNING. Abnormal entry count found on day 2016-12-22: -4747
WARNING. Abnormal entry count found on day 2016-12-23: -4644
WARNING. Abnormal entry count found on day 2016-12-17: 23854
WARNING. Abnormal entry count found on day 2016-12-18: -2141
WARNING. Abnormal entry count found on day 2016-12-19: -1732
WARNING. Abnormal entry count found on day 2016-12-20: -5406
WARNING. Abnormal entry count found on day 2016-12-21: -5184
WARNING. Abnormal entry count found on day 2016-12-22: -4747
WARNING. Abnormal entry count found on day 2016-12-23: -4644
WARNING. Abnormal entry count found on day 2016-12-17: 23854
WARNING. Abnormal entry count found on day 2016-12-18: -2141
WARNING. Abnormal entry count found on day 2016-12-19: -1732
WARNING. Abnormal entry count found on day 2016-12-20: -5406
WARNING. Abnormal entry count found on day 2016-12-21: -5184
WARNING. Abnormal entry count found on day 2016-12-22: -4747
WARNING. Abnormal entry count found on day 2016-12-23: -4644
WARNING. Abnormal entry count found on day 2016-12-24: -3563
WARNING. Abnormal entry count found on day 2016-12-25: -1654
WARNING. Abnormal entry count found on day 2016-12-26: -1223
WARNING. Abnormal entry count found on day 2016-12-27: -2030
WARNING. Abnormal entry count found on day 2016-12-28: -3789
WARNING. Abnormal entry count found on day 2016-12-29: -3994
WARNING. Abnormal entry count found on day 2016-12-30: -3848
WARNING. Abnormal entry count found on day 2016-12-24: 16538
WARNING. Abnormal entry count found on day 2016-12-25: -1654
WARNING. Abnormal entry count found on day 2016-12-26: -1223
WARNING. Abnormal entry count found on day 2016-12-27: -2030
WARNING. Abnormal entry count found on day 2016-12-28: -3789
WARNING. Abnormal entry count found on day 2016-12-29: -3994
WARNING. Abnormal entry count found on day 2016-12-30: -3848
WARNING. Abnormal entry count found on day 2016-12-24: 16538
WARNING. Abnormal entry count found on day 2016-12-25: -1654
WARNING. Abnormal entry count found on day 2016-12-26: -1223
WARNING. Abnormal entry count found on day 2016-12-27: -2030
WARNING. Abnormal entry count found on day 2016-12-28: -3789
WARNING. Abnormal entry count found on day 2016-12-29: -3994
WARNING. Abnormal entry count found on day 2016-12-30: -3848
Processing turnstile ('A030', 'R083', '01-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8063
WARNING. Abnormal entry count found on day 2016-12-03: -8063
WARNING. Abnormal entry count found on day 2016-12-10: -7834
WARNING. Abnormal entry count found on day 2016-12-10: -7834
WARNING. Abnormal entry count found on day 2016-12-17: -6959
WARNING. Abnormal entry count found on day 2016-12-17: -6959
WARNING. Abnormal entry count found on day 2016-12-24: -4916
WARNING. Abnormal entry count found on day 2016-12-24: -4916
Processing turnstile ('A049', 'R088', '02-00-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2934
WARNING. Abnormal entry count found on day 2016-12-03: -2934
WARNING. Abnormal entry count found on day 2016-12-10: -2806
WARNING. Abnormal entry count found on day 2016-12-10: -2806
WARNING. Abnormal entry count found on day 2016-12-17: -2092
WARNING. Abnormal entry count found on day 2016-12-17: -2092
WARNING. Abnormal entry count found on day 2016-12-24: -4214
WARNING. Abnormal entry count found on day 2016-12-24: -4214
Processing turnstile ('N010', 'R126', '00-00-02', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12599
WARNING. Abnormal entry count found on day 2016-12-03: -12599
WARNING. Abnormal entry count found on day 2016-12-10: -12454
WARNING. Abnormal entry count found on day 2016-12-10: -12454
WARNING. Abnormal entry count found on day 2016-12-17: -11880
WARNING. Abnormal entry count found on day 2016-12-17: -11880
WARNING. Abnormal entry count found on day 2016-12-24: -10114
WARNING. Abnormal entry count found on day 2016-12-24: -10114
Processing turnstile ('N186', 'R418', '00-00-01', 'BEACH 105 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -413
WARNING. Abnormal entry count found on day 2016-12-03: -413
WARNING. Abnormal entry count found on day 2016-12-10: -415
WARNING. Abnormal entry count found on day 2016-12-10: -415
WARNING. Abnormal entry count found on day 2016-12-17: -352
WARNING. Abnormal entry count found on day 2016-12-17: -352
WARNING. Abnormal entry count found on day 2016-12-24: -167
WARNING. Abnormal entry count found on day 2016-12-24: -167
Processing turnstile ('N340A', 'R115', '01-03-02', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7182
WARNING. Abnormal entry count found on day 2016-12-03: -7182
WARNING. Abnormal entry count found on day 2016-12-10: -6540
WARNING. Abnormal entry count found on day 2016-12-10: -6540
WARNING. Abnormal entry count found on day 2016-12-17: -5978
WARNING. Abnormal entry count found on day 2016-12-17: -5978
WARNING. Abnormal entry count found on day 2016-12-24: -5647
WARNING. Abnormal entry count found on day 2016-12-24: -5647
Processing turnstile ('N016A', 'R296', '00-00-02', '163 ST-AMSTERDM')
WARNING. Abnormal entry count found on day 2016-12-03: -11339
WARNING. Abnormal entry count found on day 2016-12-03: -11339
WARNING. Abnormal entry count found on day 2016-12-10: -11180
WARNING. Abnormal entry count found on day 2016-12-10: -11180
WARNING. Abnormal entry count found on day 2016-12-17: -10828
WARNING. Abnormal entry count found on day 2016-12-17: -10828
WARNING. Abnormal entry count found on day 2016-12-24: -8425
WARNING. Abnormal entry count found on day 2016-12-24: -8425
Processing turnstile ('R164', 'R167', '00-00-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7396
WARNING. Abnormal entry count found on day 2016-12-03: -7396
WARNING. Abnormal entry count found on day 2016-12-10: -7346
WARNING. Abnormal entry count found on day 2016-12-10: -7346
WARNING. Abnormal entry count found on day 2016-12-17: -6790
WARNING. Abnormal entry count found on day 2016-12-17: -6790
WARNING. Abnormal entry count found on day 2016-12-24: -5140
WARNING. Abnormal entry count found on day 2016-12-24: -5140
Processing turnstile ('N060', 'R010', '01-00-04', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -12731
WARNING. Abnormal entry count found on day 2016-12-03: -12731
WARNING. Abnormal entry count found on day 2016-12-10: -13037
WARNING. Abnormal entry count found on day 2016-12-10: -13037
WARNING. Abnormal entry count found on day 2016-12-17: -12287
WARNING. Abnormal entry count found on day 2016-12-17: -12287
WARNING. Abnormal entry count found on day 2016-12-24: -10806
WARNING. Abnormal entry count found on day 2016-12-24: -10806
Processing turnstile ('N083', 'R138', '01-02-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12565
WARNING. Abnormal entry count found on day 2016-12-03: -12565
WARNING. Abnormal entry count found on day 2016-12-10: -9574
WARNING. Abnormal entry count found on day 2016-12-10: -9574
WARNING. Abnormal entry count found on day 2016-12-17: -2335719
WARNING. Abnormal entry count found on day 2016-12-17: -7176
WARNING. Abnormal entry count found on day 2016-12-17: -7176
WARNING. Abnormal entry count found on day 2016-12-24: -8456
WARNING. Abnormal entry count found on day 2016-12-24: -8456
Processing turnstile ('R242', 'R049', '01-03-01', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5941
WARNING. Abnormal entry count found on day 2016-12-03: -5941
WARNING. Abnormal entry count found on day 2016-12-10: -5875
WARNING. Abnormal entry count found on day 2016-12-10: -5875
WARNING. Abnormal entry count found on day 2016-12-17: -5399
WARNING. Abnormal entry count found on day 2016-12-17: -5399
WARNING. Abnormal entry count found on day 2016-12-24: -4630
WARNING. Abnormal entry count found on day 2016-12-24: -4630
Processing turnstile ('N323', 'R018', '01-06-01', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -4628
WARNING. Abnormal entry count found on day 2016-12-03: -4628
WARNING. Abnormal entry count found on day 2016-12-10: -4620
WARNING. Abnormal entry count found on day 2016-12-10: -4620
WARNING. Abnormal entry count found on day 2016-12-17: -4638
WARNING. Abnormal entry count found on day 2016-12-17: -4638
WARNING. Abnormal entry count found on day 2016-12-24: -3818
WARNING. Abnormal entry count found on day 2016-12-24: -3818
Processing turnstile ('N335', 'R158', '01-00-02', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -4997
WARNING. Abnormal entry count found on day 2016-12-03: -4997
WARNING. Abnormal entry count found on day 2016-12-10: -5097
WARNING. Abnormal entry count found on day 2016-12-10: -5097
WARNING. Abnormal entry count found on day 2016-12-17: -4995
WARNING. Abnormal entry count found on day 2016-12-17: -4995
WARNING. Abnormal entry count found on day 2016-12-24: -3433
WARNING. Abnormal entry count found on day 2016-12-24: -3433
Processing turnstile ('A046', 'R463', '00-00-03', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10945
WARNING. Abnormal entry count found on day 2016-12-03: -10945
WARNING. Abnormal entry count found on day 2016-12-10: -10448
WARNING. Abnormal entry count found on day 2016-12-10: -10448
WARNING. Abnormal entry count found on day 2016-12-17: -9764
WARNING. Abnormal entry count found on day 2016-12-17: -9764
WARNING. Abnormal entry count found on day 2016-12-24: -10246
WARNING. Abnormal entry count found on day 2016-12-24: -10246
Processing turnstile ('N336', 'R158', '00-05-01', 'KEW GARDENS')
Processing turnstile ('R526', 'R096', '00-05-02', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -1042
WARNING. Abnormal entry count found on day 2016-12-03: -1042
WARNING. Abnormal entry count found on day 2016-12-10: -4370
WARNING. Abnormal entry count found on day 2016-12-10: -4370
WARNING. Abnormal entry count found on day 2016-12-17: -5021
WARNING. Abnormal entry count found on day 2016-12-17: -5021
WARNING. Abnormal entry count found on day 2016-12-24: -4244
WARNING. Abnormal entry count found on day 2016-12-24: -4244
Processing turnstile ('R532H', 'R328', '02-03-05', 'METS-WILLETS PT')
Processing turnstile ('R288', 'R275', '00-00-02', '183 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8057
WARNING. Abnormal entry count found on day 2016-12-03: -8057
WARNING. Abnormal entry count found on day 2016-12-10: -8607
WARNING. Abnormal entry count found on day 2016-12-10: -8607
WARNING. Abnormal entry count found on day 2016-12-17: -8673
WARNING. Abnormal entry count found on day 2016-12-17: -8673
WARNING. Abnormal entry count found on day 2016-12-24: -6753
WARNING. Abnormal entry count found on day 2016-12-24: -6753
Processing turnstile ('B022', 'R229', '00-05-00', 'AVENUE M')
WARNING. Abnormal entry count found on day 2016-12-03: -2057
WARNING. Abnormal entry count found on day 2016-12-03: -2057
WARNING. Abnormal entry count found on day 2016-12-10: -1846
WARNING. Abnormal entry count found on day 2016-12-10: -1846
WARNING. Abnormal entry count found on day 2016-12-17: -1779
WARNING. Abnormal entry count found on day 2016-12-17: -1779
WARNING. Abnormal entry count found on day 2016-12-24: -942
WARNING. Abnormal entry count found on day 2016-12-24: -942
Processing turnstile ('N118', 'R199', '01-00-00', 'KINGSTON-THROOP')
WARNING. Abnormal entry count found on day 2016-12-03: -2846
WARNING. Abnormal entry count found on day 2016-12-03: -2846
WARNING. Abnormal entry count found on day 2016-12-10: -2847
WARNING. Abnormal entry count found on day 2016-12-10: -2847
WARNING. Abnormal entry count found on day 2016-12-17: -2357
WARNING. Abnormal entry count found on day 2016-12-17: -2357
WARNING. Abnormal entry count found on day 2016-12-24: -1916
WARNING. Abnormal entry count found on day 2016-12-24: -1916
Processing turnstile ('N400A', 'R359', '02-03-00', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -6562
WARNING. Abnormal entry count found on day 2016-12-03: -6562
WARNING. Abnormal entry count found on day 2016-12-10: -5940
WARNING. Abnormal entry count found on day 2016-12-10: -5940
WARNING. Abnormal entry count found on day 2016-12-17: -5259
WARNING. Abnormal entry count found on day 2016-12-17: -5259
WARNING. Abnormal entry count found on day 2016-12-24: -2607
WARNING. Abnormal entry count found on day 2016-12-24: -2607
Processing turnstile ('B020', 'R263', '00-05-01', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -1600
WARNING. Abnormal entry count found on day 2016-12-03: -1600
WARNING. Abnormal entry count found on day 2016-12-10: -1573
WARNING. Abnormal entry count found on day 2016-12-10: -1573
WARNING. Abnormal entry count found on day 2016-12-17: -1514
WARNING. Abnormal entry count found on day 2016-12-17: -1514
WARNING. Abnormal entry count found on day 2016-12-24: -1932
WARNING. Abnormal entry count found on day 2016-12-24: -1932
Processing turnstile ('R102', 'R304', '01-03-01', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8649
WARNING. Abnormal entry count found on day 2016-12-03: -8649
WARNING. Abnormal entry count found on day 2016-12-10: -8553
WARNING. Abnormal entry count found on day 2016-12-10: -8553
WARNING. Abnormal entry count found on day 2016-12-17: -7144
WARNING. Abnormal entry count found on day 2016-12-17: -7144
WARNING. Abnormal entry count found on day 2016-12-24: -4954
WARNING. Abnormal entry count found on day 2016-12-24: -4954
Processing turnstile ('H016', 'R250', '00-00-01', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2942
WARNING. Abnormal entry count found on day 2016-12-03: -2942
WARNING. Abnormal entry count found on day 2016-12-10: -2875
WARNING. Abnormal entry count found on day 2016-12-10: -2875
WARNING. Abnormal entry count found on day 2016-12-17: -3164
WARNING. Abnormal entry count found on day 2016-12-17: -3164
WARNING. Abnormal entry count found on day 2016-12-24: -1817
WARNING. Abnormal entry count found on day 2016-12-24: -1817
Processing turnstile ('R169', 'R168', '01-03-04', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -27312
WARNING. Abnormal entry count found on day 2016-12-03: -27312
WARNING. Abnormal entry count found on day 2016-12-10: -16281
WARNING. Abnormal entry count found on day 2016-12-10: -16281
WARNING. Abnormal entry count found on day 2016-12-17: -7692
WARNING. Abnormal entry count found on day 2016-12-17: -7692
WARNING. Abnormal entry count found on day 2016-12-26: -13005
WARNING. Abnormal entry count found on day 2016-12-26: -13005
Processing turnstile ('R242A', 'R049', '02-03-02', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3043
WARNING. Abnormal entry count found on day 2016-12-03: -3043
WARNING. Abnormal entry count found on day 2016-12-10: -2755
WARNING. Abnormal entry count found on day 2016-12-10: -2755
WARNING. Abnormal entry count found on day 2016-12-17: -2552
WARNING. Abnormal entry count found on day 2016-12-17: -2552
WARNING. Abnormal entry count found on day 2016-12-24: -1814
WARNING. Abnormal entry count found on day 2016-12-24: -1814
Processing turnstile ('B034', 'R264', '01-06-00', 'OCEAN PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -2872
WARNING. Abnormal entry count found on day 2016-12-03: -2872
WARNING. Abnormal entry count found on day 2016-12-10: -2790
WARNING. Abnormal entry count found on day 2016-12-10: -2790
WARNING. Abnormal entry count found on day 2016-12-17: -2826
WARNING. Abnormal entry count found on day 2016-12-17: -2826
WARNING. Abnormal entry count found on day 2016-12-24: -1715
WARNING. Abnormal entry count found on day 2016-12-24: -1715
Processing turnstile ('A054', 'R227', '01-00-00', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4951
WARNING. Abnormal entry count found on day 2016-12-03: -4951
WARNING. Abnormal entry count found on day 2016-12-10: -4466
WARNING. Abnormal entry count found on day 2016-12-10: -4466
WARNING. Abnormal entry count found on day 2016-12-17: -3986
WARNING. Abnormal entry count found on day 2016-12-17: -3986
WARNING. Abnormal entry count found on day 2016-12-24: -3180
WARNING. Abnormal entry count found on day 2016-12-24: -3180
Processing turnstile ('R158', 'R084', '00-05-03', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('N607', 'R025', '01-00-02', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -2884
WARNING. Abnormal entry count found on day 2016-12-03: -2884
WARNING. Abnormal entry count found on day 2016-12-10: -2917
WARNING. Abnormal entry count found on day 2016-12-10: -2917
WARNING. Abnormal entry count found on day 2016-12-17: -2934
WARNING. Abnormal entry count found on day 2016-12-17: -2934
WARNING. Abnormal entry count found on day 2016-12-24: -1667
WARNING. Abnormal entry count found on day 2016-12-24: -1667
Processing turnstile ('H001', 'R175', '00-05-00', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -20
WARNING. Abnormal entry count found on day 2016-12-03: -20
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-17: -27
WARNING. Abnormal entry count found on day 2016-12-17: -27
WARNING. Abnormal entry count found on day 2016-12-24: -17
WARNING. Abnormal entry count found on day 2016-12-24: -17
Processing turnstile ('N333B', 'R141', '02-03-00', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-17: -10
WARNING. Abnormal entry count found on day 2016-12-17: -10
WARNING. Abnormal entry count found on day 2016-12-24: -10
WARNING. Abnormal entry count found on day 2016-12-24: -10
Processing turnstile ('R408', 'R449', '00-00-01', 'E 149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6235
WARNING. Abnormal entry count found on day 2016-12-03: -6235
WARNING. Abnormal entry count found on day 2016-12-10: -5916
WARNING. Abnormal entry count found on day 2016-12-10: -5916
WARNING. Abnormal entry count found on day 2016-12-17: -5555
WARNING. Abnormal entry count found on day 2016-12-17: -5555
WARNING. Abnormal entry count found on day 2016-12-24: -4464
WARNING. Abnormal entry count found on day 2016-12-24: -4464
Processing turnstile ('H001', 'R175', '00-00-05', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12397
WARNING. Abnormal entry count found on day 2016-12-03: -12397
WARNING. Abnormal entry count found on day 2016-12-10: -12395
WARNING. Abnormal entry count found on day 2016-12-10: -12395
WARNING. Abnormal entry count found on day 2016-12-17: -11055
WARNING. Abnormal entry count found on day 2016-12-17: -11055
WARNING. Abnormal entry count found on day 2016-12-24: -8774
WARNING. Abnormal entry count found on day 2016-12-24: -8774
Processing turnstile ('R610', 'R057', '00-03-04', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -13693
WARNING. Abnormal entry count found on day 2016-12-03: -13693
WARNING. Abnormal entry count found on day 2016-12-10: -14292
WARNING. Abnormal entry count found on day 2016-12-10: -14292
WARNING. Abnormal entry count found on day 2016-12-17: -14322
WARNING. Abnormal entry count found on day 2016-12-17: -14322
WARNING. Abnormal entry count found on day 2016-12-24: -9837
WARNING. Abnormal entry count found on day 2016-12-24: -9837
Processing turnstile ('N325A', 'R218', '00-00-00', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1055
WARNING. Abnormal entry count found on day 2016-12-03: -1055
WARNING. Abnormal entry count found on day 2016-12-10: -1172
WARNING. Abnormal entry count found on day 2016-12-10: -1172
WARNING. Abnormal entry count found on day 2016-12-17: -1145
WARNING. Abnormal entry count found on day 2016-12-17: -1145
WARNING. Abnormal entry count found on day 2016-12-24: -1047
WARNING. Abnormal entry count found on day 2016-12-24: -1047
Processing turnstile ('R182', 'R035', '00-03-01', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9262
WARNING. Abnormal entry count found on day 2016-12-03: -9262
WARNING. Abnormal entry count found on day 2016-12-10: -8639
WARNING. Abnormal entry count found on day 2016-12-10: -8639
WARNING. Abnormal entry count found on day 2016-12-17: -7895
WARNING. Abnormal entry count found on day 2016-12-17: -7895
WARNING. Abnormal entry count found on day 2016-12-24: -5291
WARNING. Abnormal entry count found on day 2016-12-24: -5291
Processing turnstile ('N310', 'R140', '01-00-02', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -5704
WARNING. Abnormal entry count found on day 2016-12-03: -5704
WARNING. Abnormal entry count found on day 2016-12-10: -5394
WARNING. Abnormal entry count found on day 2016-12-10: -5394
WARNING. Abnormal entry count found on day 2016-12-17: -5507
WARNING. Abnormal entry count found on day 2016-12-17: -5507
WARNING. Abnormal entry count found on day 2016-12-24: -3931
WARNING. Abnormal entry count found on day 2016-12-24: -3931
Processing turnstile ('R151', 'R033', '00-00-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14297
WARNING. Abnormal entry count found on day 2016-12-03: -14297
WARNING. Abnormal entry count found on day 2016-12-10: -14914
WARNING. Abnormal entry count found on day 2016-12-10: -14914
WARNING. Abnormal entry count found on day 2016-12-17: -16017
WARNING. Abnormal entry count found on day 2016-12-17: -16017
WARNING. Abnormal entry count found on day 2016-12-24: -17876
WARNING. Abnormal entry count found on day 2016-12-24: -17876
Processing turnstile ('R129', 'R321', '00-00-01', '18 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22662
WARNING. Abnormal entry count found on day 2016-12-03: -22662
WARNING. Abnormal entry count found on day 2016-12-10: -14817
WARNING. Abnormal entry count found on day 2016-12-10: -14817
WARNING. Abnormal entry count found on day 2016-12-17: -10162
WARNING. Abnormal entry count found on day 2016-12-17: -10162
WARNING. Abnormal entry count found on day 2016-12-24: -5987
WARNING. Abnormal entry count found on day 2016-12-24: -5987
Processing turnstile ('R285', 'R308', '00-00-02', 'MT EDEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7621
WARNING. Abnormal entry count found on day 2016-12-03: -7621
WARNING. Abnormal entry count found on day 2016-12-10: -7843
WARNING. Abnormal entry count found on day 2016-12-10: -7843
WARNING. Abnormal entry count found on day 2016-12-17: -7718
WARNING. Abnormal entry count found on day 2016-12-17: -7718
WARNING. Abnormal entry count found on day 2016-12-24: -5706
WARNING. Abnormal entry count found on day 2016-12-24: -5706
Processing turnstile ('N208', 'R443', '01-06-01', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2276
WARNING. Abnormal entry count found on day 2016-12-03: -2276
WARNING. Abnormal entry count found on day 2016-12-10: -2255
WARNING. Abnormal entry count found on day 2016-12-10: -2255
WARNING. Abnormal entry count found on day 2016-12-17: -2115
WARNING. Abnormal entry count found on day 2016-12-17: -2115
WARNING. Abnormal entry count found on day 2016-12-24: -1667
WARNING. Abnormal entry count found on day 2016-12-24: -1667
Processing turnstile ('N600', 'R302', '00-06-03', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15098
WARNING. Abnormal entry count found on day 2016-12-03: -15098
WARNING. Abnormal entry count found on day 2016-12-10: -15879
WARNING. Abnormal entry count found on day 2016-12-10: -15879
WARNING. Abnormal entry count found on day 2016-12-17: -13348
WARNING. Abnormal entry count found on day 2016-12-17: -13348
WARNING. Abnormal entry count found on day 2016-12-24: -10936
WARNING. Abnormal entry count found on day 2016-12-24: -10936
Processing turnstile ('R202', 'R042', '00-00-02', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -7025
WARNING. Abnormal entry count found on day 2016-12-03: -7025
WARNING. Abnormal entry count found on day 2016-12-10: -6617
WARNING. Abnormal entry count found on day 2016-12-10: -6617
WARNING. Abnormal entry count found on day 2016-12-17: -6929
WARNING. Abnormal entry count found on day 2016-12-17: -6929
WARNING. Abnormal entry count found on day 2016-12-24: -7312
WARNING. Abnormal entry count found on day 2016-12-24: -7312
Processing turnstile ('A083', 'R125', '00-00-00', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7360
WARNING. Abnormal entry count found on day 2016-12-03: -7360
WARNING. Abnormal entry count found on day 2016-12-10: -7058
WARNING. Abnormal entry count found on day 2016-12-10: -7058
WARNING. Abnormal entry count found on day 2016-12-17: -6472
WARNING. Abnormal entry count found on day 2016-12-17: -6472
WARNING. Abnormal entry count found on day 2016-12-24: -4866
WARNING. Abnormal entry count found on day 2016-12-24: -4866
Processing turnstile ('R205A', 'R014', '04-03-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6511
WARNING. Abnormal entry count found on day 2016-12-03: -6511
WARNING. Abnormal entry count found on day 2016-12-10: -6231
WARNING. Abnormal entry count found on day 2016-12-10: -6231
WARNING. Abnormal entry count found on day 2016-12-17: -6217
WARNING. Abnormal entry count found on day 2016-12-17: -6217
WARNING. Abnormal entry count found on day 2016-12-24: -5023
WARNING. Abnormal entry count found on day 2016-12-24: -5023
Processing turnstile ('R111', 'R027', '00-00-03', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4529
WARNING. Abnormal entry count found on day 2016-12-03: -4529
WARNING. Abnormal entry count found on day 2016-12-10: -4527
WARNING. Abnormal entry count found on day 2016-12-10: -4527
WARNING. Abnormal entry count found on day 2016-12-17: -2979
WARNING. Abnormal entry count found on day 2016-12-17: -2979
WARNING. Abnormal entry count found on day 2016-12-24: -2128
WARNING. Abnormal entry count found on day 2016-12-24: -2128
Processing turnstile ('R230', 'R143', '02-06-01', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -706
WARNING. Abnormal entry count found on day 2016-12-03: -706
WARNING. Abnormal entry count found on day 2016-12-10: -710
WARNING. Abnormal entry count found on day 2016-12-10: -710
WARNING. Abnormal entry count found on day 2016-12-17: -493
WARNING. Abnormal entry count found on day 2016-12-17: -493
WARNING. Abnormal entry count found on day 2016-12-24: -287
WARNING. Abnormal entry count found on day 2016-12-24: -287
Processing turnstile ('N010', 'R126', '00-05-00', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-10: -5
WARNING. Abnormal entry count found on day 2016-12-10: -5
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('R306', 'R207', '00-05-01', '135 ST')
Processing turnstile ('N102', 'R127', '01-00-01', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -16476
WARNING. Abnormal entry count found on day 2016-12-03: -16476
WARNING. Abnormal entry count found on day 2016-12-10: -15424
WARNING. Abnormal entry count found on day 2016-12-10: -15424
WARNING. Abnormal entry count found on day 2016-12-17: -13583
WARNING. Abnormal entry count found on day 2016-12-17: -13583
WARNING. Abnormal entry count found on day 2016-12-24: -7810
WARNING. Abnormal entry count found on day 2016-12-24: -7810
Processing turnstile ('R262A', 'R195', '04-00-03', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -288
WARNING. Abnormal entry count found on day 2016-12-24: -288
Processing turnstile ('R521', 'R327', '00-06-01', '52 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8542
WARNING. Abnormal entry count found on day 2016-12-03: -8542
WARNING. Abnormal entry count found on day 2016-12-10: -8632
WARNING. Abnormal entry count found on day 2016-12-10: -8632
WARNING. Abnormal entry count found on day 2016-12-17: -8415
WARNING. Abnormal entry count found on day 2016-12-17: -8415
WARNING. Abnormal entry count found on day 2016-12-24: -6702
WARNING. Abnormal entry count found on day 2016-12-24: -6702
Processing turnstile ('H026', 'R137', '00-05-01', 'MYRTLE-WYCKOFF')
Processing turnstile ('N220', 'R155', '01-00-00', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -7537
WARNING. Abnormal entry count found on day 2016-12-03: -7537
WARNING. Abnormal entry count found on day 2016-12-10: -7401
WARNING. Abnormal entry count found on day 2016-12-10: -7401
WARNING. Abnormal entry count found on day 2016-12-17: -7408
WARNING. Abnormal entry count found on day 2016-12-17: -7408
WARNING. Abnormal entry count found on day 2016-12-24: -6127
WARNING. Abnormal entry count found on day 2016-12-24: -6127
Processing turnstile ('R416', 'R245', '00-00-00', 'ST LAWRENCE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4178
WARNING. Abnormal entry count found on day 2016-12-03: -4178
WARNING. Abnormal entry count found on day 2016-12-10: -3855
WARNING. Abnormal entry count found on day 2016-12-10: -3855
WARNING. Abnormal entry count found on day 2016-12-17: -3842
WARNING. Abnormal entry count found on day 2016-12-17: -3842
WARNING. Abnormal entry count found on day 2016-12-24: -3014
WARNING. Abnormal entry count found on day 2016-12-24: -3014
Processing turnstile ('R643', 'R135', '00-00-02', 'NEWKIRK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10515
WARNING. Abnormal entry count found on day 2016-12-03: -10515
WARNING. Abnormal entry count found on day 2016-12-10: -11758
WARNING. Abnormal entry count found on day 2016-12-10: -11758
WARNING. Abnormal entry count found on day 2016-12-17: -10496
WARNING. Abnormal entry count found on day 2016-12-17: -10496
WARNING. Abnormal entry count found on day 2016-12-24: -7487
WARNING. Abnormal entry count found on day 2016-12-24: -7487
Processing turnstile ('N309A', 'R140', '00-05-00', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -24
WARNING. Abnormal entry count found on day 2016-12-03: -24
WARNING. Abnormal entry count found on day 2016-12-10: -17
WARNING. Abnormal entry count found on day 2016-12-10: -17
WARNING. Abnormal entry count found on day 2016-12-17: -22
WARNING. Abnormal entry count found on day 2016-12-17: -22
WARNING. Abnormal entry count found on day 2016-12-24: -10
WARNING. Abnormal entry count found on day 2016-12-24: -10
Processing turnstile ('N305A', 'R016', '00-03-00', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -4232
WARNING. Abnormal entry count found on day 2016-12-03: -4232
WARNING. Abnormal entry count found on day 2016-12-10: -3810
WARNING. Abnormal entry count found on day 2016-12-10: -3810
WARNING. Abnormal entry count found on day 2016-12-17: -3212
WARNING. Abnormal entry count found on day 2016-12-17: -3212
WARNING. Abnormal entry count found on day 2016-12-24: -1838
WARNING. Abnormal entry count found on day 2016-12-24: -1838
Processing turnstile ('N023', 'R332', '01-00-02', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3383
WARNING. Abnormal entry count found on day 2016-12-03: -3383
WARNING. Abnormal entry count found on day 2016-12-10: -3093
WARNING. Abnormal entry count found on day 2016-12-10: -3093
WARNING. Abnormal entry count found on day 2016-12-17: -3053
WARNING. Abnormal entry count found on day 2016-12-17: -3053
WARNING. Abnormal entry count found on day 2016-12-24: -1776
WARNING. Abnormal entry count found on day 2016-12-24: -1776
Processing turnstile ('R409', 'R449', '01-00-01', 'E 149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2478
WARNING. Abnormal entry count found on day 2016-12-03: -2478
WARNING. Abnormal entry count found on day 2016-12-10: -2414
WARNING. Abnormal entry count found on day 2016-12-10: -2414
WARNING. Abnormal entry count found on day 2016-12-17: -2456
WARNING. Abnormal entry count found on day 2016-12-17: -2456
WARNING. Abnormal entry count found on day 2016-12-24: -1752
WARNING. Abnormal entry count found on day 2016-12-24: -1752
Processing turnstile ('A041', 'R086', '00-00-03', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11629
WARNING. Abnormal entry count found on day 2016-12-03: -11629
WARNING. Abnormal entry count found on day 2016-12-10: -12526
WARNING. Abnormal entry count found on day 2016-12-10: -12526
WARNING. Abnormal entry count found on day 2016-12-17: -13241
WARNING. Abnormal entry count found on day 2016-12-17: -13241
WARNING. Abnormal entry count found on day 2016-12-24: -11502
WARNING. Abnormal entry count found on day 2016-12-24: -11502
Processing turnstile ('R137', 'R031', '02-03-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -7641
WARNING. Abnormal entry count found on day 2016-12-03: -7641
WARNING. Abnormal entry count found on day 2016-12-10: -4936
WARNING. Abnormal entry count found on day 2016-12-10: -4936
WARNING. Abnormal entry count found on day 2016-12-17: -6584
WARNING. Abnormal entry count found on day 2016-12-17: -6584
WARNING. Abnormal entry count found on day 2016-12-24: -3615
WARNING. Abnormal entry count found on day 2016-12-24: -3615
Processing turnstile ('R331', 'R364', '00-05-00', 'GUN HILL RD')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-24: -7
WARNING. Abnormal entry count found on day 2016-12-24: -7
Processing turnstile ('N063', 'R011', '02-00-04', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -9161
WARNING. Abnormal entry count found on day 2016-12-03: -9161
WARNING. Abnormal entry count found on day 2016-12-10: -9484
WARNING. Abnormal entry count found on day 2016-12-10: -9484
WARNING. Abnormal entry count found on day 2016-12-17: -8753
WARNING. Abnormal entry count found on day 2016-12-17: -8753
WARNING. Abnormal entry count found on day 2016-12-24: -7834
WARNING. Abnormal entry count found on day 2016-12-24: -7834
Processing turnstile ('N337', 'R255', '00-00-01', 'BRIARWOOD')
WARNING. Abnormal entry count found on day 2016-12-03: -7335
WARNING. Abnormal entry count found on day 2016-12-03: -7335
WARNING. Abnormal entry count found on day 2016-12-10: -6563
WARNING. Abnormal entry count found on day 2016-12-10: -6563
WARNING. Abnormal entry count found on day 2016-12-17: -6157
WARNING. Abnormal entry count found on day 2016-12-17: -6157
WARNING. Abnormal entry count found on day 2016-12-24: -4436
WARNING. Abnormal entry count found on day 2016-12-24: -4436
Processing turnstile ('R419', 'R326', '00-05-01', 'ZEREGA AV')
Processing turnstile ('H009', 'R235', '00-03-02', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12664
WARNING. Abnormal entry count found on day 2016-12-03: -12664
WARNING. Abnormal entry count found on day 2016-12-10: -12383
WARNING. Abnormal entry count found on day 2016-12-10: -12383
WARNING. Abnormal entry count found on day 2016-12-17: -12627
WARNING. Abnormal entry count found on day 2016-12-17: -12627
WARNING. Abnormal entry count found on day 2016-12-24: -9092
WARNING. Abnormal entry count found on day 2016-12-24: -9092
Processing turnstile ('N519A', 'R461', '01-05-02', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
Processing turnstile ('R625', 'R062', '01-00-02', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -8941
WARNING. Abnormal entry count found on day 2016-12-03: -8941
WARNING. Abnormal entry count found on day 2016-12-10: -9125
WARNING. Abnormal entry count found on day 2016-12-10: -9125
WARNING. Abnormal entry count found on day 2016-12-17: -8471
WARNING. Abnormal entry count found on day 2016-12-17: -8471
WARNING. Abnormal entry count found on day 2016-12-24: -6058
WARNING. Abnormal entry count found on day 2016-12-24: -6058
Processing turnstile ('N600', 'R302', '00-03-00', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3374
WARNING. Abnormal entry count found on day 2016-12-03: -3374
WARNING. Abnormal entry count found on day 2016-12-10: -3346
WARNING. Abnormal entry count found on day 2016-12-10: -3346
WARNING. Abnormal entry count found on day 2016-12-17: -3055
WARNING. Abnormal entry count found on day 2016-12-17: -3055
WARNING. Abnormal entry count found on day 2016-12-24: -2311
WARNING. Abnormal entry count found on day 2016-12-24: -2311
Processing turnstile ('PTH17', 'R541', '01-01-00', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10146
WARNING. Abnormal entry count found on day 2016-12-03: -10146
WARNING. Abnormal entry count found on day 2016-12-10: -10059
WARNING. Abnormal entry count found on day 2016-12-10: -10059
WARNING. Abnormal entry count found on day 2016-12-17: -9039
WARNING. Abnormal entry count found on day 2016-12-17: -9039
WARNING. Abnormal entry count found on day 2016-12-24: -8328
WARNING. Abnormal entry count found on day 2016-12-24: -8328
Processing turnstile ('N067', 'R012', '00-03-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -10542
WARNING. Abnormal entry count found on day 2016-12-03: -10542
WARNING. Abnormal entry count found on day 2016-12-10: -10654
WARNING. Abnormal entry count found on day 2016-12-10: -10654
WARNING. Abnormal entry count found on day 2016-12-17: -10134
WARNING. Abnormal entry count found on day 2016-12-17: -10134
WARNING. Abnormal entry count found on day 2016-12-24: -8159
WARNING. Abnormal entry count found on day 2016-12-24: -8159
Processing turnstile ('N300', 'R113', '01-00-02', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8994
WARNING. Abnormal entry count found on day 2016-12-03: -8994
WARNING. Abnormal entry count found on day 2016-12-10: -9980
WARNING. Abnormal entry count found on day 2016-12-10: -9980
WARNING. Abnormal entry count found on day 2016-12-17: -7942
WARNING. Abnormal entry count found on day 2016-12-17: -7942
WARNING. Abnormal entry count found on day 2016-12-24: -6200
WARNING. Abnormal entry count found on day 2016-12-24: -6200
Processing turnstile ('R289', 'R119', '00-03-00', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -18992
WARNING. Abnormal entry count found on day 2016-12-03: -18992
WARNING. Abnormal entry count found on day 2016-12-10: -17674
WARNING. Abnormal entry count found on day 2016-12-10: -17674
WARNING. Abnormal entry count found on day 2016-12-17: -16335
WARNING. Abnormal entry count found on day 2016-12-17: -16335
WARNING. Abnormal entry count found on day 2016-12-24: -13627
WARNING. Abnormal entry count found on day 2016-12-24: -13627
Processing turnstile ('C023', 'R213', '00-00-04', 'BAY RIDGE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6447
WARNING. Abnormal entry count found on day 2016-12-03: -6447
WARNING. Abnormal entry count found on day 2016-12-10: -6577
WARNING. Abnormal entry count found on day 2016-12-10: -6577
WARNING. Abnormal entry count found on day 2016-12-17: -6372
WARNING. Abnormal entry count found on day 2016-12-17: -6372
WARNING. Abnormal entry count found on day 2016-12-24: -4654
WARNING. Abnormal entry count found on day 2016-12-24: -4654
Processing turnstile ('N123B', 'R439', '01-05-00', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
Processing turnstile ('R112', 'R027', '02-00-03', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3262
WARNING. Abnormal entry count found on day 2016-12-03: -3262
WARNING. Abnormal entry count found on day 2016-12-10: -3146
WARNING. Abnormal entry count found on day 2016-12-10: -3146
WARNING. Abnormal entry count found on day 2016-12-17: -2445
WARNING. Abnormal entry count found on day 2016-12-17: -2445
WARNING. Abnormal entry count found on day 2016-12-24: -1183
WARNING. Abnormal entry count found on day 2016-12-24: -1183
Processing turnstile ('R262', 'R195', '03-00-00', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -9233
WARNING. Abnormal entry count found on day 2016-12-03: -9233
WARNING. Abnormal entry count found on day 2016-12-10: -8493
WARNING. Abnormal entry count found on day 2016-12-10: -8493
WARNING. Abnormal entry count found on day 2016-12-17: -8337
WARNING. Abnormal entry count found on day 2016-12-17: -8337
WARNING. Abnormal entry count found on day 2016-12-24: -6932
WARNING. Abnormal entry count found on day 2016-12-24: -6932
Processing turnstile ('D008', 'R392', '00-00-01', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2647
WARNING. Abnormal entry count found on day 2016-12-03: -2647
WARNING. Abnormal entry count found on day 2016-12-10: -2532
WARNING. Abnormal entry count found on day 2016-12-10: -2532
WARNING. Abnormal entry count found on day 2016-12-17: -2533
WARNING. Abnormal entry count found on day 2016-12-17: -2533
WARNING. Abnormal entry count found on day 2016-12-24: -2244
WARNING. Abnormal entry count found on day 2016-12-24: -2244
Processing turnstile ('R521', 'R327', '00-00-01', '52 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7650
WARNING. Abnormal entry count found on day 2016-12-03: -7650
WARNING. Abnormal entry count found on day 2016-12-10: -6924
WARNING. Abnormal entry count found on day 2016-12-10: -6924
WARNING. Abnormal entry count found on day 2016-12-17: -6471
WARNING. Abnormal entry count found on day 2016-12-17: -6471
WARNING. Abnormal entry count found on day 2016-12-24: -5119
WARNING. Abnormal entry count found on day 2016-12-24: -5119
Processing turnstile ('R155', 'R116', '01-00-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13283
WARNING. Abnormal entry count found on day 2016-12-03: -13283
WARNING. Abnormal entry count found on day 2016-12-10: -13401
WARNING. Abnormal entry count found on day 2016-12-10: -13401
WARNING. Abnormal entry count found on day 2016-12-17: -12928
WARNING. Abnormal entry count found on day 2016-12-17: -12928
WARNING. Abnormal entry count found on day 2016-12-24: -11682
WARNING. Abnormal entry count found on day 2016-12-24: -11682
Processing turnstile ('B018', 'R184', '00-00-02', 'CORTELYOU RD')
WARNING. Abnormal entry count found on day 2016-12-03: -11610
WARNING. Abnormal entry count found on day 2016-12-03: -11610
WARNING. Abnormal entry count found on day 2016-12-10: -11245
WARNING. Abnormal entry count found on day 2016-12-10: -11245
WARNING. Abnormal entry count found on day 2016-12-17: -10863
WARNING. Abnormal entry count found on day 2016-12-17: -10863
WARNING. Abnormal entry count found on day 2016-12-24: -7823
WARNING. Abnormal entry count found on day 2016-12-24: -7823
Processing turnstile ('N044', 'R187', '00-03-01', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -6164
WARNING. Abnormal entry count found on day 2016-12-03: -6164
WARNING. Abnormal entry count found on day 2016-12-10: -6041
WARNING. Abnormal entry count found on day 2016-12-10: -6041
WARNING. Abnormal entry count found on day 2016-12-17: -6321
WARNING. Abnormal entry count found on day 2016-12-17: -6321
WARNING. Abnormal entry count found on day 2016-12-24: -8879
WARNING. Abnormal entry count found on day 2016-12-24: -8879
Processing turnstile ('A050', 'R088', '00-03-01', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1859
WARNING. Abnormal entry count found on day 2016-12-03: -1859
WARNING. Abnormal entry count found on day 2016-12-10: -1507
WARNING. Abnormal entry count found on day 2016-12-10: -1507
WARNING. Abnormal entry count found on day 2016-12-17: -1973
WARNING. Abnormal entry count found on day 2016-12-17: -1973
WARNING. Abnormal entry count found on day 2016-12-24: -3286
WARNING. Abnormal entry count found on day 2016-12-24: -3286
Processing turnstile ('R242', 'R049', '01-00-03', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9545
WARNING. Abnormal entry count found on day 2016-12-03: -9545
WARNING. Abnormal entry count found on day 2016-12-10: -9586
WARNING. Abnormal entry count found on day 2016-12-10: -9586
WARNING. Abnormal entry count found on day 2016-12-17: -8535
WARNING. Abnormal entry count found on day 2016-12-17: -8535
WARNING. Abnormal entry count found on day 2016-12-24: -6099
WARNING. Abnormal entry count found on day 2016-12-24: -6099
Processing turnstile ('R253', 'R181', '00-00-01', '110 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8278
WARNING. Abnormal entry count found on day 2016-12-03: -8278
WARNING. Abnormal entry count found on day 2016-12-10: -7761
WARNING. Abnormal entry count found on day 2016-12-10: -7761
WARNING. Abnormal entry count found on day 2016-12-17: -8278
WARNING. Abnormal entry count found on day 2016-12-17: -8278
WARNING. Abnormal entry count found on day 2016-12-24: -5196
WARNING. Abnormal entry count found on day 2016-12-24: -5196
Processing turnstile ('N532', 'R129', '00-00-01', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9350
WARNING. Abnormal entry count found on day 2016-12-03: -9350
WARNING. Abnormal entry count found on day 2016-12-10: -9269
WARNING. Abnormal entry count found on day 2016-12-10: -9269
WARNING. Abnormal entry count found on day 2016-12-17: -8647
WARNING. Abnormal entry count found on day 2016-12-17: -8647
WARNING. Abnormal entry count found on day 2016-12-24: -5657
WARNING. Abnormal entry count found on day 2016-12-24: -5657
Processing turnstile ('N221', 'R155', '00-00-02', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3214
WARNING. Abnormal entry count found on day 2016-12-03: -3214
WARNING. Abnormal entry count found on day 2016-12-10: -3057
WARNING. Abnormal entry count found on day 2016-12-10: -3057
WARNING. Abnormal entry count found on day 2016-12-17: -3078
WARNING. Abnormal entry count found on day 2016-12-17: -3078
WARNING. Abnormal entry count found on day 2016-12-24: -2527
WARNING. Abnormal entry count found on day 2016-12-24: -2527
Processing turnstile ('N408A', 'R256', '00-03-00', 'NASSAU ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3847
WARNING. Abnormal entry count found on day 2016-12-03: -3847
WARNING. Abnormal entry count found on day 2016-12-10: -3669
WARNING. Abnormal entry count found on day 2016-12-10: -3669
WARNING. Abnormal entry count found on day 2016-12-17: -3532
WARNING. Abnormal entry count found on day 2016-12-17: -3532
WARNING. Abnormal entry count found on day 2016-12-24: -2338
WARNING. Abnormal entry count found on day 2016-12-24: -2338
Processing turnstile ('R317', 'R408', '01-05-00', 'SIMPSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('N559', 'R425', '00-00-02', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -2170
WARNING. Abnormal entry count found on day 2016-12-03: -2170
WARNING. Abnormal entry count found on day 2016-12-10: -2018
WARNING. Abnormal entry count found on day 2016-12-10: -2018
WARNING. Abnormal entry count found on day 2016-12-17: -2203
WARNING. Abnormal entry count found on day 2016-12-17: -2203
WARNING. Abnormal entry count found on day 2016-12-24: -1636
WARNING. Abnormal entry count found on day 2016-12-24: -1636
Processing turnstile ('J035', 'R008', '00-00-01', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2352
WARNING. Abnormal entry count found on day 2016-12-03: -2352
WARNING. Abnormal entry count found on day 2016-12-10: -2310
WARNING. Abnormal entry count found on day 2016-12-10: -2310
WARNING. Abnormal entry count found on day 2016-12-17: -2193
WARNING. Abnormal entry count found on day 2016-12-17: -2193
WARNING. Abnormal entry count found on day 2016-12-24: -1494
WARNING. Abnormal entry count found on day 2016-12-24: -1494
Processing turnstile ('R174', 'R034', '00-00-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11198
WARNING. Abnormal entry count found on day 2016-12-03: -11198
WARNING. Abnormal entry count found on day 2016-12-10: -11866
WARNING. Abnormal entry count found on day 2016-12-10: -11866
WARNING. Abnormal entry count found on day 2016-12-17: -10691
WARNING. Abnormal entry count found on day 2016-12-17: -10691
WARNING. Abnormal entry count found on day 2016-12-24: -7408
WARNING. Abnormal entry count found on day 2016-12-24: -7408
Processing turnstile ('J030', 'R005', '00-00-01', '85 ST-FOREST PK')
WARNING. Abnormal entry count found on day 2016-12-03: -4313
WARNING. Abnormal entry count found on day 2016-12-03: -4313
WARNING. Abnormal entry count found on day 2016-12-10: -4719
WARNING. Abnormal entry count found on day 2016-12-10: -4719
WARNING. Abnormal entry count found on day 2016-12-17: -4356
WARNING. Abnormal entry count found on day 2016-12-17: -4356
WARNING. Abnormal entry count found on day 2016-12-24: -3514
WARNING. Abnormal entry count found on day 2016-12-24: -3514
Processing turnstile ('R321', 'R386', '01-00-00', '174 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5644
WARNING. Abnormal entry count found on day 2016-12-03: -5644
WARNING. Abnormal entry count found on day 2016-12-10: -3762
WARNING. Abnormal entry count found on day 2016-12-10: -3762
WARNING. Abnormal entry count found on day 2016-12-17: -4011
WARNING. Abnormal entry count found on day 2016-12-17: -4011
WARNING. Abnormal entry count found on day 2016-12-24: -2755
WARNING. Abnormal entry count found on day 2016-12-24: -2755
Processing turnstile ('J002', 'R460', '00-05-01', 'MARCY AV')
Processing turnstile ('R533', 'R055', '00-00-02', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -5806
WARNING. Abnormal entry count found on day 2016-12-03: -5806
WARNING. Abnormal entry count found on day 2016-12-10: -5628
WARNING. Abnormal entry count found on day 2016-12-10: -5628
WARNING. Abnormal entry count found on day 2016-12-17: -6019
WARNING. Abnormal entry count found on day 2016-12-17: -6019
WARNING. Abnormal entry count found on day 2016-12-24: -5481
WARNING. Abnormal entry count found on day 2016-12-24: -5481
Processing turnstile ('N334B', 'R341', '00-03-00', '75 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -450
WARNING. Abnormal entry count found on day 2016-12-03: -450
WARNING. Abnormal entry count found on day 2016-12-10: -397
WARNING. Abnormal entry count found on day 2016-12-10: -397
WARNING. Abnormal entry count found on day 2016-12-17: -418
WARNING. Abnormal entry count found on day 2016-12-17: -418
WARNING. Abnormal entry count found on day 2016-12-24: -294
WARNING. Abnormal entry count found on day 2016-12-24: -294
Processing turnstile ('H003', 'R163', '01-00-01', '6 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9549
WARNING. Abnormal entry count found on day 2016-12-03: -9549
WARNING. Abnormal entry count found on day 2016-12-10: -9785
WARNING. Abnormal entry count found on day 2016-12-10: -9785
WARNING. Abnormal entry count found on day 2016-12-17: -17816
WARNING. Abnormal entry count found on day 2016-12-17: -17816
WARNING. Abnormal entry count found on day 2016-12-24: -15028
WARNING. Abnormal entry count found on day 2016-12-24: -15028
Processing turnstile ('PTH13', 'R541', '00-04-05', 'THIRTY ST')
Processing turnstile ('R220', 'R160', '01-03-00', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -2967
WARNING. Abnormal entry count found on day 2016-12-03: -2967
WARNING. Abnormal entry count found on day 2016-12-10: -3057
WARNING. Abnormal entry count found on day 2016-12-10: -3057
WARNING. Abnormal entry count found on day 2016-12-17: -3018
WARNING. Abnormal entry count found on day 2016-12-17: -3018
WARNING. Abnormal entry count found on day 2016-12-24: -1919
WARNING. Abnormal entry count found on day 2016-12-24: -1919
Processing turnstile ('R103', 'R304', '00-00-00', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15384
WARNING. Abnormal entry count found on day 2016-12-03: -15384
WARNING. Abnormal entry count found on day 2016-12-10: -15497
WARNING. Abnormal entry count found on day 2016-12-10: -15497
WARNING. Abnormal entry count found on day 2016-12-17: -13269
WARNING. Abnormal entry count found on day 2016-12-17: -13269
WARNING. Abnormal entry count found on day 2016-12-24: -11021
WARNING. Abnormal entry count found on day 2016-12-24: -11021
Processing turnstile ('N121B', 'R438', '00-00-01', 'RALPH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7722
WARNING. Abnormal entry count found on day 2016-12-03: -7722
WARNING. Abnormal entry count found on day 2016-12-10: -7522
WARNING. Abnormal entry count found on day 2016-12-10: -7522
WARNING. Abnormal entry count found on day 2016-12-17: -7226
WARNING. Abnormal entry count found on day 2016-12-17: -7226
WARNING. Abnormal entry count found on day 2016-12-24: -5576
WARNING. Abnormal entry count found on day 2016-12-24: -5576
Processing turnstile ('N209', 'R443', '00-00-01', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5432
WARNING. Abnormal entry count found on day 2016-12-03: -5432
WARNING. Abnormal entry count found on day 2016-12-10: -5427
WARNING. Abnormal entry count found on day 2016-12-10: -5427
WARNING. Abnormal entry count found on day 2016-12-17: -5417
WARNING. Abnormal entry count found on day 2016-12-17: -5417
WARNING. Abnormal entry count found on day 2016-12-24: -4178
WARNING. Abnormal entry count found on day 2016-12-24: -4178
Processing turnstile ('N539A', 'R288', '00-00-04', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -232
WARNING. Abnormal entry count found on day 2016-12-03: -232
WARNING. Abnormal entry count found on day 2016-12-10: -262
WARNING. Abnormal entry count found on day 2016-12-10: -262
WARNING. Abnormal entry count found on day 2016-12-17: -267
WARNING. Abnormal entry count found on day 2016-12-17: -267
WARNING. Abnormal entry count found on day 2016-12-24: -179
WARNING. Abnormal entry count found on day 2016-12-24: -179
Processing turnstile ('A011', 'R080', '01-00-02', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13747
WARNING. Abnormal entry count found on day 2016-12-03: -13747
WARNING. Abnormal entry count found on day 2016-12-10: -13564
WARNING. Abnormal entry count found on day 2016-12-10: -13564
WARNING. Abnormal entry count found on day 2016-12-17: -11634
WARNING. Abnormal entry count found on day 2016-12-17: -11634
WARNING. Abnormal entry count found on day 2016-12-24: -8784
WARNING. Abnormal entry count found on day 2016-12-24: -8784
Processing turnstile ('A050', 'R088', '00-05-01', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -870
WARNING. Abnormal entry count found on day 2016-12-03: -870
WARNING. Abnormal entry count found on day 2016-12-10: -827
WARNING. Abnormal entry count found on day 2016-12-10: -827
WARNING. Abnormal entry count found on day 2016-12-17: -828
WARNING. Abnormal entry count found on day 2016-12-17: -828
WARNING. Abnormal entry count found on day 2016-12-24: -753
WARNING. Abnormal entry count found on day 2016-12-24: -753
Processing turnstile ('R182', 'R035', '00-03-02', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18542
WARNING. Abnormal entry count found on day 2016-12-03: -18542
WARNING. Abnormal entry count found on day 2016-12-10: -17515
WARNING. Abnormal entry count found on day 2016-12-10: -17515
WARNING. Abnormal entry count found on day 2016-12-17: -16163
WARNING. Abnormal entry count found on day 2016-12-17: -16163
WARNING. Abnormal entry count found on day 2016-12-24: -11071
WARNING. Abnormal entry count found on day 2016-12-24: -11071
Processing turnstile ('R647', 'R110', '02-06-00', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -2030
WARNING. Abnormal entry count found on day 2016-12-03: -2030
WARNING. Abnormal entry count found on day 2016-12-10: -1915
WARNING. Abnormal entry count found on day 2016-12-10: -1915
WARNING. Abnormal entry count found on day 2016-12-17: -1828
WARNING. Abnormal entry count found on day 2016-12-17: -1828
WARNING. Abnormal entry count found on day 2016-12-24: -1105
WARNING. Abnormal entry count found on day 2016-12-24: -1105
Processing turnstile ('N504', 'R021', '02-00-01', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -13870
WARNING. Abnormal entry count found on day 2016-12-03: -13870
WARNING. Abnormal entry count found on day 2016-12-10: -13442
WARNING. Abnormal entry count found on day 2016-12-10: -13442
WARNING. Abnormal entry count found on day 2016-12-17: -13024
WARNING. Abnormal entry count found on day 2016-12-17: -13024
WARNING. Abnormal entry count found on day 2016-12-24: -9981
WARNING. Abnormal entry count found on day 2016-12-24: -9981
Processing turnstile ('H033', 'R313', '00-00-00', 'BUSHWICK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6858
WARNING. Abnormal entry count found on day 2016-12-03: -6858
WARNING. Abnormal entry count found on day 2016-12-10: -6818
WARNING. Abnormal entry count found on day 2016-12-10: -6818
WARNING. Abnormal entry count found on day 2016-12-17: -6375
WARNING. Abnormal entry count found on day 2016-12-17: -6375
WARNING. Abnormal entry count found on day 2016-12-24: -4923
WARNING. Abnormal entry count found on day 2016-12-24: -4923
Processing turnstile ('PTH03', 'R552', '00-00-0A', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R112', 'R027', '02-00-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7196
WARNING. Abnormal entry count found on day 2016-12-03: -7196
WARNING. Abnormal entry count found on day 2016-12-10: -6893
WARNING. Abnormal entry count found on day 2016-12-10: -6893
WARNING. Abnormal entry count found on day 2016-12-17: -5805
WARNING. Abnormal entry count found on day 2016-12-17: -5805
WARNING. Abnormal entry count found on day 2016-12-24: -3515
WARNING. Abnormal entry count found on day 2016-12-24: -3515
Processing turnstile ('C026', 'R215', '01-05-01', '86 ST')
Processing turnstile ('N187', 'R419', '00-05-01', 'ROCKAWAY PARK B')
Processing turnstile ('R329', 'R362', '00-00-00', 'ALLERTON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12502
WARNING. Abnormal entry count found on day 2016-12-03: -12502
WARNING. Abnormal entry count found on day 2016-12-10: -12025
WARNING. Abnormal entry count found on day 2016-12-10: -12025
WARNING. Abnormal entry count found on day 2016-12-17: -12234
WARNING. Abnormal entry count found on day 2016-12-17: -12234
WARNING. Abnormal entry count found on day 2016-12-24: -9883
WARNING. Abnormal entry count found on day 2016-12-24: -9883
Processing turnstile ('R257', 'R182', '01-00-01', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7847
WARNING. Abnormal entry count found on day 2016-12-03: -7847
WARNING. Abnormal entry count found on day 2016-12-10: -8092
WARNING. Abnormal entry count found on day 2016-12-10: -8092
WARNING. Abnormal entry count found on day 2016-12-17: -7757
WARNING. Abnormal entry count found on day 2016-12-17: -7757
WARNING. Abnormal entry count found on day 2016-12-24: -5286
WARNING. Abnormal entry count found on day 2016-12-24: -5286
Processing turnstile ('R244A', 'R050', '01-00-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15310
WARNING. Abnormal entry count found on day 2016-12-03: -15310
WARNING. Abnormal entry count found on day 2016-12-10: -15526
WARNING. Abnormal entry count found on day 2016-12-10: -15526
WARNING. Abnormal entry count found on day 2016-12-17: -13882
WARNING. Abnormal entry count found on day 2016-12-17: -13882
WARNING. Abnormal entry count found on day 2016-12-24: -11165
WARNING. Abnormal entry count found on day 2016-12-24: -11165
Processing turnstile ('N128', 'R200', '00-00-01', 'EUCLID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11094
WARNING. Abnormal entry count found on day 2016-12-03: -11094
WARNING. Abnormal entry count found on day 2016-12-10: -9733
WARNING. Abnormal entry count found on day 2016-12-10: -9733
WARNING. Abnormal entry count found on day 2016-12-17: -10178
WARNING. Abnormal entry count found on day 2016-12-17: -10178
WARNING. Abnormal entry count found on day 2016-12-24: -7666
WARNING. Abnormal entry count found on day 2016-12-24: -7666
Processing turnstile ('B022', 'R229', '00-00-00', 'AVENUE M')
WARNING. Abnormal entry count found on day 2016-12-03: -2748
WARNING. Abnormal entry count found on day 2016-12-03: -2748
WARNING. Abnormal entry count found on day 2016-12-10: -2760
WARNING. Abnormal entry count found on day 2016-12-10: -2760
WARNING. Abnormal entry count found on day 2016-12-17: -2639
WARNING. Abnormal entry count found on day 2016-12-17: -2639
WARNING. Abnormal entry count found on day 2016-12-24: -2089
WARNING. Abnormal entry count found on day 2016-12-24: -2089
Processing turnstile ('R626', 'R062', '00-03-01', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -14333
WARNING. Abnormal entry count found on day 2016-12-03: -14333
WARNING. Abnormal entry count found on day 2016-12-10: -14048
WARNING. Abnormal entry count found on day 2016-12-10: -14048
WARNING. Abnormal entry count found on day 2016-12-17: -13745
WARNING. Abnormal entry count found on day 2016-12-17: -13745
WARNING. Abnormal entry count found on day 2016-12-24: -10310
WARNING. Abnormal entry count found on day 2016-12-24: -10310
Processing turnstile ('R507', 'R134', '00-03-01', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1544
WARNING. Abnormal entry count found on day 2016-12-03: -1544
WARNING. Abnormal entry count found on day 2016-12-10: -1640
WARNING. Abnormal entry count found on day 2016-12-10: -1640
WARNING. Abnormal entry count found on day 2016-12-17: -1540
WARNING. Abnormal entry count found on day 2016-12-17: -1540
WARNING. Abnormal entry count found on day 2016-12-24: -962
WARNING. Abnormal entry count found on day 2016-12-24: -962
Processing turnstile ('N191', 'R335', '00-05-01', 'BEACH 67 ST')
Processing turnstile ('N409', 'R268', '00-06-00', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10380
WARNING. Abnormal entry count found on day 2016-12-03: -10380
WARNING. Abnormal entry count found on day 2016-12-10: -9457
WARNING. Abnormal entry count found on day 2016-12-10: -9457
WARNING. Abnormal entry count found on day 2016-12-17: -9071
WARNING. Abnormal entry count found on day 2016-12-17: -9071
WARNING. Abnormal entry count found on day 2016-12-24: -6225
WARNING. Abnormal entry count found on day 2016-12-24: -6225
Processing turnstile ('J021', 'R434', '00-00-01', 'VAN SICLEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5284
WARNING. Abnormal entry count found on day 2016-12-03: -5284
WARNING. Abnormal entry count found on day 2016-12-10: -5108
WARNING. Abnormal entry count found on day 2016-12-10: -5108
WARNING. Abnormal entry count found on day 2016-12-17: -5217
WARNING. Abnormal entry count found on day 2016-12-17: -5217
WARNING. Abnormal entry count found on day 2016-12-24: -4027
WARNING. Abnormal entry count found on day 2016-12-24: -4027
Processing turnstile ('N034', 'R334', '01-06-00', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -209
WARNING. Abnormal entry count found on day 2016-12-03: -209
WARNING. Abnormal entry count found on day 2016-12-10: -229
WARNING. Abnormal entry count found on day 2016-12-10: -229
WARNING. Abnormal entry count found on day 2016-12-17: -200
WARNING. Abnormal entry count found on day 2016-12-17: -200
WARNING. Abnormal entry count found on day 2016-12-24: -209
WARNING. Abnormal entry count found on day 2016-12-24: -209
Processing turnstile ('N076', 'R111', '00-06-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11521
WARNING. Abnormal entry count found on day 2016-12-03: -11521
WARNING. Abnormal entry count found on day 2016-12-10: -11405
WARNING. Abnormal entry count found on day 2016-12-10: -11405
WARNING. Abnormal entry count found on day 2016-12-17: -8916
WARNING. Abnormal entry count found on day 2016-12-17: -8916
WARNING. Abnormal entry count found on day 2016-12-24: -5248
WARNING. Abnormal entry count found on day 2016-12-24: -5248
Processing turnstile ('PTH12', 'R542', '00-00-00', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3689
WARNING. Abnormal entry count found on day 2016-12-03: -3689
WARNING. Abnormal entry count found on day 2016-12-10: -3438
WARNING. Abnormal entry count found on day 2016-12-10: -3438
WARNING. Abnormal entry count found on day 2016-12-17: -2789
WARNING. Abnormal entry count found on day 2016-12-17: -2789
WARNING. Abnormal entry count found on day 2016-12-24: -1890
WARNING. Abnormal entry count found on day 2016-12-24: -1890
Processing turnstile ('A055', 'R227', '00-00-00', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3438
WARNING. Abnormal entry count found on day 2016-12-03: -3438
WARNING. Abnormal entry count found on day 2016-12-10: -3237
WARNING. Abnormal entry count found on day 2016-12-10: -3237
WARNING. Abnormal entry count found on day 2016-12-17: -2940
WARNING. Abnormal entry count found on day 2016-12-17: -2940
WARNING. Abnormal entry count found on day 2016-12-24: -2270
WARNING. Abnormal entry count found on day 2016-12-24: -2270
Processing turnstile ('R253', 'R181', '00-00-00', '110 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8633
WARNING. Abnormal entry count found on day 2016-12-03: -8633
WARNING. Abnormal entry count found on day 2016-12-10: -8679
WARNING. Abnormal entry count found on day 2016-12-10: -8679
WARNING. Abnormal entry count found on day 2016-12-17: -8399
WARNING. Abnormal entry count found on day 2016-12-17: -8399
WARNING. Abnormal entry count found on day 2016-12-24: -5548
WARNING. Abnormal entry count found on day 2016-12-24: -5548
Processing turnstile ('R523', 'R147', '00-05-00', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
Processing turnstile ('N139', 'R355', '00-00-00', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3474
WARNING. Abnormal entry count found on day 2016-12-03: -3474
WARNING. Abnormal entry count found on day 2016-12-10: -3364
WARNING. Abnormal entry count found on day 2016-12-10: -3364
WARNING. Abnormal entry count found on day 2016-12-17: -3024
WARNING. Abnormal entry count found on day 2016-12-17: -3024
WARNING. Abnormal entry count found on day 2016-12-24: -2446
WARNING. Abnormal entry count found on day 2016-12-24: -2446
Processing turnstile ('N605', 'R024', '00-00-04', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -15553
WARNING. Abnormal entry count found on day 2016-12-03: -15553
WARNING. Abnormal entry count found on day 2016-12-10: -14985
WARNING. Abnormal entry count found on day 2016-12-10: -14985
WARNING. Abnormal entry count found on day 2016-12-17: -15419
WARNING. Abnormal entry count found on day 2016-12-17: -15419
WARNING. Abnormal entry count found on day 2016-12-24: -14051
WARNING. Abnormal entry count found on day 2016-12-24: -14051
Processing turnstile ('PTH06', 'R546', '00-00-00', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -19848
WARNING. Abnormal entry count found on day 2016-12-03: -19848
WARNING. Abnormal entry count found on day 2016-12-10: -18733
WARNING. Abnormal entry count found on day 2016-12-10: -18733
WARNING. Abnormal entry count found on day 2016-12-17: -15561
WARNING. Abnormal entry count found on day 2016-12-17: -15561
WARNING. Abnormal entry count found on day 2016-12-24: -5220
WARNING. Abnormal entry count found on day 2016-12-24: -5220
Processing turnstile ('N557', 'R130', '00-00-01', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10324
WARNING. Abnormal entry count found on day 2016-12-03: -10324
WARNING. Abnormal entry count found on day 2016-12-10: -8987
WARNING. Abnormal entry count found on day 2016-12-10: -8987
WARNING. Abnormal entry count found on day 2016-12-17: -9972
WARNING. Abnormal entry count found on day 2016-12-17: -9972
WARNING. Abnormal entry count found on day 2016-12-24: -7784
WARNING. Abnormal entry count found on day 2016-12-24: -7784
Processing turnstile ('R303', 'R324', '00-00-02', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6652
WARNING. Abnormal entry count found on day 2016-12-03: -6652
WARNING. Abnormal entry count found on day 2016-12-10: -6855
WARNING. Abnormal entry count found on day 2016-12-10: -6855
WARNING. Abnormal entry count found on day 2016-12-17: -6694
WARNING. Abnormal entry count found on day 2016-12-17: -6694
WARNING. Abnormal entry count found on day 2016-12-24: -4818
WARNING. Abnormal entry count found on day 2016-12-24: -4818
Processing turnstile ('PTH18', 'R549', '01-02-01', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -2212
WARNING. Abnormal entry count found on day 2016-12-03: -2212
WARNING. Abnormal entry count found on day 2016-12-10: -1879
WARNING. Abnormal entry count found on day 2016-12-10: -1879
WARNING. Abnormal entry count found on day 2016-12-17: -1969
WARNING. Abnormal entry count found on day 2016-12-17: -1969
WARNING. Abnormal entry count found on day 2016-12-24: -1903
WARNING. Abnormal entry count found on day 2016-12-24: -1903
Processing turnstile ('C015', 'R454', '00-00-00', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -675
WARNING. Abnormal entry count found on day 2016-12-03: -675
WARNING. Abnormal entry count found on day 2016-12-10: -658
WARNING. Abnormal entry count found on day 2016-12-10: -658
WARNING. Abnormal entry count found on day 2016-12-17: -587
WARNING. Abnormal entry count found on day 2016-12-17: -587
WARNING. Abnormal entry count found on day 2016-12-24: -354
WARNING. Abnormal entry count found on day 2016-12-24: -354
Processing turnstile ('R175', 'R169', '01-00-03', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -3767
WARNING. Abnormal entry count found on day 2016-12-03: -3767
WARNING. Abnormal entry count found on day 2016-12-10: -3695
WARNING. Abnormal entry count found on day 2016-12-10: -3695
WARNING. Abnormal entry count found on day 2016-12-17: -2683
WARNING. Abnormal entry count found on day 2016-12-17: -2683
WARNING. Abnormal entry count found on day 2016-12-24: -2115
WARNING. Abnormal entry count found on day 2016-12-24: -2115
Processing turnstile ('R121', 'R290', '01-05-00', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N561', 'R271', '00-00-01', 'AVENUE X')
WARNING. Abnormal entry count found on day 2016-12-03: -3229
WARNING. Abnormal entry count found on day 2016-12-03: -3229
WARNING. Abnormal entry count found on day 2016-12-10: -2933
WARNING. Abnormal entry count found on day 2016-12-10: -2933
WARNING. Abnormal entry count found on day 2016-12-17: -2902
WARNING. Abnormal entry count found on day 2016-12-17: -2902
WARNING. Abnormal entry count found on day 2016-12-24: -2201
WARNING. Abnormal entry count found on day 2016-12-24: -2201
Processing turnstile ('N068', 'R012', '03-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -15389
WARNING. Abnormal entry count found on day 2016-12-03: -15389
WARNING. Abnormal entry count found on day 2016-12-10: -15516
WARNING. Abnormal entry count found on day 2016-12-10: -15516
WARNING. Abnormal entry count found on day 2016-12-17: -13557
WARNING. Abnormal entry count found on day 2016-12-17: -13557
WARNING. Abnormal entry count found on day 2016-12-24: -9856
WARNING. Abnormal entry count found on day 2016-12-24: -9856
Processing turnstile ('R287', 'R244', '00-00-02', 'BURNSIDE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15051
WARNING. Abnormal entry count found on day 2016-12-03: -15051
WARNING. Abnormal entry count found on day 2016-12-10: -14181
WARNING. Abnormal entry count found on day 2016-12-10: -14181
WARNING. Abnormal entry count found on day 2016-12-17: -17270
WARNING. Abnormal entry count found on day 2016-12-17: -17270
WARNING. Abnormal entry count found on day 2016-12-24: -11276
WARNING. Abnormal entry count found on day 2016-12-24: -11276
Processing turnstile ('K026', 'R100', '00-00-01', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-04: -415
WARNING. Abnormal entry count found on day 2016-12-05: -297
WARNING. Abnormal entry count found on day 2016-12-06: -976
WARNING. Abnormal entry count found on day 2016-12-07: -967
WARNING. Abnormal entry count found on day 2016-12-08: -973
WARNING. Abnormal entry count found on day 2016-12-09: -918
WARNING. Abnormal entry count found on day 2016-12-04: -415
WARNING. Abnormal entry count found on day 2016-12-05: -297
WARNING. Abnormal entry count found on day 2016-12-06: -976
WARNING. Abnormal entry count found on day 2016-12-07: -967
WARNING. Abnormal entry count found on day 2016-12-08: -973
WARNING. Abnormal entry count found on day 2016-12-09: -918
WARNING. Abnormal entry count found on day 2016-12-04: -415
WARNING. Abnormal entry count found on day 2016-12-05: -297
WARNING. Abnormal entry count found on day 2016-12-06: -976
WARNING. Abnormal entry count found on day 2016-12-07: -967
WARNING. Abnormal entry count found on day 2016-12-08: -973
WARNING. Abnormal entry count found on day 2016-12-09: -918
WARNING. Abnormal entry count found on day 2016-12-10: -963
WARNING. Abnormal entry count found on day 2016-12-11: -372
WARNING. Abnormal entry count found on day 2016-12-12: -266
WARNING. Abnormal entry count found on day 2016-12-13: -875
WARNING. Abnormal entry count found on day 2016-12-14: -982
WARNING. Abnormal entry count found on day 2016-12-15: -980
WARNING. Abnormal entry count found on day 2016-12-16: -940
WARNING. Abnormal entry count found on day 2016-12-11: -372
WARNING. Abnormal entry count found on day 2016-12-12: -266
WARNING. Abnormal entry count found on day 2016-12-13: -875
WARNING. Abnormal entry count found on day 2016-12-14: -982
WARNING. Abnormal entry count found on day 2016-12-15: -980
WARNING. Abnormal entry count found on day 2016-12-16: -940
WARNING. Abnormal entry count found on day 2016-12-11: -372
WARNING. Abnormal entry count found on day 2016-12-12: -266
WARNING. Abnormal entry count found on day 2016-12-13: -875
WARNING. Abnormal entry count found on day 2016-12-14: -982
WARNING. Abnormal entry count found on day 2016-12-15: -980
WARNING. Abnormal entry count found on day 2016-12-16: -940
WARNING. Abnormal entry count found on day 2016-12-17: -944
WARNING. Abnormal entry count found on day 2016-12-18: -341
WARNING. Abnormal entry count found on day 2016-12-19: -322
WARNING. Abnormal entry count found on day 2016-12-20: -887
WARNING. Abnormal entry count found on day 2016-12-21: -1002
WARNING. Abnormal entry count found on day 2016-12-22: -997
WARNING. Abnormal entry count found on day 2016-12-23: -980
WARNING. Abnormal entry count found on day 2016-12-18: -341
WARNING. Abnormal entry count found on day 2016-12-19: -322
WARNING. Abnormal entry count found on day 2016-12-20: -887
WARNING. Abnormal entry count found on day 2016-12-21: -1002
WARNING. Abnormal entry count found on day 2016-12-22: -997
WARNING. Abnormal entry count found on day 2016-12-23: -980
WARNING. Abnormal entry count found on day 2016-12-18: -341
WARNING. Abnormal entry count found on day 2016-12-19: -322
WARNING. Abnormal entry count found on day 2016-12-20: -887
WARNING. Abnormal entry count found on day 2016-12-21: -1002
WARNING. Abnormal entry count found on day 2016-12-22: -997
WARNING. Abnormal entry count found on day 2016-12-23: -980
WARNING. Abnormal entry count found on day 2016-12-24: -931
WARNING. Abnormal entry count found on day 2016-12-25: -312
WARNING. Abnormal entry count found on day 2016-12-26: -156
WARNING. Abnormal entry count found on day 2016-12-27: -321
WARNING. Abnormal entry count found on day 2016-12-28: -716
WARNING. Abnormal entry count found on day 2016-12-29: -687
WARNING. Abnormal entry count found on day 2016-12-30: -657
WARNING. Abnormal entry count found on day 2016-12-25: -312
WARNING. Abnormal entry count found on day 2016-12-26: -156
WARNING. Abnormal entry count found on day 2016-12-27: -321
WARNING. Abnormal entry count found on day 2016-12-28: -716
WARNING. Abnormal entry count found on day 2016-12-29: -687
WARNING. Abnormal entry count found on day 2016-12-30: -657
WARNING. Abnormal entry count found on day 2016-12-25: -312
WARNING. Abnormal entry count found on day 2016-12-26: -156
WARNING. Abnormal entry count found on day 2016-12-27: -321
WARNING. Abnormal entry count found on day 2016-12-28: -716
WARNING. Abnormal entry count found on day 2016-12-29: -687
WARNING. Abnormal entry count found on day 2016-12-30: -657
Processing turnstile ('R169', 'R168', '01-00-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6282
WARNING. Abnormal entry count found on day 2016-12-03: -6282
WARNING. Abnormal entry count found on day 2016-12-10: -5658
WARNING. Abnormal entry count found on day 2016-12-10: -5658
WARNING. Abnormal entry count found on day 2016-12-17: -4997
WARNING. Abnormal entry count found on day 2016-12-17: -4997
WARNING. Abnormal entry count found on day 2016-12-24: -4014
WARNING. Abnormal entry count found on day 2016-12-24: -4014
Processing turnstile ('H009', 'R235', '00-00-01', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12971
WARNING. Abnormal entry count found on day 2016-12-03: -12971
WARNING. Abnormal entry count found on day 2016-12-10: -11856
WARNING. Abnormal entry count found on day 2016-12-10: -11856
WARNING. Abnormal entry count found on day 2016-12-17: -13034
WARNING. Abnormal entry count found on day 2016-12-17: -13034
WARNING. Abnormal entry count found on day 2016-12-24: -8478
WARNING. Abnormal entry count found on day 2016-12-24: -8478
Processing turnstile ('N501', 'R020', '01-03-03', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -16693
WARNING. Abnormal entry count found on day 2016-12-03: -16693
WARNING. Abnormal entry count found on day 2016-12-10: -16208
WARNING. Abnormal entry count found on day 2016-12-10: -16208
WARNING. Abnormal entry count found on day 2016-12-17: -15191
WARNING. Abnormal entry count found on day 2016-12-17: -15191
WARNING. Abnormal entry count found on day 2016-12-24: -11736
WARNING. Abnormal entry count found on day 2016-12-24: -11736
Processing turnstile ('N536', 'R270', '00-00-03', 'SMITH-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11684
WARNING. Abnormal entry count found on day 2016-12-03: -11684
WARNING. Abnormal entry count found on day 2016-12-10: -12023
WARNING. Abnormal entry count found on day 2016-12-10: -12023
WARNING. Abnormal entry count found on day 2016-12-17: -11335
WARNING. Abnormal entry count found on day 2016-12-17: -11335
WARNING. Abnormal entry count found on day 2016-12-24: -8691
WARNING. Abnormal entry count found on day 2016-12-24: -8691
Processing turnstile ('N556', 'R424', '00-00-01', 'AVENUE P')
WARNING. Abnormal entry count found on day 2016-12-03: -3511
WARNING. Abnormal entry count found on day 2016-12-03: -3511
WARNING. Abnormal entry count found on day 2016-12-10: -3150
WARNING. Abnormal entry count found on day 2016-12-10: -3150
WARNING. Abnormal entry count found on day 2016-12-17: -3405
WARNING. Abnormal entry count found on day 2016-12-17: -3405
WARNING. Abnormal entry count found on day 2016-12-24: -2444
WARNING. Abnormal entry count found on day 2016-12-24: -2444
Processing turnstile ('N049', 'R084', '01-03-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -11265
WARNING. Abnormal entry count found on day 2016-12-03: -11265
WARNING. Abnormal entry count found on day 2016-12-10: -10885
WARNING. Abnormal entry count found on day 2016-12-10: -10885
WARNING. Abnormal entry count found on day 2016-12-17: -10083
WARNING. Abnormal entry count found on day 2016-12-17: -10083
WARNING. Abnormal entry count found on day 2016-12-24: -7112
WARNING. Abnormal entry count found on day 2016-12-24: -7112
Processing turnstile ('R532H', 'R328', '02-05-00', 'METS-WILLETS PT')
Processing turnstile ('A039', 'R085', '01-06-00', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -9322
WARNING. Abnormal entry count found on day 2016-12-03: -9322
WARNING. Abnormal entry count found on day 2016-12-10: -8415
WARNING. Abnormal entry count found on day 2016-12-10: -8415
WARNING. Abnormal entry count found on day 2016-12-17: -6796
WARNING. Abnormal entry count found on day 2016-12-17: -6796
WARNING. Abnormal entry count found on day 2016-12-24: -4726
WARNING. Abnormal entry count found on day 2016-12-24: -4726
Processing turnstile ('R415', 'R120', '00-05-01', 'MORISN AV/SNDVW')
Processing turnstile ('R503', 'R276', '01-06-01', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -1013
WARNING. Abnormal entry count found on day 2016-12-03: -1013
WARNING. Abnormal entry count found on day 2016-12-10: -1017
WARNING. Abnormal entry count found on day 2016-12-10: -1017
WARNING. Abnormal entry count found on day 2016-12-17: -911
WARNING. Abnormal entry count found on day 2016-12-17: -911
WARNING. Abnormal entry count found on day 2016-12-24: -719
WARNING. Abnormal entry count found on day 2016-12-24: -719
Processing turnstile ('N012', 'R035', '01-06-02', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9486
WARNING. Abnormal entry count found on day 2016-12-03: -9486
WARNING. Abnormal entry count found on day 2016-12-10: -9075
WARNING. Abnormal entry count found on day 2016-12-10: -9075
WARNING. Abnormal entry count found on day 2016-12-17: -8509
WARNING. Abnormal entry count found on day 2016-12-17: -8509
WARNING. Abnormal entry count found on day 2016-12-24: -5975
WARNING. Abnormal entry count found on day 2016-12-24: -5975
Processing turnstile ('N604', 'R342', '00-05-00', 'JAMAICA VAN WK')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
Processing turnstile ('N120A', 'R153', '01-00-02', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3115
WARNING. Abnormal entry count found on day 2016-12-03: -3115
WARNING. Abnormal entry count found on day 2016-12-10: -3145
WARNING. Abnormal entry count found on day 2016-12-10: -3145
WARNING. Abnormal entry count found on day 2016-12-17: -2851
WARNING. Abnormal entry count found on day 2016-12-17: -2851
WARNING. Abnormal entry count found on day 2016-12-24: -2069
WARNING. Abnormal entry count found on day 2016-12-24: -2069
Processing turnstile ('N193', 'R337', '00-05-00', 'BEACH 44 ST')
Processing turnstile ('R139', 'R031', '04-06-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -373
WARNING. Abnormal entry count found on day 2016-12-03: -373
WARNING. Abnormal entry count found on day 2016-12-10: -374
WARNING. Abnormal entry count found on day 2016-12-10: -374
WARNING. Abnormal entry count found on day 2016-12-17: -386
WARNING. Abnormal entry count found on day 2016-12-17: -386
WARNING. Abnormal entry count found on day 2016-12-24: -351
WARNING. Abnormal entry count found on day 2016-12-24: -351
Processing turnstile ('PTH11', 'R545', '00-04-04', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -306
WARNING. Abnormal entry count found on day 2016-12-03: -306
WARNING. Abnormal entry count found on day 2016-12-10: -189
WARNING. Abnormal entry count found on day 2016-12-10: -189
WARNING. Abnormal entry count found on day 2016-12-17: -303
WARNING. Abnormal entry count found on day 2016-12-17: -303
WARNING. Abnormal entry count found on day 2016-12-24: -245
WARNING. Abnormal entry count found on day 2016-12-24: -245
Processing turnstile ('R246', 'R177', '00-03-01', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -13880
WARNING. Abnormal entry count found on day 2016-12-03: -13880
WARNING. Abnormal entry count found on day 2016-12-10: -13878
WARNING. Abnormal entry count found on day 2016-12-10: -13878
WARNING. Abnormal entry count found on day 2016-12-17: -12648
WARNING. Abnormal entry count found on day 2016-12-17: -12648
WARNING. Abnormal entry count found on day 2016-12-24: -6498
WARNING. Abnormal entry count found on day 2016-12-24: -6498
Processing turnstile ('B026', 'R230', '00-05-01', 'NECK RD')
Processing turnstile ('R134', 'R272', '01-00-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6736
WARNING. Abnormal entry count found on day 2016-12-03: -6736
WARNING. Abnormal entry count found on day 2016-12-10: -7407
WARNING. Abnormal entry count found on day 2016-12-10: -7407
WARNING. Abnormal entry count found on day 2016-12-17: -5734
WARNING. Abnormal entry count found on day 2016-12-17: -5734
WARNING. Abnormal entry count found on day 2016-12-24: -3926
WARNING. Abnormal entry count found on day 2016-12-24: -3926
Processing turnstile ('R317', 'R408', '01-00-02', 'SIMPSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8715
WARNING. Abnormal entry count found on day 2016-12-03: -8715
WARNING. Abnormal entry count found on day 2016-12-10: -6719
WARNING. Abnormal entry count found on day 2016-12-10: -6719
WARNING. Abnormal entry count found on day 2016-12-17: -7183
WARNING. Abnormal entry count found on day 2016-12-17: -7183
WARNING. Abnormal entry count found on day 2016-12-24: -5952
WARNING. Abnormal entry count found on day 2016-12-24: -5952
Processing turnstile ('N337', 'R255', '00-00-04', 'BRIARWOOD')
WARNING. Abnormal entry count found on day 2016-12-03: -2350
WARNING. Abnormal entry count found on day 2016-12-03: -2350
WARNING. Abnormal entry count found on day 2016-12-10: -2147
WARNING. Abnormal entry count found on day 2016-12-10: -2147
WARNING. Abnormal entry count found on day 2016-12-17: -2291
WARNING. Abnormal entry count found on day 2016-12-17: -2291
WARNING. Abnormal entry count found on day 2016-12-24: -1758
WARNING. Abnormal entry count found on day 2016-12-24: -1758
Processing turnstile ('N138', 'R355', '01-04-01', '111 ST')
Processing turnstile ('R226', 'R131', '02-05-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7590
WARNING. Abnormal entry count found on day 2016-12-03: -7590
WARNING. Abnormal entry count found on day 2016-12-10: -6414
WARNING. Abnormal entry count found on day 2016-12-10: -6414
WARNING. Abnormal entry count found on day 2016-12-17: -5363
WARNING. Abnormal entry count found on day 2016-12-17: -5363
WARNING. Abnormal entry count found on day 2016-12-24: -2790
WARNING. Abnormal entry count found on day 2016-12-24: -2790
Processing turnstile ('J009', 'R378', '00-00-02', 'MYRTLE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16643
WARNING. Abnormal entry count found on day 2016-12-03: -16643
WARNING. Abnormal entry count found on day 2016-12-10: -16607
WARNING. Abnormal entry count found on day 2016-12-10: -16607
WARNING. Abnormal entry count found on day 2016-12-17: -15031
WARNING. Abnormal entry count found on day 2016-12-17: -15031
WARNING. Abnormal entry count found on day 2016-12-24: -11438
WARNING. Abnormal entry count found on day 2016-12-24: -11438
Processing turnstile ('B024A', 'R211', '02-00-02', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -8498
WARNING. Abnormal entry count found on day 2016-12-03: -8498
WARNING. Abnormal entry count found on day 2016-12-10: -8396
WARNING. Abnormal entry count found on day 2016-12-10: -8396
WARNING. Abnormal entry count found on day 2016-12-17: -8085
WARNING. Abnormal entry count found on day 2016-12-17: -8085
WARNING. Abnormal entry count found on day 2016-12-24: -5662
WARNING. Abnormal entry count found on day 2016-12-24: -5662
Processing turnstile ('N026', 'R102', '00-05-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24
WARNING. Abnormal entry count found on day 2016-12-03: -24
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-17: -19
WARNING. Abnormal entry count found on day 2016-12-17: -19
WARNING. Abnormal entry count found on day 2016-12-24: -21
WARNING. Abnormal entry count found on day 2016-12-24: -21
Processing turnstile ('N329A', 'R201', '01-05-01', 'WOODHAVEN BLVD')
Processing turnstile ('N606', 'R025', '00-00-04', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -17364
WARNING. Abnormal entry count found on day 2016-12-03: -17364
WARNING. Abnormal entry count found on day 2016-12-10: -15736
WARNING. Abnormal entry count found on day 2016-12-10: -15736
WARNING. Abnormal entry count found on day 2016-12-17: -16516
WARNING. Abnormal entry count found on day 2016-12-17: -16516
WARNING. Abnormal entry count found on day 2016-12-24: -13297
WARNING. Abnormal entry count found on day 2016-12-24: -13297
Processing turnstile ('R311', 'R053', '00-05-01', '3 AV-149 ST')
Processing turnstile ('B021', 'R228', '00-00-00', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -3394
WARNING. Abnormal entry count found on day 2016-12-03: -3394
WARNING. Abnormal entry count found on day 2016-12-10: -3275
WARNING. Abnormal entry count found on day 2016-12-10: -3275
WARNING. Abnormal entry count found on day 2016-12-17: -3589
WARNING. Abnormal entry count found on day 2016-12-17: -3589
WARNING. Abnormal entry count found on day 2016-12-24: -2864
WARNING. Abnormal entry count found on day 2016-12-24: -2864
Processing turnstile ('N607', 'R025', '01-00-01', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -2376
WARNING. Abnormal entry count found on day 2016-12-03: -2376
WARNING. Abnormal entry count found on day 2016-12-10: -2487
WARNING. Abnormal entry count found on day 2016-12-10: -2487
WARNING. Abnormal entry count found on day 2016-12-17: -2558
WARNING. Abnormal entry count found on day 2016-12-17: -2558
WARNING. Abnormal entry count found on day 2016-12-24: -1576
WARNING. Abnormal entry count found on day 2016-12-24: -1576
Processing turnstile ('K025', 'R404', '00-00-00', 'FRESH POND RD')
WARNING. Abnormal entry count found on day 2016-12-03: -1917
WARNING. Abnormal entry count found on day 2016-12-03: -1917
WARNING. Abnormal entry count found on day 2016-12-10: -1834
WARNING. Abnormal entry count found on day 2016-12-10: -1834
WARNING. Abnormal entry count found on day 2016-12-17: -1680
WARNING. Abnormal entry count found on day 2016-12-17: -1680
WARNING. Abnormal entry count found on day 2016-12-24: -1100
WARNING. Abnormal entry count found on day 2016-12-24: -1100
Processing turnstile ('N315', 'R238', '00-00-03', 'STEINWAY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14464
WARNING. Abnormal entry count found on day 2016-12-03: -14464
WARNING. Abnormal entry count found on day 2016-12-10: -14287
WARNING. Abnormal entry count found on day 2016-12-10: -14287
WARNING. Abnormal entry count found on day 2016-12-17: -14254
WARNING. Abnormal entry count found on day 2016-12-17: -14254
WARNING. Abnormal entry count found on day 2016-12-24: -10731
WARNING. Abnormal entry count found on day 2016-12-24: -10731
Processing turnstile ('N312', 'R339', '00-03-00', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4350
WARNING. Abnormal entry count found on day 2016-12-03: -4350
WARNING. Abnormal entry count found on day 2016-12-10: -5170
WARNING. Abnormal entry count found on day 2016-12-10: -5170
WARNING. Abnormal entry count found on day 2016-12-17: -4094
WARNING. Abnormal entry count found on day 2016-12-17: -4094
WARNING. Abnormal entry count found on day 2016-12-24: -3379
WARNING. Abnormal entry count found on day 2016-12-24: -3379
Processing turnstile ('N501', 'R020', '01-00-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -12244
WARNING. Abnormal entry count found on day 2016-12-03: -12244
WARNING. Abnormal entry count found on day 2016-12-10: -12718
WARNING. Abnormal entry count found on day 2016-12-10: -12718
WARNING. Abnormal entry count found on day 2016-12-17: -11121
WARNING. Abnormal entry count found on day 2016-12-17: -11121
WARNING. Abnormal entry count found on day 2016-12-24: -8005
WARNING. Abnormal entry count found on day 2016-12-24: -8005
Processing turnstile ('H017', 'R265', '00-00-00', 'MONTROSE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14374
WARNING. Abnormal entry count found on day 2016-12-03: -14374
WARNING. Abnormal entry count found on day 2016-12-10: -13883
WARNING. Abnormal entry count found on day 2016-12-10: -13883
WARNING. Abnormal entry count found on day 2016-12-17: -13025
WARNING. Abnormal entry count found on day 2016-12-17: -13025
WARNING. Abnormal entry count found on day 2016-12-24: -9471
WARNING. Abnormal entry count found on day 2016-12-24: -9471
Processing turnstile ('R628', 'R064', '00-00-00', 'SARATOGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5442
WARNING. Abnormal entry count found on day 2016-12-03: -5442
WARNING. Abnormal entry count found on day 2016-12-10: -5784
WARNING. Abnormal entry count found on day 2016-12-10: -5784
WARNING. Abnormal entry count found on day 2016-12-17: -5399
WARNING. Abnormal entry count found on day 2016-12-17: -5399
WARNING. Abnormal entry count found on day 2016-12-24: -3990
WARNING. Abnormal entry count found on day 2016-12-24: -3990
Processing turnstile ('R205A', 'R014', '04-02-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8631
WARNING. Abnormal entry count found on day 2016-12-03: -8631
WARNING. Abnormal entry count found on day 2016-12-10: -8790
WARNING. Abnormal entry count found on day 2016-12-10: -8790
WARNING. Abnormal entry count found on day 2016-12-17: -7406
WARNING. Abnormal entry count found on day 2016-12-17: -7406
WARNING. Abnormal entry count found on day 2016-12-24: -4708
WARNING. Abnormal entry count found on day 2016-12-24: -4708
Processing turnstile ('N063A', 'R011', '00-00-05', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-04: -1497
WARNING. Abnormal entry count found on day 2016-12-05: -890
WARNING. Abnormal entry count found on day 2016-12-06: -3865
WARNING. Abnormal entry count found on day 2016-12-07: -3436
WARNING. Abnormal entry count found on day 2016-12-08: -3367
WARNING. Abnormal entry count found on day 2016-12-09: -3400
WARNING. Abnormal entry count found on day 2016-12-03: 16455
WARNING. Abnormal entry count found on day 2016-12-04: -1497
WARNING. Abnormal entry count found on day 2016-12-05: -890
WARNING. Abnormal entry count found on day 2016-12-06: -3865
WARNING. Abnormal entry count found on day 2016-12-07: -3436
WARNING. Abnormal entry count found on day 2016-12-08: -3367
WARNING. Abnormal entry count found on day 2016-12-09: -3400
WARNING. Abnormal entry count found on day 2016-12-03: 16455
WARNING. Abnormal entry count found on day 2016-12-04: -1497
WARNING. Abnormal entry count found on day 2016-12-05: -890
WARNING. Abnormal entry count found on day 2016-12-06: -3865
WARNING. Abnormal entry count found on day 2016-12-07: -3436
WARNING. Abnormal entry count found on day 2016-12-08: -3367
WARNING. Abnormal entry count found on day 2016-12-09: -3400
WARNING. Abnormal entry count found on day 2016-12-10: -3566
WARNING. Abnormal entry count found on day 2016-12-11: -1532
WARNING. Abnormal entry count found on day 2016-12-12: -992
WARNING. Abnormal entry count found on day 2016-12-13: -4062
WARNING. Abnormal entry count found on day 2016-12-14: -3289
WARNING. Abnormal entry count found on day 2016-12-15: -3452
WARNING. Abnormal entry count found on day 2016-12-16: -3967
WARNING. Abnormal entry count found on day 2016-12-10: 17294
WARNING. Abnormal entry count found on day 2016-12-11: -1532
WARNING. Abnormal entry count found on day 2016-12-12: -992
WARNING. Abnormal entry count found on day 2016-12-13: -4062
WARNING. Abnormal entry count found on day 2016-12-14: -3289
WARNING. Abnormal entry count found on day 2016-12-15: -3452
WARNING. Abnormal entry count found on day 2016-12-16: -3967
WARNING. Abnormal entry count found on day 2016-12-10: 17294
WARNING. Abnormal entry count found on day 2016-12-11: -1532
WARNING. Abnormal entry count found on day 2016-12-12: -992
WARNING. Abnormal entry count found on day 2016-12-13: -4062
WARNING. Abnormal entry count found on day 2016-12-14: -3289
WARNING. Abnormal entry count found on day 2016-12-15: -3452
WARNING. Abnormal entry count found on day 2016-12-16: -3967
WARNING. Abnormal entry count found on day 2016-12-17: -3427
WARNING. Abnormal entry count found on day 2016-12-18: -975
WARNING. Abnormal entry count found on day 2016-12-19: -682
WARNING. Abnormal entry count found on day 2016-12-20: -3178
WARNING. Abnormal entry count found on day 2016-12-21: -3228
WARNING. Abnormal entry count found on day 2016-12-22: -2868
WARNING. Abnormal entry count found on day 2016-12-23: -2574
WARNING. Abnormal entry count found on day 2016-12-17: 13505
WARNING. Abnormal entry count found on day 2016-12-18: -975
WARNING. Abnormal entry count found on day 2016-12-19: -682
WARNING. Abnormal entry count found on day 2016-12-20: -3178
WARNING. Abnormal entry count found on day 2016-12-21: -3228
WARNING. Abnormal entry count found on day 2016-12-22: -2868
WARNING. Abnormal entry count found on day 2016-12-23: -2574
WARNING. Abnormal entry count found on day 2016-12-17: 13505
WARNING. Abnormal entry count found on day 2016-12-18: -975
WARNING. Abnormal entry count found on day 2016-12-19: -682
WARNING. Abnormal entry count found on day 2016-12-20: -3178
WARNING. Abnormal entry count found on day 2016-12-21: -3228
WARNING. Abnormal entry count found on day 2016-12-22: -2868
WARNING. Abnormal entry count found on day 2016-12-23: -2574
WARNING. Abnormal entry count found on day 2016-12-24: -2208
WARNING. Abnormal entry count found on day 2016-12-25: -1005
WARNING. Abnormal entry count found on day 2016-12-26: -707
WARNING. Abnormal entry count found on day 2016-12-27: -1584
WARNING. Abnormal entry count found on day 2016-12-28: -3065
WARNING. Abnormal entry count found on day 2016-12-29: -3015
WARNING. Abnormal entry count found on day 2016-12-30: -2977
WARNING. Abnormal entry count found on day 2016-12-24: 12353
WARNING. Abnormal entry count found on day 2016-12-25: -1005
WARNING. Abnormal entry count found on day 2016-12-26: -707
WARNING. Abnormal entry count found on day 2016-12-27: -1584
WARNING. Abnormal entry count found on day 2016-12-28: -3065
WARNING. Abnormal entry count found on day 2016-12-29: -3015
WARNING. Abnormal entry count found on day 2016-12-30: -2977
WARNING. Abnormal entry count found on day 2016-12-24: 12353
WARNING. Abnormal entry count found on day 2016-12-25: -1005
WARNING. Abnormal entry count found on day 2016-12-26: -707
WARNING. Abnormal entry count found on day 2016-12-27: -1584
WARNING. Abnormal entry count found on day 2016-12-28: -3065
WARNING. Abnormal entry count found on day 2016-12-29: -3015
WARNING. Abnormal entry count found on day 2016-12-30: -2977
Processing turnstile ('R203', 'R043', '00-05-02', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10320
WARNING. Abnormal entry count found on day 2016-12-03: -10320
WARNING. Abnormal entry count found on day 2016-12-10: -9926
WARNING. Abnormal entry count found on day 2016-12-10: -9926
WARNING. Abnormal entry count found on day 2016-12-17: -692
WARNING. Abnormal entry count found on day 2016-12-17: -692
WARNING. Abnormal entry count found on day 2016-12-24: -1242
WARNING. Abnormal entry count found on day 2016-12-24: -1242
Processing turnstile ('N083', 'R138', '01-00-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -23690
WARNING. Abnormal entry count found on day 2016-12-03: -23690
WARNING. Abnormal entry count found on day 2016-12-10: -21489
WARNING. Abnormal entry count found on day 2016-12-10: -21489
WARNING. Abnormal entry count found on day 2016-12-17: -21095
WARNING. Abnormal entry count found on day 2016-12-17: -21095
WARNING. Abnormal entry count found on day 2016-12-24: -15030
WARNING. Abnormal entry count found on day 2016-12-24: -15030
Processing turnstile ('E005', 'R247', '00-00-00', '55 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6091
WARNING. Abnormal entry count found on day 2016-12-03: -6091
WARNING. Abnormal entry count found on day 2016-12-10: -6015
WARNING. Abnormal entry count found on day 2016-12-10: -6015
WARNING. Abnormal entry count found on day 2016-12-17: -5764
WARNING. Abnormal entry count found on day 2016-12-17: -5764
WARNING. Abnormal entry count found on day 2016-12-24: -4928
WARNING. Abnormal entry count found on day 2016-12-24: -4928
Processing turnstile ('N605', 'R024', '00-06-00', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -14085
WARNING. Abnormal entry count found on day 2016-12-03: -14085
WARNING. Abnormal entry count found on day 2016-12-10: -9671
WARNING. Abnormal entry count found on day 2016-12-10: -9671
WARNING. Abnormal entry count found on day 2016-12-17: -10140
WARNING. Abnormal entry count found on day 2016-12-17: -10140
WARNING. Abnormal entry count found on day 2016-12-24: -8145
WARNING. Abnormal entry count found on day 2016-12-24: -8145
Processing turnstile ('A066', 'R118', '00-00-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20265
WARNING. Abnormal entry count found on day 2016-12-03: -20265
WARNING. Abnormal entry count found on day 2016-12-10: -20825
WARNING. Abnormal entry count found on day 2016-12-10: -20825
WARNING. Abnormal entry count found on day 2016-12-17: -21493
WARNING. Abnormal entry count found on day 2016-12-17: -21493
WARNING. Abnormal entry count found on day 2016-12-24: -18925
WARNING. Abnormal entry count found on day 2016-12-24: -18925
Processing turnstile ('N607', 'R025', '01-06-02', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -7951
WARNING. Abnormal entry count found on day 2016-12-03: -7951
WARNING. Abnormal entry count found on day 2016-12-10: -7179
WARNING. Abnormal entry count found on day 2016-12-10: -7179
WARNING. Abnormal entry count found on day 2016-12-17: -5273
WARNING. Abnormal entry count found on day 2016-12-17: -5273
WARNING. Abnormal entry count found on day 2016-12-24: -5357
WARNING. Abnormal entry count found on day 2016-12-24: -5357
Processing turnstile ('A069', 'R044', '01-00-04', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11536
WARNING. Abnormal entry count found on day 2016-12-03: -11536
WARNING. Abnormal entry count found on day 2016-12-10: -10814
WARNING. Abnormal entry count found on day 2016-12-10: -10814
WARNING. Abnormal entry count found on day 2016-12-17: -10361
WARNING. Abnormal entry count found on day 2016-12-17: -10361
WARNING. Abnormal entry count found on day 2016-12-24: -8001
WARNING. Abnormal entry count found on day 2016-12-24: -8001
Processing turnstile ('R635', 'R277', '00-00-00', 'PRESIDENT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6066
WARNING. Abnormal entry count found on day 2016-12-03: -6066
WARNING. Abnormal entry count found on day 2016-12-10: -5779
WARNING. Abnormal entry count found on day 2016-12-10: -5779
WARNING. Abnormal entry count found on day 2016-12-17: -5204
WARNING. Abnormal entry count found on day 2016-12-17: -5204
WARNING. Abnormal entry count found on day 2016-12-24: -3403
WARNING. Abnormal entry count found on day 2016-12-24: -3403
Processing turnstile ('N013', 'R035', '02-00-04', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11812
WARNING. Abnormal entry count found on day 2016-12-03: -11812
WARNING. Abnormal entry count found on day 2016-12-10: -11295
WARNING. Abnormal entry count found on day 2016-12-10: -11295
WARNING. Abnormal entry count found on day 2016-12-17: -10849
WARNING. Abnormal entry count found on day 2016-12-17: -10849
WARNING. Abnormal entry count found on day 2016-12-24: -7911
WARNING. Abnormal entry count found on day 2016-12-24: -7911
Processing turnstile ('A015', 'R081', '00-00-01', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17662
WARNING. Abnormal entry count found on day 2016-12-03: -17662
WARNING. Abnormal entry count found on day 2016-12-10: -17716
WARNING. Abnormal entry count found on day 2016-12-10: -17716
WARNING. Abnormal entry count found on day 2016-12-17: -15864
WARNING. Abnormal entry count found on day 2016-12-17: -15864
WARNING. Abnormal entry count found on day 2016-12-24: -15091
WARNING. Abnormal entry count found on day 2016-12-24: -15091
Processing turnstile ('H033', 'R313', '00-00-02', 'BUSHWICK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2262
WARNING. Abnormal entry count found on day 2016-12-03: -2262
WARNING. Abnormal entry count found on day 2016-12-10: -2349
WARNING. Abnormal entry count found on day 2016-12-10: -2349
WARNING. Abnormal entry count found on day 2016-12-17: -2051
WARNING. Abnormal entry count found on day 2016-12-17: -2051
WARNING. Abnormal entry count found on day 2016-12-24: -1476
WARNING. Abnormal entry count found on day 2016-12-24: -1476
Processing turnstile ('R169', 'R168', '01-03-03', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22740
WARNING. Abnormal entry count found on day 2016-12-03: -22740
WARNING. Abnormal entry count found on day 2016-12-10: -25107
WARNING. Abnormal entry count found on day 2016-12-10: -25107
WARNING. Abnormal entry count found on day 2016-12-17: -27987
WARNING. Abnormal entry count found on day 2016-12-17: -27987
WARNING. Abnormal entry count found on day 2016-12-24: -17355
WARNING. Abnormal entry count found on day 2016-12-24: -17355
Processing turnstile ('R101', 'R001', '02-00-00', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -4851
WARNING. Abnormal entry count found on day 2016-12-03: -4851
WARNING. Abnormal entry count found on day 2016-12-10: -4557
WARNING. Abnormal entry count found on day 2016-12-10: -4557
WARNING. Abnormal entry count found on day 2016-12-17: -4863
WARNING. Abnormal entry count found on day 2016-12-17: -4863
WARNING. Abnormal entry count found on day 2016-12-24: -5496
WARNING. Abnormal entry count found on day 2016-12-24: -5496
Processing turnstile ('B021', 'R228', '00-05-01', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -3550
WARNING. Abnormal entry count found on day 2016-12-03: -3550
WARNING. Abnormal entry count found on day 2016-12-10: -3516
WARNING. Abnormal entry count found on day 2016-12-10: -3516
WARNING. Abnormal entry count found on day 2016-12-17: -3479
WARNING. Abnormal entry count found on day 2016-12-17: -3479
WARNING. Abnormal entry count found on day 2016-12-24: -2760
WARNING. Abnormal entry count found on day 2016-12-24: -2760
Processing turnstile ('S101A', 'R070', '01-00-05', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -3415
WARNING. Abnormal entry count found on day 2016-12-03: -3415
WARNING. Abnormal entry count found on day 2016-12-10: -3181
WARNING. Abnormal entry count found on day 2016-12-10: -3181
WARNING. Abnormal entry count found on day 2016-12-17: -3065
WARNING. Abnormal entry count found on day 2016-12-17: -3065
WARNING. Abnormal entry count found on day 2016-12-24: -2363
WARNING. Abnormal entry count found on day 2016-12-24: -2363
Processing turnstile ('R326', 'R389', '00-00-01', 'BRONX PARK EAST')
WARNING. Abnormal entry count found on day 2016-12-03: -5047
WARNING. Abnormal entry count found on day 2016-12-03: -5047
WARNING. Abnormal entry count found on day 2016-12-10: -5112
WARNING. Abnormal entry count found on day 2016-12-10: -5112
WARNING. Abnormal entry count found on day 2016-12-17: -3970
WARNING. Abnormal entry count found on day 2016-12-17: -3970
WARNING. Abnormal entry count found on day 2016-12-24: -2883
WARNING. Abnormal entry count found on day 2016-12-24: -2883
Processing turnstile ('R644', 'R135', '01-06-00', 'NEWKIRK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -104
WARNING. Abnormal entry count found on day 2016-12-03: -104
WARNING. Abnormal entry count found on day 2016-12-10: -98
WARNING. Abnormal entry count found on day 2016-12-10: -98
WARNING. Abnormal entry count found on day 2016-12-17: -106
WARNING. Abnormal entry count found on day 2016-12-17: -106
WARNING. Abnormal entry count found on day 2016-12-24: -89
WARNING. Abnormal entry count found on day 2016-12-24: -89
Processing turnstile ('A060', 'R001', '00-00-06', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-17: -6252
WARNING. Abnormal entry count found on day 2016-12-17: -6252
WARNING. Abnormal entry count found on day 2016-12-24: -5761
WARNING. Abnormal entry count found on day 2016-12-24: -5761
Processing turnstile ('PTH09', 'R548', '00-00-03', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2768
WARNING. Abnormal entry count found on day 2016-12-03: -2768
WARNING. Abnormal entry count found on day 2016-12-10: -2111
WARNING. Abnormal entry count found on day 2016-12-10: -2111
WARNING. Abnormal entry count found on day 2016-12-17: -1720
WARNING. Abnormal entry count found on day 2016-12-17: -1720
WARNING. Abnormal entry count found on day 2016-12-24: -1002
WARNING. Abnormal entry count found on day 2016-12-24: -1002
Processing turnstile ('B023', 'R211', '01-06-01', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10872
WARNING. Abnormal entry count found on day 2016-12-03: -10872
WARNING. Abnormal entry count found on day 2016-12-10: -9386
WARNING. Abnormal entry count found on day 2016-12-10: -9386
WARNING. Abnormal entry count found on day 2016-12-17: -9987
WARNING. Abnormal entry count found on day 2016-12-17: -9987
WARNING. Abnormal entry count found on day 2016-12-24: -8107
WARNING. Abnormal entry count found on day 2016-12-24: -8107
Processing turnstile ('N089', 'R139', '00-04-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14808
WARNING. Abnormal entry count found on day 2016-12-03: -14808
WARNING. Abnormal entry count found on day 2016-12-10: -14267
WARNING. Abnormal entry count found on day 2016-12-10: -14267
WARNING. Abnormal entry count found on day 2016-12-17: -12743
WARNING. Abnormal entry count found on day 2016-12-17: -12743
WARNING. Abnormal entry count found on day 2016-12-24: -8670
WARNING. Abnormal entry count found on day 2016-12-24: -8670
Processing turnstile ('N408A', 'R256', '00-00-01', 'NASSAU ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5733
WARNING. Abnormal entry count found on day 2016-12-03: -5733
WARNING. Abnormal entry count found on day 2016-12-10: -5912
WARNING. Abnormal entry count found on day 2016-12-10: -5912
WARNING. Abnormal entry count found on day 2016-12-17: -5393
WARNING. Abnormal entry count found on day 2016-12-17: -5393
WARNING. Abnormal entry count found on day 2016-12-24: -3637
WARNING. Abnormal entry count found on day 2016-12-24: -3637
Processing turnstile ('N306', 'R017', '00-06-00', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -18891
WARNING. Abnormal entry count found on day 2016-12-03: -18891
WARNING. Abnormal entry count found on day 2016-12-10: -18944
WARNING. Abnormal entry count found on day 2016-12-10: -18944
WARNING. Abnormal entry count found on day 2016-12-17: -16537
WARNING. Abnormal entry count found on day 2016-12-17: -16537
WARNING. Abnormal entry count found on day 2016-12-24: -11804
WARNING. Abnormal entry count found on day 2016-12-24: -11804
Processing turnstile ('PTH05', 'R543', '00-01-00', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -2086
WARNING. Abnormal entry count found on day 2016-12-03: -2086
WARNING. Abnormal entry count found on day 2016-12-10: -2110
WARNING. Abnormal entry count found on day 2016-12-10: -2110
WARNING. Abnormal entry count found on day 2016-12-22: -173649
WARNING. Abnormal entry count found on day 2016-12-17: 173313
WARNING. Abnormal entry count found on day 2016-12-22: -173649
WARNING. Abnormal entry count found on day 2016-12-17: 173313
WARNING. Abnormal entry count found on day 2016-12-22: -173649
WARNING. Abnormal entry count found on day 2016-12-24: -1255
WARNING. Abnormal entry count found on day 2016-12-24: -1255
Processing turnstile ('R238A', 'R046', '02-03-00', 'GRD CNTRL-42 ST')
Processing turnstile ('PTH03', 'R552', '00-00-07', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -13979
WARNING. Abnormal entry count found on day 2016-12-03: -13979
WARNING. Abnormal entry count found on day 2016-12-10: -13223
WARNING. Abnormal entry count found on day 2016-12-10: -13223
WARNING. Abnormal entry count found on day 2016-12-17: -13245
WARNING. Abnormal entry count found on day 2016-12-17: -13245
WARNING. Abnormal entry count found on day 2016-12-24: -11028
WARNING. Abnormal entry count found on day 2016-12-24: -11028
Processing turnstile ('N340', 'R115', '00-00-04', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1732
WARNING. Abnormal entry count found on day 2016-12-03: -1732
WARNING. Abnormal entry count found on day 2016-12-10: -1397
WARNING. Abnormal entry count found on day 2016-12-10: -1397
WARNING. Abnormal entry count found on day 2016-12-24: -1227
WARNING. Abnormal entry count found on day 2016-12-24: -1227
Processing turnstile ('N422', 'R318', '00-00-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8739
WARNING. Abnormal entry count found on day 2016-12-03: -8739
WARNING. Abnormal entry count found on day 2016-12-10: -8479
WARNING. Abnormal entry count found on day 2016-12-10: -8479
WARNING. Abnormal entry count found on day 2016-12-17: -8165
WARNING. Abnormal entry count found on day 2016-12-17: -8165
WARNING. Abnormal entry count found on day 2016-12-24: -3318
WARNING. Abnormal entry count found on day 2016-12-24: -3318
Processing turnstile ('R519', 'R223', '00-00-01', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3262
WARNING. Abnormal entry count found on day 2016-12-03: -3262
WARNING. Abnormal entry count found on day 2016-12-10: -2677
WARNING. Abnormal entry count found on day 2016-12-10: -2677
WARNING. Abnormal entry count found on day 2016-12-17: -2924
WARNING. Abnormal entry count found on day 2016-12-17: -2924
WARNING. Abnormal entry count found on day 2016-12-24: -2438
WARNING. Abnormal entry count found on day 2016-12-24: -2438
Processing turnstile ('D005', 'R398', '00-00-00', 'NEW UTRECHT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12091
WARNING. Abnormal entry count found on day 2016-12-03: -12091
WARNING. Abnormal entry count found on day 2016-12-10: -11619
WARNING. Abnormal entry count found on day 2016-12-10: -11619
WARNING. Abnormal entry count found on day 2016-12-17: -11031
WARNING. Abnormal entry count found on day 2016-12-17: -11031
WARNING. Abnormal entry count found on day 2016-12-24: -9021
WARNING. Abnormal entry count found on day 2016-12-24: -9021
Processing turnstile ('R245A', 'R051', '01-00-03', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10743
WARNING. Abnormal entry count found on day 2016-12-03: -10743
WARNING. Abnormal entry count found on day 2016-12-10: -11485
WARNING. Abnormal entry count found on day 2016-12-10: -11485
WARNING. Abnormal entry count found on day 2016-12-17: -11406
WARNING. Abnormal entry count found on day 2016-12-17: -11406
WARNING. Abnormal entry count found on day 2016-12-24: -6910
WARNING. Abnormal entry count found on day 2016-12-24: -6910
Processing turnstile ('N025', 'R102', '01-00-02', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5659
WARNING. Abnormal entry count found on day 2016-12-03: -5659
WARNING. Abnormal entry count found on day 2016-12-10: -6124
WARNING. Abnormal entry count found on day 2016-12-10: -6124
WARNING. Abnormal entry count found on day 2016-12-17: -5337
WARNING. Abnormal entry count found on day 2016-12-17: -5337
WARNING. Abnormal entry count found on day 2016-12-24: -3886
WARNING. Abnormal entry count found on day 2016-12-24: -3886
Processing turnstile ('R231A', 'R176', '01-06-01', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3246
WARNING. Abnormal entry count found on day 2016-12-03: -3246
WARNING. Abnormal entry count found on day 2016-12-10: -3181
WARNING. Abnormal entry count found on day 2016-12-10: -3181
WARNING. Abnormal entry count found on day 2016-12-17: -2900
WARNING. Abnormal entry count found on day 2016-12-17: -2900
WARNING. Abnormal entry count found on day 2016-12-24: -1910
WARNING. Abnormal entry count found on day 2016-12-24: -1910
Processing turnstile ('R417', 'R222', '00-05-00', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-10: -6
Processing turnstile ('B022', 'R229', '00-00-02', 'AVENUE M')
WARNING. Abnormal entry count found on day 2016-12-03: -5648
WARNING. Abnormal entry count found on day 2016-12-03: -5648
WARNING. Abnormal entry count found on day 2016-12-10: -5528
WARNING. Abnormal entry count found on day 2016-12-10: -5528
WARNING. Abnormal entry count found on day 2016-12-17: -5590
WARNING. Abnormal entry count found on day 2016-12-17: -5590
WARNING. Abnormal entry count found on day 2016-12-24: -3865
WARNING. Abnormal entry count found on day 2016-12-24: -3865
Processing turnstile ('R240', 'R047', '00-03-06', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -25306
WARNING. Abnormal entry count found on day 2016-12-03: -25306
WARNING. Abnormal entry count found on day 2016-12-10: -26490
WARNING. Abnormal entry count found on day 2016-12-10: -26490
WARNING. Abnormal entry count found on day 2016-12-17: -23290
WARNING. Abnormal entry count found on day 2016-12-17: -23290
WARNING. Abnormal entry count found on day 2016-12-24: -13978
WARNING. Abnormal entry count found on day 2016-12-24: -13978
Processing turnstile ('R237', 'R046', '01-00-02', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5076
WARNING. Abnormal entry count found on day 2016-12-03: -5076
WARNING. Abnormal entry count found on day 2016-12-10: -5016
WARNING. Abnormal entry count found on day 2016-12-10: -5016
WARNING. Abnormal entry count found on day 2016-12-17: -4252
WARNING. Abnormal entry count found on day 2016-12-17: -4252
WARNING. Abnormal entry count found on day 2016-12-24: -2345
WARNING. Abnormal entry count found on day 2016-12-24: -2345
Processing turnstile ('R261', 'R205', '00-00-00', '149/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-12-03: -13528
WARNING. Abnormal entry count found on day 2016-12-03: -13528
WARNING. Abnormal entry count found on day 2016-12-10: -12709
WARNING. Abnormal entry count found on day 2016-12-10: -12709
WARNING. Abnormal entry count found on day 2016-12-17: -10177
WARNING. Abnormal entry count found on day 2016-12-17: -10177
WARNING. Abnormal entry count found on day 2016-12-24: -4294
WARNING. Abnormal entry count found on day 2016-12-24: -4294
Processing turnstile ('N535', 'R220', '00-00-01', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8591
WARNING. Abnormal entry count found on day 2016-12-03: -8591
WARNING. Abnormal entry count found on day 2016-12-10: -8429
WARNING. Abnormal entry count found on day 2016-12-10: -8429
WARNING. Abnormal entry count found on day 2016-12-17: -7291
WARNING. Abnormal entry count found on day 2016-12-17: -7291
WARNING. Abnormal entry count found on day 2016-12-24: -3602
WARNING. Abnormal entry count found on day 2016-12-24: -3602
Processing turnstile ('N340A', 'R115', '01-00-01', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1211
WARNING. Abnormal entry count found on day 2016-12-03: -1211
WARNING. Abnormal entry count found on day 2016-12-10: -1168
WARNING. Abnormal entry count found on day 2016-12-10: -1168
WARNING. Abnormal entry count found on day 2016-12-17: -1137
WARNING. Abnormal entry count found on day 2016-12-17: -1137
WARNING. Abnormal entry count found on day 2016-12-24: -829
WARNING. Abnormal entry count found on day 2016-12-24: -829
Processing turnstile ('N095A', 'R014', '01-03-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12739
WARNING. Abnormal entry count found on day 2016-12-03: -12739
WARNING. Abnormal entry count found on day 2016-12-10: -12658
WARNING. Abnormal entry count found on day 2016-12-10: -12658
WARNING. Abnormal entry count found on day 2016-12-17: -14000
WARNING. Abnormal entry count found on day 2016-12-17: -14000
WARNING. Abnormal entry count found on day 2016-12-24: -11351
WARNING. Abnormal entry count found on day 2016-12-24: -11351
Processing turnstile ('R503', 'R276', '01-00-01', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -4678
WARNING. Abnormal entry count found on day 2016-12-03: -4678
WARNING. Abnormal entry count found on day 2016-12-10: -4650
WARNING. Abnormal entry count found on day 2016-12-10: -4650
WARNING. Abnormal entry count found on day 2016-12-17: -4390
WARNING. Abnormal entry count found on day 2016-12-17: -4390
WARNING. Abnormal entry count found on day 2016-12-24: -2945
WARNING. Abnormal entry count found on day 2016-12-24: -2945
Processing turnstile ('N213', 'R154', '00-00-05', 'TREMONT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11381
WARNING. Abnormal entry count found on day 2016-12-03: -11381
WARNING. Abnormal entry count found on day 2016-12-10: -10765
WARNING. Abnormal entry count found on day 2016-12-10: -10765
WARNING. Abnormal entry count found on day 2016-12-17: -10745
WARNING. Abnormal entry count found on day 2016-12-17: -10745
WARNING. Abnormal entry count found on day 2016-12-24: -8844
WARNING. Abnormal entry count found on day 2016-12-24: -8844
Processing turnstile ('B026', 'R230', '00-06-00', 'NECK RD')
WARNING. Abnormal entry count found on day 2016-12-03: -8655
WARNING. Abnormal entry count found on day 2016-12-03: -8655
WARNING. Abnormal entry count found on day 2016-12-10: -8088
WARNING. Abnormal entry count found on day 2016-12-10: -8088
WARNING. Abnormal entry count found on day 2016-12-17: -8185
WARNING. Abnormal entry count found on day 2016-12-17: -8185
WARNING. Abnormal entry count found on day 2016-12-24: -6467
WARNING. Abnormal entry count found on day 2016-12-24: -6467
Processing turnstile ('N305A', 'R016', '00-03-02', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -4908
WARNING. Abnormal entry count found on day 2016-12-03: -4908
WARNING. Abnormal entry count found on day 2016-12-10: -6080
WARNING. Abnormal entry count found on day 2016-12-10: -6080
WARNING. Abnormal entry count found on day 2016-12-17: -4132
WARNING. Abnormal entry count found on day 2016-12-17: -4132
WARNING. Abnormal entry count found on day 2016-12-24: -3194
WARNING. Abnormal entry count found on day 2016-12-24: -3194
Processing turnstile ('N549', 'R242', '00-00-02', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2153
WARNING. Abnormal entry count found on day 2016-12-03: -2153
WARNING. Abnormal entry count found on day 2016-12-10: -1960
WARNING. Abnormal entry count found on day 2016-12-10: -1960
WARNING. Abnormal entry count found on day 2016-12-17: -2299
WARNING. Abnormal entry count found on day 2016-12-17: -2299
WARNING. Abnormal entry count found on day 2016-12-24: -1614
WARNING. Abnormal entry count found on day 2016-12-24: -1614
Processing turnstile ('E004', 'R234', '00-00-02', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7679
WARNING. Abnormal entry count found on day 2016-12-03: -7679
WARNING. Abnormal entry count found on day 2016-12-10: -7370
WARNING. Abnormal entry count found on day 2016-12-10: -7370
WARNING. Abnormal entry count found on day 2016-12-17: -7542
WARNING. Abnormal entry count found on day 2016-12-17: -7542
WARNING. Abnormal entry count found on day 2016-12-24: -5945
WARNING. Abnormal entry count found on day 2016-12-24: -5945
Processing turnstile ('N400A', 'R359', '02-06-01', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -11551
WARNING. Abnormal entry count found on day 2016-12-03: -11551
WARNING. Abnormal entry count found on day 2016-12-10: -10198
WARNING. Abnormal entry count found on day 2016-12-10: -10198
WARNING. Abnormal entry count found on day 2016-12-17: -7831
WARNING. Abnormal entry count found on day 2016-12-17: -7831
WARNING. Abnormal entry count found on day 2016-12-24: -5725
WARNING. Abnormal entry count found on day 2016-12-24: -5725
Processing turnstile ('N562', 'R426', '00-00-02', 'NEPTUNE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6991
WARNING. Abnormal entry count found on day 2016-12-03: -6991
WARNING. Abnormal entry count found on day 2016-12-10: -6120
WARNING. Abnormal entry count found on day 2016-12-10: -6120
WARNING. Abnormal entry count found on day 2016-12-17: -6743
WARNING. Abnormal entry count found on day 2016-12-17: -6743
WARNING. Abnormal entry count found on day 2016-12-24: -4792
WARNING. Abnormal entry count found on day 2016-12-24: -4792
Processing turnstile ('R303', 'R324', '00-00-00', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7314
WARNING. Abnormal entry count found on day 2016-12-03: -7314
WARNING. Abnormal entry count found on day 2016-12-10: -6055
WARNING. Abnormal entry count found on day 2016-12-10: -6055
WARNING. Abnormal entry count found on day 2016-12-17: -6767
WARNING. Abnormal entry count found on day 2016-12-17: -6767
WARNING. Abnormal entry count found on day 2016-12-24: -5025
WARNING. Abnormal entry count found on day 2016-12-24: -5025
Processing turnstile ('N309A', 'R140', '00-06-03', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-17: -27
WARNING. Abnormal entry count found on day 2016-12-17: -27
WARNING. Abnormal entry count found on day 2016-12-24: -10
WARNING. Abnormal entry count found on day 2016-12-24: -10
Processing turnstile ('N400A', 'R359', '02-06-00', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -10907
WARNING. Abnormal entry count found on day 2016-12-03: -10907
WARNING. Abnormal entry count found on day 2016-12-10: -8855
WARNING. Abnormal entry count found on day 2016-12-10: -8855
WARNING. Abnormal entry count found on day 2016-12-17: -5903
WARNING. Abnormal entry count found on day 2016-12-17: -5903
WARNING. Abnormal entry count found on day 2016-12-24: -3635
WARNING. Abnormal entry count found on day 2016-12-24: -3635
Processing turnstile ('J013', 'R380', '00-00-01', 'GATES AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10780
WARNING. Abnormal entry count found on day 2016-12-03: -10780
WARNING. Abnormal entry count found on day 2016-12-10: -12520
WARNING. Abnormal entry count found on day 2016-12-10: -12520
WARNING. Abnormal entry count found on day 2016-12-17: -11387
WARNING. Abnormal entry count found on day 2016-12-17: -11387
WARNING. Abnormal entry count found on day 2016-12-24: -7680
WARNING. Abnormal entry count found on day 2016-12-24: -7680
Processing turnstile ('N315', 'R238', '00-00-00', 'STEINWAY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10288
WARNING. Abnormal entry count found on day 2016-12-03: -10288
WARNING. Abnormal entry count found on day 2016-12-10: -10169
WARNING. Abnormal entry count found on day 2016-12-10: -10169
WARNING. Abnormal entry count found on day 2016-12-17: -10768
WARNING. Abnormal entry count found on day 2016-12-17: -10768
WARNING. Abnormal entry count found on day 2016-12-24: -8580
WARNING. Abnormal entry count found on day 2016-12-24: -8580
Processing turnstile ('N333A', 'R141', '00-03-01', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -26040
WARNING. Abnormal entry count found on day 2016-12-03: -26040
WARNING. Abnormal entry count found on day 2016-12-10: -25493
WARNING. Abnormal entry count found on day 2016-12-10: -25493
WARNING. Abnormal entry count found on day 2016-12-17: -26118
WARNING. Abnormal entry count found on day 2016-12-17: -26118
WARNING. Abnormal entry count found on day 2016-12-24: -20975
WARNING. Abnormal entry count found on day 2016-12-24: -20975
Processing turnstile ('N600', 'R302', '00-06-00', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15714
WARNING. Abnormal entry count found on day 2016-12-03: -15714
WARNING. Abnormal entry count found on day 2016-12-10: -11736
WARNING. Abnormal entry count found on day 2016-12-10: -11736
WARNING. Abnormal entry count found on day 2016-12-17: -11928
WARNING. Abnormal entry count found on day 2016-12-17: -11928
WARNING. Abnormal entry count found on day 2016-12-24: -11272
WARNING. Abnormal entry count found on day 2016-12-24: -11272
Processing turnstile ('PTH04', 'R551', '00-04-01', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -5850
WARNING. Abnormal entry count found on day 2016-12-03: -5850
WARNING. Abnormal entry count found on day 2016-12-10: -5574
WARNING. Abnormal entry count found on day 2016-12-10: -5574
WARNING. Abnormal entry count found on day 2016-12-17: -4685
WARNING. Abnormal entry count found on day 2016-12-17: -4685
WARNING. Abnormal entry count found on day 2016-12-24: -3397
WARNING. Abnormal entry count found on day 2016-12-24: -3397
Processing turnstile ('PTH01', 'R549', '00-00-06', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -3990
WARNING. Abnormal entry count found on day 2016-12-03: -3990
WARNING. Abnormal entry count found on day 2016-12-10: -3886
WARNING. Abnormal entry count found on day 2016-12-10: -3886
WARNING. Abnormal entry count found on day 2016-12-17: -2667
WARNING. Abnormal entry count found on day 2016-12-17: -2667
WARNING. Abnormal entry count found on day 2016-12-24: -2343
WARNING. Abnormal entry count found on day 2016-12-24: -2343
Processing turnstile ('N505', 'R022', '02-06-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -27395
WARNING. Abnormal entry count found on day 2016-12-03: -27395
WARNING. Abnormal entry count found on day 2016-12-10: -25951
WARNING. Abnormal entry count found on day 2016-12-10: -25951
WARNING. Abnormal entry count found on day 2016-12-17: -24966
WARNING. Abnormal entry count found on day 2016-12-17: -24966
WARNING. Abnormal entry count found on day 2016-12-24: -16078
WARNING. Abnormal entry count found on day 2016-12-24: -16078
Processing turnstile ('R644', 'R135', '01-00-02', 'NEWKIRK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -711
WARNING. Abnormal entry count found on day 2016-12-03: -711
WARNING. Abnormal entry count found on day 2016-12-10: -730
WARNING. Abnormal entry count found on day 2016-12-10: -730
WARNING. Abnormal entry count found on day 2016-12-17: -760
WARNING. Abnormal entry count found on day 2016-12-17: -760
WARNING. Abnormal entry count found on day 2016-12-24: -578
WARNING. Abnormal entry count found on day 2016-12-24: -578
Processing turnstile ('J032', 'R006', '01-06-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3971
WARNING. Abnormal entry count found on day 2016-12-03: -3971
WARNING. Abnormal entry count found on day 2016-12-10: -3928
WARNING. Abnormal entry count found on day 2016-12-10: -3928
WARNING. Abnormal entry count found on day 2016-12-17: -3934
WARNING. Abnormal entry count found on day 2016-12-17: -3934
WARNING. Abnormal entry count found on day 2016-12-24: -3229
WARNING. Abnormal entry count found on day 2016-12-24: -3229
Processing turnstile ('B028', 'R136', '01-00-00', 'SHEEPSHEAD BAY')
WARNING. Abnormal entry count found on day 2016-12-03: -3640
WARNING. Abnormal entry count found on day 2016-12-03: -3640
WARNING. Abnormal entry count found on day 2016-12-10: -3761
WARNING. Abnormal entry count found on day 2016-12-10: -3761
WARNING. Abnormal entry count found on day 2016-12-17: -3596
WARNING. Abnormal entry count found on day 2016-12-17: -3596
WARNING. Abnormal entry count found on day 2016-12-24: -2029
WARNING. Abnormal entry count found on day 2016-12-24: -2029
Processing turnstile ('N501A', 'R020', '02-06-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -2600
WARNING. Abnormal entry count found on day 2016-12-03: -2600
WARNING. Abnormal entry count found on day 2016-12-10: -2486
WARNING. Abnormal entry count found on day 2016-12-10: -2486
WARNING. Abnormal entry count found on day 2016-12-17: -2103
WARNING. Abnormal entry count found on day 2016-12-17: -2103
WARNING. Abnormal entry count found on day 2016-12-24: -1345
WARNING. Abnormal entry count found on day 2016-12-24: -1345
Processing turnstile ('R647', 'R110', '02-00-00', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -9458
WARNING. Abnormal entry count found on day 2016-12-03: -9458
WARNING. Abnormal entry count found on day 2016-12-10: -8602
WARNING. Abnormal entry count found on day 2016-12-10: -8602
WARNING. Abnormal entry count found on day 2016-12-17: -7917
WARNING. Abnormal entry count found on day 2016-12-17: -7917
WARNING. Abnormal entry count found on day 2016-12-24: -5192
WARNING. Abnormal entry count found on day 2016-12-24: -5192
Processing turnstile ('PTH16', 'R550', '01-01-05', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -5140
WARNING. Abnormal entry count found on day 2016-12-03: -5140
WARNING. Abnormal entry count found on day 2016-12-10: -5676
WARNING. Abnormal entry count found on day 2016-12-10: -5676
WARNING. Abnormal entry count found on day 2016-12-17: -3855
WARNING. Abnormal entry count found on day 2016-12-17: -3855
WARNING. Abnormal entry count found on day 2016-12-24: -2749
WARNING. Abnormal entry count found on day 2016-12-24: -2749
Processing turnstile ('R230', 'R143', '02-06-02', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3085
WARNING. Abnormal entry count found on day 2016-12-03: -3085
WARNING. Abnormal entry count found on day 2016-12-10: -3018
WARNING. Abnormal entry count found on day 2016-12-10: -3018
WARNING. Abnormal entry count found on day 2016-12-17: -2421
WARNING. Abnormal entry count found on day 2016-12-17: -2421
WARNING. Abnormal entry count found on day 2016-12-24: -1514
WARNING. Abnormal entry count found on day 2016-12-24: -1514
Processing turnstile ('B025', 'R150', '00-00-02', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -11282
WARNING. Abnormal entry count found on day 2016-12-03: -11282
WARNING. Abnormal entry count found on day 2016-12-10: -10796
WARNING. Abnormal entry count found on day 2016-12-10: -10796
WARNING. Abnormal entry count found on day 2016-12-17: -10758
WARNING. Abnormal entry count found on day 2016-12-17: -10758
WARNING. Abnormal entry count found on day 2016-12-24: -9273
WARNING. Abnormal entry count found on day 2016-12-24: -9273
Processing turnstile ('N210', 'R253', '00-00-00', '174-175 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -4166
WARNING. Abnormal entry count found on day 2016-12-03: -4166
WARNING. Abnormal entry count found on day 2016-12-10: -3889
WARNING. Abnormal entry count found on day 2016-12-10: -3889
WARNING. Abnormal entry count found on day 2016-12-17: -3916
WARNING. Abnormal entry count found on day 2016-12-17: -3916
WARNING. Abnormal entry count found on day 2016-12-24: -3336
WARNING. Abnormal entry count found on day 2016-12-24: -3336
Processing turnstile ('N141', 'R356', '00-03-00', 'OZONE PK LEFFRT')
WARNING. Abnormal entry count found on day 2016-12-03: -3296
WARNING. Abnormal entry count found on day 2016-12-03: -3296
WARNING. Abnormal entry count found on day 2016-12-10: -3982
WARNING. Abnormal entry count found on day 2016-12-10: -3982
WARNING. Abnormal entry count found on day 2016-12-17: -792
WARNING. Abnormal entry count found on day 2016-12-17: -792
WARNING. Abnormal entry count found on day 2016-12-24: -1862
WARNING. Abnormal entry count found on day 2016-12-24: -1862
Processing turnstile ('N500', 'R020', '00-06-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -3508
WARNING. Abnormal entry count found on day 2016-12-03: -3508
WARNING. Abnormal entry count found on day 2016-12-10: -2993
WARNING. Abnormal entry count found on day 2016-12-10: -2993
WARNING. Abnormal entry count found on day 2016-12-17: -3829
WARNING. Abnormal entry count found on day 2016-12-17: -3829
WARNING. Abnormal entry count found on day 2016-12-24: -3167
WARNING. Abnormal entry count found on day 2016-12-24: -3167
Processing turnstile ('R336', 'R145', '00-00-02', 'WAKEFIELD/241')
WARNING. Abnormal entry count found on day 2016-12-03: -4459
WARNING. Abnormal entry count found on day 2016-12-03: -4459
WARNING. Abnormal entry count found on day 2016-12-10: -4290
WARNING. Abnormal entry count found on day 2016-12-10: -4290
WARNING. Abnormal entry count found on day 2016-12-17: -4261
WARNING. Abnormal entry count found on day 2016-12-17: -4261
WARNING. Abnormal entry count found on day 2016-12-24: -3294
WARNING. Abnormal entry count found on day 2016-12-24: -3294
Processing turnstile ('S101', 'R070', '00-03-00', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -4912
WARNING. Abnormal entry count found on day 2016-12-03: -4912
WARNING. Abnormal entry count found on day 2016-12-10: -4930
WARNING. Abnormal entry count found on day 2016-12-10: -4930
WARNING. Abnormal entry count found on day 2016-12-17: -4472
WARNING. Abnormal entry count found on day 2016-12-17: -4472
WARNING. Abnormal entry count found on day 2016-12-24: -4047
WARNING. Abnormal entry count found on day 2016-12-24: -4047
Processing turnstile ('R423', 'R429', '00-00-02', 'PELHAM BAY PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -2486
WARNING. Abnormal entry count found on day 2016-12-03: -2486
WARNING. Abnormal entry count found on day 2016-12-10: -2640
WARNING. Abnormal entry count found on day 2016-12-10: -2640
WARNING. Abnormal entry count found on day 2016-12-17: -2652
WARNING. Abnormal entry count found on day 2016-12-17: -2652
WARNING. Abnormal entry count found on day 2016-12-24: -1757
WARNING. Abnormal entry count found on day 2016-12-24: -1757
Processing turnstile ('PTH18', 'R549', '01-00-08', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -3397
WARNING. Abnormal entry count found on day 2016-12-03: -3397
WARNING. Abnormal entry count found on day 2016-12-10: -3098
WARNING. Abnormal entry count found on day 2016-12-10: -3098
WARNING. Abnormal entry count found on day 2016-12-17: -3230
WARNING. Abnormal entry count found on day 2016-12-17: -3230
WARNING. Abnormal entry count found on day 2016-12-24: -2822
WARNING. Abnormal entry count found on day 2016-12-24: -2822
Processing turnstile ('K025', 'R404', '00-00-03', 'FRESH POND RD')
WARNING. Abnormal entry count found on day 2016-12-03: -2760
WARNING. Abnormal entry count found on day 2016-12-03: -2760
WARNING. Abnormal entry count found on day 2016-12-10: -2756
WARNING. Abnormal entry count found on day 2016-12-10: -2756
WARNING. Abnormal entry count found on day 2016-12-17: -2653
WARNING. Abnormal entry count found on day 2016-12-17: -2653
WARNING. Abnormal entry count found on day 2016-12-24: -2093
WARNING. Abnormal entry count found on day 2016-12-24: -2093
Processing turnstile ('N502', 'R021', '01-00-00', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -16742
WARNING. Abnormal entry count found on day 2016-12-03: -16742
WARNING. Abnormal entry count found on day 2016-12-10: -15781
WARNING. Abnormal entry count found on day 2016-12-10: -15781
WARNING. Abnormal entry count found on day 2016-12-17: -14754
WARNING. Abnormal entry count found on day 2016-12-17: -14754
WARNING. Abnormal entry count found on day 2016-12-24: -11885
WARNING. Abnormal entry count found on day 2016-12-24: -11885
Processing turnstile ('R205A', 'R014', '04-02-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10879
WARNING. Abnormal entry count found on day 2016-12-03: -10879
WARNING. Abnormal entry count found on day 2016-12-10: -9618
WARNING. Abnormal entry count found on day 2016-12-10: -9618
WARNING. Abnormal entry count found on day 2016-12-17: -9724
WARNING. Abnormal entry count found on day 2016-12-17: -9724
WARNING. Abnormal entry count found on day 2016-12-24: -7098
WARNING. Abnormal entry count found on day 2016-12-24: -7098
Processing turnstile ('R168A', 'R168', '00-00-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16209
WARNING. Abnormal entry count found on day 2016-12-03: -16209
WARNING. Abnormal entry count found on day 2016-12-10: -16217
WARNING. Abnormal entry count found on day 2016-12-10: -16217
WARNING. Abnormal entry count found on day 2016-12-17: -14015
WARNING. Abnormal entry count found on day 2016-12-17: -14015
WARNING. Abnormal entry count found on day 2016-12-24: -10039
WARNING. Abnormal entry count found on day 2016-12-24: -10039
Processing turnstile ('R312', 'R405', '00-05-00', 'JACKSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3623
WARNING. Abnormal entry count found on day 2016-12-03: -3623
WARNING. Abnormal entry count found on day 2016-12-10: -3082
WARNING. Abnormal entry count found on day 2016-12-10: -3082
WARNING. Abnormal entry count found on day 2016-12-17: -3323
WARNING. Abnormal entry count found on day 2016-12-17: -3323
WARNING. Abnormal entry count found on day 2016-12-24: -2513
WARNING. Abnormal entry count found on day 2016-12-24: -2513
Processing turnstile ('A025', 'R023', '01-03-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-04: -3206
WARNING. Abnormal entry count found on day 2016-12-05: -2435
WARNING. Abnormal entry count found on day 2016-12-06: -3980
WARNING. Abnormal entry count found on day 2016-12-07: -4462
WARNING. Abnormal entry count found on day 2016-12-08: -4494
WARNING. Abnormal entry count found on day 2016-12-09: -4508
WARNING. Abnormal entry count found on day 2016-12-03: 23085
WARNING. Abnormal entry count found on day 2016-12-04: -3206
WARNING. Abnormal entry count found on day 2016-12-05: -2435
WARNING. Abnormal entry count found on day 2016-12-06: -3980
WARNING. Abnormal entry count found on day 2016-12-07: -4462
WARNING. Abnormal entry count found on day 2016-12-08: -4494
WARNING. Abnormal entry count found on day 2016-12-09: -4508
WARNING. Abnormal entry count found on day 2016-12-03: 23085
WARNING. Abnormal entry count found on day 2016-12-04: -3206
WARNING. Abnormal entry count found on day 2016-12-05: -2435
WARNING. Abnormal entry count found on day 2016-12-06: -3980
WARNING. Abnormal entry count found on day 2016-12-07: -4462
WARNING. Abnormal entry count found on day 2016-12-08: -4494
WARNING. Abnormal entry count found on day 2016-12-09: -4508
WARNING. Abnormal entry count found on day 2016-12-10: -4868
WARNING. Abnormal entry count found on day 2016-12-11: -3221
WARNING. Abnormal entry count found on day 2016-12-12: -2403
WARNING. Abnormal entry count found on day 2016-12-13: -4133
WARNING. Abnormal entry count found on day 2016-12-14: -4194
WARNING. Abnormal entry count found on day 2016-12-15: -4659
WARNING. Abnormal entry count found on day 2016-12-16: -4924
WARNING. Abnormal entry count found on day 2016-12-10: 23534
WARNING. Abnormal entry count found on day 2016-12-11: -3221
WARNING. Abnormal entry count found on day 2016-12-12: -2403
WARNING. Abnormal entry count found on day 2016-12-13: -4133
WARNING. Abnormal entry count found on day 2016-12-14: -4194
WARNING. Abnormal entry count found on day 2016-12-15: -4659
WARNING. Abnormal entry count found on day 2016-12-16: -4924
WARNING. Abnormal entry count found on day 2016-12-10: 23534
WARNING. Abnormal entry count found on day 2016-12-11: -3221
WARNING. Abnormal entry count found on day 2016-12-12: -2403
WARNING. Abnormal entry count found on day 2016-12-13: -4133
WARNING. Abnormal entry count found on day 2016-12-14: -4194
WARNING. Abnormal entry count found on day 2016-12-15: -4659
WARNING. Abnormal entry count found on day 2016-12-16: -4924
WARNING. Abnormal entry count found on day 2016-12-17: -4782
WARNING. Abnormal entry count found on day 2016-12-18: -2841
WARNING. Abnormal entry count found on day 2016-12-19: -2441
WARNING. Abnormal entry count found on day 2016-12-20: -4501
WARNING. Abnormal entry count found on day 2016-12-21: -4404
WARNING. Abnormal entry count found on day 2016-12-22: -4408
WARNING. Abnormal entry count found on day 2016-12-23: -3815
WARNING. Abnormal entry count found on day 2016-12-17: 22410
WARNING. Abnormal entry count found on day 2016-12-18: -2841
WARNING. Abnormal entry count found on day 2016-12-19: -2441
WARNING. Abnormal entry count found on day 2016-12-20: -4501
WARNING. Abnormal entry count found on day 2016-12-21: -4404
WARNING. Abnormal entry count found on day 2016-12-22: -4408
WARNING. Abnormal entry count found on day 2016-12-23: -3815
WARNING. Abnormal entry count found on day 2016-12-17: 22410
WARNING. Abnormal entry count found on day 2016-12-18: -2841
WARNING. Abnormal entry count found on day 2016-12-19: -2441
WARNING. Abnormal entry count found on day 2016-12-20: -4501
WARNING. Abnormal entry count found on day 2016-12-21: -4404
WARNING. Abnormal entry count found on day 2016-12-22: -4408
WARNING. Abnormal entry count found on day 2016-12-23: -3815
WARNING. Abnormal entry count found on day 2016-12-24: -2730
WARNING. Abnormal entry count found on day 2016-12-25: -2104
WARNING. Abnormal entry count found on day 2016-12-26: -2331
WARNING. Abnormal entry count found on day 2016-12-27: -2716
WARNING. Abnormal entry count found on day 2016-12-28: -3485
WARNING. Abnormal entry count found on day 2016-12-29: -4049
WARNING. Abnormal entry count found on day 2016-12-30: -3328
WARNING. Abnormal entry count found on day 2016-12-24: 18013
WARNING. Abnormal entry count found on day 2016-12-25: -2104
WARNING. Abnormal entry count found on day 2016-12-26: -2331
WARNING. Abnormal entry count found on day 2016-12-27: -2716
WARNING. Abnormal entry count found on day 2016-12-28: -3485
WARNING. Abnormal entry count found on day 2016-12-29: -4049
WARNING. Abnormal entry count found on day 2016-12-30: -3328
WARNING. Abnormal entry count found on day 2016-12-24: 18013
WARNING. Abnormal entry count found on day 2016-12-25: -2104
WARNING. Abnormal entry count found on day 2016-12-26: -2331
WARNING. Abnormal entry count found on day 2016-12-27: -2716
WARNING. Abnormal entry count found on day 2016-12-28: -3485
WARNING. Abnormal entry count found on day 2016-12-29: -4049
WARNING. Abnormal entry count found on day 2016-12-30: -3328
Processing turnstile ('C012', 'R258', '01-06-01', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2062
WARNING. Abnormal entry count found on day 2016-12-03: -2062
WARNING. Abnormal entry count found on day 2016-12-10: -2415
WARNING. Abnormal entry count found on day 2016-12-10: -2415
WARNING. Abnormal entry count found on day 2016-12-17: -1396
WARNING. Abnormal entry count found on day 2016-12-17: -1396
WARNING. Abnormal entry count found on day 2016-12-24: -1443
WARNING. Abnormal entry count found on day 2016-12-24: -1443
Processing turnstile ('R228', 'R143', '00-00-02', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8698
WARNING. Abnormal entry count found on day 2016-12-03: -8698
WARNING. Abnormal entry count found on day 2016-12-10: -8634
WARNING. Abnormal entry count found on day 2016-12-10: -8634
WARNING. Abnormal entry count found on day 2016-12-17: -7480
WARNING. Abnormal entry count found on day 2016-12-17: -7480
WARNING. Abnormal entry count found on day 2016-12-24: -5098
WARNING. Abnormal entry count found on day 2016-12-24: -5098
Processing turnstile ('N095A', 'R014', '01-03-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10696
WARNING. Abnormal entry count found on day 2016-12-03: -10696
WARNING. Abnormal entry count found on day 2016-12-10: -10751
WARNING. Abnormal entry count found on day 2016-12-10: -10751
WARNING. Abnormal entry count found on day 2016-12-17: -12255
WARNING. Abnormal entry count found on day 2016-12-17: -12255
WARNING. Abnormal entry count found on day 2016-12-24: -9740
WARNING. Abnormal entry count found on day 2016-12-24: -9740
Processing turnstile ('N063A', 'R011', '00-00-07', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -28368
WARNING. Abnormal entry count found on day 2016-12-03: -28368
WARNING. Abnormal entry count found on day 2016-12-10: -29390
WARNING. Abnormal entry count found on day 2016-12-10: -29390
WARNING. Abnormal entry count found on day 2016-12-17: -27218
WARNING. Abnormal entry count found on day 2016-12-17: -27218
WARNING. Abnormal entry count found on day 2016-12-24: -20750
WARNING. Abnormal entry count found on day 2016-12-24: -20750
Processing turnstile ('R528', 'R097', '00-06-02', 'JUNCTION BLVD')
Processing turnstile ('A060', 'R001', '00-00-02', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -7116
WARNING. Abnormal entry count found on day 2016-12-03: -7116
WARNING. Abnormal entry count found on day 2016-12-10: -7023
WARNING. Abnormal entry count found on day 2016-12-10: -7023
WARNING. Abnormal entry count found on day 2016-12-17: -6576
WARNING. Abnormal entry count found on day 2016-12-17: -6576
WARNING. Abnormal entry count found on day 2016-12-24: -7446
WARNING. Abnormal entry count found on day 2016-12-24: -7446
Processing turnstile ('N605', 'R024', '00-00-03', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -13843
WARNING. Abnormal entry count found on day 2016-12-03: -13843
WARNING. Abnormal entry count found on day 2016-12-10: -13780
WARNING. Abnormal entry count found on day 2016-12-10: -13780
WARNING. Abnormal entry count found on day 2016-12-17: -13950
WARNING. Abnormal entry count found on day 2016-12-17: -13950
WARNING. Abnormal entry count found on day 2016-12-24: -12978
WARNING. Abnormal entry count found on day 2016-12-24: -12978
Processing turnstile ('R175', 'R169', '01-00-00', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -3308
WARNING. Abnormal entry count found on day 2016-12-03: -3308
WARNING. Abnormal entry count found on day 2016-12-10: -3275
WARNING. Abnormal entry count found on day 2016-12-10: -3275
WARNING. Abnormal entry count found on day 2016-12-17: -2701
WARNING. Abnormal entry count found on day 2016-12-17: -2701
WARNING. Abnormal entry count found on day 2016-12-24: -2209
WARNING. Abnormal entry count found on day 2016-12-24: -2209
Processing turnstile ('R419', 'R326', '00-00-00', 'ZEREGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2129
WARNING. Abnormal entry count found on day 2016-12-03: -2129
WARNING. Abnormal entry count found on day 2016-12-10: -1986
WARNING. Abnormal entry count found on day 2016-12-10: -1986
WARNING. Abnormal entry count found on day 2016-12-17: -1992
WARNING. Abnormal entry count found on day 2016-12-17: -1992
WARNING. Abnormal entry count found on day 2016-12-24: -1355
WARNING. Abnormal entry count found on day 2016-12-24: -1355
Processing turnstile ('H030', 'R266', '01-00-02', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2975
WARNING. Abnormal entry count found on day 2016-12-03: -2975
WARNING. Abnormal entry count found on day 2016-12-10: -2859
WARNING. Abnormal entry count found on day 2016-12-10: -2859
WARNING. Abnormal entry count found on day 2016-12-17: -2774
WARNING. Abnormal entry count found on day 2016-12-17: -2774
WARNING. Abnormal entry count found on day 2016-12-24: -2256
WARNING. Abnormal entry count found on day 2016-12-24: -2256
Processing turnstile ('N019', 'R101', '01-00-02', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22913
WARNING. Abnormal entry count found on day 2016-12-03: -22913
WARNING. Abnormal entry count found on day 2016-12-10: -22481
WARNING. Abnormal entry count found on day 2016-12-10: -22481
WARNING. Abnormal entry count found on day 2016-12-17: -21290
WARNING. Abnormal entry count found on day 2016-12-17: -21290
WARNING. Abnormal entry count found on day 2016-12-24: -16465
WARNING. Abnormal entry count found on day 2016-12-24: -16465
Processing turnstile ('N225', 'R157', '01-00-01', 'NORWOOD 205 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8270
WARNING. Abnormal entry count found on day 2016-12-03: -8270
WARNING. Abnormal entry count found on day 2016-12-10: -8692
WARNING. Abnormal entry count found on day 2016-12-10: -8692
WARNING. Abnormal entry count found on day 2016-12-17: -6505
WARNING. Abnormal entry count found on day 2016-12-17: -6505
WARNING. Abnormal entry count found on day 2016-12-24: -6191
WARNING. Abnormal entry count found on day 2016-12-24: -6191
Processing turnstile ('N603', 'R303', '00-05-00', '21 ST-QNSBRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('N304', 'R015', '01-03-00', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10566
WARNING. Abnormal entry count found on day 2016-12-03: -10566
WARNING. Abnormal entry count found on day 2016-12-10: -10333
WARNING. Abnormal entry count found on day 2016-12-10: -10333
WARNING. Abnormal entry count found on day 2016-12-17: -9428
WARNING. Abnormal entry count found on day 2016-12-17: -9428
WARNING. Abnormal entry count found on day 2016-12-24: -5369
WARNING. Abnormal entry count found on day 2016-12-24: -5369
Processing turnstile ('N549', 'R242', '00-00-01', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5265
WARNING. Abnormal entry count found on day 2016-12-03: -5265
WARNING. Abnormal entry count found on day 2016-12-10: -4754
WARNING. Abnormal entry count found on day 2016-12-10: -4754
WARNING. Abnormal entry count found on day 2016-12-17: -5044
WARNING. Abnormal entry count found on day 2016-12-17: -5044
WARNING. Abnormal entry count found on day 2016-12-24: -3999
WARNING. Abnormal entry count found on day 2016-12-24: -3999
Processing turnstile ('C010', 'R231', '00-00-00', 'UNION ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11431
WARNING. Abnormal entry count found on day 2016-12-03: -11431
WARNING. Abnormal entry count found on day 2016-12-10: -11537
WARNING. Abnormal entry count found on day 2016-12-10: -11537
WARNING. Abnormal entry count found on day 2016-12-17: -10287
WARNING. Abnormal entry count found on day 2016-12-17: -10287
WARNING. Abnormal entry count found on day 2016-12-24: -6739
WARNING. Abnormal entry count found on day 2016-12-24: -6739
Processing turnstile ('R610', 'R057', '00-03-07', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -13919
WARNING. Abnormal entry count found on day 2016-12-03: -13919
WARNING. Abnormal entry count found on day 2016-12-10: -14542
WARNING. Abnormal entry count found on day 2016-12-10: -14542
WARNING. Abnormal entry count found on day 2016-12-17: -14726
WARNING. Abnormal entry count found on day 2016-12-17: -14726
WARNING. Abnormal entry count found on day 2016-12-24: -10091
WARNING. Abnormal entry count found on day 2016-12-24: -10091
Processing turnstile ('R550', 'R072', '00-03-01', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -3308
WARNING. Abnormal entry count found on day 2016-12-03: -3308
WARNING. Abnormal entry count found on day 2016-12-10: -3473
WARNING. Abnormal entry count found on day 2016-12-10: -3473
WARNING. Abnormal entry count found on day 2016-12-17: -2957
WARNING. Abnormal entry count found on day 2016-12-17: -2957
WARNING. Abnormal entry count found on day 2016-12-24: -2367
WARNING. Abnormal entry count found on day 2016-12-24: -2367
Processing turnstile ('N049', 'R084', '01-05-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -53
WARNING. Abnormal entry count found on day 2016-12-03: -53
WARNING. Abnormal entry count found on day 2016-12-10: -47
WARNING. Abnormal entry count found on day 2016-12-10: -47
WARNING. Abnormal entry count found on day 2016-12-17: -36
WARNING. Abnormal entry count found on day 2016-12-17: -36
WARNING. Abnormal entry count found on day 2016-12-24: -32
WARNING. Abnormal entry count found on day 2016-12-24: -32
Processing turnstile ('A033', 'R170', '02-00-04', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -29980
WARNING. Abnormal entry count found on day 2016-12-03: -29980
WARNING. Abnormal entry count found on day 2016-12-10: -30662
WARNING. Abnormal entry count found on day 2016-12-10: -30662
WARNING. Abnormal entry count found on day 2016-12-17: -27294
WARNING. Abnormal entry count found on day 2016-12-17: -27294
WARNING. Abnormal entry count found on day 2016-12-24: -18455
WARNING. Abnormal entry count found on day 2016-12-24: -18455
Processing turnstile ('R141', 'R031', '00-06-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -16743
WARNING. Abnormal entry count found on day 2016-12-03: -16743
WARNING. Abnormal entry count found on day 2016-12-10: -15999
WARNING. Abnormal entry count found on day 2016-12-10: -15999
WARNING. Abnormal entry count found on day 2016-12-17: -18244
WARNING. Abnormal entry count found on day 2016-12-17: -18244
WARNING. Abnormal entry count found on day 2016-12-24: -13779
WARNING. Abnormal entry count found on day 2016-12-24: -13779
Processing turnstile ('R169', 'R168', '01-07-01', '96 ST')
Processing turnstile ('R172', 'R192', '00-00-01', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -16375
WARNING. Abnormal entry count found on day 2016-12-03: -16375
WARNING. Abnormal entry count found on day 2016-12-10: -15821
WARNING. Abnormal entry count found on day 2016-12-10: -15821
WARNING. Abnormal entry count found on day 2016-12-17: -14783
WARNING. Abnormal entry count found on day 2016-12-17: -14783
WARNING. Abnormal entry count found on day 2016-12-24: -10569
WARNING. Abnormal entry count found on day 2016-12-24: -10569
Processing turnstile ('PTH03', 'R552', '00-01-08', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -488
WARNING. Abnormal entry count found on day 2016-12-03: -488
WARNING. Abnormal entry count found on day 2016-12-10: -452
WARNING. Abnormal entry count found on day 2016-12-10: -452
WARNING. Abnormal entry count found on day 2016-12-17: -786
WARNING. Abnormal entry count found on day 2016-12-17: -786
WARNING. Abnormal entry count found on day 2016-12-24: -338
WARNING. Abnormal entry count found on day 2016-12-24: -338
Processing turnstile ('B020', 'R263', '00-00-00', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -3581
WARNING. Abnormal entry count found on day 2016-12-03: -3581
WARNING. Abnormal entry count found on day 2016-12-10: -3279
WARNING. Abnormal entry count found on day 2016-12-10: -3279
WARNING. Abnormal entry count found on day 2016-12-17: -2966
WARNING. Abnormal entry count found on day 2016-12-17: -2966
WARNING. Abnormal entry count found on day 2016-12-24: -2190
WARNING. Abnormal entry count found on day 2016-12-24: -2190
Processing turnstile ('E009', 'R370', '00-00-02', '71 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9026
WARNING. Abnormal entry count found on day 2016-12-03: -9026
WARNING. Abnormal entry count found on day 2016-12-10: -9001
WARNING. Abnormal entry count found on day 2016-12-10: -9001
WARNING. Abnormal entry count found on day 2016-12-17: -9321
WARNING. Abnormal entry count found on day 2016-12-17: -9321
WARNING. Abnormal entry count found on day 2016-12-24: -7819
WARNING. Abnormal entry count found on day 2016-12-24: -7819
Processing turnstile ('R203', 'R043', '00-03-02', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9935
WARNING. Abnormal entry count found on day 2016-12-03: -9935
WARNING. Abnormal entry count found on day 2016-12-10: -9898
WARNING. Abnormal entry count found on day 2016-12-10: -9898
WARNING. Abnormal entry count found on day 2016-12-17: -8953
WARNING. Abnormal entry count found on day 2016-12-17: -8953
WARNING. Abnormal entry count found on day 2016-12-24: -6110
WARNING. Abnormal entry count found on day 2016-12-24: -6110
Processing turnstile ('H001', 'R175', '00-06-01', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11340
WARNING. Abnormal entry count found on day 2016-12-03: -11340
WARNING. Abnormal entry count found on day 2016-12-10: -10898
WARNING. Abnormal entry count found on day 2016-12-10: -10898
WARNING. Abnormal entry count found on day 2016-12-17: -9918
WARNING. Abnormal entry count found on day 2016-12-17: -9918
WARNING. Abnormal entry count found on day 2016-12-24: -7354
WARNING. Abnormal entry count found on day 2016-12-24: -7354
Processing turnstile ('A042', 'R086', '01-00-03', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6243
WARNING. Abnormal entry count found on day 2016-12-03: -6243
WARNING. Abnormal entry count found on day 2016-12-10: -6584
WARNING. Abnormal entry count found on day 2016-12-10: -6584
WARNING. Abnormal entry count found on day 2016-12-17: -7046
WARNING. Abnormal entry count found on day 2016-12-17: -7046
WARNING. Abnormal entry count found on day 2016-12-24: -5980
WARNING. Abnormal entry count found on day 2016-12-24: -5980
Processing turnstile ('N533', 'R129', '02-06-00', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12118
WARNING. Abnormal entry count found on day 2016-12-03: -12118
WARNING. Abnormal entry count found on day 2016-12-10: -12377
WARNING. Abnormal entry count found on day 2016-12-10: -12377
WARNING. Abnormal entry count found on day 2016-12-17: -12009
WARNING. Abnormal entry count found on day 2016-12-17: -12009
WARNING. Abnormal entry count found on day 2016-12-24: -6474
WARNING. Abnormal entry count found on day 2016-12-24: -6474
Processing turnstile ('R185', 'R274', '00-00-01', '191 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12574
WARNING. Abnormal entry count found on day 2016-12-03: -12574
WARNING. Abnormal entry count found on day 2016-12-10: -12242
WARNING. Abnormal entry count found on day 2016-12-10: -12242
WARNING. Abnormal entry count found on day 2016-12-17: -12276
WARNING. Abnormal entry count found on day 2016-12-17: -12276
WARNING. Abnormal entry count found on day 2016-12-24: -9481
WARNING. Abnormal entry count found on day 2016-12-24: -9481
Processing turnstile ('R512', 'R092', '00-00-00', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -745
WARNING. Abnormal entry count found on day 2016-12-03: -745
WARNING. Abnormal entry count found on day 2016-12-10: -1014
WARNING. Abnormal entry count found on day 2016-12-10: -1014
WARNING. Abnormal entry count found on day 2016-12-17: -1657
WARNING. Abnormal entry count found on day 2016-12-17: -1657
WARNING. Abnormal entry count found on day 2016-12-24: -463
WARNING. Abnormal entry count found on day 2016-12-24: -463
Processing turnstile ('N218', 'R112', '01-05-01', 'FORDHAM RD')
Processing turnstile ('B018', 'R184', '00-00-01', 'CORTELYOU RD')
WARNING. Abnormal entry count found on day 2016-12-03: -11645
WARNING. Abnormal entry count found on day 2016-12-03: -11645
WARNING. Abnormal entry count found on day 2016-12-10: -11525
WARNING. Abnormal entry count found on day 2016-12-10: -11525
WARNING. Abnormal entry count found on day 2016-12-17: -10950
WARNING. Abnormal entry count found on day 2016-12-17: -10950
WARNING. Abnormal entry count found on day 2016-12-24: -8012
WARNING. Abnormal entry count found on day 2016-12-24: -8012
Processing turnstile ('R246', 'R177', '00-03-02', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -15300
WARNING. Abnormal entry count found on day 2016-12-03: -15300
WARNING. Abnormal entry count found on day 2016-12-10: -15805
WARNING. Abnormal entry count found on day 2016-12-10: -15805
WARNING. Abnormal entry count found on day 2016-12-17: -11558
WARNING. Abnormal entry count found on day 2016-12-17: -11558
WARNING. Abnormal entry count found on day 2016-12-24: -8039
WARNING. Abnormal entry count found on day 2016-12-24: -8039
Processing turnstile ('R172', 'R192', '00-00-02', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -15787
WARNING. Abnormal entry count found on day 2016-12-03: -15787
WARNING. Abnormal entry count found on day 2016-12-10: -15720
WARNING. Abnormal entry count found on day 2016-12-10: -15720
WARNING. Abnormal entry count found on day 2016-12-17: -14748
WARNING. Abnormal entry count found on day 2016-12-17: -14748
WARNING. Abnormal entry count found on day 2016-12-24: -10629
WARNING. Abnormal entry count found on day 2016-12-24: -10629
Processing turnstile ('PTH20', 'R549', '03-00-02', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -239
WARNING. Abnormal entry count found on day 2016-12-03: -239
WARNING. Abnormal entry count found on day 2016-12-10: -132
WARNING. Abnormal entry count found on day 2016-12-10: -132
WARNING. Abnormal entry count found on day 2016-12-17: -249
WARNING. Abnormal entry count found on day 2016-12-17: -249
WARNING. Abnormal entry count found on day 2016-12-24: -280
WARNING. Abnormal entry count found on day 2016-12-24: -280
Processing turnstile ('N073', 'R013', '02-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -954
WARNING. Abnormal entry count found on day 2016-12-03: -954
WARNING. Abnormal entry count found on day 2016-12-10: -786
WARNING. Abnormal entry count found on day 2016-12-10: -786
WARNING. Abnormal entry count found on day 2016-12-17: -722
WARNING. Abnormal entry count found on day 2016-12-17: -722
WARNING. Abnormal entry count found on day 2016-12-24: -402
WARNING. Abnormal entry count found on day 2016-12-24: -402
Processing turnstile ('R533', 'R055', '00-00-05', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -8931
WARNING. Abnormal entry count found on day 2016-12-03: -8931
WARNING. Abnormal entry count found on day 2016-12-10: -8546
WARNING. Abnormal entry count found on day 2016-12-10: -8546
WARNING. Abnormal entry count found on day 2016-12-17: -9173
WARNING. Abnormal entry count found on day 2016-12-17: -9173
WARNING. Abnormal entry count found on day 2016-12-24: -8308
WARNING. Abnormal entry count found on day 2016-12-24: -8308
Processing turnstile ('R402', 'R446', '00-00-00', 'BROOK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9747
WARNING. Abnormal entry count found on day 2016-12-03: -9747
WARNING. Abnormal entry count found on day 2016-12-10: -9534
WARNING. Abnormal entry count found on day 2016-12-10: -9534
WARNING. Abnormal entry count found on day 2016-12-17: -9541
WARNING. Abnormal entry count found on day 2016-12-17: -9541
WARNING. Abnormal entry count found on day 2016-12-24: -7693
WARNING. Abnormal entry count found on day 2016-12-24: -7693
Processing turnstile ('D010', 'R394', '00-00-01', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -16295
WARNING. Abnormal entry count found on day 2016-12-03: -16295
WARNING. Abnormal entry count found on day 2016-12-10: -16204
WARNING. Abnormal entry count found on day 2016-12-10: -16204
WARNING. Abnormal entry count found on day 2016-12-17: -15787
WARNING. Abnormal entry count found on day 2016-12-17: -15787
WARNING. Abnormal entry count found on day 2016-12-24: -12805
WARNING. Abnormal entry count found on day 2016-12-24: -12805
Processing turnstile ('R605', 'R456', '00-00-03', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1833
WARNING. Abnormal entry count found on day 2016-12-03: -1833
WARNING. Abnormal entry count found on day 2016-12-10: -1809
WARNING. Abnormal entry count found on day 2016-12-10: -1809
WARNING. Abnormal entry count found on day 2016-12-17: -1619
WARNING. Abnormal entry count found on day 2016-12-17: -1619
WARNING. Abnormal entry count found on day 2016-12-24: -1129
WARNING. Abnormal entry count found on day 2016-12-24: -1129
Processing turnstile ('N224', 'R157', '00-00-00', 'NORWOOD 205 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12802
WARNING. Abnormal entry count found on day 2016-12-03: -12802
WARNING. Abnormal entry count found on day 2016-12-10: -11899
WARNING. Abnormal entry count found on day 2016-12-10: -11899
WARNING. Abnormal entry count found on day 2016-12-17: -11849
WARNING. Abnormal entry count found on day 2016-12-17: -11849
WARNING. Abnormal entry count found on day 2016-12-24: -9255
WARNING. Abnormal entry count found on day 2016-12-24: -9255
Processing turnstile ('R196', 'R306', '00-00-00', '238 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7120
WARNING. Abnormal entry count found on day 2016-12-03: -7120
WARNING. Abnormal entry count found on day 2016-12-10: -7099
WARNING. Abnormal entry count found on day 2016-12-10: -7099
WARNING. Abnormal entry count found on day 2016-12-17: -6394
WARNING. Abnormal entry count found on day 2016-12-17: -6394
WARNING. Abnormal entry count found on day 2016-12-24: -5273
WARNING. Abnormal entry count found on day 2016-12-24: -5273
Processing turnstile ('N141', 'R356', '00-00-04', 'OZONE PK LEFFRT')
WARNING. Abnormal entry count found on day 2016-12-03: -11678
WARNING. Abnormal entry count found on day 2016-12-03: -11678
WARNING. Abnormal entry count found on day 2016-12-10: -12177
WARNING. Abnormal entry count found on day 2016-12-10: -12177
WARNING. Abnormal entry count found on day 2016-12-17: -10859
WARNING. Abnormal entry count found on day 2016-12-17: -10859
WARNING. Abnormal entry count found on day 2016-12-24: -5965
WARNING. Abnormal entry count found on day 2016-12-24: -5965
Processing turnstile ('J005', 'R353', '00-00-00', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7585
WARNING. Abnormal entry count found on day 2016-12-03: -7585
WARNING. Abnormal entry count found on day 2016-12-10: -7208
WARNING. Abnormal entry count found on day 2016-12-10: -7208
WARNING. Abnormal entry count found on day 2016-12-17: -7675
WARNING. Abnormal entry count found on day 2016-12-17: -7675
WARNING. Abnormal entry count found on day 2016-12-24: -5788
WARNING. Abnormal entry count found on day 2016-12-24: -5788
Processing turnstile ('H008', 'R248', '01-00-03', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15611
WARNING. Abnormal entry count found on day 2016-12-03: -15611
WARNING. Abnormal entry count found on day 2016-12-10: -19785
WARNING. Abnormal entry count found on day 2016-12-10: -19785
WARNING. Abnormal entry count found on day 2016-12-17: -14260
WARNING. Abnormal entry count found on day 2016-12-17: -14260
WARNING. Abnormal entry count found on day 2016-12-24: -10152
WARNING. Abnormal entry count found on day 2016-12-24: -10152
Processing turnstile ('N203', 'R195', '00-05-01', '161/YANKEE STAD')
Processing turnstile ('B010', 'R412', '00-03-02', 'BOTANIC GARDEN')
WARNING. Abnormal entry count found on day 2016-12-03: -412
WARNING. Abnormal entry count found on day 2016-12-03: -412
WARNING. Abnormal entry count found on day 2016-12-10: -397
WARNING. Abnormal entry count found on day 2016-12-10: -397
WARNING. Abnormal entry count found on day 2016-12-17: -367
WARNING. Abnormal entry count found on day 2016-12-17: -367
WARNING. Abnormal entry count found on day 2016-12-24: -152
WARNING. Abnormal entry count found on day 2016-12-24: -152
Processing turnstile ('R610', 'R057', '00-03-05', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -15089
WARNING. Abnormal entry count found on day 2016-12-03: -15089
WARNING. Abnormal entry count found on day 2016-12-10: -15805
WARNING. Abnormal entry count found on day 2016-12-10: -15805
WARNING. Abnormal entry count found on day 2016-12-17: -15540
WARNING. Abnormal entry count found on day 2016-12-17: -15540
WARNING. Abnormal entry count found on day 2016-12-24: -10721
WARNING. Abnormal entry count found on day 2016-12-24: -10721
Processing turnstile ('E003', 'R369', '00-00-01', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -4632
WARNING. Abnormal entry count found on day 2016-12-03: -4632
WARNING. Abnormal entry count found on day 2016-12-10: -4637
WARNING. Abnormal entry count found on day 2016-12-10: -4637
WARNING. Abnormal entry count found on day 2016-12-17: -4593
WARNING. Abnormal entry count found on day 2016-12-17: -4593
WARNING. Abnormal entry count found on day 2016-12-24: -3690
WARNING. Abnormal entry count found on day 2016-12-24: -3690
Processing turnstile ('N057', 'R188', '00-05-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('PTH20', 'R549', '03-00-00', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -159
WARNING. Abnormal entry count found on day 2016-12-03: -159
WARNING. Abnormal entry count found on day 2016-12-10: -409
WARNING. Abnormal entry count found on day 2016-12-10: -409
WARNING. Abnormal entry count found on day 2016-12-17: -308
WARNING. Abnormal entry count found on day 2016-12-17: -308
WARNING. Abnormal entry count found on day 2016-12-24: -266
WARNING. Abnormal entry count found on day 2016-12-24: -266
Processing turnstile ('R155', 'R116', '01-00-02', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7393
WARNING. Abnormal entry count found on day 2016-12-03: -7393
WARNING. Abnormal entry count found on day 2016-12-10: -6974
WARNING. Abnormal entry count found on day 2016-12-10: -6974
WARNING. Abnormal entry count found on day 2016-12-17: -6639
WARNING. Abnormal entry count found on day 2016-12-17: -6639
WARNING. Abnormal entry count found on day 2016-12-24: -5824
WARNING. Abnormal entry count found on day 2016-12-24: -5824
Processing turnstile ('N519', 'R461', '00-00-00', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -13514
WARNING. Abnormal entry count found on day 2016-12-03: -13514
WARNING. Abnormal entry count found on day 2016-12-10: -13324
WARNING. Abnormal entry count found on day 2016-12-10: -13324
WARNING. Abnormal entry count found on day 2016-12-17: -13577
WARNING. Abnormal entry count found on day 2016-12-17: -13577
WARNING. Abnormal entry count found on day 2016-12-24: -9876
WARNING. Abnormal entry count found on day 2016-12-24: -9876
Processing turnstile ('R200A', 'R041', '01-00-04', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -11182
WARNING. Abnormal entry count found on day 2016-12-03: -11182
WARNING. Abnormal entry count found on day 2016-12-10: -10970
WARNING. Abnormal entry count found on day 2016-12-10: -10970
WARNING. Abnormal entry count found on day 2016-12-17: -10123
WARNING. Abnormal entry count found on day 2016-12-17: -10123
WARNING. Abnormal entry count found on day 2016-12-24: -7299
WARNING. Abnormal entry count found on day 2016-12-24: -7299
Processing turnstile ('A043', 'R462', '00-06-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7028
WARNING. Abnormal entry count found on day 2016-12-03: -7028
WARNING. Abnormal entry count found on day 2016-12-10: -6332
WARNING. Abnormal entry count found on day 2016-12-10: -6332
WARNING. Abnormal entry count found on day 2016-12-17: -6711
WARNING. Abnormal entry count found on day 2016-12-17: -6711
WARNING. Abnormal entry count found on day 2016-12-24: -7082
WARNING. Abnormal entry count found on day 2016-12-24: -7082
Processing turnstile ('R119', 'R320', '00-00-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14980
WARNING. Abnormal entry count found on day 2016-12-03: -14980
WARNING. Abnormal entry count found on day 2016-12-10: -14142
WARNING. Abnormal entry count found on day 2016-12-10: -14142
WARNING. Abnormal entry count found on day 2016-12-17: -11901
WARNING. Abnormal entry count found on day 2016-12-17: -11901
WARNING. Abnormal entry count found on day 2016-12-24: -7412
WARNING. Abnormal entry count found on day 2016-12-24: -7412
Processing turnstile ('N049', 'R084', '01-03-03', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -9418
WARNING. Abnormal entry count found on day 2016-12-03: -9418
WARNING. Abnormal entry count found on day 2016-12-10: -8705
WARNING. Abnormal entry count found on day 2016-12-10: -8705
WARNING. Abnormal entry count found on day 2016-12-17: -8662
WARNING. Abnormal entry count found on day 2016-12-17: -8662
WARNING. Abnormal entry count found on day 2016-12-24: -5427
WARNING. Abnormal entry count found on day 2016-12-24: -5427
Processing turnstile ('R236', 'R045', '00-00-04', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4250
WARNING. Abnormal entry count found on day 2016-12-03: -4250
WARNING. Abnormal entry count found on day 2016-12-10: -4269
WARNING. Abnormal entry count found on day 2016-12-10: -4269
WARNING. Abnormal entry count found on day 2016-12-17: -3942
WARNING. Abnormal entry count found on day 2016-12-17: -3942
WARNING. Abnormal entry count found on day 2016-12-24: -2632
WARNING. Abnormal entry count found on day 2016-12-24: -2632
Processing turnstile ('C004', 'R089', '01-05-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('N067', 'R012', '00-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -3434
WARNING. Abnormal entry count found on day 2016-12-03: -3434
WARNING. Abnormal entry count found on day 2016-12-10: -3093
WARNING. Abnormal entry count found on day 2016-12-10: -3093
WARNING. Abnormal entry count found on day 2016-12-17: -3235
WARNING. Abnormal entry count found on day 2016-12-17: -3235
WARNING. Abnormal entry count found on day 2016-12-24: -2587
WARNING. Abnormal entry count found on day 2016-12-24: -2587
Processing turnstile ('R204', 'R043', '02-00-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3390
WARNING. Abnormal entry count found on day 2016-12-03: -3390
WARNING. Abnormal entry count found on day 2016-12-10: -3235
WARNING. Abnormal entry count found on day 2016-12-10: -3235
WARNING. Abnormal entry count found on day 2016-12-17: -2911
WARNING. Abnormal entry count found on day 2016-12-17: -2911
WARNING. Abnormal entry count found on day 2016-12-24: -1921
WARNING. Abnormal entry count found on day 2016-12-24: -1921
Processing turnstile ('R151', 'R033', '00-00-07', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14141
WARNING. Abnormal entry count found on day 2016-12-03: -14141
WARNING. Abnormal entry count found on day 2016-12-10: -14547
WARNING. Abnormal entry count found on day 2016-12-10: -14547
WARNING. Abnormal entry count found on day 2016-12-17: -17445
WARNING. Abnormal entry count found on day 2016-12-17: -17445
WARNING. Abnormal entry count found on day 2016-12-24: -16285
WARNING. Abnormal entry count found on day 2016-12-24: -16285
Processing turnstile ('N506', 'R022', '00-05-04', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -25762
WARNING. Abnormal entry count found on day 2016-12-03: -25762
WARNING. Abnormal entry count found on day 2016-12-10: -27399
WARNING. Abnormal entry count found on day 2016-12-10: -27399
WARNING. Abnormal entry count found on day 2016-12-17: -31106
WARNING. Abnormal entry count found on day 2016-12-17: -31106
WARNING. Abnormal entry count found on day 2016-12-24: -30271
WARNING. Abnormal entry count found on day 2016-12-24: -30271
Processing turnstile ('N091', 'R029', '02-00-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9391
WARNING. Abnormal entry count found on day 2016-12-03: -9391
WARNING. Abnormal entry count found on day 2016-12-10: -8734
WARNING. Abnormal entry count found on day 2016-12-10: -8734
WARNING. Abnormal entry count found on day 2016-12-17: -7672
WARNING. Abnormal entry count found on day 2016-12-17: -7672
WARNING. Abnormal entry count found on day 2016-12-24: -4875
WARNING. Abnormal entry count found on day 2016-12-24: -4875
Processing turnstile ('N408A', 'R256', '00-00-00', 'NASSAU ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9424
WARNING. Abnormal entry count found on day 2016-12-03: -9424
WARNING. Abnormal entry count found on day 2016-12-10: -9390
WARNING. Abnormal entry count found on day 2016-12-10: -9390
WARNING. Abnormal entry count found on day 2016-12-17: -8494
WARNING. Abnormal entry count found on day 2016-12-17: -8494
WARNING. Abnormal entry count found on day 2016-12-24: -5726
WARNING. Abnormal entry count found on day 2016-12-24: -5726
Processing turnstile ('R262', 'R195', '03-06-00', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -5091
WARNING. Abnormal entry count found on day 2016-12-03: -5091
WARNING. Abnormal entry count found on day 2016-12-10: -3005
WARNING. Abnormal entry count found on day 2016-12-10: -3005
WARNING. Abnormal entry count found on day 2016-12-17: -3547
WARNING. Abnormal entry count found on day 2016-12-17: -3547
WARNING. Abnormal entry count found on day 2016-12-24: -3412
WARNING. Abnormal entry count found on day 2016-12-24: -3412
Processing turnstile ('R626', 'R062', '00-00-02', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -15171
WARNING. Abnormal entry count found on day 2016-12-03: -15171
WARNING. Abnormal entry count found on day 2016-12-10: -14528
WARNING. Abnormal entry count found on day 2016-12-10: -14528
WARNING. Abnormal entry count found on day 2016-12-17: -14209
WARNING. Abnormal entry count found on day 2016-12-17: -14209
WARNING. Abnormal entry count found on day 2016-12-24: -10884
WARNING. Abnormal entry count found on day 2016-12-24: -10884
Processing turnstile ('E016', 'R400', '00-00-01', 'BAY 50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4835
WARNING. Abnormal entry count found on day 2016-12-03: -4835
WARNING. Abnormal entry count found on day 2016-12-10: -4778
WARNING. Abnormal entry count found on day 2016-12-10: -4778
WARNING. Abnormal entry count found on day 2016-12-17: -4597
WARNING. Abnormal entry count found on day 2016-12-17: -4597
WARNING. Abnormal entry count found on day 2016-12-24: -3428
WARNING. Abnormal entry count found on day 2016-12-24: -3428
Processing turnstile ('R330', 'R363', '00-00-01', 'BURKE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5461
WARNING. Abnormal entry count found on day 2016-12-03: -5461
WARNING. Abnormal entry count found on day 2016-12-10: -5146
WARNING. Abnormal entry count found on day 2016-12-10: -5146
WARNING. Abnormal entry count found on day 2016-12-17: -5105
WARNING. Abnormal entry count found on day 2016-12-17: -5105
WARNING. Abnormal entry count found on day 2016-12-24: -3789
WARNING. Abnormal entry count found on day 2016-12-24: -3789
Processing turnstile ('R215', 'R322', '00-00-02', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22874
WARNING. Abnormal entry count found on day 2016-12-03: -22874
WARNING. Abnormal entry count found on day 2016-12-10: -23235
WARNING. Abnormal entry count found on day 2016-12-10: -23235
WARNING. Abnormal entry count found on day 2016-12-17: -23208
WARNING. Abnormal entry count found on day 2016-12-17: -23208
WARNING. Abnormal entry count found on day 2016-12-24: -19487
WARNING. Abnormal entry count found on day 2016-12-24: -19487
Processing turnstile ('R730', 'R431', '00-00-02', 'EASTCHSTER/DYRE')
WARNING. Abnormal entry count found on day 2016-12-03: -7906
WARNING. Abnormal entry count found on day 2016-12-03: -7906
WARNING. Abnormal entry count found on day 2016-12-10: -7627
WARNING. Abnormal entry count found on day 2016-12-10: -7627
WARNING. Abnormal entry count found on day 2016-12-17: -7383
WARNING. Abnormal entry count found on day 2016-12-17: -7383
WARNING. Abnormal entry count found on day 2016-12-24: -5966
WARNING. Abnormal entry count found on day 2016-12-24: -5966
Processing turnstile ('R262B', 'R195', '05-00-03', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -175
WARNING. Abnormal entry count found on day 2016-12-24: -175
Processing turnstile ('N319', 'R298', '01-06-02', 'NORTHERN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -59
WARNING. Abnormal entry count found on day 2016-12-03: -59
WARNING. Abnormal entry count found on day 2016-12-10: -38
WARNING. Abnormal entry count found on day 2016-12-10: -38
WARNING. Abnormal entry count found on day 2016-12-17: -67
WARNING. Abnormal entry count found on day 2016-12-17: -67
WARNING. Abnormal entry count found on day 2016-12-24: -35
WARNING. Abnormal entry count found on day 2016-12-24: -35
Processing turnstile ('R229', 'R143', '01-00-05', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16709
WARNING. Abnormal entry count found on day 2016-12-03: -16709
WARNING. Abnormal entry count found on day 2016-12-10: -16209
WARNING. Abnormal entry count found on day 2016-12-10: -16209
WARNING. Abnormal entry count found on day 2016-12-17: -13656
WARNING. Abnormal entry count found on day 2016-12-17: -13656
WARNING. Abnormal entry count found on day 2016-12-24: -9863
WARNING. Abnormal entry count found on day 2016-12-24: -9863
Processing turnstile ('A061', 'R142', '00-03-02', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -3145
WARNING. Abnormal entry count found on day 2016-12-03: -3145
WARNING. Abnormal entry count found on day 2016-12-10: -3087
WARNING. Abnormal entry count found on day 2016-12-10: -3087
WARNING. Abnormal entry count found on day 2016-12-17: -2981
WARNING. Abnormal entry count found on day 2016-12-17: -2981
WARNING. Abnormal entry count found on day 2016-12-24: -2127
WARNING. Abnormal entry count found on day 2016-12-24: -2127
Processing turnstile ('N519', 'R461', '00-00-01', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -16607
WARNING. Abnormal entry count found on day 2016-12-03: -16607
WARNING. Abnormal entry count found on day 2016-12-10: -16333
WARNING. Abnormal entry count found on day 2016-12-10: -16333
WARNING. Abnormal entry count found on day 2016-12-17: -16607
WARNING. Abnormal entry count found on day 2016-12-17: -16607
WARNING. Abnormal entry count found on day 2016-12-24: -11496
WARNING. Abnormal entry count found on day 2016-12-24: -11496
Processing turnstile ('R221', 'R170', '01-06-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -11669
WARNING. Abnormal entry count found on day 2016-12-03: -11669
WARNING. Abnormal entry count found on day 2016-12-10: -12158
WARNING. Abnormal entry count found on day 2016-12-10: -12158
WARNING. Abnormal entry count found on day 2016-12-17: -13477
WARNING. Abnormal entry count found on day 2016-12-17: -13477
WARNING. Abnormal entry count found on day 2016-12-24: -8859
WARNING. Abnormal entry count found on day 2016-12-24: -8859
Processing turnstile ('R160A', 'R164', '00-00-01', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -12593
WARNING. Abnormal entry count found on day 2016-12-03: -12593
WARNING. Abnormal entry count found on day 2016-12-10: -13374
WARNING. Abnormal entry count found on day 2016-12-10: -13374
WARNING. Abnormal entry count found on day 2016-12-17: -12194
WARNING. Abnormal entry count found on day 2016-12-17: -12194
WARNING. Abnormal entry count found on day 2016-12-24: -8306
WARNING. Abnormal entry count found on day 2016-12-24: -8306
Processing turnstile ('N100', 'R252', '00-00-01', 'HIGH ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10722
WARNING. Abnormal entry count found on day 2016-12-03: -10722
WARNING. Abnormal entry count found on day 2016-12-10: -9467
WARNING. Abnormal entry count found on day 2016-12-10: -9467
WARNING. Abnormal entry count found on day 2016-12-17: -9334
WARNING. Abnormal entry count found on day 2016-12-17: -9334
WARNING. Abnormal entry count found on day 2016-12-24: -9991
WARNING. Abnormal entry count found on day 2016-12-24: -9991
Processing turnstile ('N506', 'R022', '00-00-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -22945
WARNING. Abnormal entry count found on day 2016-12-03: -22945
WARNING. Abnormal entry count found on day 2016-12-10: -22030
WARNING. Abnormal entry count found on day 2016-12-10: -22030
WARNING. Abnormal entry count found on day 2016-12-17: -25152
WARNING. Abnormal entry count found on day 2016-12-17: -25152
WARNING. Abnormal entry count found on day 2016-12-24: -20670
WARNING. Abnormal entry count found on day 2016-12-24: -20670
Processing turnstile ('H041', 'R152', '00-00-00', 'CANARSIE-ROCKAW')
WARNING. Abnormal entry count found on day 2016-12-03: -6394
WARNING. Abnormal entry count found on day 2016-12-03: -6394
WARNING. Abnormal entry count found on day 2016-12-10: -6669
WARNING. Abnormal entry count found on day 2016-12-10: -6669
WARNING. Abnormal entry count found on day 2016-12-17: -6498
WARNING. Abnormal entry count found on day 2016-12-17: -6498
WARNING. Abnormal entry count found on day 2016-12-24: -4069
WARNING. Abnormal entry count found on day 2016-12-24: -4069
Processing turnstile ('R401', 'R445', '00-00-00', '3 AV 138 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10414
WARNING. Abnormal entry count found on day 2016-12-03: -10414
WARNING. Abnormal entry count found on day 2016-12-10: -10371
WARNING. Abnormal entry count found on day 2016-12-10: -10371
WARNING. Abnormal entry count found on day 2016-12-17: -9702
WARNING. Abnormal entry count found on day 2016-12-17: -9702
WARNING. Abnormal entry count found on day 2016-12-24: -8053
WARNING. Abnormal entry count found on day 2016-12-24: -8053
Processing turnstile ('D005', 'R398', '00-00-02', 'NEW UTRECHT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3458
WARNING. Abnormal entry count found on day 2016-12-03: -3458
WARNING. Abnormal entry count found on day 2016-12-10: -3531
WARNING. Abnormal entry count found on day 2016-12-10: -3531
WARNING. Abnormal entry count found on day 2016-12-17: -3243
WARNING. Abnormal entry count found on day 2016-12-17: -3243
WARNING. Abnormal entry count found on day 2016-12-24: -2146
WARNING. Abnormal entry count found on day 2016-12-24: -2146
Processing turnstile ('N340', 'R115', '00-06-00', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -954
WARNING. Abnormal entry count found on day 2016-12-03: -954
WARNING. Abnormal entry count found on day 2016-12-10: -904
WARNING. Abnormal entry count found on day 2016-12-10: -904
WARNING. Abnormal entry count found on day 2016-12-17: -926
WARNING. Abnormal entry count found on day 2016-12-17: -926
WARNING. Abnormal entry count found on day 2016-12-24: -567
WARNING. Abnormal entry count found on day 2016-12-24: -567
Processing turnstile ('N116', 'R198', '00-03-01', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -20248
WARNING. Abnormal entry count found on day 2016-12-03: -20248
WARNING. Abnormal entry count found on day 2016-12-10: -19776
WARNING. Abnormal entry count found on day 2016-12-10: -19776
WARNING. Abnormal entry count found on day 2016-12-17: -18024
WARNING. Abnormal entry count found on day 2016-12-17: -18024
WARNING. Abnormal entry count found on day 2016-12-24: -13143
WARNING. Abnormal entry count found on day 2016-12-24: -13143
Processing turnstile ('N203', 'R195', '00-00-02', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -12463
WARNING. Abnormal entry count found on day 2016-12-03: -12463
WARNING. Abnormal entry count found on day 2016-12-10: -11816
WARNING. Abnormal entry count found on day 2016-12-10: -11816
WARNING. Abnormal entry count found on day 2016-12-17: -12205
WARNING. Abnormal entry count found on day 2016-12-17: -12205
WARNING. Abnormal entry count found on day 2016-12-24: -10682
WARNING. Abnormal entry count found on day 2016-12-24: -10682
Processing turnstile ('N102', 'R127', '01-00-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -13192
WARNING. Abnormal entry count found on day 2016-12-03: -13192
WARNING. Abnormal entry count found on day 2016-12-10: -12856
WARNING. Abnormal entry count found on day 2016-12-10: -12856
WARNING. Abnormal entry count found on day 2016-12-17: -10510
WARNING. Abnormal entry count found on day 2016-12-17: -10510
WARNING. Abnormal entry count found on day 2016-12-24: -5843
WARNING. Abnormal entry count found on day 2016-12-24: -5843
Processing turnstile ('C008', 'R099', '00-03-00', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4428
WARNING. Abnormal entry count found on day 2016-12-03: -4428
WARNING. Abnormal entry count found on day 2016-12-10: -4408
WARNING. Abnormal entry count found on day 2016-12-10: -4408
WARNING. Abnormal entry count found on day 2016-12-17: -4164
WARNING. Abnormal entry count found on day 2016-12-17: -4164
WARNING. Abnormal entry count found on day 2016-12-24: -2523
WARNING. Abnormal entry count found on day 2016-12-24: -2523
Processing turnstile ('R533', 'R055', '00-03-07', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -23619
WARNING. Abnormal entry count found on day 2016-12-03: -23619
WARNING. Abnormal entry count found on day 2016-12-10: -22174
WARNING. Abnormal entry count found on day 2016-12-10: -22174
WARNING. Abnormal entry count found on day 2016-12-17: -23435
WARNING. Abnormal entry count found on day 2016-12-17: -23435
WARNING. Abnormal entry count found on day 2016-12-24: -20356
WARNING. Abnormal entry count found on day 2016-12-24: -20356
Processing turnstile ('N224', 'R157', '00-00-02', 'NORWOOD 205 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3321
WARNING. Abnormal entry count found on day 2016-12-03: -3321
WARNING. Abnormal entry count found on day 2016-12-10: -3225
WARNING. Abnormal entry count found on day 2016-12-10: -3225
WARNING. Abnormal entry count found on day 2016-12-17: -3107
WARNING. Abnormal entry count found on day 2016-12-17: -3107
WARNING. Abnormal entry count found on day 2016-12-24: -2602
WARNING. Abnormal entry count found on day 2016-12-24: -2602
Processing turnstile ('N002A', 'R173', '00-00-00', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10979
WARNING. Abnormal entry count found on day 2016-12-03: -10979
WARNING. Abnormal entry count found on day 2016-12-10: -11317
WARNING. Abnormal entry count found on day 2016-12-10: -11317
WARNING. Abnormal entry count found on day 2016-12-17: -10831
WARNING. Abnormal entry count found on day 2016-12-17: -10831
WARNING. Abnormal entry count found on day 2016-12-24: -8550
WARNING. Abnormal entry count found on day 2016-12-24: -8550
Processing turnstile ('R142', 'R293', '01-06-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -469
WARNING. Abnormal entry count found on day 2016-12-03: -469
WARNING. Abnormal entry count found on day 2016-12-10: -440
WARNING. Abnormal entry count found on day 2016-12-10: -440
WARNING. Abnormal entry count found on day 2016-12-17: -433
WARNING. Abnormal entry count found on day 2016-12-17: -433
WARNING. Abnormal entry count found on day 2016-12-24: -294
WARNING. Abnormal entry count found on day 2016-12-24: -294
Processing turnstile ('N541', 'R241', '01-06-02', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -3937
WARNING. Abnormal entry count found on day 2016-12-03: -3937
WARNING. Abnormal entry count found on day 2016-12-10: -4281
WARNING. Abnormal entry count found on day 2016-12-10: -4281
WARNING. Abnormal entry count found on day 2016-12-17: -3780
WARNING. Abnormal entry count found on day 2016-12-17: -3780
WARNING. Abnormal entry count found on day 2016-12-24: -2512
WARNING. Abnormal entry count found on day 2016-12-24: -2512
Processing turnstile ('R231', 'R176', '00-00-03', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7840
WARNING. Abnormal entry count found on day 2016-12-03: -7840
WARNING. Abnormal entry count found on day 2016-12-10: -7650
WARNING. Abnormal entry count found on day 2016-12-10: -7650
WARNING. Abnormal entry count found on day 2016-12-17: -7110
WARNING. Abnormal entry count found on day 2016-12-17: -7110
WARNING. Abnormal entry count found on day 2016-12-24: -5133
WARNING. Abnormal entry count found on day 2016-12-24: -5133
Processing turnstile ('R159', 'R164', '01-06-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -390
WARNING. Abnormal entry count found on day 2016-12-03: -390
WARNING. Abnormal entry count found on day 2016-12-10: -553
WARNING. Abnormal entry count found on day 2016-12-10: -553
WARNING. Abnormal entry count found on day 2016-12-17: -405
WARNING. Abnormal entry count found on day 2016-12-17: -405
WARNING. Abnormal entry count found on day 2016-12-24: -361
WARNING. Abnormal entry count found on day 2016-12-24: -361
Processing turnstile ('N011', 'R126', '01-06-01', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8449
WARNING. Abnormal entry count found on day 2016-12-03: -8449
WARNING. Abnormal entry count found on day 2016-12-10: -7613
WARNING. Abnormal entry count found on day 2016-12-10: -7613
WARNING. Abnormal entry count found on day 2016-12-17: -7888
WARNING. Abnormal entry count found on day 2016-12-17: -7888
WARNING. Abnormal entry count found on day 2016-12-24: -5513
WARNING. Abnormal entry count found on day 2016-12-24: -5513
Processing turnstile ('R728', 'R226', '00-00-00', 'GUN HILL RD')
WARNING. Abnormal entry count found on day 2016-12-03: -5184
WARNING. Abnormal entry count found on day 2016-12-03: -5184
WARNING. Abnormal entry count found on day 2016-12-10: -4898
WARNING. Abnormal entry count found on day 2016-12-10: -4898
WARNING. Abnormal entry count found on day 2016-12-17: -4425
WARNING. Abnormal entry count found on day 2016-12-17: -4425
WARNING. Abnormal entry count found on day 2016-12-24: -3648
WARNING. Abnormal entry count found on day 2016-12-24: -3648
Processing turnstile ('N502', 'R021', '01-06-00', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -9926
WARNING. Abnormal entry count found on day 2016-12-03: -9926
WARNING. Abnormal entry count found on day 2016-12-10: -9247
WARNING. Abnormal entry count found on day 2016-12-10: -9247
WARNING. Abnormal entry count found on day 2016-12-17: -8394
WARNING. Abnormal entry count found on day 2016-12-17: -8394
WARNING. Abnormal entry count found on day 2016-12-24: -6251
WARNING. Abnormal entry count found on day 2016-12-24: -6251
Processing turnstile ('N521', 'R300', '01-06-01', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1689
WARNING. Abnormal entry count found on day 2016-12-03: -1689
WARNING. Abnormal entry count found on day 2016-12-10: -1822
WARNING. Abnormal entry count found on day 2016-12-10: -1822
WARNING. Abnormal entry count found on day 2016-12-17: -1783
WARNING. Abnormal entry count found on day 2016-12-17: -1783
WARNING. Abnormal entry count found on day 2016-12-24: -1406
WARNING. Abnormal entry count found on day 2016-12-24: -1406
Processing turnstile ('N601A', 'R319', '01-03-01', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-24: -203
WARNING. Abnormal entry count found on day 2016-12-24: -203
Processing turnstile ('E001', 'R368', '00-00-03', '9 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8447
WARNING. Abnormal entry count found on day 2016-12-03: -8447
WARNING. Abnormal entry count found on day 2016-12-10: -8286
WARNING. Abnormal entry count found on day 2016-12-10: -8286
WARNING. Abnormal entry count found on day 2016-12-17: -8051
WARNING. Abnormal entry count found on day 2016-12-17: -8051
WARNING. Abnormal entry count found on day 2016-12-24: -5840
WARNING. Abnormal entry count found on day 2016-12-24: -5840
Processing turnstile ('N414', 'R316', '00-00-00', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1744
WARNING. Abnormal entry count found on day 2016-12-03: -1744
WARNING. Abnormal entry count found on day 2016-12-10: -1559
WARNING. Abnormal entry count found on day 2016-12-10: -1559
WARNING. Abnormal entry count found on day 2016-12-17: -1586
WARNING. Abnormal entry count found on day 2016-12-17: -1586
WARNING. Abnormal entry count found on day 2016-12-24: -1225
WARNING. Abnormal entry count found on day 2016-12-24: -1225
Processing turnstile ('R507', 'R134', '00-03-02', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2489
WARNING. Abnormal entry count found on day 2016-12-03: -2489
WARNING. Abnormal entry count found on day 2016-12-10: -2531
WARNING. Abnormal entry count found on day 2016-12-10: -2531
WARNING. Abnormal entry count found on day 2016-12-17: -2331
WARNING. Abnormal entry count found on day 2016-12-17: -2331
WARNING. Abnormal entry count found on day 2016-12-24: -1622
WARNING. Abnormal entry count found on day 2016-12-24: -1622
Processing turnstile ('PTH02', 'R544', '00-00-04', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -9099
WARNING. Abnormal entry count found on day 2016-12-03: -9099
WARNING. Abnormal entry count found on day 2016-12-10: -7902
WARNING. Abnormal entry count found on day 2016-12-10: -7902
WARNING. Abnormal entry count found on day 2016-12-17: -6628
WARNING. Abnormal entry count found on day 2016-12-17: -6628
WARNING. Abnormal entry count found on day 2016-12-24: -5965
WARNING. Abnormal entry count found on day 2016-12-24: -5965
Processing turnstile ('R312', 'R405', '00-00-00', 'JACKSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8937
WARNING. Abnormal entry count found on day 2016-12-03: -8937
WARNING. Abnormal entry count found on day 2016-12-10: -10871
WARNING. Abnormal entry count found on day 2016-12-10: -10871
WARNING. Abnormal entry count found on day 2016-12-17: -10307
WARNING. Abnormal entry count found on day 2016-12-17: -10307
WARNING. Abnormal entry count found on day 2016-12-24: -8922
WARNING. Abnormal entry count found on day 2016-12-24: -8922
Processing turnstile ('R612', 'R057', '01-03-04', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -8275
WARNING. Abnormal entry count found on day 2016-12-03: -8275
WARNING. Abnormal entry count found on day 2016-12-10: -7622
WARNING. Abnormal entry count found on day 2016-12-10: -7622
WARNING. Abnormal entry count found on day 2016-12-17: -7515
WARNING. Abnormal entry count found on day 2016-12-17: -7515
WARNING. Abnormal entry count found on day 2016-12-24: -6063
WARNING. Abnormal entry count found on day 2016-12-24: -6063
Processing turnstile ('N414', 'R316', '00-00-02', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4636
WARNING. Abnormal entry count found on day 2016-12-03: -4636
WARNING. Abnormal entry count found on day 2016-12-10: -4429
WARNING. Abnormal entry count found on day 2016-12-10: -4429
WARNING. Abnormal entry count found on day 2016-12-17: -4278
WARNING. Abnormal entry count found on day 2016-12-17: -4278
WARNING. Abnormal entry count found on day 2016-12-24: -3023
WARNING. Abnormal entry count found on day 2016-12-24: -3023
Processing turnstile ('N181A', 'R464', '00-05-01', 'AQUEDUCT RACETR')
Processing turnstile ('A055', 'R227', '00-00-04', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3927
WARNING. Abnormal entry count found on day 2016-12-03: -3927
WARNING. Abnormal entry count found on day 2016-12-10: -3633
WARNING. Abnormal entry count found on day 2016-12-10: -3633
WARNING. Abnormal entry count found on day 2016-12-17: -3253
WARNING. Abnormal entry count found on day 2016-12-17: -3253
WARNING. Abnormal entry count found on day 2016-12-24: -2289
WARNING. Abnormal entry count found on day 2016-12-24: -2289
Processing turnstile ('N184', 'R416', '00-05-00', 'BEACH 90 ST')
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
Processing turnstile ('N092', 'R029', '03-00-05', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6713
WARNING. Abnormal entry count found on day 2016-12-03: -6713
WARNING. Abnormal entry count found on day 2016-12-10: -6093
WARNING. Abnormal entry count found on day 2016-12-10: -6093
WARNING. Abnormal entry count found on day 2016-12-17: -5270
WARNING. Abnormal entry count found on day 2016-12-17: -5270
WARNING. Abnormal entry count found on day 2016-12-24: -4217
WARNING. Abnormal entry count found on day 2016-12-24: -4217
Processing turnstile ('R285', 'R308', '00-00-01', 'MT EDEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7304
WARNING. Abnormal entry count found on day 2016-12-03: -7304
WARNING. Abnormal entry count found on day 2016-12-10: -7012
WARNING. Abnormal entry count found on day 2016-12-10: -7012
WARNING. Abnormal entry count found on day 2016-12-17: -6975
WARNING. Abnormal entry count found on day 2016-12-17: -6975
WARNING. Abnormal entry count found on day 2016-12-24: -5518
WARNING. Abnormal entry count found on day 2016-12-24: -5518
Processing turnstile ('R203A', 'R043', '01-05-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
Processing turnstile ('R418', 'R106', '00-00-02', 'CASTLE HILL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6219
WARNING. Abnormal entry count found on day 2016-12-03: -6219
WARNING. Abnormal entry count found on day 2016-12-10: -5937
WARNING. Abnormal entry count found on day 2016-12-10: -5937
WARNING. Abnormal entry count found on day 2016-12-17: -6031
WARNING. Abnormal entry count found on day 2016-12-17: -6031
WARNING. Abnormal entry count found on day 2016-12-24: -4419
WARNING. Abnormal entry count found on day 2016-12-24: -4419
Processing turnstile ('J016', 'R381', '00-00-00', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7798
WARNING. Abnormal entry count found on day 2016-12-03: -7798
WARNING. Abnormal entry count found on day 2016-12-10: -7593
WARNING. Abnormal entry count found on day 2016-12-10: -7593
WARNING. Abnormal entry count found on day 2016-12-17: -7522
WARNING. Abnormal entry count found on day 2016-12-17: -7522
WARNING. Abnormal entry count found on day 2016-12-24: -4685
WARNING. Abnormal entry count found on day 2016-12-24: -4685
Processing turnstile ('R645', 'R110', '00-06-02', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -20508
WARNING. Abnormal entry count found on day 2016-12-03: -20508
WARNING. Abnormal entry count found on day 2016-12-10: -19479
WARNING. Abnormal entry count found on day 2016-12-10: -19479
WARNING. Abnormal entry count found on day 2016-12-17: -19125
WARNING. Abnormal entry count found on day 2016-12-17: -19125
WARNING. Abnormal entry count found on day 2016-12-24: -15024
WARNING. Abnormal entry count found on day 2016-12-24: -15024
Processing turnstile ('R601A', 'R108', '02-00-03', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -5408
WARNING. Abnormal entry count found on day 2016-12-03: -5408
WARNING. Abnormal entry count found on day 2016-12-10: -5394
WARNING. Abnormal entry count found on day 2016-12-10: -5394
WARNING. Abnormal entry count found on day 2016-12-17: -4651
WARNING. Abnormal entry count found on day 2016-12-17: -4651
WARNING. Abnormal entry count found on day 2016-12-24: -3173
WARNING. Abnormal entry count found on day 2016-12-24: -3173
Processing turnstile ('A038', 'R085', '00-00-00', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -9918
WARNING. Abnormal entry count found on day 2016-12-03: -9918
WARNING. Abnormal entry count found on day 2016-12-10: -10393
WARNING. Abnormal entry count found on day 2016-12-10: -10393
WARNING. Abnormal entry count found on day 2016-12-17: -9252
WARNING. Abnormal entry count found on day 2016-12-17: -9252
WARNING. Abnormal entry count found on day 2016-12-24: -6628
WARNING. Abnormal entry count found on day 2016-12-24: -6628
Processing turnstile ('R110', 'R027', '01-00-03', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6432
WARNING. Abnormal entry count found on day 2016-12-03: -6432
WARNING. Abnormal entry count found on day 2016-12-10: -6519
WARNING. Abnormal entry count found on day 2016-12-10: -6519
WARNING. Abnormal entry count found on day 2016-12-17: -5438
WARNING. Abnormal entry count found on day 2016-12-17: -5438
WARNING. Abnormal entry count found on day 2016-12-24: -3538
WARNING. Abnormal entry count found on day 2016-12-24: -3538
Processing turnstile ('N325A', 'R218', '00-05-01', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8825
WARNING. Abnormal entry count found on day 2016-12-03: -8825
WARNING. Abnormal entry count found on day 2016-12-10: -8902
WARNING. Abnormal entry count found on day 2016-12-10: -8902
WARNING. Abnormal entry count found on day 2016-12-17: -9442
WARNING. Abnormal entry count found on day 2016-12-17: -9442
WARNING. Abnormal entry count found on day 2016-12-24: -7326
WARNING. Abnormal entry count found on day 2016-12-24: -7326
Processing turnstile ('A015', 'R081', '00-00-02', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13210
WARNING. Abnormal entry count found on day 2016-12-03: -13210
WARNING. Abnormal entry count found on day 2016-12-10: -12861
WARNING. Abnormal entry count found on day 2016-12-10: -12861
WARNING. Abnormal entry count found on day 2016-12-17: -12209
WARNING. Abnormal entry count found on day 2016-12-17: -12209
WARNING. Abnormal entry count found on day 2016-12-24: -12357
WARNING. Abnormal entry count found on day 2016-12-24: -12357
Processing turnstile ('R406', 'R448', '00-00-00', "E 143/ST MARY'S")
WARNING. Abnormal entry count found on day 2016-12-03: -2790
WARNING. Abnormal entry count found on day 2016-12-03: -2790
WARNING. Abnormal entry count found on day 2016-12-10: -2719
WARNING. Abnormal entry count found on day 2016-12-10: -2719
WARNING. Abnormal entry count found on day 2016-12-17: -2613
WARNING. Abnormal entry count found on day 2016-12-17: -2613
WARNING. Abnormal entry count found on day 2016-12-24: -1725
WARNING. Abnormal entry count found on day 2016-12-24: -1725
Processing turnstile ('R633', 'R068', '00-00-03', 'VAN SICLEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11855
WARNING. Abnormal entry count found on day 2016-12-03: -11855
WARNING. Abnormal entry count found on day 2016-12-10: -11366
WARNING. Abnormal entry count found on day 2016-12-10: -11366
WARNING. Abnormal entry count found on day 2016-12-17: -11534
WARNING. Abnormal entry count found on day 2016-12-17: -11534
WARNING. Abnormal entry count found on day 2016-12-24: -8128
WARNING. Abnormal entry count found on day 2016-12-24: -8128
Processing turnstile ('R283', 'R221', '00-00-03', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19576
WARNING. Abnormal entry count found on day 2016-12-03: -19576
WARNING. Abnormal entry count found on day 2016-12-10: -18595
WARNING. Abnormal entry count found on day 2016-12-10: -18595
WARNING. Abnormal entry count found on day 2016-12-17: -16880
WARNING. Abnormal entry count found on day 2016-12-17: -16880
WARNING. Abnormal entry count found on day 2016-12-24: -12412
WARNING. Abnormal entry count found on day 2016-12-24: -12412
Processing turnstile ('S101A', 'R070', '01-00-06', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -4341
WARNING. Abnormal entry count found on day 2016-12-03: -4341
WARNING. Abnormal entry count found on day 2016-12-10: -4041
WARNING. Abnormal entry count found on day 2016-12-10: -4041
WARNING. Abnormal entry count found on day 2016-12-17: -3862
WARNING. Abnormal entry count found on day 2016-12-17: -3862
WARNING. Abnormal entry count found on day 2016-12-24: -3138
WARNING. Abnormal entry count found on day 2016-12-24: -3138
Processing turnstile ('N330C', 'R202', '01-06-03', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -4035
WARNING. Abnormal entry count found on day 2016-12-03: -4035
WARNING. Abnormal entry count found on day 2016-12-10: -4122
WARNING. Abnormal entry count found on day 2016-12-10: -4122
WARNING. Abnormal entry count found on day 2016-12-17: -3980
WARNING. Abnormal entry count found on day 2016-12-17: -3980
WARNING. Abnormal entry count found on day 2016-12-24: -3212
WARNING. Abnormal entry count found on day 2016-12-24: -3212
Processing turnstile ('TRAM1', 'R468', '00-00-00', 'RIT-MANHATTAN')
WARNING. Abnormal entry count found on day 2016-12-03: -7203
WARNING. Abnormal entry count found on day 2016-12-03: -7203
WARNING. Abnormal entry count found on day 2016-12-10: -6442
WARNING. Abnormal entry count found on day 2016-12-10: -6442
WARNING. Abnormal entry count found on day 2016-12-17: -7150
WARNING. Abnormal entry count found on day 2016-12-17: -7150
WARNING. Abnormal entry count found on day 2016-12-24: -8215
WARNING. Abnormal entry count found on day 2016-12-24: -8215
Processing turnstile ('PTH02', 'R544', '00-00-06', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -4097
WARNING. Abnormal entry count found on day 2016-12-03: -4097
WARNING. Abnormal entry count found on day 2016-12-10: -5711
WARNING. Abnormal entry count found on day 2016-12-10: -5711
WARNING. Abnormal entry count found on day 2016-12-17: -3148
WARNING. Abnormal entry count found on day 2016-12-17: -3148
WARNING. Abnormal entry count found on day 2016-12-24: -4589
WARNING. Abnormal entry count found on day 2016-12-24: -4589
Processing turnstile ('R205A', 'R014', '04-05-01', 'FULTON ST')
Processing turnstile ('R420', 'R107', '00-00-02', 'WESTCHESTER SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12777
WARNING. Abnormal entry count found on day 2016-12-03: -12777
WARNING. Abnormal entry count found on day 2016-12-10: -12383
WARNING. Abnormal entry count found on day 2016-12-10: -12383
WARNING. Abnormal entry count found on day 2016-12-17: -12241
WARNING. Abnormal entry count found on day 2016-12-17: -12241
WARNING. Abnormal entry count found on day 2016-12-24: -8473
WARNING. Abnormal entry count found on day 2016-12-24: -8473
Processing turnstile ('N307', 'R359', '00-00-03', 'COURT SQ-23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16238
WARNING. Abnormal entry count found on day 2016-12-03: -16238
WARNING. Abnormal entry count found on day 2016-12-10: -15440
WARNING. Abnormal entry count found on day 2016-12-10: -15440
WARNING. Abnormal entry count found on day 2016-12-17: -14435
WARNING. Abnormal entry count found on day 2016-12-17: -14435
WARNING. Abnormal entry count found on day 2016-12-24: -9672
WARNING. Abnormal entry count found on day 2016-12-24: -9672
Processing turnstile ('E001', 'R368', '00-00-01', '9 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6636
WARNING. Abnormal entry count found on day 2016-12-03: -6636
WARNING. Abnormal entry count found on day 2016-12-10: -6363
WARNING. Abnormal entry count found on day 2016-12-10: -6363
WARNING. Abnormal entry count found on day 2016-12-17: -6663
WARNING. Abnormal entry count found on day 2016-12-17: -6663
WARNING. Abnormal entry count found on day 2016-12-24: -5454
WARNING. Abnormal entry count found on day 2016-12-24: -5454
Processing turnstile ('B031', 'R172', '01-00-04', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -4298
WARNING. Abnormal entry count found on day 2016-12-03: -4298
WARNING. Abnormal entry count found on day 2016-12-10: -4215
WARNING. Abnormal entry count found on day 2016-12-10: -4215
WARNING. Abnormal entry count found on day 2016-12-17: -4360
WARNING. Abnormal entry count found on day 2016-12-17: -4360
WARNING. Abnormal entry count found on day 2016-12-24: -3794
WARNING. Abnormal entry count found on day 2016-12-24: -3794
Processing turnstile ('A022', 'R022', '01-00-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -27426
WARNING. Abnormal entry count found on day 2016-12-03: -27426
WARNING. Abnormal entry count found on day 2016-12-10: -31499
WARNING. Abnormal entry count found on day 2016-12-10: -31499
WARNING. Abnormal entry count found on day 2016-12-17: -31197
WARNING. Abnormal entry count found on day 2016-12-17: -31197
WARNING. Abnormal entry count found on day 2016-12-24: -30292
WARNING. Abnormal entry count found on day 2016-12-24: -30292
Processing turnstile ('C004', 'R089', '01-05-01', 'JAY ST-METROTEC')
Processing turnstile ('C012', 'R258', '01-03-02', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5829
WARNING. Abnormal entry count found on day 2016-12-03: -5829
WARNING. Abnormal entry count found on day 2016-12-10: -6001
WARNING. Abnormal entry count found on day 2016-12-10: -6001
WARNING. Abnormal entry count found on day 2016-12-17: -5346
WARNING. Abnormal entry count found on day 2016-12-17: -5346
WARNING. Abnormal entry count found on day 2016-12-24: -3443
WARNING. Abnormal entry count found on day 2016-12-24: -3443
Processing turnstile ('N086', 'R282', '00-00-00', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13902
WARNING. Abnormal entry count found on day 2016-12-03: -13902
WARNING. Abnormal entry count found on day 2016-12-10: -14890
WARNING. Abnormal entry count found on day 2016-12-10: -14890
WARNING. Abnormal entry count found on day 2016-12-17: -14195
WARNING. Abnormal entry count found on day 2016-12-17: -14195
WARNING. Abnormal entry count found on day 2016-12-24: -9329
WARNING. Abnormal entry count found on day 2016-12-24: -9329
Processing turnstile ('R120', 'R320', '01-00-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1288
WARNING. Abnormal entry count found on day 2016-12-03: -1288
WARNING. Abnormal entry count found on day 2016-12-10: -1249
WARNING. Abnormal entry count found on day 2016-12-10: -1249
WARNING. Abnormal entry count found on day 2016-12-17: -1113
WARNING. Abnormal entry count found on day 2016-12-17: -1113
WARNING. Abnormal entry count found on day 2016-12-24: -783
WARNING. Abnormal entry count found on day 2016-12-24: -783
Processing turnstile ('K024', 'R403', '00-00-02', 'FOREST AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -12795
WARNING. Abnormal entry count found on day 2016-12-03: -12795
WARNING. Abnormal entry count found on day 2016-12-10: -12338
WARNING. Abnormal entry count found on day 2016-12-10: -12338
WARNING. Abnormal entry count found on day 2016-12-17: -12106
WARNING. Abnormal entry count found on day 2016-12-17: -12106
WARNING. Abnormal entry count found on day 2016-12-24: -9334
WARNING. Abnormal entry count found on day 2016-12-24: -9334
Processing turnstile ('N501', 'R020', '01-03-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -16617
WARNING. Abnormal entry count found on day 2016-12-03: -16617
WARNING. Abnormal entry count found on day 2016-12-10: -16082
WARNING. Abnormal entry count found on day 2016-12-10: -16082
WARNING. Abnormal entry count found on day 2016-12-17: -15908
WARNING. Abnormal entry count found on day 2016-12-17: -15908
WARNING. Abnormal entry count found on day 2016-12-24: -12616
WARNING. Abnormal entry count found on day 2016-12-24: -12616
Processing turnstile ('R290', 'R161', '00-00-03', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -13240
WARNING. Abnormal entry count found on day 2016-12-03: -13240
WARNING. Abnormal entry count found on day 2016-12-10: -12792
WARNING. Abnormal entry count found on day 2016-12-10: -12792
WARNING. Abnormal entry count found on day 2016-12-17: -11833
WARNING. Abnormal entry count found on day 2016-12-17: -11833
WARNING. Abnormal entry count found on day 2016-12-24: -8553
WARNING. Abnormal entry count found on day 2016-12-24: -8553
Processing turnstile ('N525', 'R142', '01-00-02', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -10976
WARNING. Abnormal entry count found on day 2016-12-03: -10976
WARNING. Abnormal entry count found on day 2016-12-10: -12569
WARNING. Abnormal entry count found on day 2016-12-10: -12569
WARNING. Abnormal entry count found on day 2016-12-17: -10395
WARNING. Abnormal entry count found on day 2016-12-17: -10395
WARNING. Abnormal entry count found on day 2016-12-24: -7829
WARNING. Abnormal entry count found on day 2016-12-24: -7829
Processing turnstile ('N539A', 'R288', '00-03-00', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7713
WARNING. Abnormal entry count found on day 2016-12-03: -7713
WARNING. Abnormal entry count found on day 2016-12-10: -7274
WARNING. Abnormal entry count found on day 2016-12-10: -7274
WARNING. Abnormal entry count found on day 2016-12-17: -6859
WARNING. Abnormal entry count found on day 2016-12-17: -6859
WARNING. Abnormal entry count found on day 2016-12-24: -3750
WARNING. Abnormal entry count found on day 2016-12-24: -3750
Processing turnstile ('R206', 'R014', '02-03-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3343
WARNING. Abnormal entry count found on day 2016-12-03: -3343
WARNING. Abnormal entry count found on day 2016-12-10: -3147
WARNING. Abnormal entry count found on day 2016-12-10: -3147
WARNING. Abnormal entry count found on day 2016-12-17: -3029
WARNING. Abnormal entry count found on day 2016-12-17: -3029
WARNING. Abnormal entry count found on day 2016-12-24: -2245
WARNING. Abnormal entry count found on day 2016-12-24: -2245
Processing turnstile ('C009', 'R057', '03-03-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -7730
WARNING. Abnormal entry count found on day 2016-12-03: -7730
WARNING. Abnormal entry count found on day 2016-12-10: -7836
WARNING. Abnormal entry count found on day 2016-12-10: -7836
WARNING. Abnormal entry count found on day 2016-12-17: -8218
WARNING. Abnormal entry count found on day 2016-12-17: -8218
WARNING. Abnormal entry count found on day 2016-12-24: -5012
WARNING. Abnormal entry count found on day 2016-12-24: -5012
Processing turnstile ('J003', 'R352', '00-00-02', 'HEWES ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3332
WARNING. Abnormal entry count found on day 2016-12-03: -3332
WARNING. Abnormal entry count found on day 2016-12-10: -3210
WARNING. Abnormal entry count found on day 2016-12-10: -3210
WARNING. Abnormal entry count found on day 2016-12-17: -3498
WARNING. Abnormal entry count found on day 2016-12-17: -3498
WARNING. Abnormal entry count found on day 2016-12-24: -2381
WARNING. Abnormal entry count found on day 2016-12-24: -2381
Processing turnstile ('C026', 'R215', '01-05-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N123B', 'R439', '01-05-01', 'ROCKAWAY AV')
Processing turnstile ('A050', 'R088', '00-05-03', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -433
WARNING. Abnormal entry count found on day 2016-12-03: -433
WARNING. Abnormal entry count found on day 2016-12-10: -438
WARNING. Abnormal entry count found on day 2016-12-10: -438
WARNING. Abnormal entry count found on day 2016-12-17: -445
WARNING. Abnormal entry count found on day 2016-12-17: -445
WARNING. Abnormal entry count found on day 2016-12-24: -451
WARNING. Abnormal entry count found on day 2016-12-24: -451
Processing turnstile ('H019', 'R294', '00-00-01', 'MORGAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7567
WARNING. Abnormal entry count found on day 2016-12-03: -7567
WARNING. Abnormal entry count found on day 2016-12-10: -7608
WARNING. Abnormal entry count found on day 2016-12-10: -7608
WARNING. Abnormal entry count found on day 2016-12-17: -6656
WARNING. Abnormal entry count found on day 2016-12-17: -6656
WARNING. Abnormal entry count found on day 2016-12-24: -5092
WARNING. Abnormal entry count found on day 2016-12-24: -5092
Processing turnstile ('R232', 'R176', '02-00-03', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3864
WARNING. Abnormal entry count found on day 2016-12-03: -3864
WARNING. Abnormal entry count found on day 2016-12-10: -4124
WARNING. Abnormal entry count found on day 2016-12-10: -4124
WARNING. Abnormal entry count found on day 2016-12-17: -3752
WARNING. Abnormal entry count found on day 2016-12-17: -3752
WARNING. Abnormal entry count found on day 2016-12-24: -2764
WARNING. Abnormal entry count found on day 2016-12-24: -2764
Processing turnstile ('H017', 'R265', '00-00-02', 'MONTROSE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16686
WARNING. Abnormal entry count found on day 2016-12-03: -16686
WARNING. Abnormal entry count found on day 2016-12-10: -16519
WARNING. Abnormal entry count found on day 2016-12-10: -16519
WARNING. Abnormal entry count found on day 2016-12-17: -15294
WARNING. Abnormal entry count found on day 2016-12-17: -15294
WARNING. Abnormal entry count found on day 2016-12-24: -10979
WARNING. Abnormal entry count found on day 2016-12-24: -10979
Processing turnstile ('A002', 'R051', '02-00-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10590
WARNING. Abnormal entry count found on day 2016-12-03: -10590
WARNING. Abnormal entry count found on day 2016-12-10: -10221
WARNING. Abnormal entry count found on day 2016-12-10: -10221
WARNING. Abnormal entry count found on day 2016-12-17: -12020
WARNING. Abnormal entry count found on day 2016-12-17: -12020
WARNING. Abnormal entry count found on day 2016-12-24: -9916
WARNING. Abnormal entry count found on day 2016-12-24: -9916
Processing turnstile ('R516', 'R291', '00-00-00', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9530
WARNING. Abnormal entry count found on day 2016-12-03: -9530
WARNING. Abnormal entry count found on day 2016-12-10: -7376
WARNING. Abnormal entry count found on day 2016-12-10: -7376
WARNING. Abnormal entry count found on day 2016-12-17: -5443
WARNING. Abnormal entry count found on day 2016-12-17: -5443
WARNING. Abnormal entry count found on day 2016-12-24: -2705
WARNING. Abnormal entry count found on day 2016-12-24: -2705
Processing turnstile ('R518', 'R261', '00-03-02', '40 ST LOWERY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17568
WARNING. Abnormal entry count found on day 2016-12-03: -17568
WARNING. Abnormal entry count found on day 2016-12-10: -18146
WARNING. Abnormal entry count found on day 2016-12-10: -18146
WARNING. Abnormal entry count found on day 2016-12-17: -17246
WARNING. Abnormal entry count found on day 2016-12-17: -17246
WARNING. Abnormal entry count found on day 2016-12-24: -14121
WARNING. Abnormal entry count found on day 2016-12-24: -14121
Processing turnstile ('N205', 'R195', '02-00-03', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -15296
WARNING. Abnormal entry count found on day 2016-12-03: -15296
WARNING. Abnormal entry count found on day 2016-12-10: -14879
WARNING. Abnormal entry count found on day 2016-12-10: -14879
WARNING. Abnormal entry count found on day 2016-12-17: -13076
WARNING. Abnormal entry count found on day 2016-12-17: -13076
WARNING. Abnormal entry count found on day 2016-12-24: -11229
WARNING. Abnormal entry count found on day 2016-12-24: -11229
Processing turnstile ('R401', 'R445', '00-00-01', '3 AV 138 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9469
WARNING. Abnormal entry count found on day 2016-12-03: -9469
WARNING. Abnormal entry count found on day 2016-12-10: -10048
WARNING. Abnormal entry count found on day 2016-12-10: -10048
WARNING. Abnormal entry count found on day 2016-12-17: -9196
WARNING. Abnormal entry count found on day 2016-12-17: -9196
WARNING. Abnormal entry count found on day 2016-12-24: -6778
WARNING. Abnormal entry count found on day 2016-12-24: -6778
Processing turnstile ('N400A', 'R359', '02-06-04', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -2043
WARNING. Abnormal entry count found on day 2016-12-03: -2043
WARNING. Abnormal entry count found on day 2016-12-10: -2101
WARNING. Abnormal entry count found on day 2016-12-10: -2101
WARNING. Abnormal entry count found on day 2016-12-17: -1778
WARNING. Abnormal entry count found on day 2016-12-17: -1778
WARNING. Abnormal entry count found on day 2016-12-24: -1326
WARNING. Abnormal entry count found on day 2016-12-24: -1326
Processing turnstile ('N007A', 'R174', '00-00-01', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13127
WARNING. Abnormal entry count found on day 2016-12-03: -13127
WARNING. Abnormal entry count found on day 2016-12-10: -13279
WARNING. Abnormal entry count found on day 2016-12-10: -13279
WARNING. Abnormal entry count found on day 2016-12-17: -12924
WARNING. Abnormal entry count found on day 2016-12-17: -12924
WARNING. Abnormal entry count found on day 2016-12-24: -8905
WARNING. Abnormal entry count found on day 2016-12-24: -8905
Processing turnstile ('R334', 'R367', '00-00-00', '233 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6475
WARNING. Abnormal entry count found on day 2016-12-03: -6475
WARNING. Abnormal entry count found on day 2016-12-10: -6263
WARNING. Abnormal entry count found on day 2016-12-10: -6263
WARNING. Abnormal entry count found on day 2016-12-17: -6638
WARNING. Abnormal entry count found on day 2016-12-17: -6638
WARNING. Abnormal entry count found on day 2016-12-24: -4562
WARNING. Abnormal entry count found on day 2016-12-24: -4562
Processing turnstile ('R407', 'R448', '01-00-01', "E 143/ST MARY'S")
WARNING. Abnormal entry count found on day 2016-12-03: -293
WARNING. Abnormal entry count found on day 2016-12-03: -293
WARNING. Abnormal entry count found on day 2016-12-10: -283
WARNING. Abnormal entry count found on day 2016-12-10: -283
WARNING. Abnormal entry count found on day 2016-12-17: -318
WARNING. Abnormal entry count found on day 2016-12-17: -318
WARNING. Abnormal entry count found on day 2016-12-24: -213
WARNING. Abnormal entry count found on day 2016-12-24: -213
Processing turnstile ('B009', 'R411', '00-05-01', 'PARK PLACE')
Processing turnstile ('R507', 'R134', '00-03-03', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4743
WARNING. Abnormal entry count found on day 2016-12-03: -4743
WARNING. Abnormal entry count found on day 2016-12-10: -4636
WARNING. Abnormal entry count found on day 2016-12-10: -4636
WARNING. Abnormal entry count found on day 2016-12-17: -4465
WARNING. Abnormal entry count found on day 2016-12-17: -4465
WARNING. Abnormal entry count found on day 2016-12-24: -3241
WARNING. Abnormal entry count found on day 2016-12-24: -3241
Processing turnstile ('N187', 'R419', '00-00-01', 'ROCKAWAY PARK B')
WARNING. Abnormal entry count found on day 2016-12-03: -1271
WARNING. Abnormal entry count found on day 2016-12-03: -1271
WARNING. Abnormal entry count found on day 2016-12-10: -1285
WARNING. Abnormal entry count found on day 2016-12-10: -1285
WARNING. Abnormal entry count found on day 2016-12-17: -1142
WARNING. Abnormal entry count found on day 2016-12-17: -1142
WARNING. Abnormal entry count found on day 2016-12-24: -879
WARNING. Abnormal entry count found on day 2016-12-24: -879
Processing turnstile ('N338B', 'R128', '00-00-02', 'SUTPHIN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -1971
WARNING. Abnormal entry count found on day 2016-12-03: -1971
WARNING. Abnormal entry count found on day 2016-12-10: -1998
WARNING. Abnormal entry count found on day 2016-12-10: -1998
WARNING. Abnormal entry count found on day 2016-12-17: -1974
WARNING. Abnormal entry count found on day 2016-12-17: -1974
WARNING. Abnormal entry count found on day 2016-12-24: -1650
WARNING. Abnormal entry count found on day 2016-12-24: -1650
Processing turnstile ('S102', 'R165', '00-00-00', 'TOMPKINSVILLE')
WARNING. Abnormal entry count found on day 2016-12-03: -1005
WARNING. Abnormal entry count found on day 2016-12-03: -1005
WARNING. Abnormal entry count found on day 2016-12-10: -1454
WARNING. Abnormal entry count found on day 2016-12-10: -1454
WARNING. Abnormal entry count found on day 2016-12-17: -1319
WARNING. Abnormal entry count found on day 2016-12-17: -1319
WARNING. Abnormal entry count found on day 2016-12-24: -692
WARNING. Abnormal entry count found on day 2016-12-24: -692
Processing turnstile ('N091', 'R029', '02-06-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3613
WARNING. Abnormal entry count found on day 2016-12-03: -3613
WARNING. Abnormal entry count found on day 2016-12-10: -3690
WARNING. Abnormal entry count found on day 2016-12-10: -3690
WARNING. Abnormal entry count found on day 2016-12-17: -2906
WARNING. Abnormal entry count found on day 2016-12-17: -2906
WARNING. Abnormal entry count found on day 2016-12-24: -1350
WARNING. Abnormal entry count found on day 2016-12-24: -1350
Processing turnstile ('N501A', 'R020', '02-03-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -3518
WARNING. Abnormal entry count found on day 2016-12-03: -3518
WARNING. Abnormal entry count found on day 2016-12-10: -3673
WARNING. Abnormal entry count found on day 2016-12-10: -3673
WARNING. Abnormal entry count found on day 2016-12-17: -4278
WARNING. Abnormal entry count found on day 2016-12-17: -4278
WARNING. Abnormal entry count found on day 2016-12-24: -5047
WARNING. Abnormal entry count found on day 2016-12-24: -5047
Processing turnstile ('C003', 'R089', '00-03-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -916
WARNING. Abnormal entry count found on day 2016-12-03: -916
WARNING. Abnormal entry count found on day 2016-12-10: -894
WARNING. Abnormal entry count found on day 2016-12-10: -894
WARNING. Abnormal entry count found on day 2016-12-17: -693
WARNING. Abnormal entry count found on day 2016-12-17: -693
WARNING. Abnormal entry count found on day 2016-12-24: -513
WARNING. Abnormal entry count found on day 2016-12-24: -513
Processing turnstile ('JFK02', 'R535', '01-00-05', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -399
WARNING. Abnormal entry count found on day 2016-12-03: -399
WARNING. Abnormal entry count found on day 2016-12-10: -382
WARNING. Abnormal entry count found on day 2016-12-10: -382
WARNING. Abnormal entry count found on day 2016-12-17: -515
WARNING. Abnormal entry count found on day 2016-12-17: -515
WARNING. Abnormal entry count found on day 2016-12-24: -678
WARNING. Abnormal entry count found on day 2016-12-24: -678
Processing turnstile ('H009', 'R235', '00-03-00', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7138
WARNING. Abnormal entry count found on day 2016-12-03: -7138
WARNING. Abnormal entry count found on day 2016-12-10: -7790
WARNING. Abnormal entry count found on day 2016-12-10: -7790
WARNING. Abnormal entry count found on day 2016-12-17: -6943
WARNING. Abnormal entry count found on day 2016-12-17: -6943
WARNING. Abnormal entry count found on day 2016-12-24: -4929
WARNING. Abnormal entry count found on day 2016-12-24: -4929
Processing turnstile ('N309A', 'R140', '00-05-02', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R405', 'R447', '01-00-00', 'CYPRESS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2510
WARNING. Abnormal entry count found on day 2016-12-03: -2510
WARNING. Abnormal entry count found on day 2016-12-10: -2380
WARNING. Abnormal entry count found on day 2016-12-10: -2380
WARNING. Abnormal entry count found on day 2016-12-17: -2348
WARNING. Abnormal entry count found on day 2016-12-17: -2348
WARNING. Abnormal entry count found on day 2016-12-24: -1782
WARNING. Abnormal entry count found on day 2016-12-24: -1782
Processing turnstile ('N091', 'R029', '02-05-04', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10921
WARNING. Abnormal entry count found on day 2016-12-03: -10921
WARNING. Abnormal entry count found on day 2016-12-10: -9711
WARNING. Abnormal entry count found on day 2016-12-10: -9711
WARNING. Abnormal entry count found on day 2016-12-17: -6772
WARNING. Abnormal entry count found on day 2016-12-17: -6772
WARNING. Abnormal entry count found on day 2016-12-24: -4493
WARNING. Abnormal entry count found on day 2016-12-24: -4493
Processing turnstile ('B025', 'R150', '00-00-00', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -10910
WARNING. Abnormal entry count found on day 2016-12-03: -10910
WARNING. Abnormal entry count found on day 2016-12-10: -10667
WARNING. Abnormal entry count found on day 2016-12-10: -10667
WARNING. Abnormal entry count found on day 2016-12-17: -11427
WARNING. Abnormal entry count found on day 2016-12-17: -11427
WARNING. Abnormal entry count found on day 2016-12-24: -9368
WARNING. Abnormal entry count found on day 2016-12-24: -9368
Processing turnstile ('B013', 'R196', '01-00-02', 'PROSPECT PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -14986
WARNING. Abnormal entry count found on day 2016-12-03: -14986
WARNING. Abnormal entry count found on day 2016-12-10: -14203
WARNING. Abnormal entry count found on day 2016-12-10: -14203
WARNING. Abnormal entry count found on day 2016-12-17: -12913
WARNING. Abnormal entry count found on day 2016-12-17: -12913
WARNING. Abnormal entry count found on day 2016-12-24: -10079
WARNING. Abnormal entry count found on day 2016-12-24: -10079
Processing turnstile ('N186', 'R418', '00-00-02', 'BEACH 105 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -408
WARNING. Abnormal entry count found on day 2016-12-03: -408
WARNING. Abnormal entry count found on day 2016-12-10: -413
WARNING. Abnormal entry count found on day 2016-12-10: -413
WARNING. Abnormal entry count found on day 2016-12-17: -367
WARNING. Abnormal entry count found on day 2016-12-17: -367
WARNING. Abnormal entry count found on day 2016-12-24: -204
WARNING. Abnormal entry count found on day 2016-12-24: -204
Processing turnstile ('R250', 'R179', '00-00-07', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20171
WARNING. Abnormal entry count found on day 2016-12-03: -20171
WARNING. Abnormal entry count found on day 2016-12-10: -20907
WARNING. Abnormal entry count found on day 2016-12-10: -20907
WARNING. Abnormal entry count found on day 2016-12-17: -18493
WARNING. Abnormal entry count found on day 2016-12-17: -18493
WARNING. Abnormal entry count found on day 2016-12-24: -12951
WARNING. Abnormal entry count found on day 2016-12-24: -12951
Processing turnstile ('A046', 'R463', '00-05-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('N337', 'R255', '00-03-02', 'BRIARWOOD')
WARNING. Abnormal entry count found on day 2016-12-03: -1283
WARNING. Abnormal entry count found on day 2016-12-03: -1283
WARNING. Abnormal entry count found on day 2016-12-10: -1331
WARNING. Abnormal entry count found on day 2016-12-10: -1331
WARNING. Abnormal entry count found on day 2016-12-17: -1224
WARNING. Abnormal entry count found on day 2016-12-17: -1224
WARNING. Abnormal entry count found on day 2016-12-24: -754
WARNING. Abnormal entry count found on day 2016-12-24: -754
Processing turnstile ('N305', 'R017', '01-00-04', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -5216
WARNING. Abnormal entry count found on day 2016-12-03: -5216
WARNING. Abnormal entry count found on day 2016-12-10: -5690
WARNING. Abnormal entry count found on day 2016-12-10: -5690
WARNING. Abnormal entry count found on day 2016-12-17: -4804
WARNING. Abnormal entry count found on day 2016-12-17: -4804
WARNING. Abnormal entry count found on day 2016-12-24: -2662
WARNING. Abnormal entry count found on day 2016-12-24: -2662
Processing turnstile ('R151', 'R033', '00-00-05', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12050
WARNING. Abnormal entry count found on day 2016-12-03: -12050
WARNING. Abnormal entry count found on day 2016-12-10: -14381
WARNING. Abnormal entry count found on day 2016-12-10: -14381
WARNING. Abnormal entry count found on day 2016-12-17: -16445
WARNING. Abnormal entry count found on day 2016-12-17: -16445
WARNING. Abnormal entry count found on day 2016-12-24: -17052
WARNING. Abnormal entry count found on day 2016-12-24: -17052
Processing turnstile ('C012', 'R258', '01-06-02', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4758
WARNING. Abnormal entry count found on day 2016-12-03: -4758
WARNING. Abnormal entry count found on day 2016-12-10: -3913
WARNING. Abnormal entry count found on day 2016-12-10: -3913
WARNING. Abnormal entry count found on day 2016-12-17: -4215
WARNING. Abnormal entry count found on day 2016-12-17: -4215
WARNING. Abnormal entry count found on day 2016-12-24: -3425
WARNING. Abnormal entry count found on day 2016-12-24: -3425
Processing turnstile ('J001', 'R460', '01-00-02', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10747
WARNING. Abnormal entry count found on day 2016-12-03: -10747
WARNING. Abnormal entry count found on day 2016-12-10: -10370
WARNING. Abnormal entry count found on day 2016-12-10: -10370
WARNING. Abnormal entry count found on day 2016-12-17: -9277
WARNING. Abnormal entry count found on day 2016-12-17: -9277
WARNING. Abnormal entry count found on day 2016-12-24: -7818
WARNING. Abnormal entry count found on day 2016-12-24: -7818
Processing turnstile ('R219', 'R160', '00-00-03', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -16009
WARNING. Abnormal entry count found on day 2016-12-03: -16009
WARNING. Abnormal entry count found on day 2016-12-10: -16002
WARNING. Abnormal entry count found on day 2016-12-10: -16002
WARNING. Abnormal entry count found on day 2016-12-17: -14177
WARNING. Abnormal entry count found on day 2016-12-17: -14177
WARNING. Abnormal entry count found on day 2016-12-24: -9698
WARNING. Abnormal entry count found on day 2016-12-24: -9698
Processing turnstile ('R246', 'R177', '00-00-06', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -12069
WARNING. Abnormal entry count found on day 2016-12-03: -12069
WARNING. Abnormal entry count found on day 2016-12-10: -11995
WARNING. Abnormal entry count found on day 2016-12-10: -11995
WARNING. Abnormal entry count found on day 2016-12-17: -10197
WARNING. Abnormal entry count found on day 2016-12-17: -10197
WARNING. Abnormal entry count found on day 2016-12-24: -5472
WARNING. Abnormal entry count found on day 2016-12-24: -5472
Processing turnstile ('B027', 'R136', '00-00-04', 'SHEEPSHEAD BAY')
WARNING. Abnormal entry count found on day 2016-12-03: -10664
WARNING. Abnormal entry count found on day 2016-12-03: -10664
WARNING. Abnormal entry count found on day 2016-12-10: -10388
WARNING. Abnormal entry count found on day 2016-12-10: -10388
WARNING. Abnormal entry count found on day 2016-12-17: -10113
WARNING. Abnormal entry count found on day 2016-12-17: -10113
WARNING. Abnormal entry count found on day 2016-12-24: -8404
WARNING. Abnormal entry count found on day 2016-12-24: -8404
Processing turnstile ('R182', 'R035', '00-00-00', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1271
WARNING. Abnormal entry count found on day 2016-12-03: -1271
WARNING. Abnormal entry count found on day 2016-12-10: -1164
WARNING. Abnormal entry count found on day 2016-12-10: -1164
WARNING. Abnormal entry count found on day 2016-12-17: -1071
WARNING. Abnormal entry count found on day 2016-12-17: -1071
WARNING. Abnormal entry count found on day 2016-12-24: -521
WARNING. Abnormal entry count found on day 2016-12-24: -521
Processing turnstile ('R110', 'R027', '01-00-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9583
WARNING. Abnormal entry count found on day 2016-12-03: -9583
WARNING. Abnormal entry count found on day 2016-12-10: -9323
WARNING. Abnormal entry count found on day 2016-12-10: -9323
WARNING. Abnormal entry count found on day 2016-12-17: -8447
WARNING. Abnormal entry count found on day 2016-12-17: -8447
WARNING. Abnormal entry count found on day 2016-12-24: -5552
WARNING. Abnormal entry count found on day 2016-12-24: -5552
Processing turnstile ('PTH05', 'R543', '00-04-06', 'EXCHANGE PLACE')
Processing turnstile ('N520', 'R240', '00-00-07', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16728
WARNING. Abnormal entry count found on day 2016-12-03: -16728
WARNING. Abnormal entry count found on day 2016-12-17: -9292
WARNING. Abnormal entry count found on day 2016-12-17: -9292
WARNING. Abnormal entry count found on day 2016-12-24: -16929
WARNING. Abnormal entry count found on day 2016-12-24: -16929
Processing turnstile ('R185', 'R274', '00-00-02', '191 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14860
WARNING. Abnormal entry count found on day 2016-12-03: -14860
WARNING. Abnormal entry count found on day 2016-12-10: -14435
WARNING. Abnormal entry count found on day 2016-12-10: -14435
WARNING. Abnormal entry count found on day 2016-12-17: -14229
WARNING. Abnormal entry count found on day 2016-12-17: -14229
WARNING. Abnormal entry count found on day 2016-12-24: -10661
WARNING. Abnormal entry count found on day 2016-12-24: -10661
Processing turnstile ('PTH07', 'R550', '00-01-05', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -678
WARNING. Abnormal entry count found on day 2016-12-03: -678
WARNING. Abnormal entry count found on day 2016-12-10: -664
WARNING. Abnormal entry count found on day 2016-12-10: -664
WARNING. Abnormal entry count found on day 2016-12-17: -650
WARNING. Abnormal entry count found on day 2016-12-17: -650
WARNING. Abnormal entry count found on day 2016-12-24: -244
WARNING. Abnormal entry count found on day 2016-12-24: -244
Processing turnstile ('N120', 'R153', '00-00-02', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14961
WARNING. Abnormal entry count found on day 2016-12-03: -14961
WARNING. Abnormal entry count found on day 2016-12-10: -14437
WARNING. Abnormal entry count found on day 2016-12-10: -14437
WARNING. Abnormal entry count found on day 2016-12-17: -13731
WARNING. Abnormal entry count found on day 2016-12-17: -13731
WARNING. Abnormal entry count found on day 2016-12-24: -5316
WARNING. Abnormal entry count found on day 2016-12-24: -5316
Processing turnstile ('R258', 'R132', '00-00-03', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -2803
WARNING. Abnormal entry count found on day 2016-12-05: -2380
WARNING. Abnormal entry count found on day 2016-12-06: -4695
WARNING. Abnormal entry count found on day 2016-12-07: -4944
WARNING. Abnormal entry count found on day 2016-12-08: -4976
WARNING. Abnormal entry count found on day 2016-12-09: -5040
WARNING. Abnormal entry count found on day 2016-12-03: 24838
WARNING. Abnormal entry count found on day 2016-12-04: -2803
WARNING. Abnormal entry count found on day 2016-12-05: -2380
WARNING. Abnormal entry count found on day 2016-12-06: -4695
WARNING. Abnormal entry count found on day 2016-12-07: -4944
WARNING. Abnormal entry count found on day 2016-12-08: -4976
WARNING. Abnormal entry count found on day 2016-12-09: -5040
WARNING. Abnormal entry count found on day 2016-12-03: 24838
WARNING. Abnormal entry count found on day 2016-12-04: -2803
WARNING. Abnormal entry count found on day 2016-12-05: -2380
WARNING. Abnormal entry count found on day 2016-12-06: -4695
WARNING. Abnormal entry count found on day 2016-12-07: -4944
WARNING. Abnormal entry count found on day 2016-12-08: -4976
WARNING. Abnormal entry count found on day 2016-12-09: -5040
WARNING. Abnormal entry count found on day 2016-12-10: -4806
WARNING. Abnormal entry count found on day 2016-12-11: -2765
WARNING. Abnormal entry count found on day 2016-12-12: -2239
WARNING. Abnormal entry count found on day 2016-12-13: -2923
WARNING. Abnormal entry count found on day 2016-12-14: -4779
WARNING. Abnormal entry count found on day 2016-12-15: -4802
WARNING. Abnormal entry count found on day 2016-12-16: -3957
WARNING. Abnormal entry count found on day 2016-12-10: 21465
WARNING. Abnormal entry count found on day 2016-12-11: -2765
WARNING. Abnormal entry count found on day 2016-12-12: -2239
WARNING. Abnormal entry count found on day 2016-12-13: -2923
WARNING. Abnormal entry count found on day 2016-12-14: -4779
WARNING. Abnormal entry count found on day 2016-12-15: -4802
WARNING. Abnormal entry count found on day 2016-12-16: -3957
WARNING. Abnormal entry count found on day 2016-12-10: 21465
WARNING. Abnormal entry count found on day 2016-12-11: -2765
WARNING. Abnormal entry count found on day 2016-12-12: -2239
WARNING. Abnormal entry count found on day 2016-12-13: -2923
WARNING. Abnormal entry count found on day 2016-12-14: -4779
WARNING. Abnormal entry count found on day 2016-12-15: -4802
WARNING. Abnormal entry count found on day 2016-12-16: -3957
WARNING. Abnormal entry count found on day 2016-12-17: -4105
WARNING. Abnormal entry count found on day 2016-12-18: -2378
WARNING. Abnormal entry count found on day 2016-12-19: -2204
WARNING. Abnormal entry count found on day 2016-12-20: -3857
WARNING. Abnormal entry count found on day 2016-12-21: -4586
WARNING. Abnormal entry count found on day 2016-12-22: -4546
WARNING. Abnormal entry count found on day 2016-12-23: -4236
WARNING. Abnormal entry count found on day 2016-12-17: 21807
WARNING. Abnormal entry count found on day 2016-12-18: -2378
WARNING. Abnormal entry count found on day 2016-12-19: -2204
WARNING. Abnormal entry count found on day 2016-12-20: -3857
WARNING. Abnormal entry count found on day 2016-12-21: -4586
WARNING. Abnormal entry count found on day 2016-12-22: -4546
WARNING. Abnormal entry count found on day 2016-12-23: -4236
WARNING. Abnormal entry count found on day 2016-12-17: 21807
WARNING. Abnormal entry count found on day 2016-12-18: -2378
WARNING. Abnormal entry count found on day 2016-12-19: -2204
WARNING. Abnormal entry count found on day 2016-12-20: -3857
WARNING. Abnormal entry count found on day 2016-12-21: -4586
WARNING. Abnormal entry count found on day 2016-12-22: -4546
WARNING. Abnormal entry count found on day 2016-12-23: -4236
WARNING. Abnormal entry count found on day 2016-12-24: -3985
WARNING. Abnormal entry count found on day 2016-12-25: -2092
WARNING. Abnormal entry count found on day 2016-12-26: -1567
WARNING. Abnormal entry count found on day 2016-12-27: -2229
WARNING. Abnormal entry count found on day 2016-12-28: -3649
WARNING. Abnormal entry count found on day 2016-12-29: -3742
WARNING. Abnormal entry count found on day 2016-12-30: -3620
WARNING. Abnormal entry count found on day 2016-12-24: 16899
WARNING. Abnormal entry count found on day 2016-12-25: -2092
WARNING. Abnormal entry count found on day 2016-12-26: -1567
WARNING. Abnormal entry count found on day 2016-12-27: -2229
WARNING. Abnormal entry count found on day 2016-12-28: -3649
WARNING. Abnormal entry count found on day 2016-12-29: -3742
WARNING. Abnormal entry count found on day 2016-12-30: -3620
WARNING. Abnormal entry count found on day 2016-12-24: 16899
WARNING. Abnormal entry count found on day 2016-12-25: -2092
WARNING. Abnormal entry count found on day 2016-12-26: -1567
WARNING. Abnormal entry count found on day 2016-12-27: -2229
WARNING. Abnormal entry count found on day 2016-12-28: -3649
WARNING. Abnormal entry count found on day 2016-12-29: -3742
WARNING. Abnormal entry count found on day 2016-12-30: -3620
Processing turnstile ('R328', 'R361', '00-05-01', 'PELHAM PKWY')
Processing turnstile ('N316A', 'R267', '01-06-01', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4056
WARNING. Abnormal entry count found on day 2016-12-03: -4056
WARNING. Abnormal entry count found on day 2016-12-10: -3794
WARNING. Abnormal entry count found on day 2016-12-10: -3794
WARNING. Abnormal entry count found on day 2016-12-17: -3843
WARNING. Abnormal entry count found on day 2016-12-17: -3843
WARNING. Abnormal entry count found on day 2016-12-24: -2925
WARNING. Abnormal entry count found on day 2016-12-24: -2925
Processing turnstile ('R204', 'R043', '02-00-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3193
WARNING. Abnormal entry count found on day 2016-12-03: -3193
WARNING. Abnormal entry count found on day 2016-12-10: -3059
WARNING. Abnormal entry count found on day 2016-12-10: -3059
WARNING. Abnormal entry count found on day 2016-12-17: -2736
WARNING. Abnormal entry count found on day 2016-12-17: -2736
WARNING. Abnormal entry count found on day 2016-12-24: -1935
WARNING. Abnormal entry count found on day 2016-12-24: -1935
Processing turnstile ('A010', 'R080', '00-00-06', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13713
WARNING. Abnormal entry count found on day 2016-12-03: -13713
WARNING. Abnormal entry count found on day 2016-12-10: -11810
WARNING. Abnormal entry count found on day 2016-12-10: -11810
WARNING. Abnormal entry count found on day 2016-12-17: -11634
WARNING. Abnormal entry count found on day 2016-12-17: -11634
WARNING. Abnormal entry count found on day 2016-12-24: -9210
WARNING. Abnormal entry count found on day 2016-12-24: -9210
Processing turnstile ('N529', 'R257', '00-00-02', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -9279
WARNING. Abnormal entry count found on day 2016-12-03: -9279
WARNING. Abnormal entry count found on day 2016-12-10: -8523
WARNING. Abnormal entry count found on day 2016-12-10: -8523
WARNING. Abnormal entry count found on day 2016-12-17: -9295
WARNING. Abnormal entry count found on day 2016-12-17: -9295
WARNING. Abnormal entry count found on day 2016-12-24: -7030
WARNING. Abnormal entry count found on day 2016-12-24: -7030
Processing turnstile ('JFK03', 'R536', '00-00-01', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-03: -1940
WARNING. Abnormal entry count found on day 2016-12-03: -1940
WARNING. Abnormal entry count found on day 2016-12-10: -1663
WARNING. Abnormal entry count found on day 2016-12-10: -1663
WARNING. Abnormal entry count found on day 2016-12-17: -2917
WARNING. Abnormal entry count found on day 2016-12-17: -2917
WARNING. Abnormal entry count found on day 2016-12-24: -2388
WARNING. Abnormal entry count found on day 2016-12-24: -2388
Processing turnstile ('G001', 'R151', '00-05-00', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -12
WARNING. Abnormal entry count found on day 2016-12-03: -12
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
Processing turnstile ('C012', 'R258', '01-00-00', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8025
WARNING. Abnormal entry count found on day 2016-12-03: -8025
WARNING. Abnormal entry count found on day 2016-12-10: -7454
WARNING. Abnormal entry count found on day 2016-12-10: -7454
WARNING. Abnormal entry count found on day 2016-12-17: -7477
WARNING. Abnormal entry count found on day 2016-12-17: -7477
WARNING. Abnormal entry count found on day 2016-12-24: -5040
WARNING. Abnormal entry count found on day 2016-12-24: -5040
Processing turnstile ('N549', 'R242', '00-00-00', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11510
WARNING. Abnormal entry count found on day 2016-12-03: -11510
WARNING. Abnormal entry count found on day 2016-12-10: -10082
WARNING. Abnormal entry count found on day 2016-12-10: -10082
WARNING. Abnormal entry count found on day 2016-12-17: -10896
WARNING. Abnormal entry count found on day 2016-12-17: -10896
WARNING. Abnormal entry count found on day 2016-12-24: -9447
WARNING. Abnormal entry count found on day 2016-12-24: -9447
Processing turnstile ('R311', 'R053', '00-00-02', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8126
WARNING. Abnormal entry count found on day 2016-12-03: -8126
WARNING. Abnormal entry count found on day 2016-12-10: -7989
WARNING. Abnormal entry count found on day 2016-12-10: -7989
WARNING. Abnormal entry count found on day 2016-12-17: -7321
WARNING. Abnormal entry count found on day 2016-12-17: -7321
WARNING. Abnormal entry count found on day 2016-12-24: -5668
WARNING. Abnormal entry count found on day 2016-12-24: -5668
Processing turnstile ('R196', 'R306', '00-00-02', '238 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9922
WARNING. Abnormal entry count found on day 2016-12-03: -9922
WARNING. Abnormal entry count found on day 2016-12-10: -9531
WARNING. Abnormal entry count found on day 2016-12-10: -9531
WARNING. Abnormal entry count found on day 2016-12-17: -8495
WARNING. Abnormal entry count found on day 2016-12-17: -8495
WARNING. Abnormal entry count found on day 2016-12-24: -6860
WARNING. Abnormal entry count found on day 2016-12-24: -6860
Processing turnstile ('N340', 'R115', '00-06-01', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -917
WARNING. Abnormal entry count found on day 2016-12-03: -917
WARNING. Abnormal entry count found on day 2016-12-10: -813
WARNING. Abnormal entry count found on day 2016-12-10: -813
WARNING. Abnormal entry count found on day 2016-12-17: -851
WARNING. Abnormal entry count found on day 2016-12-17: -851
WARNING. Abnormal entry count found on day 2016-12-24: -566
WARNING. Abnormal entry count found on day 2016-12-24: -566
Processing turnstile ('R116', 'R030', '00-00-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10129
WARNING. Abnormal entry count found on day 2016-12-03: -10129
WARNING. Abnormal entry count found on day 2016-12-10: -9617
WARNING. Abnormal entry count found on day 2016-12-10: -9617
WARNING. Abnormal entry count found on day 2016-12-17: -7784
WARNING. Abnormal entry count found on day 2016-12-17: -7784
WARNING. Abnormal entry count found on day 2016-12-24: -4543
WARNING. Abnormal entry count found on day 2016-12-24: -4543
Processing turnstile ('G001', 'R151', '00-00-00', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -6336
WARNING. Abnormal entry count found on day 2016-12-03: -6336
WARNING. Abnormal entry count found on day 2016-12-10: -5811
WARNING. Abnormal entry count found on day 2016-12-10: -5811
WARNING. Abnormal entry count found on day 2016-12-17: -5982
WARNING. Abnormal entry count found on day 2016-12-17: -5982
WARNING. Abnormal entry count found on day 2016-12-24: -5507
WARNING. Abnormal entry count found on day 2016-12-24: -5507
Processing turnstile ('R314', 'R406', '00-00-00', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14919
WARNING. Abnormal entry count found on day 2016-12-03: -14919
WARNING. Abnormal entry count found on day 2016-12-10: -17435
WARNING. Abnormal entry count found on day 2016-12-10: -17435
WARNING. Abnormal entry count found on day 2016-12-17: -16696
WARNING. Abnormal entry count found on day 2016-12-17: -16696
WARNING. Abnormal entry count found on day 2016-12-24: -13956
WARNING. Abnormal entry count found on day 2016-12-24: -13956
Processing turnstile ('N202', 'R315', '00-00-01', '155 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6284
WARNING. Abnormal entry count found on day 2016-12-03: -6284
WARNING. Abnormal entry count found on day 2016-12-10: -5919
WARNING. Abnormal entry count found on day 2016-12-10: -5919
WARNING. Abnormal entry count found on day 2016-12-17: -5912
WARNING. Abnormal entry count found on day 2016-12-17: -5912
WARNING. Abnormal entry count found on day 2016-12-24: -4654
WARNING. Abnormal entry count found on day 2016-12-24: -4654
Processing turnstile ('N309A', 'R140', '00-02-00', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -3454
WARNING. Abnormal entry count found on day 2016-12-03: -3454
WARNING. Abnormal entry count found on day 2016-12-10: -2643
WARNING. Abnormal entry count found on day 2016-12-10: -2643
WARNING. Abnormal entry count found on day 2016-12-17: -2110
WARNING. Abnormal entry count found on day 2016-12-17: -2110
WARNING. Abnormal entry count found on day 2016-12-24: -1123
WARNING. Abnormal entry count found on day 2016-12-24: -1123
Processing turnstile ('J037', 'R009', '00-00-01', '121 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1641
WARNING. Abnormal entry count found on day 2016-12-03: -1641
WARNING. Abnormal entry count found on day 2016-12-10: -1629
WARNING. Abnormal entry count found on day 2016-12-10: -1629
WARNING. Abnormal entry count found on day 2016-12-17: -1726
WARNING. Abnormal entry count found on day 2016-12-17: -1726
WARNING. Abnormal entry count found on day 2016-12-24: -1391
WARNING. Abnormal entry count found on day 2016-12-24: -1391
Processing turnstile ('A007', 'R079', '01-06-03', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10877
WARNING. Abnormal entry count found on day 2016-12-03: -10877
WARNING. Abnormal entry count found on day 2016-12-10: -11681
WARNING. Abnormal entry count found on day 2016-12-10: -11681
WARNING. Abnormal entry count found on day 2016-12-17: -13567
WARNING. Abnormal entry count found on day 2016-12-17: -13567
WARNING. Abnormal entry count found on day 2016-12-24: -13328
WARNING. Abnormal entry count found on day 2016-12-24: -13328
Processing turnstile ('R609', 'R056', '01-03-01', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8295
WARNING. Abnormal entry count found on day 2016-12-03: -8295
WARNING. Abnormal entry count found on day 2016-12-10: -8023
WARNING. Abnormal entry count found on day 2016-12-10: -8023
WARNING. Abnormal entry count found on day 2016-12-17: -6874
WARNING. Abnormal entry count found on day 2016-12-17: -6874
WARNING. Abnormal entry count found on day 2016-12-24: -4847
WARNING. Abnormal entry count found on day 2016-12-24: -4847
Processing turnstile ('N124', 'R103', '00-03-00', 'BROADWAY JCT')
WARNING. Abnormal entry count found on day 2016-12-03: -7643
WARNING. Abnormal entry count found on day 2016-12-03: -7643
WARNING. Abnormal entry count found on day 2016-12-10: -7671
WARNING. Abnormal entry count found on day 2016-12-10: -7671
WARNING. Abnormal entry count found on day 2016-12-17: -7335
WARNING. Abnormal entry count found on day 2016-12-17: -7335
WARNING. Abnormal entry count found on day 2016-12-24: -5625
WARNING. Abnormal entry count found on day 2016-12-24: -5625
Processing turnstile ('N133', 'R384', '00-00-02', '88 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5214
WARNING. Abnormal entry count found on day 2016-12-03: -5214
WARNING. Abnormal entry count found on day 2016-12-10: -4883
WARNING. Abnormal entry count found on day 2016-12-10: -4883
WARNING. Abnormal entry count found on day 2016-12-17: -4685
WARNING. Abnormal entry count found on day 2016-12-17: -4685
WARNING. Abnormal entry count found on day 2016-12-24: -3424
WARNING. Abnormal entry count found on day 2016-12-24: -3424
Processing turnstile ('N095', 'R014', '00-03-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15803
WARNING. Abnormal entry count found on day 2016-12-03: -15803
WARNING. Abnormal entry count found on day 2016-12-10: -10783
WARNING. Abnormal entry count found on day 2016-12-10: -10783
WARNING. Abnormal entry count found on day 2016-12-17: -11998
WARNING. Abnormal entry count found on day 2016-12-17: -11998
WARNING. Abnormal entry count found on day 2016-12-24: -10066
WARNING. Abnormal entry count found on day 2016-12-24: -10066
Processing turnstile ('N080', 'R138', '00-06-00', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -10519
WARNING. Abnormal entry count found on day 2016-12-03: -10519
WARNING. Abnormal entry count found on day 2016-12-10: -12131
WARNING. Abnormal entry count found on day 2016-12-10: -12131
WARNING. Abnormal entry count found on day 2016-12-17: -11938
WARNING. Abnormal entry count found on day 2016-12-17: -11938
WARNING. Abnormal entry count found on day 2016-12-24: -6666
WARNING. Abnormal entry count found on day 2016-12-24: -6666
Processing turnstile ('N546', 'R204', '00-05-01', 'CHURCH AV')
Processing turnstile ('N029', 'R333', '01-00-00', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3873
WARNING. Abnormal entry count found on day 2016-12-03: -3873
WARNING. Abnormal entry count found on day 2016-12-10: -3572
WARNING. Abnormal entry count found on day 2016-12-10: -3572
WARNING. Abnormal entry count found on day 2016-12-17: -3137
WARNING. Abnormal entry count found on day 2016-12-17: -3137
WARNING. Abnormal entry count found on day 2016-12-24: -1982
WARNING. Abnormal entry count found on day 2016-12-24: -1982
Processing turnstile ('PTH02', 'R544', '00-04-02', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -55
WARNING. Abnormal entry count found on day 2016-12-03: -55
WARNING. Abnormal entry count found on day 2016-12-10: -67
WARNING. Abnormal entry count found on day 2016-12-10: -67
WARNING. Abnormal entry count found on day 2016-12-17: -77
WARNING. Abnormal entry count found on day 2016-12-17: -77
WARNING. Abnormal entry count found on day 2016-12-24: -201
WARNING. Abnormal entry count found on day 2016-12-24: -201
Processing turnstile ('R527', 'R122', '00-05-00', '90 ST-ELMHURST')
WARNING. Abnormal entry count found on day 2016-12-03: -16998
WARNING. Abnormal entry count found on day 2016-12-03: -16998
WARNING. Abnormal entry count found on day 2016-12-10: -15435
WARNING. Abnormal entry count found on day 2016-12-10: -15435
WARNING. Abnormal entry count found on day 2016-12-17: -14664
WARNING. Abnormal entry count found on day 2016-12-17: -14664
WARNING. Abnormal entry count found on day 2016-12-24: -13497
WARNING. Abnormal entry count found on day 2016-12-24: -13497
Processing turnstile ('N329', 'R201', '00-03-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -16991
WARNING. Abnormal entry count found on day 2016-12-03: -16991
WARNING. Abnormal entry count found on day 2016-12-10: -25377
WARNING. Abnormal entry count found on day 2016-12-10: -25377
WARNING. Abnormal entry count found on day 2016-12-17: -19774
WARNING. Abnormal entry count found on day 2016-12-17: -19774
WARNING. Abnormal entry count found on day 2016-12-24: -9505
WARNING. Abnormal entry count found on day 2016-12-24: -9505
Processing turnstile ('R612', 'R057', '01-05-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-10: -9
WARNING. Abnormal entry count found on day 2016-12-10: -9
WARNING. Abnormal entry count found on day 2016-12-17: -5
WARNING. Abnormal entry count found on day 2016-12-17: -5
Processing turnstile ('R147', 'R033', '04-00-05', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15790
WARNING. Abnormal entry count found on day 2016-12-03: -15790
WARNING. Abnormal entry count found on day 2016-12-10: -14767
WARNING. Abnormal entry count found on day 2016-12-10: -14767
WARNING. Abnormal entry count found on day 2016-12-17: -15829
WARNING. Abnormal entry count found on day 2016-12-17: -15829
WARNING. Abnormal entry count found on day 2016-12-24: -17731
WARNING. Abnormal entry count found on day 2016-12-24: -17731
Processing turnstile ('R114', 'R028', '02-00-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6237
WARNING. Abnormal entry count found on day 2016-12-03: -6237
WARNING. Abnormal entry count found on day 2016-12-10: -5765
WARNING. Abnormal entry count found on day 2016-12-10: -5765
WARNING. Abnormal entry count found on day 2016-12-17: -4282
WARNING. Abnormal entry count found on day 2016-12-17: -4282
WARNING. Abnormal entry count found on day 2016-12-24: -3133
WARNING. Abnormal entry count found on day 2016-12-24: -3133
Processing turnstile ('N095', 'R014', '00-03-05', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15922
WARNING. Abnormal entry count found on day 2016-12-03: -15922
WARNING. Abnormal entry count found on day 2016-12-10: -15575
WARNING. Abnormal entry count found on day 2016-12-10: -15575
WARNING. Abnormal entry count found on day 2016-12-17: -14226
WARNING. Abnormal entry count found on day 2016-12-17: -14226
WARNING. Abnormal entry count found on day 2016-12-24: -10564
WARNING. Abnormal entry count found on day 2016-12-24: -10564
Processing turnstile ('R244A', 'R050', '01-00-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13905
WARNING. Abnormal entry count found on day 2016-12-03: -13905
WARNING. Abnormal entry count found on day 2016-12-10: -13152
WARNING. Abnormal entry count found on day 2016-12-10: -13152
WARNING. Abnormal entry count found on day 2016-12-17: -13114
WARNING. Abnormal entry count found on day 2016-12-17: -13114
WARNING. Abnormal entry count found on day 2016-12-24: -8742
WARNING. Abnormal entry count found on day 2016-12-24: -8742
Processing turnstile ('R334', 'R367', '00-00-01', '233 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11410
WARNING. Abnormal entry count found on day 2016-12-03: -11410
WARNING. Abnormal entry count found on day 2016-12-10: -10876
WARNING. Abnormal entry count found on day 2016-12-10: -10876
WARNING. Abnormal entry count found on day 2016-12-17: -10607
WARNING. Abnormal entry count found on day 2016-12-17: -10607
WARNING. Abnormal entry count found on day 2016-12-24: -8412
WARNING. Abnormal entry count found on day 2016-12-24: -8412
Processing turnstile ('R533', 'R055', '00-03-00', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -28471
WARNING. Abnormal entry count found on day 2016-12-03: -28471
WARNING. Abnormal entry count found on day 2016-12-10: -27338
WARNING. Abnormal entry count found on day 2016-12-10: -27338
WARNING. Abnormal entry count found on day 2016-12-17: -19653
WARNING. Abnormal entry count found on day 2016-12-17: -19653
WARNING. Abnormal entry count found on day 2016-12-24: -19959
WARNING. Abnormal entry count found on day 2016-12-24: -19959
Processing turnstile ('R116', 'R030', '00-02-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15913
WARNING. Abnormal entry count found on day 2016-12-03: -15913
WARNING. Abnormal entry count found on day 2016-12-10: -15277
WARNING. Abnormal entry count found on day 2016-12-10: -15277
WARNING. Abnormal entry count found on day 2016-12-17: -13362
WARNING. Abnormal entry count found on day 2016-12-17: -13362
WARNING. Abnormal entry count found on day 2016-12-24: -8333
WARNING. Abnormal entry count found on day 2016-12-24: -8333
Processing turnstile ('N102', 'R127', '01-06-02', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -13189
WARNING. Abnormal entry count found on day 2016-12-03: -13189
WARNING. Abnormal entry count found on day 2016-12-10: -12075
WARNING. Abnormal entry count found on day 2016-12-10: -12075
WARNING. Abnormal entry count found on day 2016-12-17: -9358
WARNING. Abnormal entry count found on day 2016-12-17: -9358
WARNING. Abnormal entry count found on day 2016-12-24: -4772
WARNING. Abnormal entry count found on day 2016-12-24: -4772
Processing turnstile ('R325', 'R388', '00-00-00', 'E 180 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9445
WARNING. Abnormal entry count found on day 2016-12-03: -9445
WARNING. Abnormal entry count found on day 2016-12-10: -10306
WARNING. Abnormal entry count found on day 2016-12-10: -10306
WARNING. Abnormal entry count found on day 2016-12-17: -10048
WARNING. Abnormal entry count found on day 2016-12-17: -10048
WARNING. Abnormal entry count found on day 2016-12-24: -7779
WARNING. Abnormal entry count found on day 2016-12-24: -7779
Processing turnstile ('PTH03', 'R552', '00-01-06', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -2293
WARNING. Abnormal entry count found on day 2016-12-03: -2293
WARNING. Abnormal entry count found on day 2016-12-10: -2314
WARNING. Abnormal entry count found on day 2016-12-10: -2314
WARNING. Abnormal entry count found on day 2016-12-17: -1628
WARNING. Abnormal entry count found on day 2016-12-17: -1628
WARNING. Abnormal entry count found on day 2016-12-24: -1531
WARNING. Abnormal entry count found on day 2016-12-24: -1531
Processing turnstile ('A050', 'R088', '00-03-02', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1896
WARNING. Abnormal entry count found on day 2016-12-03: -1896
WARNING. Abnormal entry count found on day 2016-12-10: -1676
WARNING. Abnormal entry count found on day 2016-12-10: -1676
WARNING. Abnormal entry count found on day 2016-12-17: -1934
WARNING. Abnormal entry count found on day 2016-12-17: -1934
WARNING. Abnormal entry count found on day 2016-12-24: -3074
WARNING. Abnormal entry count found on day 2016-12-24: -3074
Processing turnstile ('N098', 'R028', '00-07-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3013
WARNING. Abnormal entry count found on day 2016-12-03: -3013
WARNING. Abnormal entry count found on day 2016-12-10: -3176
WARNING. Abnormal entry count found on day 2016-12-10: -3176
WARNING. Abnormal entry count found on day 2016-12-17: -2900
WARNING. Abnormal entry count found on day 2016-12-17: -2900
WARNING. Abnormal entry count found on day 2016-12-24: -2033
WARNING. Abnormal entry count found on day 2016-12-24: -2033
Processing turnstile ('R126', 'R189', '01-00-01', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4224
WARNING. Abnormal entry count found on day 2016-12-03: -4224
WARNING. Abnormal entry count found on day 2016-12-10: -4139
WARNING. Abnormal entry count found on day 2016-12-10: -4139
WARNING. Abnormal entry count found on day 2016-12-17: -3910
WARNING. Abnormal entry count found on day 2016-12-17: -3910
WARNING. Abnormal entry count found on day 2016-12-24: -3288
WARNING. Abnormal entry count found on day 2016-12-24: -3288
Processing turnstile ('N203', 'R195', '00-05-00', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -28
WARNING. Abnormal entry count found on day 2016-12-03: -28
WARNING. Abnormal entry count found on day 2016-12-10: -17
WARNING. Abnormal entry count found on day 2016-12-10: -17
WARNING. Abnormal entry count found on day 2016-12-17: -13
WARNING. Abnormal entry count found on day 2016-12-17: -13
WARNING. Abnormal entry count found on day 2016-12-24: -17
WARNING. Abnormal entry count found on day 2016-12-24: -17
Processing turnstile ('B021', 'R228', '00-00-03', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -4921
WARNING. Abnormal entry count found on day 2016-12-03: -4921
WARNING. Abnormal entry count found on day 2016-12-10: -4717
WARNING. Abnormal entry count found on day 2016-12-10: -4717
WARNING. Abnormal entry count found on day 2016-12-17: -4298
WARNING. Abnormal entry count found on day 2016-12-17: -4298
WARNING. Abnormal entry count found on day 2016-12-24: -3893
WARNING. Abnormal entry count found on day 2016-12-24: -3893
Processing turnstile ('PTH03', 'R552', '00-00-09', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -14527
WARNING. Abnormal entry count found on day 2016-12-03: -14527
WARNING. Abnormal entry count found on day 2016-12-10: -14250
WARNING. Abnormal entry count found on day 2016-12-10: -14250
WARNING. Abnormal entry count found on day 2016-12-17: -12987
WARNING. Abnormal entry count found on day 2016-12-17: -12987
WARNING. Abnormal entry count found on day 2016-12-24: -11941
WARNING. Abnormal entry count found on day 2016-12-24: -11941
Processing turnstile ('N122', 'R439', '00-00-01', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5891
WARNING. Abnormal entry count found on day 2016-12-03: -5891
WARNING. Abnormal entry count found on day 2016-12-10: -5714
WARNING. Abnormal entry count found on day 2016-12-10: -5714
WARNING. Abnormal entry count found on day 2016-12-17: -5266
WARNING. Abnormal entry count found on day 2016-12-17: -5266
WARNING. Abnormal entry count found on day 2016-12-24: -4030
WARNING. Abnormal entry count found on day 2016-12-24: -4030
Processing turnstile ('PTH03', 'R552', '00-00-08', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -14927
WARNING. Abnormal entry count found on day 2016-12-03: -14927
WARNING. Abnormal entry count found on day 2016-12-10: -13646
WARNING. Abnormal entry count found on day 2016-12-10: -13646
WARNING. Abnormal entry count found on day 2016-12-17: -10901
WARNING. Abnormal entry count found on day 2016-12-17: -10901
WARNING. Abnormal entry count found on day 2016-12-24: -11531
WARNING. Abnormal entry count found on day 2016-12-24: -11531
Processing turnstile ('N500', 'R020', '00-06-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -7860
WARNING. Abnormal entry count found on day 2016-12-03: -7860
WARNING. Abnormal entry count found on day 2016-12-10: -7361
WARNING. Abnormal entry count found on day 2016-12-10: -7361
WARNING. Abnormal entry count found on day 2016-12-17: -7977
WARNING. Abnormal entry count found on day 2016-12-17: -7977
WARNING. Abnormal entry count found on day 2016-12-24: -6191
WARNING. Abnormal entry count found on day 2016-12-24: -6191
Processing turnstile ('N075', 'R111', '01-06-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13439
WARNING. Abnormal entry count found on day 2016-12-03: -13439
WARNING. Abnormal entry count found on day 2016-12-10: -9781
WARNING. Abnormal entry count found on day 2016-12-10: -9781
WARNING. Abnormal entry count found on day 2016-12-17: -11497
WARNING. Abnormal entry count found on day 2016-12-17: -11497
WARNING. Abnormal entry count found on day 2016-12-24: -5945
WARNING. Abnormal entry count found on day 2016-12-24: -5945
Processing turnstile ('C026', 'R215', '01-06-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6351
WARNING. Abnormal entry count found on day 2016-12-03: -6351
WARNING. Abnormal entry count found on day 2016-12-10: -5924
WARNING. Abnormal entry count found on day 2016-12-10: -5924
WARNING. Abnormal entry count found on day 2016-12-17: -6006
WARNING. Abnormal entry count found on day 2016-12-17: -6006
WARNING. Abnormal entry count found on day 2016-12-24: -3829
WARNING. Abnormal entry count found on day 2016-12-24: -3829
Processing turnstile ('H041', 'R152', '00-06-00', 'CANARSIE-ROCKAW')
WARNING. Abnormal entry count found on day 2016-12-03: -6344
WARNING. Abnormal entry count found on day 2016-12-03: -6344
WARNING. Abnormal entry count found on day 2016-12-10: -6129
WARNING. Abnormal entry count found on day 2016-12-10: -6129
WARNING. Abnormal entry count found on day 2016-12-17: -5621
WARNING. Abnormal entry count found on day 2016-12-17: -5621
WARNING. Abnormal entry count found on day 2016-12-24: -3877
WARNING. Abnormal entry count found on day 2016-12-24: -3877
Processing turnstile ('R248', 'R178', '00-00-06', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -25893
WARNING. Abnormal entry count found on day 2016-12-03: -25893
WARNING. Abnormal entry count found on day 2016-12-10: -25886
WARNING. Abnormal entry count found on day 2016-12-10: -25886
WARNING. Abnormal entry count found on day 2016-12-17: -23234
WARNING. Abnormal entry count found on day 2016-12-17: -23234
WARNING. Abnormal entry count found on day 2016-12-24: -16147
WARNING. Abnormal entry count found on day 2016-12-24: -16147
Processing turnstile ('R232', 'R176', '02-00-06', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13744
WARNING. Abnormal entry count found on day 2016-12-03: -13744
WARNING. Abnormal entry count found on day 2016-12-10: -13259
WARNING. Abnormal entry count found on day 2016-12-10: -13259
WARNING. Abnormal entry count found on day 2016-12-17: -12321
WARNING. Abnormal entry count found on day 2016-12-17: -12321
WARNING. Abnormal entry count found on day 2016-12-24: -8749
WARNING. Abnormal entry count found on day 2016-12-24: -8749
Processing turnstile ('J023', 'R436', '00-00-00', 'NORWOOD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8074
WARNING. Abnormal entry count found on day 2016-12-03: -8074
WARNING. Abnormal entry count found on day 2016-12-10: -7898
WARNING. Abnormal entry count found on day 2016-12-10: -7898
WARNING. Abnormal entry count found on day 2016-12-17: -7924
WARNING. Abnormal entry count found on day 2016-12-17: -7924
WARNING. Abnormal entry count found on day 2016-12-24: -6374
WARNING. Abnormal entry count found on day 2016-12-24: -6374
Processing turnstile ('N137', 'R354', '00-00-02', '104 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2367
WARNING. Abnormal entry count found on day 2016-12-03: -2367
WARNING. Abnormal entry count found on day 2016-12-10: -2322
WARNING. Abnormal entry count found on day 2016-12-10: -2322
WARNING. Abnormal entry count found on day 2016-12-17: -2113
WARNING. Abnormal entry count found on day 2016-12-17: -2113
WARNING. Abnormal entry count found on day 2016-12-24: -1723
WARNING. Abnormal entry count found on day 2016-12-24: -1723
Processing turnstile ('N205', 'R195', '02-00-02', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -7975
WARNING. Abnormal entry count found on day 2016-12-03: -7975
WARNING. Abnormal entry count found on day 2016-12-10: -7165
WARNING. Abnormal entry count found on day 2016-12-10: -7165
WARNING. Abnormal entry count found on day 2016-12-17: -7953
WARNING. Abnormal entry count found on day 2016-12-17: -7953
WARNING. Abnormal entry count found on day 2016-12-24: -5008
WARNING. Abnormal entry count found on day 2016-12-24: -5008
Processing turnstile ('N095', 'R014', '00-03-07', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11989
WARNING. Abnormal entry count found on day 2016-12-03: -11989
WARNING. Abnormal entry count found on day 2016-12-10: -11609
WARNING. Abnormal entry count found on day 2016-12-10: -11609
WARNING. Abnormal entry count found on day 2016-12-17: -10881
WARNING. Abnormal entry count found on day 2016-12-17: -10881
WARNING. Abnormal entry count found on day 2016-12-24: -8005
WARNING. Abnormal entry count found on day 2016-12-24: -8005
Processing turnstile ('B031', 'R172', '01-00-03', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -2598
WARNING. Abnormal entry count found on day 2016-12-03: -2598
WARNING. Abnormal entry count found on day 2016-12-10: -2547
WARNING. Abnormal entry count found on day 2016-12-10: -2547
WARNING. Abnormal entry count found on day 2016-12-17: -2616
WARNING. Abnormal entry count found on day 2016-12-17: -2616
WARNING. Abnormal entry count found on day 2016-12-24: -2321
WARNING. Abnormal entry count found on day 2016-12-24: -2321
Processing turnstile ('R246', 'R177', '00-00-01', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -18795
WARNING. Abnormal entry count found on day 2016-12-03: -18795
WARNING. Abnormal entry count found on day 2016-12-10: -16414
WARNING. Abnormal entry count found on day 2016-12-10: -16414
WARNING. Abnormal entry count found on day 2016-12-17: -12639
WARNING. Abnormal entry count found on day 2016-12-17: -12639
WARNING. Abnormal entry count found on day 2016-12-24: -6926
WARNING. Abnormal entry count found on day 2016-12-24: -6926
Processing turnstile ('N324', 'R018', '00-03-02', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -19496
WARNING. Abnormal entry count found on day 2016-12-03: -19496
WARNING. Abnormal entry count found on day 2016-12-10: -19287
WARNING. Abnormal entry count found on day 2016-12-10: -19287
WARNING. Abnormal entry count found on day 2016-12-17: -19448
WARNING. Abnormal entry count found on day 2016-12-17: -19448
WARNING. Abnormal entry count found on day 2016-12-24: -16417
WARNING. Abnormal entry count found on day 2016-12-24: -16417
Processing turnstile ('R515', 'R095', '00-00-01', 'ASTORIA DITMARS')
WARNING. Abnormal entry count found on day 2016-12-03: -8722
WARNING. Abnormal entry count found on day 2016-12-03: -8722
WARNING. Abnormal entry count found on day 2016-12-10: -8890
WARNING. Abnormal entry count found on day 2016-12-10: -8890
WARNING. Abnormal entry count found on day 2016-12-17: -8421
WARNING. Abnormal entry count found on day 2016-12-17: -8421
WARNING. Abnormal entry count found on day 2016-12-24: -5826
WARNING. Abnormal entry count found on day 2016-12-24: -5826
Processing turnstile ('A010', 'R080', '00-00-04', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6219
WARNING. Abnormal entry count found on day 2016-12-03: -6219
WARNING. Abnormal entry count found on day 2016-12-10: -6397
WARNING. Abnormal entry count found on day 2016-12-10: -6397
WARNING. Abnormal entry count found on day 2016-12-17: -5925
WARNING. Abnormal entry count found on day 2016-12-17: -5925
WARNING. Abnormal entry count found on day 2016-12-24: -4961
WARNING. Abnormal entry count found on day 2016-12-24: -4961
Processing turnstile ('N409', 'R268', '00-03-01', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7091
WARNING. Abnormal entry count found on day 2016-12-03: -7091
WARNING. Abnormal entry count found on day 2016-12-10: -6993
WARNING. Abnormal entry count found on day 2016-12-10: -6993
WARNING. Abnormal entry count found on day 2016-12-17: -6636
WARNING. Abnormal entry count found on day 2016-12-17: -6636
WARNING. Abnormal entry count found on day 2016-12-24: -4962
WARNING. Abnormal entry count found on day 2016-12-24: -4962
Processing turnstile ('R610', 'R057', '00-04-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -3535
WARNING. Abnormal entry count found on day 2016-12-03: -3535
WARNING. Abnormal entry count found on day 2016-12-10: -3647
WARNING. Abnormal entry count found on day 2016-12-10: -3647
WARNING. Abnormal entry count found on day 2016-12-17: -3467
WARNING. Abnormal entry count found on day 2016-12-17: -3467
WARNING. Abnormal entry count found on day 2016-12-24: -2564
WARNING. Abnormal entry count found on day 2016-12-24: -2564
Processing turnstile ('R634', 'R069', '00-00-00', 'NEW LOTS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1687
WARNING. Abnormal entry count found on day 2016-12-03: -1687
WARNING. Abnormal entry count found on day 2016-12-10: -4229
WARNING. Abnormal entry count found on day 2016-12-10: -4229
WARNING. Abnormal entry count found on day 2016-12-17: -4449
WARNING. Abnormal entry count found on day 2016-12-17: -4449
WARNING. Abnormal entry count found on day 2016-12-24: -3489
WARNING. Abnormal entry count found on day 2016-12-24: -3489
Processing turnstile ('B019', 'R149', '00-00-04', 'NEWKIRK PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -14839
WARNING. Abnormal entry count found on day 2016-12-03: -14839
WARNING. Abnormal entry count found on day 2016-12-10: -14936
WARNING. Abnormal entry count found on day 2016-12-10: -14936
WARNING. Abnormal entry count found on day 2016-12-17: -14509
WARNING. Abnormal entry count found on day 2016-12-17: -14509
WARNING. Abnormal entry count found on day 2016-12-24: -10818
WARNING. Abnormal entry count found on day 2016-12-24: -10818
Processing turnstile ('PTH04', 'R551', '00-01-00', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -6820
WARNING. Abnormal entry count found on day 2016-12-03: -6820
WARNING. Abnormal entry count found on day 2016-12-10: -6536
WARNING. Abnormal entry count found on day 2016-12-10: -6536
WARNING. Abnormal entry count found on day 2016-12-17: -5808
WARNING. Abnormal entry count found on day 2016-12-17: -5808
WARNING. Abnormal entry count found on day 2016-12-24: -3641
WARNING. Abnormal entry count found on day 2016-12-24: -3641
Processing turnstile ('R513', 'R093', '00-03-01', '30 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -25883
WARNING. Abnormal entry count found on day 2016-12-03: -25883
WARNING. Abnormal entry count found on day 2016-12-10: -25760
WARNING. Abnormal entry count found on day 2016-12-10: -25760
WARNING. Abnormal entry count found on day 2016-12-17: -22385
WARNING. Abnormal entry count found on day 2016-12-17: -22385
WARNING. Abnormal entry count found on day 2016-12-24: -17289
WARNING. Abnormal entry count found on day 2016-12-24: -17289
Processing turnstile ('R190', 'R038', '00-06-00', '215 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1153
WARNING. Abnormal entry count found on day 2016-12-03: -1153
WARNING. Abnormal entry count found on day 2016-12-10: -1112
WARNING. Abnormal entry count found on day 2016-12-10: -1112
WARNING. Abnormal entry count found on day 2016-12-17: -1138
WARNING. Abnormal entry count found on day 2016-12-17: -1138
WARNING. Abnormal entry count found on day 2016-12-24: -818
WARNING. Abnormal entry count found on day 2016-12-24: -818
Processing turnstile ('R210', 'R044', '00-03-05', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -5476
WARNING. Abnormal entry count found on day 2016-12-03: -5476
WARNING. Abnormal entry count found on day 2016-12-10: -5149
WARNING. Abnormal entry count found on day 2016-12-10: -5149
WARNING. Abnormal entry count found on day 2016-12-17: -5021
WARNING. Abnormal entry count found on day 2016-12-17: -5021
WARNING. Abnormal entry count found on day 2016-12-24: -3303
WARNING. Abnormal entry count found on day 2016-12-24: -3303
Processing turnstile ('N212', 'R253', '01-00-01', '174-175 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -4029
WARNING. Abnormal entry count found on day 2016-12-03: -4029
WARNING. Abnormal entry count found on day 2016-12-10: -4081
WARNING. Abnormal entry count found on day 2016-12-10: -4081
WARNING. Abnormal entry count found on day 2016-12-17: -3920
WARNING. Abnormal entry count found on day 2016-12-17: -3920
WARNING. Abnormal entry count found on day 2016-12-24: -3326
WARNING. Abnormal entry count found on day 2016-12-24: -3326
Processing turnstile ('R194', 'R040', '00-06-00', '231 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -722
WARNING. Abnormal entry count found on day 2016-12-03: -722
WARNING. Abnormal entry count found on day 2016-12-16: -31944
WARNING. Abnormal entry count found on day 2016-12-10: 31537
WARNING. Abnormal entry count found on day 2016-12-16: -31944
WARNING. Abnormal entry count found on day 2016-12-10: 31537
WARNING. Abnormal entry count found on day 2016-12-16: -31944
WARNING. Abnormal entry count found on day 2016-12-17: -605
WARNING. Abnormal entry count found on day 2016-12-17: -605
WARNING. Abnormal entry count found on day 2016-12-24: -568
WARNING. Abnormal entry count found on day 2016-12-24: -568
Processing turnstile ('PTH22', 'R540', '02-00-06', 'PATH NEW WTC')
Processing turnstile ('R605', 'R456', '00-00-01', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3458
WARNING. Abnormal entry count found on day 2016-12-03: -3458
WARNING. Abnormal entry count found on day 2016-12-10: -3427
WARNING. Abnormal entry count found on day 2016-12-10: -3427
WARNING. Abnormal entry count found on day 2016-12-17: -3379
WARNING. Abnormal entry count found on day 2016-12-17: -3379
WARNING. Abnormal entry count found on day 2016-12-24: -2421
WARNING. Abnormal entry count found on day 2016-12-24: -2421
Processing turnstile ('R134', 'R272', '01-06-01', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -260
WARNING. Abnormal entry count found on day 2016-12-03: -260
WARNING. Abnormal entry count found on day 2016-12-10: -750
WARNING. Abnormal entry count found on day 2016-12-10: -750
WARNING. Abnormal entry count found on day 2016-12-17: -264
WARNING. Abnormal entry count found on day 2016-12-17: -264
WARNING. Abnormal entry count found on day 2016-12-24: -224
WARNING. Abnormal entry count found on day 2016-12-24: -224
Processing turnstile ('R727', 'R430', '00-00-00', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -3979
WARNING. Abnormal entry count found on day 2016-12-03: -3979
WARNING. Abnormal entry count found on day 2016-12-10: -3887
WARNING. Abnormal entry count found on day 2016-12-10: -3887
WARNING. Abnormal entry count found on day 2016-12-17: -3498
WARNING. Abnormal entry count found on day 2016-12-17: -3498
WARNING. Abnormal entry count found on day 2016-12-24: -2421
WARNING. Abnormal entry count found on day 2016-12-24: -2421
Processing turnstile ('D012', 'R395', '00-00-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -1488
WARNING. Abnormal entry count found on day 2016-12-03: -1488
WARNING. Abnormal entry count found on day 2016-12-10: -1452
WARNING. Abnormal entry count found on day 2016-12-10: -1452
WARNING. Abnormal entry count found on day 2016-12-17: -1250
WARNING. Abnormal entry count found on day 2016-12-17: -1250
WARNING. Abnormal entry count found on day 2016-12-24: -1130
WARNING. Abnormal entry count found on day 2016-12-24: -1130
Processing turnstile ('R190', 'R038', '00-00-02', '215 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4145
WARNING. Abnormal entry count found on day 2016-12-03: -4145
WARNING. Abnormal entry count found on day 2016-12-10: -3869
WARNING. Abnormal entry count found on day 2016-12-10: -3869
WARNING. Abnormal entry count found on day 2016-12-17: -3464
WARNING. Abnormal entry count found on day 2016-12-17: -3464
WARNING. Abnormal entry count found on day 2016-12-24: -2485
WARNING. Abnormal entry count found on day 2016-12-24: -2485
Processing turnstile ('R192', 'R039', '00-06-00', 'MARBLE HILL-225')
WARNING. Abnormal entry count found on day 2016-12-03: -1053
WARNING. Abnormal entry count found on day 2016-12-03: -1053
WARNING. Abnormal entry count found on day 2016-12-10: -1075
WARNING. Abnormal entry count found on day 2016-12-10: -1075
WARNING. Abnormal entry count found on day 2016-12-17: -1110
WARNING. Abnormal entry count found on day 2016-12-17: -1110
WARNING. Abnormal entry count found on day 2016-12-24: -838
WARNING. Abnormal entry count found on day 2016-12-24: -838
Processing turnstile ('PTH13', 'R541', '00-04-07', 'THIRTY ST')
Processing turnstile ('N312', 'R339', '00-06-00', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1962
WARNING. Abnormal entry count found on day 2016-12-03: -1962
WARNING. Abnormal entry count found on day 2016-12-10: -2075
WARNING. Abnormal entry count found on day 2016-12-10: -2075
WARNING. Abnormal entry count found on day 2016-12-17: -2092
WARNING. Abnormal entry count found on day 2016-12-17: -2092
WARNING. Abnormal entry count found on day 2016-12-24: -1796
WARNING. Abnormal entry count found on day 2016-12-24: -1796
Processing turnstile ('A047', 'R087', '00-00-00', 'CITY HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -3365
WARNING. Abnormal entry count found on day 2016-12-03: -3365
WARNING. Abnormal entry count found on day 2016-12-10: -3119
WARNING. Abnormal entry count found on day 2016-12-10: -3119
WARNING. Abnormal entry count found on day 2016-12-17: -2695
WARNING. Abnormal entry count found on day 2016-12-17: -2695
WARNING. Abnormal entry count found on day 2016-12-24: -2118
WARNING. Abnormal entry count found on day 2016-12-24: -2118
Processing turnstile ('N508', 'R453', '00-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -1065
WARNING. Abnormal entry count found on day 2016-12-05: -994
WARNING. Abnormal entry count found on day 2016-12-06: -2949
WARNING. Abnormal entry count found on day 2016-12-07: -3262
WARNING. Abnormal entry count found on day 2016-12-08: -3192
WARNING. Abnormal entry count found on day 2016-12-09: -3154
WARNING. Abnormal entry count found on day 2016-12-03: 14616
WARNING. Abnormal entry count found on day 2016-12-04: -1065
WARNING. Abnormal entry count found on day 2016-12-05: -994
WARNING. Abnormal entry count found on day 2016-12-06: -2949
WARNING. Abnormal entry count found on day 2016-12-07: -3262
WARNING. Abnormal entry count found on day 2016-12-08: -3192
WARNING. Abnormal entry count found on day 2016-12-09: -3154
WARNING. Abnormal entry count found on day 2016-12-03: 14616
WARNING. Abnormal entry count found on day 2016-12-04: -1065
WARNING. Abnormal entry count found on day 2016-12-05: -994
WARNING. Abnormal entry count found on day 2016-12-06: -2949
WARNING. Abnormal entry count found on day 2016-12-07: -3262
WARNING. Abnormal entry count found on day 2016-12-08: -3192
WARNING. Abnormal entry count found on day 2016-12-09: -3154
WARNING. Abnormal entry count found on day 2016-12-10: -3058
WARNING. Abnormal entry count found on day 2016-12-11: -1600
WARNING. Abnormal entry count found on day 2016-12-12: -985
WARNING. Abnormal entry count found on day 2016-12-13: -3463
WARNING. Abnormal entry count found on day 2016-12-14: -3729
WARNING. Abnormal entry count found on day 2016-12-15: -2996
WARNING. Abnormal entry count found on day 2016-12-16: -3602
WARNING. Abnormal entry count found on day 2016-12-10: 16375
WARNING. Abnormal entry count found on day 2016-12-11: -1600
WARNING. Abnormal entry count found on day 2016-12-12: -985
WARNING. Abnormal entry count found on day 2016-12-13: -3463
WARNING. Abnormal entry count found on day 2016-12-14: -3729
WARNING. Abnormal entry count found on day 2016-12-15: -2996
WARNING. Abnormal entry count found on day 2016-12-16: -3602
WARNING. Abnormal entry count found on day 2016-12-10: 16375
WARNING. Abnormal entry count found on day 2016-12-11: -1600
WARNING. Abnormal entry count found on day 2016-12-12: -985
WARNING. Abnormal entry count found on day 2016-12-13: -3463
WARNING. Abnormal entry count found on day 2016-12-14: -3729
WARNING. Abnormal entry count found on day 2016-12-15: -2996
WARNING. Abnormal entry count found on day 2016-12-16: -3602
WARNING. Abnormal entry count found on day 2016-12-17: -3002
WARNING. Abnormal entry count found on day 2016-12-18: -1296
WARNING. Abnormal entry count found on day 2016-12-19: -995
WARNING. Abnormal entry count found on day 2016-12-20: -2610
WARNING. Abnormal entry count found on day 2016-12-21: -3037
WARNING. Abnormal entry count found on day 2016-12-22: -2933
WARNING. Abnormal entry count found on day 2016-12-23: -2477
WARNING. Abnormal entry count found on day 2016-12-17: 13348
WARNING. Abnormal entry count found on day 2016-12-18: -1296
WARNING. Abnormal entry count found on day 2016-12-19: -995
WARNING. Abnormal entry count found on day 2016-12-20: -2610
WARNING. Abnormal entry count found on day 2016-12-21: -3037
WARNING. Abnormal entry count found on day 2016-12-22: -2933
WARNING. Abnormal entry count found on day 2016-12-23: -2477
WARNING. Abnormal entry count found on day 2016-12-17: 13348
WARNING. Abnormal entry count found on day 2016-12-18: -1296
WARNING. Abnormal entry count found on day 2016-12-19: -995
WARNING. Abnormal entry count found on day 2016-12-20: -2610
WARNING. Abnormal entry count found on day 2016-12-21: -3037
WARNING. Abnormal entry count found on day 2016-12-22: -2933
WARNING. Abnormal entry count found on day 2016-12-23: -2477
WARNING. Abnormal entry count found on day 2016-12-24: -1891
WARNING. Abnormal entry count found on day 2016-12-25: -681
WARNING. Abnormal entry count found on day 2016-12-26: -302
WARNING. Abnormal entry count found on day 2016-12-27: -789
WARNING. Abnormal entry count found on day 2016-12-28: -1832
WARNING. Abnormal entry count found on day 2016-12-29: -2035
WARNING. Abnormal entry count found on day 2016-12-30: -1996
WARNING. Abnormal entry count found on day 2016-12-25: -681
WARNING. Abnormal entry count found on day 2016-12-26: -302
WARNING. Abnormal entry count found on day 2016-12-27: -789
WARNING. Abnormal entry count found on day 2016-12-28: -1832
WARNING. Abnormal entry count found on day 2016-12-29: -2035
WARNING. Abnormal entry count found on day 2016-12-30: -1996
WARNING. Abnormal entry count found on day 2016-12-25: -681
WARNING. Abnormal entry count found on day 2016-12-26: -302
WARNING. Abnormal entry count found on day 2016-12-27: -789
WARNING. Abnormal entry count found on day 2016-12-28: -1832
WARNING. Abnormal entry count found on day 2016-12-29: -2035
WARNING. Abnormal entry count found on day 2016-12-30: -1996
Processing turnstile ('R423', 'R429', '00-03-00', 'PELHAM BAY PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -7970
WARNING. Abnormal entry count found on day 2016-12-03: -7970
WARNING. Abnormal entry count found on day 2016-12-10: -9524
WARNING. Abnormal entry count found on day 2016-12-10: -9524
WARNING. Abnormal entry count found on day 2016-12-17: -9712
WARNING. Abnormal entry count found on day 2016-12-17: -9712
WARNING. Abnormal entry count found on day 2016-12-24: -6849
WARNING. Abnormal entry count found on day 2016-12-24: -6849
Processing turnstile ('H033', 'R313', '00-00-01', 'BUSHWICK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3421
WARNING. Abnormal entry count found on day 2016-12-03: -3421
WARNING. Abnormal entry count found on day 2016-12-10: -3309
WARNING. Abnormal entry count found on day 2016-12-10: -3309
WARNING. Abnormal entry count found on day 2016-12-17: -3020
WARNING. Abnormal entry count found on day 2016-12-17: -3020
WARNING. Abnormal entry count found on day 2016-12-24: -2260
WARNING. Abnormal entry count found on day 2016-12-24: -2260
Processing turnstile ('PTH11', 'R545', '00-00-03', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -11846
WARNING. Abnormal entry count found on day 2016-12-03: -11846
WARNING. Abnormal entry count found on day 2016-12-10: -6843
WARNING. Abnormal entry count found on day 2016-12-10: -6843
WARNING. Abnormal entry count found on day 2016-12-17: -4942
WARNING. Abnormal entry count found on day 2016-12-17: -4942
WARNING. Abnormal entry count found on day 2016-12-24: -5377
WARNING. Abnormal entry count found on day 2016-12-24: -5377
Processing turnstile ('R101', 'R001', '02-06-00', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('PTH03', 'R552', '00-00-06', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -11198
WARNING. Abnormal entry count found on day 2016-12-03: -11198
WARNING. Abnormal entry count found on day 2016-12-10: -11937
WARNING. Abnormal entry count found on day 2016-12-10: -11937
WARNING. Abnormal entry count found on day 2016-12-17: -14270
WARNING. Abnormal entry count found on day 2016-12-17: -14270
WARNING. Abnormal entry count found on day 2016-12-26: 711014
WARNING. Abnormal entry count found on day 2016-12-27: -707858
WARNING. Abnormal entry count found on day 2016-12-24: -10773
WARNING. Abnormal entry count found on day 2016-12-26: 711014
WARNING. Abnormal entry count found on day 2016-12-27: -707858
WARNING. Abnormal entry count found on day 2016-12-24: -10773
WARNING. Abnormal entry count found on day 2016-12-26: 711014
WARNING. Abnormal entry count found on day 2016-12-27: -707858
Processing turnstile ('PTH07', 'R550', '00-02-02', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -117
WARNING. Abnormal entry count found on day 2016-12-03: -117
WARNING. Abnormal entry count found on day 2016-12-10: -112
WARNING. Abnormal entry count found on day 2016-12-10: -112
WARNING. Abnormal entry count found on day 2016-12-17: -88
WARNING. Abnormal entry count found on day 2016-12-17: -88
WARNING. Abnormal entry count found on day 2016-12-24: -63
WARNING. Abnormal entry count found on day 2016-12-24: -63
Processing turnstile ('R521', 'R327', '00-00-03', '52 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3823
WARNING. Abnormal entry count found on day 2016-12-03: -3823
WARNING. Abnormal entry count found on day 2016-12-10: -3115
WARNING. Abnormal entry count found on day 2016-12-10: -3115
WARNING. Abnormal entry count found on day 2016-12-17: -3042
WARNING. Abnormal entry count found on day 2016-12-17: -3042
WARNING. Abnormal entry count found on day 2016-12-24: -2515
WARNING. Abnormal entry count found on day 2016-12-24: -2515
Processing turnstile ('N324', 'R018', '00-00-02', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -12387
WARNING. Abnormal entry count found on day 2016-12-03: -12387
WARNING. Abnormal entry count found on day 2016-12-10: -12807
WARNING. Abnormal entry count found on day 2016-12-10: -12807
WARNING. Abnormal entry count found on day 2016-12-17: -12365
WARNING. Abnormal entry count found on day 2016-12-17: -12365
WARNING. Abnormal entry count found on day 2016-12-24: -10039
WARNING. Abnormal entry count found on day 2016-12-24: -10039
Processing turnstile ('N543', 'R289', '00-00-01', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -2857
WARNING. Abnormal entry count found on day 2016-12-03: -2857
WARNING. Abnormal entry count found on day 2016-12-10: -2943
WARNING. Abnormal entry count found on day 2016-12-10: -2943
WARNING. Abnormal entry count found on day 2016-12-17: -2699
WARNING. Abnormal entry count found on day 2016-12-17: -2699
WARNING. Abnormal entry count found on day 2016-12-24: -1609
WARNING. Abnormal entry count found on day 2016-12-24: -1609
Processing turnstile ('A002', 'R051', '02-03-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7411
WARNING. Abnormal entry count found on day 2016-12-03: -7411
WARNING. Abnormal entry count found on day 2016-12-10: -8284
WARNING. Abnormal entry count found on day 2016-12-10: -8284
WARNING. Abnormal entry count found on day 2016-12-17: -8845
WARNING. Abnormal entry count found on day 2016-12-17: -8845
WARNING. Abnormal entry count found on day 2016-12-24: -7428
WARNING. Abnormal entry count found on day 2016-12-24: -7428
Processing turnstile ('R171', 'R192', '01-00-00', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -5974
WARNING. Abnormal entry count found on day 2016-12-03: -5974
WARNING. Abnormal entry count found on day 2016-12-10: -6003
WARNING. Abnormal entry count found on day 2016-12-10: -6003
WARNING. Abnormal entry count found on day 2016-12-17: -4494
WARNING. Abnormal entry count found on day 2016-12-17: -4494
WARNING. Abnormal entry count found on day 2016-12-24: -3941
WARNING. Abnormal entry count found on day 2016-12-24: -3941
Processing turnstile ('R501', 'R054', '00-06-00', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -6216
WARNING. Abnormal entry count found on day 2016-12-03: -6216
WARNING. Abnormal entry count found on day 2016-12-10: -6509
WARNING. Abnormal entry count found on day 2016-12-10: -6509
WARNING. Abnormal entry count found on day 2016-12-17: -5776
WARNING. Abnormal entry count found on day 2016-12-17: -5776
WARNING. Abnormal entry count found on day 2016-12-24: -5617
WARNING. Abnormal entry count found on day 2016-12-24: -5617
Processing turnstile ('R138', 'R293', '00-06-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -14036
WARNING. Abnormal entry count found on day 2016-12-03: -14036
WARNING. Abnormal entry count found on day 2016-12-10: -13050
WARNING. Abnormal entry count found on day 2016-12-10: -13050
WARNING. Abnormal entry count found on day 2016-12-17: -12838
WARNING. Abnormal entry count found on day 2016-12-17: -12838
WARNING. Abnormal entry count found on day 2016-12-24: -11816
WARNING. Abnormal entry count found on day 2016-12-24: -11816
Processing turnstile ('B012', 'R196', '00-03-00', 'PROSPECT PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -3578
WARNING. Abnormal entry count found on day 2016-12-03: -3578
WARNING. Abnormal entry count found on day 2016-12-10: -3534
WARNING. Abnormal entry count found on day 2016-12-10: -3534
WARNING. Abnormal entry count found on day 2016-12-17: -3312
WARNING. Abnormal entry count found on day 2016-12-17: -3312
WARNING. Abnormal entry count found on day 2016-12-24: -3722
WARNING. Abnormal entry count found on day 2016-12-24: -3722
Processing turnstile ('PTH20', 'R549', '03-00-03', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -245
WARNING. Abnormal entry count found on day 2016-12-03: -245
WARNING. Abnormal entry count found on day 2016-12-10: -482
WARNING. Abnormal entry count found on day 2016-12-10: -482
WARNING. Abnormal entry count found on day 2016-12-17: -666
WARNING. Abnormal entry count found on day 2016-12-17: -666
WARNING. Abnormal entry count found on day 2016-12-24: -332
WARNING. Abnormal entry count found on day 2016-12-24: -332
Processing turnstile ('PTH07', 'R550', '00-01-00', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -2525
WARNING. Abnormal entry count found on day 2016-12-03: -2525
WARNING. Abnormal entry count found on day 2016-12-10: -2581
WARNING. Abnormal entry count found on day 2016-12-10: -2581
WARNING. Abnormal entry count found on day 2016-12-17: -2289
WARNING. Abnormal entry count found on day 2016-12-17: -2289
WARNING. Abnormal entry count found on day 2016-12-24: -1503
WARNING. Abnormal entry count found on day 2016-12-24: -1503
Processing turnstile ('R534', 'R055', '01-05-00', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -21
WARNING. Abnormal entry count found on day 2016-12-03: -21
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-17: -23
WARNING. Abnormal entry count found on day 2016-12-17: -23
WARNING. Abnormal entry count found on day 2016-12-24: -24
WARNING. Abnormal entry count found on day 2016-12-24: -24
Processing turnstile ('R600', 'R224', '00-00-00', 'CLARK ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2779
WARNING. Abnormal entry count found on day 2016-12-03: -2779
WARNING. Abnormal entry count found on day 2016-12-10: -2764
WARNING. Abnormal entry count found on day 2016-12-10: -2764
WARNING. Abnormal entry count found on day 2016-12-17: -2565
WARNING. Abnormal entry count found on day 2016-12-17: -2565
WARNING. Abnormal entry count found on day 2016-12-24: -2351
WARNING. Abnormal entry count found on day 2016-12-24: -2351
Processing turnstile ('A002', 'R051', '02-03-06', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15543
WARNING. Abnormal entry count found on day 2016-12-03: -15543
WARNING. Abnormal entry count found on day 2016-12-10: -14295
WARNING. Abnormal entry count found on day 2016-12-10: -14295
WARNING. Abnormal entry count found on day 2016-12-17: -12292
WARNING. Abnormal entry count found on day 2016-12-17: -12292
WARNING. Abnormal entry count found on day 2016-12-24: -9460
WARNING. Abnormal entry count found on day 2016-12-24: -9460
Processing turnstile ('A047', 'R087', '00-06-02', 'CITY HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -5235
WARNING. Abnormal entry count found on day 2016-12-03: -5235
WARNING. Abnormal entry count found on day 2016-12-10: -4802
WARNING. Abnormal entry count found on day 2016-12-10: -4802
WARNING. Abnormal entry count found on day 2016-12-17: -4754
WARNING. Abnormal entry count found on day 2016-12-17: -4754
WARNING. Abnormal entry count found on day 2016-12-24: -3227
WARNING. Abnormal entry count found on day 2016-12-24: -3227
Processing turnstile ('N304', 'R015', '01-00-01', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2583
WARNING. Abnormal entry count found on day 2016-12-03: -2583
WARNING. Abnormal entry count found on day 2016-12-10: -2549
WARNING. Abnormal entry count found on day 2016-12-10: -2549
WARNING. Abnormal entry count found on day 2016-12-17: -2138
WARNING. Abnormal entry count found on day 2016-12-17: -2138
WARNING. Abnormal entry count found on day 2016-12-24: -1238
WARNING. Abnormal entry count found on day 2016-12-24: -1238
Processing turnstile ('H001', 'R175', '00-06-02', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3918
WARNING. Abnormal entry count found on day 2016-12-03: -3918
WARNING. Abnormal entry count found on day 2016-12-10: -4085
WARNING. Abnormal entry count found on day 2016-12-10: -4085
WARNING. Abnormal entry count found on day 2016-12-17: -3774
WARNING. Abnormal entry count found on day 2016-12-17: -3774
WARNING. Abnormal entry count found on day 2016-12-24: -3129
WARNING. Abnormal entry count found on day 2016-12-24: -3129
Processing turnstile ('J001', 'R460', '01-06-00', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12473
WARNING. Abnormal entry count found on day 2016-12-03: -12473
WARNING. Abnormal entry count found on day 2016-12-10: -9776
WARNING. Abnormal entry count found on day 2016-12-10: -9776
WARNING. Abnormal entry count found on day 2016-12-17: -9227
WARNING. Abnormal entry count found on day 2016-12-17: -9227
WARNING. Abnormal entry count found on day 2016-12-24: -6398
WARNING. Abnormal entry count found on day 2016-12-24: -6398
Processing turnstile ('R532', 'R328', '00-06-04', 'METS-WILLETS PT')
Processing turnstile ('A038', 'R085', '00-00-02', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -13118
WARNING. Abnormal entry count found on day 2016-12-03: -13118
WARNING. Abnormal entry count found on day 2016-12-10: -13598
WARNING. Abnormal entry count found on day 2016-12-10: -13598
WARNING. Abnormal entry count found on day 2016-12-17: -12412
WARNING. Abnormal entry count found on day 2016-12-17: -12412
WARNING. Abnormal entry count found on day 2016-12-24: -9164
WARNING. Abnormal entry count found on day 2016-12-24: -9164
Processing turnstile ('N312', 'R339', '00-00-00', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2930
WARNING. Abnormal entry count found on day 2016-12-03: -2930
WARNING. Abnormal entry count found on day 2016-12-10: -3484
WARNING. Abnormal entry count found on day 2016-12-10: -3484
WARNING. Abnormal entry count found on day 2016-12-17: -3306
WARNING. Abnormal entry count found on day 2016-12-17: -3306
WARNING. Abnormal entry count found on day 2016-12-24: -2558
WARNING. Abnormal entry count found on day 2016-12-24: -2558
Processing turnstile ('N141', 'R356', '00-03-02', 'OZONE PK LEFFRT')
WARNING. Abnormal entry count found on day 2016-12-03: -2602
WARNING. Abnormal entry count found on day 2016-12-03: -2602
WARNING. Abnormal entry count found on day 2016-12-10: -2701
WARNING. Abnormal entry count found on day 2016-12-10: -2701
WARNING. Abnormal entry count found on day 2016-12-17: -548
WARNING. Abnormal entry count found on day 2016-12-17: -548
WARNING. Abnormal entry count found on day 2016-12-24: -1433
WARNING. Abnormal entry count found on day 2016-12-24: -1433
Processing turnstile ('N301', 'R113', '00-00-04', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13523
WARNING. Abnormal entry count found on day 2016-12-03: -13523
WARNING. Abnormal entry count found on day 2016-12-10: -13561
WARNING. Abnormal entry count found on day 2016-12-10: -13561
WARNING. Abnormal entry count found on day 2016-12-17: -12383
WARNING. Abnormal entry count found on day 2016-12-17: -12383
WARNING. Abnormal entry count found on day 2016-12-24: -8992
WARNING. Abnormal entry count found on day 2016-12-24: -8992
Processing turnstile ('N196', 'R285', '00-00-02', 'FAR ROCKAWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -6575
WARNING. Abnormal entry count found on day 2016-12-03: -6575
WARNING. Abnormal entry count found on day 2016-12-10: -6174
WARNING. Abnormal entry count found on day 2016-12-10: -6174
WARNING. Abnormal entry count found on day 2016-12-17: -6317
WARNING. Abnormal entry count found on day 2016-12-17: -6317
WARNING. Abnormal entry count found on day 2016-12-24: -4914
WARNING. Abnormal entry count found on day 2016-12-24: -4914
Processing turnstile ('R117', 'R343', '00-00-02', 'FRANKLIN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11166
WARNING. Abnormal entry count found on day 2016-12-03: -11166
WARNING. Abnormal entry count found on day 2016-12-10: -10921
WARNING. Abnormal entry count found on day 2016-12-10: -10921
WARNING. Abnormal entry count found on day 2016-12-17: -9238
WARNING. Abnormal entry count found on day 2016-12-17: -9238
WARNING. Abnormal entry count found on day 2016-12-24: -5603
WARNING. Abnormal entry count found on day 2016-12-24: -5603
Processing turnstile ('R113', 'R028', '01-06-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5156
WARNING. Abnormal entry count found on day 2016-12-03: -5156
WARNING. Abnormal entry count found on day 2016-12-10: -5209
WARNING. Abnormal entry count found on day 2016-12-10: -5209
WARNING. Abnormal entry count found on day 2016-12-17: -4069
WARNING. Abnormal entry count found on day 2016-12-17: -4069
WARNING. Abnormal entry count found on day 2016-12-24: -2461
WARNING. Abnormal entry count found on day 2016-12-24: -2461
Processing turnstile ('N111', 'R284', '00-00-00', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3864
WARNING. Abnormal entry count found on day 2016-12-03: -3864
WARNING. Abnormal entry count found on day 2016-12-10: -3764
WARNING. Abnormal entry count found on day 2016-12-10: -3764
WARNING. Abnormal entry count found on day 2016-12-17: -3380
WARNING. Abnormal entry count found on day 2016-12-17: -3380
WARNING. Abnormal entry count found on day 2016-12-24: -2269
WARNING. Abnormal entry count found on day 2016-12-24: -2269
Processing turnstile ('R604', 'R108', '03-00-02', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -7447
WARNING. Abnormal entry count found on day 2016-12-03: -7447
WARNING. Abnormal entry count found on day 2016-12-10: -8244
WARNING. Abnormal entry count found on day 2016-12-10: -8244
WARNING. Abnormal entry count found on day 2016-12-17: -6608
WARNING. Abnormal entry count found on day 2016-12-17: -6608
WARNING. Abnormal entry count found on day 2016-12-24: -4094
WARNING. Abnormal entry count found on day 2016-12-24: -4094
Processing turnstile ('N519', 'R461', '00-03-01', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -7618
WARNING. Abnormal entry count found on day 2016-12-03: -7618
WARNING. Abnormal entry count found on day 2016-12-10: -7829
WARNING. Abnormal entry count found on day 2016-12-10: -7829
WARNING. Abnormal entry count found on day 2016-12-17: -8454
WARNING. Abnormal entry count found on day 2016-12-17: -8454
WARNING. Abnormal entry count found on day 2016-12-24: -6180
WARNING. Abnormal entry count found on day 2016-12-24: -6180
Processing turnstile ('PTH12', 'R542', '00-00-03', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14208
WARNING. Abnormal entry count found on day 2016-12-03: -14208
WARNING. Abnormal entry count found on day 2016-12-10: -14420
WARNING. Abnormal entry count found on day 2016-12-10: -14420
WARNING. Abnormal entry count found on day 2016-12-17: -12288
WARNING. Abnormal entry count found on day 2016-12-17: -12288
WARNING. Abnormal entry count found on day 2016-12-24: -8130
WARNING. Abnormal entry count found on day 2016-12-24: -8130
Processing turnstile ('R508', 'R346', '00-03-00', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -3738
WARNING. Abnormal entry count found on day 2016-12-03: -3738
WARNING. Abnormal entry count found on day 2016-12-10: -3549
WARNING. Abnormal entry count found on day 2016-12-10: -3549
WARNING. Abnormal entry count found on day 2016-12-17: -3431
WARNING. Abnormal entry count found on day 2016-12-17: -3431
WARNING. Abnormal entry count found on day 2016-12-24: -2497
WARNING. Abnormal entry count found on day 2016-12-24: -2497
Processing turnstile ('E014', 'R374', '00-00-04', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10895
WARNING. Abnormal entry count found on day 2016-12-03: -10895
WARNING. Abnormal entry count found on day 2016-12-10: -10403
WARNING. Abnormal entry count found on day 2016-12-10: -10403
WARNING. Abnormal entry count found on day 2016-12-17: -10376
WARNING. Abnormal entry count found on day 2016-12-17: -10376
WARNING. Abnormal entry count found on day 2016-12-24: -8729
WARNING. Abnormal entry count found on day 2016-12-24: -8729
Processing turnstile ('R624', 'R124', '00-00-01', 'KINGSTON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6937
WARNING. Abnormal entry count found on day 2016-12-03: -6937
WARNING. Abnormal entry count found on day 2016-12-10: -7059
WARNING. Abnormal entry count found on day 2016-12-10: -7059
WARNING. Abnormal entry count found on day 2016-12-17: -6737
WARNING. Abnormal entry count found on day 2016-12-17: -6737
WARNING. Abnormal entry count found on day 2016-12-24: -6462
WARNING. Abnormal entry count found on day 2016-12-24: -6462
Processing turnstile ('C021', 'R212', '00-00-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11073
WARNING. Abnormal entry count found on day 2016-12-03: -11073
WARNING. Abnormal entry count found on day 2016-12-10: -10888
WARNING. Abnormal entry count found on day 2016-12-10: -10888
WARNING. Abnormal entry count found on day 2016-12-17: -11286
WARNING. Abnormal entry count found on day 2016-12-17: -11286
WARNING. Abnormal entry count found on day 2016-12-24: -7443
WARNING. Abnormal entry count found on day 2016-12-24: -7443
Processing turnstile ('N303', 'R015', '00-00-07', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9274
WARNING. Abnormal entry count found on day 2016-12-03: -9274
WARNING. Abnormal entry count found on day 2016-12-10: -8871
WARNING. Abnormal entry count found on day 2016-12-10: -8871
WARNING. Abnormal entry count found on day 2016-12-17: -9005
WARNING. Abnormal entry count found on day 2016-12-17: -9005
WARNING. Abnormal entry count found on day 2016-12-24: -8605
WARNING. Abnormal entry count found on day 2016-12-24: -8605
Processing turnstile ('R158', 'R084', '00-06-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -12878
WARNING. Abnormal entry count found on day 2016-12-03: -12878
WARNING. Abnormal entry count found on day 2016-12-10: -13149
WARNING. Abnormal entry count found on day 2016-12-10: -13149
WARNING. Abnormal entry count found on day 2016-12-17: -12316
WARNING. Abnormal entry count found on day 2016-12-17: -12316
WARNING. Abnormal entry count found on day 2016-12-24: -10799
WARNING. Abnormal entry count found on day 2016-12-24: -10799
Processing turnstile ('PTH06', 'R546', '00-00-02', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -16478
WARNING. Abnormal entry count found on day 2016-12-03: -16478
WARNING. Abnormal entry count found on day 2016-12-10: -14551
WARNING. Abnormal entry count found on day 2016-12-10: -14551
WARNING. Abnormal entry count found on day 2016-12-17: -13890
WARNING. Abnormal entry count found on day 2016-12-17: -13890
WARNING. Abnormal entry count found on day 2016-12-24: -11125
WARNING. Abnormal entry count found on day 2016-12-24: -11125
Processing turnstile ('R188', 'R037', '00-00-00', '207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12309
WARNING. Abnormal entry count found on day 2016-12-03: -12309
WARNING. Abnormal entry count found on day 2016-12-10: -11541
WARNING. Abnormal entry count found on day 2016-12-10: -11541
WARNING. Abnormal entry count found on day 2016-12-17: -11325
WARNING. Abnormal entry count found on day 2016-12-17: -11325
WARNING. Abnormal entry count found on day 2016-12-24: -9257
WARNING. Abnormal entry count found on day 2016-12-24: -9257
Processing turnstile ('R286', 'R309', '00-00-00', '176 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5311
WARNING. Abnormal entry count found on day 2016-12-03: -5311
WARNING. Abnormal entry count found on day 2016-12-10: -5505
WARNING. Abnormal entry count found on day 2016-12-10: -5505
WARNING. Abnormal entry count found on day 2016-12-17: -5682
WARNING. Abnormal entry count found on day 2016-12-17: -5682
WARNING. Abnormal entry count found on day 2016-12-24: -4423
WARNING. Abnormal entry count found on day 2016-12-24: -4423
Processing turnstile ('N325A', 'R218', '00-05-00', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14364
WARNING. Abnormal entry count found on day 2016-12-03: -14364
WARNING. Abnormal entry count found on day 2016-12-10: -14076
WARNING. Abnormal entry count found on day 2016-12-10: -14076
WARNING. Abnormal entry count found on day 2016-12-17: -14053
WARNING. Abnormal entry count found on day 2016-12-17: -14053
WARNING. Abnormal entry count found on day 2016-12-24: -11651
WARNING. Abnormal entry count found on day 2016-12-24: -11651
Processing turnstile ('R238', 'R046', '00-00-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13127
WARNING. Abnormal entry count found on day 2016-12-03: -13127
WARNING. Abnormal entry count found on day 2016-12-10: -13483
WARNING. Abnormal entry count found on day 2016-12-10: -13483
WARNING. Abnormal entry count found on day 2016-12-17: -13868
WARNING. Abnormal entry count found on day 2016-12-17: -13868
WARNING. Abnormal entry count found on day 2016-12-24: -14158
WARNING. Abnormal entry count found on day 2016-12-24: -14158
Processing turnstile ('N561', 'R271', '00-00-00', 'AVENUE X')
WARNING. Abnormal entry count found on day 2016-12-03: -10878
WARNING. Abnormal entry count found on day 2016-12-03: -10878
WARNING. Abnormal entry count found on day 2016-12-10: -9559
WARNING. Abnormal entry count found on day 2016-12-10: -9559
WARNING. Abnormal entry count found on day 2016-12-17: -10095
WARNING. Abnormal entry count found on day 2016-12-17: -10095
WARNING. Abnormal entry count found on day 2016-12-24: -8192
WARNING. Abnormal entry count found on day 2016-12-24: -8192
Processing turnstile ('R422', 'R428', '00-03-01', 'BUHRE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6612
WARNING. Abnormal entry count found on day 2016-12-03: -6612
WARNING. Abnormal entry count found on day 2016-12-10: -7241
WARNING. Abnormal entry count found on day 2016-12-10: -7241
WARNING. Abnormal entry count found on day 2016-12-17: -7159
WARNING. Abnormal entry count found on day 2016-12-17: -7159
WARNING. Abnormal entry count found on day 2016-12-24: -5362
WARNING. Abnormal entry count found on day 2016-12-24: -5362
Processing turnstile ('R245A', 'R051', '01-00-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20776
WARNING. Abnormal entry count found on day 2016-12-03: -20776
WARNING. Abnormal entry count found on day 2016-12-10: -18401
WARNING. Abnormal entry count found on day 2016-12-10: -18401
WARNING. Abnormal entry count found on day 2016-12-17: -19489
WARNING. Abnormal entry count found on day 2016-12-17: -19489
WARNING. Abnormal entry count found on day 2016-12-24: -14504
WARNING. Abnormal entry count found on day 2016-12-24: -14504
Processing turnstile ('N051', 'R084', '02-00-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -33323
WARNING. Abnormal entry count found on day 2016-12-03: -33323
WARNING. Abnormal entry count found on day 2016-12-10: -31708
WARNING. Abnormal entry count found on day 2016-12-10: -31708
WARNING. Abnormal entry count found on day 2016-12-17: -23424
WARNING. Abnormal entry count found on day 2016-12-17: -23424
WARNING. Abnormal entry count found on day 2016-12-24: -20844
WARNING. Abnormal entry count found on day 2016-12-24: -20844
Processing turnstile ('N112A', 'R284', '01-00-02', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2611
WARNING. Abnormal entry count found on day 2016-12-03: -2611
WARNING. Abnormal entry count found on day 2016-12-10: -2540
WARNING. Abnormal entry count found on day 2016-12-10: -2540
WARNING. Abnormal entry count found on day 2016-12-17: -2205
WARNING. Abnormal entry count found on day 2016-12-17: -2205
WARNING. Abnormal entry count found on day 2016-12-24: -1717
WARNING. Abnormal entry count found on day 2016-12-24: -1717
Processing turnstile ('R302', 'R324', '01-00-00', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13927
WARNING. Abnormal entry count found on day 2016-12-03: -13927
WARNING. Abnormal entry count found on day 2016-12-10: -13586
WARNING. Abnormal entry count found on day 2016-12-10: -13586
WARNING. Abnormal entry count found on day 2016-12-17: -13124
WARNING. Abnormal entry count found on day 2016-12-17: -13124
WARNING. Abnormal entry count found on day 2016-12-24: -9735
WARNING. Abnormal entry count found on day 2016-12-24: -9735
Processing turnstile ('R514', 'R094', '00-00-02', 'ASTORIA BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -9603
WARNING. Abnormal entry count found on day 2016-12-03: -9603
WARNING. Abnormal entry count found on day 2016-12-10: -10505
WARNING. Abnormal entry count found on day 2016-12-10: -10505
WARNING. Abnormal entry count found on day 2016-12-17: -9640
WARNING. Abnormal entry count found on day 2016-12-17: -9640
WARNING. Abnormal entry count found on day 2016-12-24: -7229
WARNING. Abnormal entry count found on day 2016-12-24: -7229
Processing turnstile ('N508', 'R453', '00-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16350
WARNING. Abnormal entry count found on day 2016-12-03: -16350
WARNING. Abnormal entry count found on day 2016-12-10: -15890
WARNING. Abnormal entry count found on day 2016-12-10: -15890
WARNING. Abnormal entry count found on day 2016-12-17: -14361
WARNING. Abnormal entry count found on day 2016-12-17: -14361
WARNING. Abnormal entry count found on day 2016-12-24: -8446
WARNING. Abnormal entry count found on day 2016-12-24: -8446
Processing turnstile ('R629', 'R065', '00-00-00', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9997
WARNING. Abnormal entry count found on day 2016-12-03: -9997
WARNING. Abnormal entry count found on day 2016-12-10: -9677
WARNING. Abnormal entry count found on day 2016-12-10: -9677
WARNING. Abnormal entry count found on day 2016-12-17: -9283
WARNING. Abnormal entry count found on day 2016-12-17: -9283
WARNING. Abnormal entry count found on day 2016-12-24: -7472
WARNING. Abnormal entry count found on day 2016-12-24: -7472
Processing turnstile ('N506', 'R022', '00-00-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -22977
WARNING. Abnormal entry count found on day 2016-12-03: -22977
WARNING. Abnormal entry count found on day 2016-12-10: -21723
WARNING. Abnormal entry count found on day 2016-12-10: -21723
WARNING. Abnormal entry count found on day 2016-12-17: -25720
WARNING. Abnormal entry count found on day 2016-12-17: -25720
WARNING. Abnormal entry count found on day 2016-12-24: -20382
WARNING. Abnormal entry count found on day 2016-12-24: -20382
Processing turnstile ('A025', 'R023', '01-00-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -21730
WARNING. Abnormal entry count found on day 2016-12-03: -21730
WARNING. Abnormal entry count found on day 2016-12-10: -22745
WARNING. Abnormal entry count found on day 2016-12-10: -22745
WARNING. Abnormal entry count found on day 2016-12-17: -21153
WARNING. Abnormal entry count found on day 2016-12-17: -21153
WARNING. Abnormal entry count found on day 2016-12-24: -16774
WARNING. Abnormal entry count found on day 2016-12-24: -16774
Processing turnstile ('N069', 'R013', '01-06-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -1794
WARNING. Abnormal entry count found on day 2016-12-03: -1794
WARNING. Abnormal entry count found on day 2016-12-10: -1801
WARNING. Abnormal entry count found on day 2016-12-10: -1801
WARNING. Abnormal entry count found on day 2016-12-17: -1732
WARNING. Abnormal entry count found on day 2016-12-17: -1732
WARNING. Abnormal entry count found on day 2016-12-24: -1172
WARNING. Abnormal entry count found on day 2016-12-24: -1172
Processing turnstile ('J012', 'R379', '00-00-02', 'KOSCIUSZKO ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10144
WARNING. Abnormal entry count found on day 2016-12-03: -10144
WARNING. Abnormal entry count found on day 2016-12-10: -10023
WARNING. Abnormal entry count found on day 2016-12-10: -10023
WARNING. Abnormal entry count found on day 2016-12-17: -9358
WARNING. Abnormal entry count found on day 2016-12-17: -9358
WARNING. Abnormal entry count found on day 2016-12-24: -6013
WARNING. Abnormal entry count found on day 2016-12-24: -6013
Processing turnstile ('N010', 'R126', '00-00-01', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12311
WARNING. Abnormal entry count found on day 2016-12-03: -12311
WARNING. Abnormal entry count found on day 2016-12-10: -11676
WARNING. Abnormal entry count found on day 2016-12-10: -11676
WARNING. Abnormal entry count found on day 2016-12-17: -11672
WARNING. Abnormal entry count found on day 2016-12-17: -11672
WARNING. Abnormal entry count found on day 2016-12-24: -9907
WARNING. Abnormal entry count found on day 2016-12-24: -9907
Processing turnstile ('R528', 'R097', '00-05-00', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -7633
WARNING. Abnormal entry count found on day 2016-12-03: -7633
WARNING. Abnormal entry count found on day 2016-12-10: -7361
WARNING. Abnormal entry count found on day 2016-12-10: -7361
WARNING. Abnormal entry count found on day 2016-12-17: -8496
WARNING. Abnormal entry count found on day 2016-12-17: -8496
WARNING. Abnormal entry count found on day 2016-12-24: -6007
WARNING. Abnormal entry count found on day 2016-12-24: -6007
Processing turnstile ('B027', 'R136', '00-00-05', 'SHEEPSHEAD BAY')
WARNING. Abnormal entry count found on day 2016-12-03: -9826
WARNING. Abnormal entry count found on day 2016-12-03: -9826
WARNING. Abnormal entry count found on day 2016-12-10: -9534
WARNING. Abnormal entry count found on day 2016-12-10: -9534
WARNING. Abnormal entry count found on day 2016-12-17: -9423
WARNING. Abnormal entry count found on day 2016-12-17: -9423
WARNING. Abnormal entry count found on day 2016-12-24: -8220
WARNING. Abnormal entry count found on day 2016-12-24: -8220
Processing turnstile ('R639', 'R109', '00-06-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5001
WARNING. Abnormal entry count found on day 2016-12-03: -5001
WARNING. Abnormal entry count found on day 2016-12-10: -4849
WARNING. Abnormal entry count found on day 2016-12-10: -4849
WARNING. Abnormal entry count found on day 2016-12-17: -5243
WARNING. Abnormal entry count found on day 2016-12-17: -5243
WARNING. Abnormal entry count found on day 2016-12-24: -3857
WARNING. Abnormal entry count found on day 2016-12-24: -3857
Processing turnstile ('A047', 'R087', '00-06-00', 'CITY HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -9897
WARNING. Abnormal entry count found on day 2016-12-03: -9897
WARNING. Abnormal entry count found on day 2016-12-10: -9119
WARNING. Abnormal entry count found on day 2016-12-10: -9119
WARNING. Abnormal entry count found on day 2016-12-17: -7869
WARNING. Abnormal entry count found on day 2016-12-17: -7869
WARNING. Abnormal entry count found on day 2016-12-24: -5382
WARNING. Abnormal entry count found on day 2016-12-24: -5382
Processing turnstile ('R162', 'R166', '00-06-00', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16874
WARNING. Abnormal entry count found on day 2016-12-03: -16874
WARNING. Abnormal entry count found on day 2016-12-10: -16992
WARNING. Abnormal entry count found on day 2016-12-10: -16992
WARNING. Abnormal entry count found on day 2016-12-17: -15337
WARNING. Abnormal entry count found on day 2016-12-17: -15337
WARNING. Abnormal entry count found on day 2016-12-24: -12376
WARNING. Abnormal entry count found on day 2016-12-24: -12376
Processing turnstile ('R237B', 'R047', '01-00-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3684
WARNING. Abnormal entry count found on day 2016-12-03: -3684
WARNING. Abnormal entry count found on day 2016-12-10: -3783
WARNING. Abnormal entry count found on day 2016-12-10: -3783
WARNING. Abnormal entry count found on day 2016-12-17: -2737
WARNING. Abnormal entry count found on day 2016-12-17: -2737
WARNING. Abnormal entry count found on day 2016-12-24: -1433
WARNING. Abnormal entry count found on day 2016-12-24: -1433
Processing turnstile ('PTH13', 'R541', '00-04-01', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6093
WARNING. Abnormal entry count found on day 2016-12-03: -6093
WARNING. Abnormal entry count found on day 2016-12-10: -7094
WARNING. Abnormal entry count found on day 2016-12-10: -7094
WARNING. Abnormal entry count found on day 2016-12-17: -8200
WARNING. Abnormal entry count found on day 2016-12-17: -8200
WARNING. Abnormal entry count found on day 2016-12-24: -9283
WARNING. Abnormal entry count found on day 2016-12-24: -9283
Processing turnstile ('B004', 'R171', '00-00-00', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16226
WARNING. Abnormal entry count found on day 2016-12-03: -16226
WARNING. Abnormal entry count found on day 2016-12-10: -15994
WARNING. Abnormal entry count found on day 2016-12-10: -15994
WARNING. Abnormal entry count found on day 2016-12-17: -14683
WARNING. Abnormal entry count found on day 2016-12-17: -14683
WARNING. Abnormal entry count found on day 2016-12-24: -9113
WARNING. Abnormal entry count found on day 2016-12-24: -9113
Processing turnstile ('R325', 'R388', '00-05-01', 'E 180 ST')
Processing turnstile ('R221', 'R170', '01-03-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -23478
WARNING. Abnormal entry count found on day 2016-12-03: -23478
WARNING. Abnormal entry count found on day 2016-12-10: -23260
WARNING. Abnormal entry count found on day 2016-12-10: -23260
WARNING. Abnormal entry count found on day 2016-12-17: -22699
WARNING. Abnormal entry count found on day 2016-12-17: -22699
WARNING. Abnormal entry count found on day 2016-12-24: -15330
WARNING. Abnormal entry count found on day 2016-12-24: -15330
Processing turnstile ('R412', 'R146', '00-00-00', 'HUNTS POINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11508
WARNING. Abnormal entry count found on day 2016-12-03: -11508
WARNING. Abnormal entry count found on day 2016-12-10: -10815
WARNING. Abnormal entry count found on day 2016-12-10: -10815
WARNING. Abnormal entry count found on day 2016-12-17: -10476
WARNING. Abnormal entry count found on day 2016-12-17: -10476
WARNING. Abnormal entry count found on day 2016-12-24: -7704
WARNING. Abnormal entry count found on day 2016-12-24: -7704
Processing turnstile ('N601', 'R319', '00-00-00', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-03: -12050
WARNING. Abnormal entry count found on day 2016-12-03: -12050
WARNING. Abnormal entry count found on day 2016-12-10: -11877
WARNING. Abnormal entry count found on day 2016-12-10: -11877
WARNING. Abnormal entry count found on day 2016-12-17: -11536
WARNING. Abnormal entry count found on day 2016-12-17: -11536
WARNING. Abnormal entry count found on day 2016-12-24: -8844
WARNING. Abnormal entry count found on day 2016-12-24: -8844
Processing turnstile ('R210A', 'R044', '03-03-02', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -14634
WARNING. Abnormal entry count found on day 2016-12-03: -14634
WARNING. Abnormal entry count found on day 2016-12-10: -13994
WARNING. Abnormal entry count found on day 2016-12-10: -13994
WARNING. Abnormal entry count found on day 2016-12-17: -12009
WARNING. Abnormal entry count found on day 2016-12-17: -12009
WARNING. Abnormal entry count found on day 2016-12-24: -7557
WARNING. Abnormal entry count found on day 2016-12-24: -7557
Processing turnstile ('N040', 'R251', '00-00-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6766
WARNING. Abnormal entry count found on day 2016-12-03: -6766
WARNING. Abnormal entry count found on day 2016-12-10: -6384
WARNING. Abnormal entry count found on day 2016-12-10: -6384
WARNING. Abnormal entry count found on day 2016-12-17: -5429
WARNING. Abnormal entry count found on day 2016-12-17: -5429
WARNING. Abnormal entry count found on day 2016-12-24: -4056
WARNING. Abnormal entry count found on day 2016-12-24: -4056
Processing turnstile ('R122', 'R290', '02-05-00', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('R131', 'R190', '00-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19837
WARNING. Abnormal entry count found on day 2016-12-03: -19837
WARNING. Abnormal entry count found on day 2016-12-10: -20043
WARNING. Abnormal entry count found on day 2016-12-10: -20043
WARNING. Abnormal entry count found on day 2016-12-17: -18156
WARNING. Abnormal entry count found on day 2016-12-17: -18156
WARNING. Abnormal entry count found on day 2016-12-24: -11235
WARNING. Abnormal entry count found on day 2016-12-24: -11235
Processing turnstile ('N562', 'R426', '00-00-01', 'NEPTUNE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2277
WARNING. Abnormal entry count found on day 2016-12-03: -2277
WARNING. Abnormal entry count found on day 2016-12-10: -2098
WARNING. Abnormal entry count found on day 2016-12-10: -2098
WARNING. Abnormal entry count found on day 2016-12-17: -2185
WARNING. Abnormal entry count found on day 2016-12-17: -2185
WARNING. Abnormal entry count found on day 2016-12-24: -1311
WARNING. Abnormal entry count found on day 2016-12-24: -1311
Processing turnstile ('A034', 'R170', '03-06-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -15764
WARNING. Abnormal entry count found on day 2016-12-03: -15764
WARNING. Abnormal entry count found on day 2016-12-10: -14478
WARNING. Abnormal entry count found on day 2016-12-10: -14478
WARNING. Abnormal entry count found on day 2016-12-17: -13755
WARNING. Abnormal entry count found on day 2016-12-17: -13755
WARNING. Abnormal entry count found on day 2016-12-24: -8945
WARNING. Abnormal entry count found on day 2016-12-24: -8945
Processing turnstile ('R135', 'R031', '01-00-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11709
WARNING. Abnormal entry count found on day 2016-12-03: -11709
WARNING. Abnormal entry count found on day 2016-12-10: -12025
WARNING. Abnormal entry count found on day 2016-12-10: -12025
WARNING. Abnormal entry count found on day 2016-12-17: -9839
WARNING. Abnormal entry count found on day 2016-12-17: -9839
WARNING. Abnormal entry count found on day 2016-12-24: -5497
WARNING. Abnormal entry count found on day 2016-12-24: -5497
Processing turnstile ('R158', 'R084', '00-06-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -4928
WARNING. Abnormal entry count found on day 2016-12-03: -4928
WARNING. Abnormal entry count found on day 2016-12-10: -5113
WARNING. Abnormal entry count found on day 2016-12-10: -5113
WARNING. Abnormal entry count found on day 2016-12-17: -5135
WARNING. Abnormal entry count found on day 2016-12-17: -5135
WARNING. Abnormal entry count found on day 2016-12-24: -5243
WARNING. Abnormal entry count found on day 2016-12-24: -5243
Processing turnstile ('N049', 'R084', '01-00-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -13116
WARNING. Abnormal entry count found on day 2016-12-03: -13116
WARNING. Abnormal entry count found on day 2016-12-10: -10377
WARNING. Abnormal entry count found on day 2016-12-10: -10377
WARNING. Abnormal entry count found on day 2016-12-17: -8843
WARNING. Abnormal entry count found on day 2016-12-17: -8843
WARNING. Abnormal entry count found on day 2016-12-24: -6528
WARNING. Abnormal entry count found on day 2016-12-24: -6528
Processing turnstile ('R316', 'R407', '00-00-02', 'INTERVALE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9982
WARNING. Abnormal entry count found on day 2016-12-03: -9982
WARNING. Abnormal entry count found on day 2016-12-10: -10274
WARNING. Abnormal entry count found on day 2016-12-10: -10274
WARNING. Abnormal entry count found on day 2016-12-17: -9604
WARNING. Abnormal entry count found on day 2016-12-17: -9604
WARNING. Abnormal entry count found on day 2016-12-24: -7752
WARNING. Abnormal entry count found on day 2016-12-24: -7752
Processing turnstile ('H032', 'R295', '00-00-02', 'WILSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11971
WARNING. Abnormal entry count found on day 2016-12-03: -11971
WARNING. Abnormal entry count found on day 2016-12-10: -12183
WARNING. Abnormal entry count found on day 2016-12-10: -12183
WARNING. Abnormal entry count found on day 2016-12-17: -11549
WARNING. Abnormal entry count found on day 2016-12-17: -11549
WARNING. Abnormal entry count found on day 2016-12-24: -8623
WARNING. Abnormal entry count found on day 2016-12-24: -8623
Processing turnstile ('N195', 'R358', '00-05-01', 'BEACH 25 ST')
Processing turnstile ('PTH11', 'R545', '00-04-01', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -603
WARNING. Abnormal entry count found on day 2016-12-03: -603
WARNING. Abnormal entry count found on day 2016-12-10: -385
WARNING. Abnormal entry count found on day 2016-12-10: -385
WARNING. Abnormal entry count found on day 2016-12-17: -509
WARNING. Abnormal entry count found on day 2016-12-17: -509
WARNING. Abnormal entry count found on day 2016-12-24: -416
WARNING. Abnormal entry count found on day 2016-12-24: -416
Processing turnstile ('R196', 'R306', '00-00-01', '238 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9335
WARNING. Abnormal entry count found on day 2016-12-03: -9335
WARNING. Abnormal entry count found on day 2016-12-10: -9042
WARNING. Abnormal entry count found on day 2016-12-10: -9042
WARNING. Abnormal entry count found on day 2016-12-17: -7994
WARNING. Abnormal entry count found on day 2016-12-17: -7994
WARNING. Abnormal entry count found on day 2016-12-24: -6751
WARNING. Abnormal entry count found on day 2016-12-24: -6751
Processing turnstile ('B015', 'R098', '01-00-03', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7974
WARNING. Abnormal entry count found on day 2016-12-03: -7974
WARNING. Abnormal entry count found on day 2016-12-10: -8085
WARNING. Abnormal entry count found on day 2016-12-10: -8085
WARNING. Abnormal entry count found on day 2016-12-17: -7702
WARNING. Abnormal entry count found on day 2016-12-17: -7702
WARNING. Abnormal entry count found on day 2016-12-24: -5277
WARNING. Abnormal entry count found on day 2016-12-24: -5277
Processing turnstile ('R161B', 'R452', '00-03-00', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13715
WARNING. Abnormal entry count found on day 2016-12-03: -13715
WARNING. Abnormal entry count found on day 2016-12-10: -14857
WARNING. Abnormal entry count found on day 2016-12-10: -14857
WARNING. Abnormal entry count found on day 2016-12-17: -13285
WARNING. Abnormal entry count found on day 2016-12-17: -13285
WARNING. Abnormal entry count found on day 2016-12-24: -10136
WARNING. Abnormal entry count found on day 2016-12-24: -10136
Processing turnstile ('A069', 'R044', '01-00-02', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6674
WARNING. Abnormal entry count found on day 2016-12-03: -6674
WARNING. Abnormal entry count found on day 2016-12-10: -6453
WARNING. Abnormal entry count found on day 2016-12-10: -6453
WARNING. Abnormal entry count found on day 2016-12-17: -6069
WARNING. Abnormal entry count found on day 2016-12-17: -6069
WARNING. Abnormal entry count found on day 2016-12-24: -4561
WARNING. Abnormal entry count found on day 2016-12-24: -4561
Processing turnstile ('R626', 'R062', '00-00-00', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -20715
WARNING. Abnormal entry count found on day 2016-12-03: -20715
WARNING. Abnormal entry count found on day 2016-12-10: -19817
WARNING. Abnormal entry count found on day 2016-12-10: -19817
WARNING. Abnormal entry count found on day 2016-12-17: -19025
WARNING. Abnormal entry count found on day 2016-12-17: -19025
WARNING. Abnormal entry count found on day 2016-12-24: -13722
WARNING. Abnormal entry count found on day 2016-12-24: -13722
Processing turnstile ('N342', 'R019', '01-03-02', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -203
WARNING. Abnormal entry count found on day 2016-12-05: -145
WARNING. Abnormal entry count found on day 2016-12-06: -360
WARNING. Abnormal entry count found on day 2016-12-07: -394
WARNING. Abnormal entry count found on day 2016-12-08: -429
WARNING. Abnormal entry count found on day 2016-12-09: -415
WARNING. Abnormal entry count found on day 2016-12-04: -203
WARNING. Abnormal entry count found on day 2016-12-05: -145
WARNING. Abnormal entry count found on day 2016-12-06: -360
WARNING. Abnormal entry count found on day 2016-12-07: -394
WARNING. Abnormal entry count found on day 2016-12-08: -429
WARNING. Abnormal entry count found on day 2016-12-09: -415
WARNING. Abnormal entry count found on day 2016-12-04: -203
WARNING. Abnormal entry count found on day 2016-12-05: -145
WARNING. Abnormal entry count found on day 2016-12-06: -360
WARNING. Abnormal entry count found on day 2016-12-07: -394
WARNING. Abnormal entry count found on day 2016-12-08: -429
WARNING. Abnormal entry count found on day 2016-12-09: -415
WARNING. Abnormal entry count found on day 2016-12-10: -415
WARNING. Abnormal entry count found on day 2016-12-11: -201
WARNING. Abnormal entry count found on day 2016-12-12: -135
WARNING. Abnormal entry count found on day 2016-12-13: -390
WARNING. Abnormal entry count found on day 2016-12-14: -429
WARNING. Abnormal entry count found on day 2016-12-15: -440
WARNING. Abnormal entry count found on day 2016-12-16: -409
WARNING. Abnormal entry count found on day 2016-12-11: -201
WARNING. Abnormal entry count found on day 2016-12-12: -135
WARNING. Abnormal entry count found on day 2016-12-13: -390
WARNING. Abnormal entry count found on day 2016-12-14: -429
WARNING. Abnormal entry count found on day 2016-12-15: -440
WARNING. Abnormal entry count found on day 2016-12-16: -409
WARNING. Abnormal entry count found on day 2016-12-11: -201
WARNING. Abnormal entry count found on day 2016-12-12: -135
WARNING. Abnormal entry count found on day 2016-12-13: -390
WARNING. Abnormal entry count found on day 2016-12-14: -429
WARNING. Abnormal entry count found on day 2016-12-15: -440
WARNING. Abnormal entry count found on day 2016-12-16: -409
WARNING. Abnormal entry count found on day 2016-12-17: -363
WARNING. Abnormal entry count found on day 2016-12-18: -177
WARNING. Abnormal entry count found on day 2016-12-19: -136
WARNING. Abnormal entry count found on day 2016-12-20: -378
WARNING. Abnormal entry count found on day 2016-12-21: -478
WARNING. Abnormal entry count found on day 2016-12-22: -435
WARNING. Abnormal entry count found on day 2016-12-23: -395
WARNING. Abnormal entry count found on day 2016-12-18: -177
WARNING. Abnormal entry count found on day 2016-12-19: -136
WARNING. Abnormal entry count found on day 2016-12-20: -378
WARNING. Abnormal entry count found on day 2016-12-21: -478
WARNING. Abnormal entry count found on day 2016-12-22: -435
WARNING. Abnormal entry count found on day 2016-12-23: -395
WARNING. Abnormal entry count found on day 2016-12-18: -177
WARNING. Abnormal entry count found on day 2016-12-19: -136
WARNING. Abnormal entry count found on day 2016-12-20: -378
WARNING. Abnormal entry count found on day 2016-12-21: -478
WARNING. Abnormal entry count found on day 2016-12-22: -435
WARNING. Abnormal entry count found on day 2016-12-23: -395
WARNING. Abnormal entry count found on day 2016-12-24: -358
WARNING. Abnormal entry count found on day 2016-12-25: -190
WARNING. Abnormal entry count found on day 2016-12-26: -108
WARNING. Abnormal entry count found on day 2016-12-27: -175
WARNING. Abnormal entry count found on day 2016-12-28: -285
WARNING. Abnormal entry count found on day 2016-12-29: -356
WARNING. Abnormal entry count found on day 2016-12-30: -322
WARNING. Abnormal entry count found on day 2016-12-25: -190
WARNING. Abnormal entry count found on day 2016-12-26: -108
WARNING. Abnormal entry count found on day 2016-12-27: -175
WARNING. Abnormal entry count found on day 2016-12-28: -285
WARNING. Abnormal entry count found on day 2016-12-29: -356
WARNING. Abnormal entry count found on day 2016-12-30: -322
WARNING. Abnormal entry count found on day 2016-12-25: -190
WARNING. Abnormal entry count found on day 2016-12-26: -108
WARNING. Abnormal entry count found on day 2016-12-27: -175
WARNING. Abnormal entry count found on day 2016-12-28: -285
WARNING. Abnormal entry count found on day 2016-12-29: -356
WARNING. Abnormal entry count found on day 2016-12-30: -322
Processing turnstile ('R728', 'R226', '00-00-01', 'GUN HILL RD')
WARNING. Abnormal entry count found on day 2016-12-03: -10222
WARNING. Abnormal entry count found on day 2016-12-03: -10222
WARNING. Abnormal entry count found on day 2016-12-10: -9924
WARNING. Abnormal entry count found on day 2016-12-10: -9924
WARNING. Abnormal entry count found on day 2016-12-17: -9368
WARNING. Abnormal entry count found on day 2016-12-17: -9368
WARNING. Abnormal entry count found on day 2016-12-24: -7692
WARNING. Abnormal entry count found on day 2016-12-24: -7692
Processing turnstile ('A011', 'R080', '01-00-05', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16256
WARNING. Abnormal entry count found on day 2016-12-03: -16256
WARNING. Abnormal entry count found on day 2016-12-10: -14447
WARNING. Abnormal entry count found on day 2016-12-10: -14447
WARNING. Abnormal entry count found on day 2016-12-17: -14397
WARNING. Abnormal entry count found on day 2016-12-17: -14397
WARNING. Abnormal entry count found on day 2016-12-24: -11142
WARNING. Abnormal entry count found on day 2016-12-24: -11142
Processing turnstile ('N333A', 'R141', '00-06-01', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -5333
WARNING. Abnormal entry count found on day 2016-12-03: -5333
WARNING. Abnormal entry count found on day 2016-12-10: -5440
WARNING. Abnormal entry count found on day 2016-12-10: -5440
WARNING. Abnormal entry count found on day 2016-12-17: -5383
WARNING. Abnormal entry count found on day 2016-12-17: -5383
WARNING. Abnormal entry count found on day 2016-12-24: -3687
WARNING. Abnormal entry count found on day 2016-12-24: -3687
Processing turnstile ('R634', 'R069', '00-00-02', 'NEW LOTS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1312
WARNING. Abnormal entry count found on day 2016-12-03: -1312
WARNING. Abnormal entry count found on day 2016-12-10: -3021
WARNING. Abnormal entry count found on day 2016-12-10: -3021
WARNING. Abnormal entry count found on day 2016-12-17: -3159
WARNING. Abnormal entry count found on day 2016-12-17: -3159
WARNING. Abnormal entry count found on day 2016-12-24: -2399
WARNING. Abnormal entry count found on day 2016-12-24: -2399
Processing turnstile ('R405', 'R447', '01-00-02', 'CYPRESS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1182
WARNING. Abnormal entry count found on day 2016-12-03: -1182
WARNING. Abnormal entry count found on day 2016-12-10: -1157
WARNING. Abnormal entry count found on day 2016-12-10: -1157
WARNING. Abnormal entry count found on day 2016-12-17: -1211
WARNING. Abnormal entry count found on day 2016-12-17: -1211
WARNING. Abnormal entry count found on day 2016-12-24: -747
WARNING. Abnormal entry count found on day 2016-12-24: -747
Processing turnstile ('N010', 'R126', '00-05-01', '175 ST')
Processing turnstile ('H017', 'R265', '00-00-01', 'MONTROSE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11827
WARNING. Abnormal entry count found on day 2016-12-03: -11827
WARNING. Abnormal entry count found on day 2016-12-10: -11898
WARNING. Abnormal entry count found on day 2016-12-10: -11898
WARNING. Abnormal entry count found on day 2016-12-17: -10663
WARNING. Abnormal entry count found on day 2016-12-17: -10663
WARNING. Abnormal entry count found on day 2016-12-24: -7581
WARNING. Abnormal entry count found on day 2016-12-24: -7581
Processing turnstile ('N343', 'R019', '00-00-02', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4762
WARNING. Abnormal entry count found on day 2016-12-03: -4762
WARNING. Abnormal entry count found on day 2016-12-10: -4510
WARNING. Abnormal entry count found on day 2016-12-10: -4510
WARNING. Abnormal entry count found on day 2016-12-17: -4495
WARNING. Abnormal entry count found on day 2016-12-17: -4495
WARNING. Abnormal entry count found on day 2016-12-24: -3606
WARNING. Abnormal entry count found on day 2016-12-24: -3606
Processing turnstile ('N305', 'R017', '01-00-03', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -6335
WARNING. Abnormal entry count found on day 2016-12-03: -6335
WARNING. Abnormal entry count found on day 2016-12-10: -6510
WARNING. Abnormal entry count found on day 2016-12-10: -6510
WARNING. Abnormal entry count found on day 2016-12-17: -5469
WARNING. Abnormal entry count found on day 2016-12-17: -5469
WARNING. Abnormal entry count found on day 2016-12-24: -3496
WARNING. Abnormal entry count found on day 2016-12-24: -3496
Processing turnstile ('N034', 'R334', '01-06-01', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -305
WARNING. Abnormal entry count found on day 2016-12-03: -305
WARNING. Abnormal entry count found on day 2016-12-10: -320
WARNING. Abnormal entry count found on day 2016-12-10: -320
WARNING. Abnormal entry count found on day 2016-12-17: -305
WARNING. Abnormal entry count found on day 2016-12-17: -305
WARNING. Abnormal entry count found on day 2016-12-24: -313
WARNING. Abnormal entry count found on day 2016-12-24: -313
Processing turnstile ('N314', 'R238', '01-00-02', 'STEINWAY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6031
WARNING. Abnormal entry count found on day 2016-12-03: -6031
WARNING. Abnormal entry count found on day 2016-12-10: -5976
WARNING. Abnormal entry count found on day 2016-12-10: -5976
WARNING. Abnormal entry count found on day 2016-12-17: -5762
WARNING. Abnormal entry count found on day 2016-12-17: -5762
WARNING. Abnormal entry count found on day 2016-12-24: -4162
WARNING. Abnormal entry count found on day 2016-12-24: -4162
Processing turnstile ('N098', 'R028', '00-00-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8015
WARNING. Abnormal entry count found on day 2016-12-03: -8015
WARNING. Abnormal entry count found on day 2016-12-10: -7770
WARNING. Abnormal entry count found on day 2016-12-10: -7770
WARNING. Abnormal entry count found on day 2016-12-17: -7241
WARNING. Abnormal entry count found on day 2016-12-17: -7241
WARNING. Abnormal entry count found on day 2016-12-24: -5514
WARNING. Abnormal entry count found on day 2016-12-24: -5514
Processing turnstile ('R119', 'R320', '00-00-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7937
WARNING. Abnormal entry count found on day 2016-12-03: -7937
WARNING. Abnormal entry count found on day 2016-12-10: -7706
WARNING. Abnormal entry count found on day 2016-12-10: -7706
WARNING. Abnormal entry count found on day 2016-12-17: -6708
WARNING. Abnormal entry count found on day 2016-12-17: -6708
WARNING. Abnormal entry count found on day 2016-12-24: -4352
WARNING. Abnormal entry count found on day 2016-12-24: -4352
Processing turnstile ('R145', 'R032', '00-06-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12279
WARNING. Abnormal entry count found on day 2016-12-03: -12279
WARNING. Abnormal entry count found on day 2016-12-10: -12958
WARNING. Abnormal entry count found on day 2016-12-10: -12958
WARNING. Abnormal entry count found on day 2016-12-17: -12154
WARNING. Abnormal entry count found on day 2016-12-17: -12154
WARNING. Abnormal entry count found on day 2016-12-24: -7222
WARNING. Abnormal entry count found on day 2016-12-24: -7222
Processing turnstile ('JFK01', 'R535', '00-00-03', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -594
WARNING. Abnormal entry count found on day 2016-12-03: -594
WARNING. Abnormal entry count found on day 2016-12-10: -546
WARNING. Abnormal entry count found on day 2016-12-10: -546
WARNING. Abnormal entry count found on day 2016-12-17: -2307
WARNING. Abnormal entry count found on day 2016-12-17: -2307
WARNING. Abnormal entry count found on day 2016-12-24: -559
WARNING. Abnormal entry count found on day 2016-12-24: -559
Processing turnstile ('N206', 'R104', '01-06-01', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11211
WARNING. Abnormal entry count found on day 2016-12-03: -11211
WARNING. Abnormal entry count found on day 2016-12-10: -11069
WARNING. Abnormal entry count found on day 2016-12-10: -11069
WARNING. Abnormal entry count found on day 2016-12-17: -10743
WARNING. Abnormal entry count found on day 2016-12-17: -10743
WARNING. Abnormal entry count found on day 2016-12-24: -8711
WARNING. Abnormal entry count found on day 2016-12-24: -8711
Processing turnstile ('N521', 'R300', '01-06-02', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -704
WARNING. Abnormal entry count found on day 2016-12-03: -704
WARNING. Abnormal entry count found on day 2016-12-10: -677
WARNING. Abnormal entry count found on day 2016-12-10: -677
WARNING. Abnormal entry count found on day 2016-12-17: -714
WARNING. Abnormal entry count found on day 2016-12-17: -714
WARNING. Abnormal entry count found on day 2016-12-24: -493
WARNING. Abnormal entry count found on day 2016-12-24: -493
Processing turnstile ('R283', 'R221', '00-00-01', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11779
WARNING. Abnormal entry count found on day 2016-12-03: -11779
WARNING. Abnormal entry count found on day 2016-12-10: -11177
WARNING. Abnormal entry count found on day 2016-12-10: -11177
WARNING. Abnormal entry count found on day 2016-12-17: -11350
WARNING. Abnormal entry count found on day 2016-12-17: -11350
WARNING. Abnormal entry count found on day 2016-12-24: -7274
WARNING. Abnormal entry count found on day 2016-12-24: -7274
Processing turnstile ('R287', 'R244', '00-00-01', 'BURNSIDE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -18636
WARNING. Abnormal entry count found on day 2016-12-03: -18636
WARNING. Abnormal entry count found on day 2016-12-10: -18334
WARNING. Abnormal entry count found on day 2016-12-10: -18334
WARNING. Abnormal entry count found on day 2016-12-17: -22574
WARNING. Abnormal entry count found on day 2016-12-17: -22574
WARNING. Abnormal entry count found on day 2016-12-24: -16042
WARNING. Abnormal entry count found on day 2016-12-24: -16042
Processing turnstile ('R227', 'R131', '00-00-03', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8813
WARNING. Abnormal entry count found on day 2016-12-03: -8813
WARNING. Abnormal entry count found on day 2016-12-10: -9048
WARNING. Abnormal entry count found on day 2016-12-10: -9048
WARNING. Abnormal entry count found on day 2016-12-17: -6881
WARNING. Abnormal entry count found on day 2016-12-17: -6881
WARNING. Abnormal entry count found on day 2016-12-24: -3719
WARNING. Abnormal entry count found on day 2016-12-24: -3719
Processing turnstile ('R132', 'R190', '01-00-03', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8243
WARNING. Abnormal entry count found on day 2016-12-03: -8243
WARNING. Abnormal entry count found on day 2016-12-10: -8112
WARNING. Abnormal entry count found on day 2016-12-10: -8112
WARNING. Abnormal entry count found on day 2016-12-17: -6498
WARNING. Abnormal entry count found on day 2016-12-17: -6498
WARNING. Abnormal entry count found on day 2016-12-24: -4390
WARNING. Abnormal entry count found on day 2016-12-24: -4390
Processing turnstile ('H027', 'R137', '01-00-00', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -8134
WARNING. Abnormal entry count found on day 2016-12-03: -8134
WARNING. Abnormal entry count found on day 2016-12-10: -8238
WARNING. Abnormal entry count found on day 2016-12-10: -8238
WARNING. Abnormal entry count found on day 2016-12-17: -8160
WARNING. Abnormal entry count found on day 2016-12-17: -8160
WARNING. Abnormal entry count found on day 2016-12-24: -6273
WARNING. Abnormal entry count found on day 2016-12-24: -6273
Processing turnstile ('R168A', 'R168', '00-03-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19130
WARNING. Abnormal entry count found on day 2016-12-03: -19130
WARNING. Abnormal entry count found on day 2016-12-10: -12771
WARNING. Abnormal entry count found on day 2016-12-10: -12771
WARNING. Abnormal entry count found on day 2016-12-17: -11228
WARNING. Abnormal entry count found on day 2016-12-17: -11228
WARNING. Abnormal entry count found on day 2016-12-24: -8245
WARNING. Abnormal entry count found on day 2016-12-24: -8245
Processing turnstile ('R610', 'R057', '00-03-02', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -8576
WARNING. Abnormal entry count found on day 2016-12-03: -8576
WARNING. Abnormal entry count found on day 2016-12-10: -9073
WARNING. Abnormal entry count found on day 2016-12-10: -9073
WARNING. Abnormal entry count found on day 2016-12-17: -8987
WARNING. Abnormal entry count found on day 2016-12-17: -8987
WARNING. Abnormal entry count found on day 2016-12-24: -6377
WARNING. Abnormal entry count found on day 2016-12-24: -6377
Processing turnstile ('J005', 'R353', '00-06-00', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7735
WARNING. Abnormal entry count found on day 2016-12-03: -7735
WARNING. Abnormal entry count found on day 2016-12-10: -6676
WARNING. Abnormal entry count found on day 2016-12-10: -6676
WARNING. Abnormal entry count found on day 2016-12-17: -7424
WARNING. Abnormal entry count found on day 2016-12-17: -7424
WARNING. Abnormal entry count found on day 2016-12-24: -5658
WARNING. Abnormal entry count found on day 2016-12-24: -5658
Processing turnstile ('N312', 'R339', '00-00-01', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2152
WARNING. Abnormal entry count found on day 2016-12-03: -2152
WARNING. Abnormal entry count found on day 2016-12-10: -2643
WARNING. Abnormal entry count found on day 2016-12-10: -2643
WARNING. Abnormal entry count found on day 2016-12-17: -2550
WARNING. Abnormal entry count found on day 2016-12-17: -2550
WARNING. Abnormal entry count found on day 2016-12-24: -2008
WARNING. Abnormal entry count found on day 2016-12-24: -2008
Processing turnstile ('R293', 'R133', '00-00-01', 'MOSHOLU PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -4740
WARNING. Abnormal entry count found on day 2016-12-03: -4740
WARNING. Abnormal entry count found on day 2016-12-10: -4817
WARNING. Abnormal entry count found on day 2016-12-10: -4817
WARNING. Abnormal entry count found on day 2016-12-17: -4605
WARNING. Abnormal entry count found on day 2016-12-17: -4605
WARNING. Abnormal entry count found on day 2016-12-24: -3419
WARNING. Abnormal entry count found on day 2016-12-24: -3419
Processing turnstile ('N193', 'R337', '00-00-01', 'BEACH 44 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1235
WARNING. Abnormal entry count found on day 2016-12-03: -1235
WARNING. Abnormal entry count found on day 2016-12-10: -1158
WARNING. Abnormal entry count found on day 2016-12-10: -1158
WARNING. Abnormal entry count found on day 2016-12-17: -1157
WARNING. Abnormal entry count found on day 2016-12-17: -1157
WARNING. Abnormal entry count found on day 2016-12-24: -966
WARNING. Abnormal entry count found on day 2016-12-24: -966
Processing turnstile ('N601A', 'R319', '01-03-00', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-24: -143
WARNING. Abnormal entry count found on day 2016-12-24: -143
Processing turnstile ('H041', 'R152', '00-00-03', 'CANARSIE-ROCKAW')
WARNING. Abnormal entry count found on day 2016-12-03: -14065
WARNING. Abnormal entry count found on day 2016-12-03: -14065
WARNING. Abnormal entry count found on day 2016-12-10: -13457
WARNING. Abnormal entry count found on day 2016-12-10: -13457
WARNING. Abnormal entry count found on day 2016-12-17: -13113
WARNING. Abnormal entry count found on day 2016-12-17: -13113
WARNING. Abnormal entry count found on day 2016-12-24: -10489
WARNING. Abnormal entry count found on day 2016-12-24: -10489
Processing turnstile ('R145', 'R032', '00-06-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9551
WARNING. Abnormal entry count found on day 2016-12-03: -9551
WARNING. Abnormal entry count found on day 2016-12-10: -8585
WARNING. Abnormal entry count found on day 2016-12-10: -8585
WARNING. Abnormal entry count found on day 2016-12-17: -6419
WARNING. Abnormal entry count found on day 2016-12-17: -6419
WARNING. Abnormal entry count found on day 2016-12-24: -5887
WARNING. Abnormal entry count found on day 2016-12-24: -5887
Processing turnstile ('N336', 'R158', '00-00-02', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -7413
WARNING. Abnormal entry count found on day 2016-12-03: -7413
WARNING. Abnormal entry count found on day 2016-12-10: -7118
WARNING. Abnormal entry count found on day 2016-12-10: -7118
WARNING. Abnormal entry count found on day 2016-12-17: -6964
WARNING. Abnormal entry count found on day 2016-12-17: -6964
WARNING. Abnormal entry count found on day 2016-12-24: -5492
WARNING. Abnormal entry count found on day 2016-12-24: -5492
Processing turnstile ('K025', 'R404', '00-03-00', 'FRESH POND RD')
WARNING. Abnormal entry count found on day 2016-12-03: -7774
WARNING. Abnormal entry count found on day 2016-12-03: -7774
WARNING. Abnormal entry count found on day 2016-12-10: -7003
WARNING. Abnormal entry count found on day 2016-12-10: -7003
WARNING. Abnormal entry count found on day 2016-12-17: -6953
WARNING. Abnormal entry count found on day 2016-12-17: -6953
WARNING. Abnormal entry count found on day 2016-12-24: -5218
WARNING. Abnormal entry count found on day 2016-12-24: -5218
Processing turnstile ('J034', 'R007', '00-00-03', '104 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4781
WARNING. Abnormal entry count found on day 2016-12-03: -4781
WARNING. Abnormal entry count found on day 2016-12-10: -4757
WARNING. Abnormal entry count found on day 2016-12-10: -4757
WARNING. Abnormal entry count found on day 2016-12-17: -4652
WARNING. Abnormal entry count found on day 2016-12-17: -4652
WARNING. Abnormal entry count found on day 2016-12-24: -3720
WARNING. Abnormal entry count found on day 2016-12-24: -3720
Processing turnstile ('B020', 'R263', '00-05-00', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -1832
WARNING. Abnormal entry count found on day 2016-12-03: -1832
WARNING. Abnormal entry count found on day 2016-12-10: -1580
WARNING. Abnormal entry count found on day 2016-12-10: -1580
WARNING. Abnormal entry count found on day 2016-12-17: -1450
WARNING. Abnormal entry count found on day 2016-12-17: -1450
WARNING. Abnormal entry count found on day 2016-12-24: -861
WARNING. Abnormal entry count found on day 2016-12-24: -861
Processing turnstile ('PTH04', 'R551', '00-00-00', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -774
WARNING. Abnormal entry count found on day 2016-12-03: -774
WARNING. Abnormal entry count found on day 2016-12-10: -883
WARNING. Abnormal entry count found on day 2016-12-10: -883
WARNING. Abnormal entry count found on day 2016-12-17: -871
WARNING. Abnormal entry count found on day 2016-12-17: -871
WARNING. Abnormal entry count found on day 2016-12-24: -732
WARNING. Abnormal entry count found on day 2016-12-24: -732
Processing turnstile ('A084', 'R125', '01-00-00', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3928
WARNING. Abnormal entry count found on day 2016-12-03: -3928
WARNING. Abnormal entry count found on day 2016-12-10: -4152
WARNING. Abnormal entry count found on day 2016-12-10: -4152
WARNING. Abnormal entry count found on day 2016-12-17: -3494
WARNING. Abnormal entry count found on day 2016-12-17: -3494
WARNING. Abnormal entry count found on day 2016-12-24: -2897
WARNING. Abnormal entry count found on day 2016-12-24: -2897
Processing turnstile ('N049', 'R084', '01-03-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -10171
WARNING. Abnormal entry count found on day 2016-12-03: -10171
WARNING. Abnormal entry count found on day 2016-12-10: -9831
WARNING. Abnormal entry count found on day 2016-12-10: -9831
WARNING. Abnormal entry count found on day 2016-12-17: -9487
WARNING. Abnormal entry count found on day 2016-12-17: -9487
WARNING. Abnormal entry count found on day 2016-12-24: -6699
WARNING. Abnormal entry count found on day 2016-12-24: -6699
Processing turnstile ('N213', 'R154', '00-00-01', 'TREMONT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5245
WARNING. Abnormal entry count found on day 2016-12-03: -5245
WARNING. Abnormal entry count found on day 2016-12-10: -5202
WARNING. Abnormal entry count found on day 2016-12-10: -5202
WARNING. Abnormal entry count found on day 2016-12-17: -5259
WARNING. Abnormal entry count found on day 2016-12-17: -5259
WARNING. Abnormal entry count found on day 2016-12-24: -4091
WARNING. Abnormal entry count found on day 2016-12-24: -4091
Processing turnstile ('S101', 'R070', '00-00-06', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -1717
WARNING. Abnormal entry count found on day 2016-12-03: -1717
WARNING. Abnormal entry count found on day 2016-12-10: -1703
WARNING. Abnormal entry count found on day 2016-12-10: -1703
WARNING. Abnormal entry count found on day 2016-12-17: -1614
WARNING. Abnormal entry count found on day 2016-12-17: -1614
WARNING. Abnormal entry count found on day 2016-12-24: -912
WARNING. Abnormal entry count found on day 2016-12-24: -912
Processing turnstile ('PTH13', 'R541', '00-00-03', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -478
WARNING. Abnormal entry count found on day 2016-12-03: -478
WARNING. Abnormal entry count found on day 2016-12-10: -371
WARNING. Abnormal entry count found on day 2016-12-10: -371
WARNING. Abnormal entry count found on day 2016-12-17: -243
WARNING. Abnormal entry count found on day 2016-12-17: -243
WARNING. Abnormal entry count found on day 2016-12-24: -106
WARNING. Abnormal entry count found on day 2016-12-24: -106
Processing turnstile ('N309A', 'R140', '00-00-04', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -1725
WARNING. Abnormal entry count found on day 2016-12-03: -1725
WARNING. Abnormal entry count found on day 2016-12-10: -1574
WARNING. Abnormal entry count found on day 2016-12-10: -1574
WARNING. Abnormal entry count found on day 2016-12-17: -1463
WARNING. Abnormal entry count found on day 2016-12-17: -1463
WARNING. Abnormal entry count found on day 2016-12-24: -1051
WARNING. Abnormal entry count found on day 2016-12-24: -1051
Processing turnstile ('J031', 'R006', '00-00-01', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3254
WARNING. Abnormal entry count found on day 2016-12-03: -3254
WARNING. Abnormal entry count found on day 2016-12-10: -3229
WARNING. Abnormal entry count found on day 2016-12-10: -3229
WARNING. Abnormal entry count found on day 2016-12-17: -3211
WARNING. Abnormal entry count found on day 2016-12-17: -3211
WARNING. Abnormal entry count found on day 2016-12-24: -2512
WARNING. Abnormal entry count found on day 2016-12-24: -2512
Processing turnstile ('H038', 'R350', '00-06-01', 'LIVONIA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2793
WARNING. Abnormal entry count found on day 2016-12-03: -2793
WARNING. Abnormal entry count found on day 2016-12-10: -2685
WARNING. Abnormal entry count found on day 2016-12-10: -2685
WARNING. Abnormal entry count found on day 2016-12-17: -2548
WARNING. Abnormal entry count found on day 2016-12-17: -2548
WARNING. Abnormal entry count found on day 2016-12-24: -1850
WARNING. Abnormal entry count found on day 2016-12-24: -1850
Processing turnstile ('A034', 'R170', '03-00-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -15583
WARNING. Abnormal entry count found on day 2016-12-03: -15583
WARNING. Abnormal entry count found on day 2016-12-10: -16114
WARNING. Abnormal entry count found on day 2016-12-10: -16114
WARNING. Abnormal entry count found on day 2016-12-17: -16519
WARNING. Abnormal entry count found on day 2016-12-17: -16519
WARNING. Abnormal entry count found on day 2016-12-24: -8527
WARNING. Abnormal entry count found on day 2016-12-24: -8527
Processing turnstile ('R511', 'R091', '00-00-01', '36 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10497
WARNING. Abnormal entry count found on day 2016-12-03: -10497
WARNING. Abnormal entry count found on day 2016-12-10: -10080
WARNING. Abnormal entry count found on day 2016-12-10: -10080
WARNING. Abnormal entry count found on day 2016-12-17: -9503
WARNING. Abnormal entry count found on day 2016-12-17: -9503
WARNING. Abnormal entry count found on day 2016-12-24: -7045
WARNING. Abnormal entry count found on day 2016-12-24: -7045
Processing turnstile ('R175', 'R169', '01-00-02', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -3652
WARNING. Abnormal entry count found on day 2016-12-03: -3652
WARNING. Abnormal entry count found on day 2016-12-10: -3870
WARNING. Abnormal entry count found on day 2016-12-10: -3870
WARNING. Abnormal entry count found on day 2016-12-17: -2679
WARNING. Abnormal entry count found on day 2016-12-17: -2679
WARNING. Abnormal entry count found on day 2016-12-24: -2254
WARNING. Abnormal entry count found on day 2016-12-24: -2254
Processing turnstile ('R550', 'R072', '00-00-00', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -116
WARNING. Abnormal entry count found on day 2016-12-03: -116
WARNING. Abnormal entry count found on day 2016-12-10: -129
WARNING. Abnormal entry count found on day 2016-12-10: -129
WARNING. Abnormal entry count found on day 2016-12-17: -146
WARNING. Abnormal entry count found on day 2016-12-17: -146
WARNING. Abnormal entry count found on day 2016-12-24: -193
WARNING. Abnormal entry count found on day 2016-12-24: -193
Processing turnstile ('R160A', 'R164', '00-06-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -2090
WARNING. Abnormal entry count found on day 2016-12-03: -2090
WARNING. Abnormal entry count found on day 2016-12-10: -2540
WARNING. Abnormal entry count found on day 2016-12-10: -2540
WARNING. Abnormal entry count found on day 2016-12-17: -2058
WARNING. Abnormal entry count found on day 2016-12-17: -2058
WARNING. Abnormal entry count found on day 2016-12-24: -1163
WARNING. Abnormal entry count found on day 2016-12-24: -1163
Processing turnstile ('R141', 'R031', '00-03-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11754
WARNING. Abnormal entry count found on day 2016-12-03: -11754
WARNING. Abnormal entry count found on day 2016-12-10: -12389
WARNING. Abnormal entry count found on day 2016-12-10: -12389
WARNING. Abnormal entry count found on day 2016-12-17: -14687
WARNING. Abnormal entry count found on day 2016-12-17: -14687
WARNING. Abnormal entry count found on day 2016-12-24: -11881
WARNING. Abnormal entry count found on day 2016-12-24: -11881
Processing turnstile ('N062', 'R011', '01-00-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -10893
WARNING. Abnormal entry count found on day 2016-12-03: -10893
WARNING. Abnormal entry count found on day 2016-12-10: -11851
WARNING. Abnormal entry count found on day 2016-12-10: -11851
WARNING. Abnormal entry count found on day 2016-12-17: -10754
WARNING. Abnormal entry count found on day 2016-12-17: -10754
WARNING. Abnormal entry count found on day 2016-12-24: -8016
WARNING. Abnormal entry count found on day 2016-12-24: -8016
Processing turnstile ('R126', 'R189', '01-00-00', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2298
WARNING. Abnormal entry count found on day 2016-12-03: -2298
WARNING. Abnormal entry count found on day 2016-12-10: -2472
WARNING. Abnormal entry count found on day 2016-12-10: -2472
WARNING. Abnormal entry count found on day 2016-12-17: -2046
WARNING. Abnormal entry count found on day 2016-12-17: -2046
WARNING. Abnormal entry count found on day 2016-12-24: -1734
WARNING. Abnormal entry count found on day 2016-12-24: -1734
Processing turnstile ('A061', 'R142', '00-00-00', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -17318
WARNING. Abnormal entry count found on day 2016-12-03: -17318
WARNING. Abnormal entry count found on day 2016-12-10: -16926
WARNING. Abnormal entry count found on day 2016-12-10: -16926
WARNING. Abnormal entry count found on day 2016-12-17: -15972
WARNING. Abnormal entry count found on day 2016-12-17: -15972
WARNING. Abnormal entry count found on day 2016-12-24: -11612
WARNING. Abnormal entry count found on day 2016-12-24: -11612
Processing turnstile ('J031', 'R006', '00-00-02', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -4033
WARNING. Abnormal entry count found on day 2016-12-03: -4033
WARNING. Abnormal entry count found on day 2016-12-10: -3827
WARNING. Abnormal entry count found on day 2016-12-10: -3827
WARNING. Abnormal entry count found on day 2016-12-17: -3902
WARNING. Abnormal entry count found on day 2016-12-17: -3902
WARNING. Abnormal entry count found on day 2016-12-24: -2954
WARNING. Abnormal entry count found on day 2016-12-24: -2954
Processing turnstile ('A046', 'R463', '00-05-01', 'CANAL ST')
Processing turnstile ('R323', 'R387', '00-05-01', 'WEST FARMS SQ')
Processing turnstile ('PTH10', 'R547', '00-00-01', '9TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -9427
WARNING. Abnormal entry count found on day 2016-12-03: -9427
WARNING. Abnormal entry count found on day 2016-12-10: -9455
WARNING. Abnormal entry count found on day 2016-12-10: -9455
WARNING. Abnormal entry count found on day 2016-12-17: -6147
WARNING. Abnormal entry count found on day 2016-12-17: -6147
WARNING. Abnormal entry count found on day 2016-12-24: -6146
WARNING. Abnormal entry count found on day 2016-12-24: -6146
Processing turnstile ('R250', 'R179', '00-00-02', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -31165
WARNING. Abnormal entry count found on day 2016-12-03: -31165
WARNING. Abnormal entry count found on day 2016-12-10: -28040
WARNING. Abnormal entry count found on day 2016-12-10: -28040
WARNING. Abnormal entry count found on day 2016-12-17: -26884
WARNING. Abnormal entry count found on day 2016-12-17: -26884
WARNING. Abnormal entry count found on day 2016-12-24: -19557
WARNING. Abnormal entry count found on day 2016-12-24: -19557
Processing turnstile ('R227', 'R131', '00-00-04', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14268
WARNING. Abnormal entry count found on day 2016-12-03: -14268
WARNING. Abnormal entry count found on day 2016-12-10: -12843
WARNING. Abnormal entry count found on day 2016-12-10: -12843
WARNING. Abnormal entry count found on day 2016-12-17: -11844
WARNING. Abnormal entry count found on day 2016-12-17: -11844
WARNING. Abnormal entry count found on day 2016-12-24: -7006
WARNING. Abnormal entry count found on day 2016-12-24: -7006
Processing turnstile ('N137', 'R354', '00-06-01', '104 ST')
WARNING. Abnormal entry count found on day 2016-12-06: -268
WARNING. Abnormal entry count found on day 2016-12-07: -317
WARNING. Abnormal entry count found on day 2016-12-08: -323
WARNING. Abnormal entry count found on day 2016-12-09: -312
WARNING. Abnormal entry count found on day 2016-12-06: -268
WARNING. Abnormal entry count found on day 2016-12-07: -317
WARNING. Abnormal entry count found on day 2016-12-08: -323
WARNING. Abnormal entry count found on day 2016-12-09: -312
WARNING. Abnormal entry count found on day 2016-12-06: -268
WARNING. Abnormal entry count found on day 2016-12-07: -317
WARNING. Abnormal entry count found on day 2016-12-08: -323
WARNING. Abnormal entry count found on day 2016-12-09: -312
WARNING. Abnormal entry count found on day 2016-12-10: -290
WARNING. Abnormal entry count found on day 2016-12-11: -118
WARNING. Abnormal entry count found on day 2016-12-12: -54
WARNING. Abnormal entry count found on day 2016-12-13: -287
WARNING. Abnormal entry count found on day 2016-12-14: -292
WARNING. Abnormal entry count found on day 2016-12-15: -291
WARNING. Abnormal entry count found on day 2016-12-16: -279
WARNING. Abnormal entry count found on day 2016-12-11: -118
WARNING. Abnormal entry count found on day 2016-12-12: -54
WARNING. Abnormal entry count found on day 2016-12-13: -287
WARNING. Abnormal entry count found on day 2016-12-14: -292
WARNING. Abnormal entry count found on day 2016-12-15: -291
WARNING. Abnormal entry count found on day 2016-12-16: -279
WARNING. Abnormal entry count found on day 2016-12-11: -118
WARNING. Abnormal entry count found on day 2016-12-12: -54
WARNING. Abnormal entry count found on day 2016-12-13: -287
WARNING. Abnormal entry count found on day 2016-12-14: -292
WARNING. Abnormal entry count found on day 2016-12-15: -291
WARNING. Abnormal entry count found on day 2016-12-16: -279
WARNING. Abnormal entry count found on day 2016-12-17: -272
WARNING. Abnormal entry count found on day 2016-12-20: -266
WARNING. Abnormal entry count found on day 2016-12-21: -294
WARNING. Abnormal entry count found on day 2016-12-22: -300
WARNING. Abnormal entry count found on day 2016-12-23: -245
WARNING. Abnormal entry count found on day 2016-12-20: -266
WARNING. Abnormal entry count found on day 2016-12-21: -294
WARNING. Abnormal entry count found on day 2016-12-22: -300
WARNING. Abnormal entry count found on day 2016-12-23: -245
WARNING. Abnormal entry count found on day 2016-12-20: -266
WARNING. Abnormal entry count found on day 2016-12-21: -294
WARNING. Abnormal entry count found on day 2016-12-22: -300
WARNING. Abnormal entry count found on day 2016-12-23: -245
WARNING. Abnormal entry count found on day 2016-12-24: -249
WARNING. Abnormal entry count found on day 2016-12-25: -87
WARNING. Abnormal entry count found on day 2016-12-26: -49
WARNING. Abnormal entry count found on day 2016-12-27: -98
WARNING. Abnormal entry count found on day 2016-12-28: -205
WARNING. Abnormal entry count found on day 2016-12-29: -228
WARNING. Abnormal entry count found on day 2016-12-30: -217
WARNING. Abnormal entry count found on day 2016-12-25: -87
WARNING. Abnormal entry count found on day 2016-12-26: -49
WARNING. Abnormal entry count found on day 2016-12-27: -98
WARNING. Abnormal entry count found on day 2016-12-28: -205
WARNING. Abnormal entry count found on day 2016-12-29: -228
WARNING. Abnormal entry count found on day 2016-12-30: -217
WARNING. Abnormal entry count found on day 2016-12-25: -87
WARNING. Abnormal entry count found on day 2016-12-26: -49
WARNING. Abnormal entry count found on day 2016-12-27: -98
WARNING. Abnormal entry count found on day 2016-12-28: -205
WARNING. Abnormal entry count found on day 2016-12-29: -228
WARNING. Abnormal entry count found on day 2016-12-30: -217
Processing turnstile ('N095A', 'R014', '01-00-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15646
WARNING. Abnormal entry count found on day 2016-12-03: -15646
WARNING. Abnormal entry count found on day 2016-12-10: -15464
WARNING. Abnormal entry count found on day 2016-12-10: -15464
WARNING. Abnormal entry count found on day 2016-12-17: -15054
WARNING. Abnormal entry count found on day 2016-12-17: -15054
WARNING. Abnormal entry count found on day 2016-12-24: -13452
WARNING. Abnormal entry count found on day 2016-12-24: -13452
Processing turnstile ('R310', 'R053', '01-00-04', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9468
WARNING. Abnormal entry count found on day 2016-12-03: -9468
WARNING. Abnormal entry count found on day 2016-12-10: -8666
WARNING. Abnormal entry count found on day 2016-12-10: -8666
WARNING. Abnormal entry count found on day 2016-12-17: -8497
WARNING. Abnormal entry count found on day 2016-12-17: -8497
WARNING. Abnormal entry count found on day 2016-12-24: -6393
WARNING. Abnormal entry count found on day 2016-12-24: -6393
Processing turnstile ('R418', 'R106', '00-03-00', 'CASTLE HILL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8595
WARNING. Abnormal entry count found on day 2016-12-03: -8595
WARNING. Abnormal entry count found on day 2016-12-10: -8641
WARNING. Abnormal entry count found on day 2016-12-10: -8641
WARNING. Abnormal entry count found on day 2016-12-17: -8579
WARNING. Abnormal entry count found on day 2016-12-17: -8579
WARNING. Abnormal entry count found on day 2016-12-24: -6361
WARNING. Abnormal entry count found on day 2016-12-24: -6361
Processing turnstile ('B028', 'R136', '01-00-01', 'SHEEPSHEAD BAY')
WARNING. Abnormal entry count found on day 2016-12-03: -7669
WARNING. Abnormal entry count found on day 2016-12-03: -7669
WARNING. Abnormal entry count found on day 2016-12-10: -7109
WARNING. Abnormal entry count found on day 2016-12-10: -7109
WARNING. Abnormal entry count found on day 2016-12-17: -6809
WARNING. Abnormal entry count found on day 2016-12-17: -6809
WARNING. Abnormal entry count found on day 2016-12-24: -4783
WARNING. Abnormal entry count found on day 2016-12-24: -4783
Processing turnstile ('N311', 'R339', '01-00-00', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1754
WARNING. Abnormal entry count found on day 2016-12-03: -1754
WARNING. Abnormal entry count found on day 2016-12-10: -2369
WARNING. Abnormal entry count found on day 2016-12-10: -2369
WARNING. Abnormal entry count found on day 2016-12-17: -2197
WARNING. Abnormal entry count found on day 2016-12-17: -2197
WARNING. Abnormal entry count found on day 2016-12-24: -1714
WARNING. Abnormal entry count found on day 2016-12-24: -1714
Processing turnstile ('N195', 'R358', '00-00-02', 'BEACH 25 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3874
WARNING. Abnormal entry count found on day 2016-12-03: -3874
WARNING. Abnormal entry count found on day 2016-12-10: -3698
WARNING. Abnormal entry count found on day 2016-12-10: -3698
WARNING. Abnormal entry count found on day 2016-12-17: -3574
WARNING. Abnormal entry count found on day 2016-12-17: -3574
WARNING. Abnormal entry count found on day 2016-12-24: -2353
WARNING. Abnormal entry count found on day 2016-12-24: -2353
Processing turnstile ('E001', 'R368', '00-00-02', '9 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8226
WARNING. Abnormal entry count found on day 2016-12-03: -8226
WARNING. Abnormal entry count found on day 2016-12-10: -7970
WARNING. Abnormal entry count found on day 2016-12-10: -7970
WARNING. Abnormal entry count found on day 2016-12-17: -8160
WARNING. Abnormal entry count found on day 2016-12-17: -8160
WARNING. Abnormal entry count found on day 2016-12-24: -7014
WARNING. Abnormal entry count found on day 2016-12-24: -7014
Processing turnstile ('N602', 'R259', '00-00-00', 'ROOSEVELT ISLND')
WARNING. Abnormal entry count found on day 2016-12-03: -3603
WARNING. Abnormal entry count found on day 2016-12-03: -3603
WARNING. Abnormal entry count found on day 2016-12-10: -3098
WARNING. Abnormal entry count found on day 2016-12-10: -3098
WARNING. Abnormal entry count found on day 2016-12-17: -2999
WARNING. Abnormal entry count found on day 2016-12-17: -2999
WARNING. Abnormal entry count found on day 2016-12-24: -2596
WARNING. Abnormal entry count found on day 2016-12-24: -2596
Processing turnstile ('R637', 'R451', '00-06-00', 'WINTHROP ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3370
WARNING. Abnormal entry count found on day 2016-12-03: -3370
WARNING. Abnormal entry count found on day 2016-12-10: -3172
WARNING. Abnormal entry count found on day 2016-12-10: -3172
WARNING. Abnormal entry count found on day 2016-12-17: -3166
WARNING. Abnormal entry count found on day 2016-12-17: -3166
WARNING. Abnormal entry count found on day 2016-12-24: -2037
WARNING. Abnormal entry count found on day 2016-12-24: -2037
Processing turnstile ('R323', 'R387', '00-06-01', 'WEST FARMS SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -5573
WARNING. Abnormal entry count found on day 2016-12-03: -5573
WARNING. Abnormal entry count found on day 2016-12-10: -5366
WARNING. Abnormal entry count found on day 2016-12-10: -5366
WARNING. Abnormal entry count found on day 2016-12-17: -5316
WARNING. Abnormal entry count found on day 2016-12-17: -5316
WARNING. Abnormal entry count found on day 2016-12-24: -4389
WARNING. Abnormal entry count found on day 2016-12-24: -4389
Processing turnstile ('N533', 'R129', '02-06-02', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4789
WARNING. Abnormal entry count found on day 2016-12-03: -4789
WARNING. Abnormal entry count found on day 2016-12-10: -4759
WARNING. Abnormal entry count found on day 2016-12-10: -4759
WARNING. Abnormal entry count found on day 2016-12-17: -4510
WARNING. Abnormal entry count found on day 2016-12-17: -4510
WARNING. Abnormal entry count found on day 2016-12-24: -2498
WARNING. Abnormal entry count found on day 2016-12-24: -2498
Processing turnstile ('R180', 'R193', '00-00-00', '157 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -21147
WARNING. Abnormal entry count found on day 2016-12-03: -21147
WARNING. Abnormal entry count found on day 2016-12-10: -20110
WARNING. Abnormal entry count found on day 2016-12-10: -20110
WARNING. Abnormal entry count found on day 2016-12-17: -19503
WARNING. Abnormal entry count found on day 2016-12-17: -19503
WARNING. Abnormal entry count found on day 2016-12-24: -15732
WARNING. Abnormal entry count found on day 2016-12-24: -15732
Processing turnstile ('N542', 'R241', '00-00-02', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -1769
WARNING. Abnormal entry count found on day 2016-12-03: -1769
WARNING. Abnormal entry count found on day 2016-12-10: -1821
WARNING. Abnormal entry count found on day 2016-12-10: -1821
WARNING. Abnormal entry count found on day 2016-12-17: -1842
WARNING. Abnormal entry count found on day 2016-12-17: -1842
WARNING. Abnormal entry count found on day 2016-12-24: -1289
WARNING. Abnormal entry count found on day 2016-12-24: -1289
Processing turnstile ('R138', 'R293', '00-03-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -22517
WARNING. Abnormal entry count found on day 2016-12-03: -22517
WARNING. Abnormal entry count found on day 2016-12-10: -23008
WARNING. Abnormal entry count found on day 2016-12-10: -23008
WARNING. Abnormal entry count found on day 2016-12-17: -21083
WARNING. Abnormal entry count found on day 2016-12-17: -21083
WARNING. Abnormal entry count found on day 2016-12-24: -15444
WARNING. Abnormal entry count found on day 2016-12-24: -15444
Processing turnstile ('R413', 'R325', '00-05-00', 'WHITLOCK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
Processing turnstile ('N181', 'R357', '00-06-01', 'AQUEDUCT N.COND')
WARNING. Abnormal entry count found on day 2016-12-03: -336
WARNING. Abnormal entry count found on day 2016-12-03: -336
WARNING. Abnormal entry count found on day 2016-12-10: -313
WARNING. Abnormal entry count found on day 2016-12-10: -313
WARNING. Abnormal entry count found on day 2016-12-17: -302
WARNING. Abnormal entry count found on day 2016-12-17: -302
WARNING. Abnormal entry count found on day 2016-12-24: -319
WARNING. Abnormal entry count found on day 2016-12-24: -319
Processing turnstile ('N103', 'R127', '00-06-01', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -12839
WARNING. Abnormal entry count found on day 2016-12-03: -12839
WARNING. Abnormal entry count found on day 2016-12-10: -13311
WARNING. Abnormal entry count found on day 2016-12-10: -13311
WARNING. Abnormal entry count found on day 2016-12-17: -12961
WARNING. Abnormal entry count found on day 2016-12-17: -12961
WARNING. Abnormal entry count found on day 2016-12-24: -9660
WARNING. Abnormal entry count found on day 2016-12-24: -9660
Processing turnstile ('C020', 'R233', '00-00-01', '53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9795
WARNING. Abnormal entry count found on day 2016-12-03: -9795
WARNING. Abnormal entry count found on day 2016-12-10: -9151
WARNING. Abnormal entry count found on day 2016-12-10: -9151
WARNING. Abnormal entry count found on day 2016-12-17: -9136
WARNING. Abnormal entry count found on day 2016-12-17: -9136
WARNING. Abnormal entry count found on day 2016-12-24: -6669
WARNING. Abnormal entry count found on day 2016-12-24: -6669
Processing turnstile ('N208', 'R443', '01-05-00', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
Processing turnstile ('R142', 'R293', '01-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11728
WARNING. Abnormal entry count found on day 2016-12-03: -11728
WARNING. Abnormal entry count found on day 2016-12-10: -11365
WARNING. Abnormal entry count found on day 2016-12-10: -11365
WARNING. Abnormal entry count found on day 2016-12-17: -10336
WARNING. Abnormal entry count found on day 2016-12-17: -10336
WARNING. Abnormal entry count found on day 2016-12-24: -7966
WARNING. Abnormal entry count found on day 2016-12-24: -7966
Processing turnstile ('R316', 'R407', '00-00-01', 'INTERVALE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4935
WARNING. Abnormal entry count found on day 2016-12-03: -4935
WARNING. Abnormal entry count found on day 2016-12-10: -4666
WARNING. Abnormal entry count found on day 2016-12-10: -4666
WARNING. Abnormal entry count found on day 2016-12-17: -4867
WARNING. Abnormal entry count found on day 2016-12-17: -4867
WARNING. Abnormal entry count found on day 2016-12-24: -3402
WARNING. Abnormal entry count found on day 2016-12-24: -3402
Processing turnstile ('N023', 'R332', '01-00-01', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1924
WARNING. Abnormal entry count found on day 2016-12-03: -1924
WARNING. Abnormal entry count found on day 2016-12-10: -1938
WARNING. Abnormal entry count found on day 2016-12-10: -1938
WARNING. Abnormal entry count found on day 2016-12-17: -1869
WARNING. Abnormal entry count found on day 2016-12-17: -1869
WARNING. Abnormal entry count found on day 2016-12-24: -992
WARNING. Abnormal entry count found on day 2016-12-24: -992
Processing turnstile ('R532', 'R328', '00-06-03', 'METS-WILLETS PT')
Processing turnstile ('N080', 'R138', '00-00-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -11885
WARNING. Abnormal entry count found on day 2016-12-03: -11885
WARNING. Abnormal entry count found on day 2016-12-10: -11756
WARNING. Abnormal entry count found on day 2016-12-10: -11756
WARNING. Abnormal entry count found on day 2016-12-17: -10666
WARNING. Abnormal entry count found on day 2016-12-17: -10666
WARNING. Abnormal entry count found on day 2016-12-24: -7515
WARNING. Abnormal entry count found on day 2016-12-24: -7515
Processing turnstile ('N334B', 'R341', '00-06-01', '75 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5108
WARNING. Abnormal entry count found on day 2016-12-03: -5108
WARNING. Abnormal entry count found on day 2016-12-10: -5066
WARNING. Abnormal entry count found on day 2016-12-10: -5066
WARNING. Abnormal entry count found on day 2016-12-17: -4707
WARNING. Abnormal entry count found on day 2016-12-17: -4707
WARNING. Abnormal entry count found on day 2016-12-24: -3644
WARNING. Abnormal entry count found on day 2016-12-24: -3644
Processing turnstile ('H041', 'R152', '00-06-01', 'CANARSIE-ROCKAW')
WARNING. Abnormal entry count found on day 2016-12-03: -11280
WARNING. Abnormal entry count found on day 2016-12-03: -11280
WARNING. Abnormal entry count found on day 2016-12-10: -10888
WARNING. Abnormal entry count found on day 2016-12-10: -10888
WARNING. Abnormal entry count found on day 2016-12-17: -10400
WARNING. Abnormal entry count found on day 2016-12-17: -10400
WARNING. Abnormal entry count found on day 2016-12-24: -7396
WARNING. Abnormal entry count found on day 2016-12-24: -7396
Processing turnstile ('N095A', 'R014', '01-03-05', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7769
WARNING. Abnormal entry count found on day 2016-12-03: -7769
WARNING. Abnormal entry count found on day 2016-12-10: -7161
WARNING. Abnormal entry count found on day 2016-12-10: -7161
WARNING. Abnormal entry count found on day 2016-12-17: -9075
WARNING. Abnormal entry count found on day 2016-12-17: -9075
WARNING. Abnormal entry count found on day 2016-12-24: -7403
WARNING. Abnormal entry count found on day 2016-12-24: -7403
Processing turnstile ('R210A', 'R044', '03-03-00', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -5575
WARNING. Abnormal entry count found on day 2016-12-03: -5575
WARNING. Abnormal entry count found on day 2016-12-10: -5292
WARNING. Abnormal entry count found on day 2016-12-10: -5292
WARNING. Abnormal entry count found on day 2016-12-17: -4813
WARNING. Abnormal entry count found on day 2016-12-17: -4813
WARNING. Abnormal entry count found on day 2016-12-24: -3044
WARNING. Abnormal entry count found on day 2016-12-24: -3044
Processing turnstile ('N135', 'R385', '01-03-00', 'ROCKAWAY BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -7000
WARNING. Abnormal entry count found on day 2016-12-03: -7000
WARNING. Abnormal entry count found on day 2016-12-10: -4165
WARNING. Abnormal entry count found on day 2016-12-10: -4165
WARNING. Abnormal entry count found on day 2016-12-17: -7175
WARNING. Abnormal entry count found on day 2016-12-17: -7175
WARNING. Abnormal entry count found on day 2016-12-24: -4831
WARNING. Abnormal entry count found on day 2016-12-24: -4831
Processing turnstile ('R200A', 'R041', '01-00-02', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -12719
WARNING. Abnormal entry count found on day 2016-12-03: -12719
WARNING. Abnormal entry count found on day 2016-12-10: -12534
WARNING. Abnormal entry count found on day 2016-12-10: -12534
WARNING. Abnormal entry count found on day 2016-12-17: -11538
WARNING. Abnormal entry count found on day 2016-12-17: -11538
WARNING. Abnormal entry count found on day 2016-12-24: -8949
WARNING. Abnormal entry count found on day 2016-12-24: -8949
Processing turnstile ('N095', 'R014', '00-03-04', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16884
WARNING. Abnormal entry count found on day 2016-12-03: -16884
WARNING. Abnormal entry count found on day 2016-12-10: -16525
WARNING. Abnormal entry count found on day 2016-12-10: -16525
WARNING. Abnormal entry count found on day 2016-12-17: -14821
WARNING. Abnormal entry count found on day 2016-12-17: -14821
WARNING. Abnormal entry count found on day 2016-12-24: -10945
WARNING. Abnormal entry count found on day 2016-12-24: -10945
Processing turnstile ('N120A', 'R153', '01-05-01', 'UTICA AV')
Processing turnstile ('H022', 'R279', '00-00-01', 'JEFFERSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5680
WARNING. Abnormal entry count found on day 2016-12-03: -5680
WARNING. Abnormal entry count found on day 2016-12-10: -6595
WARNING. Abnormal entry count found on day 2016-12-10: -6595
WARNING. Abnormal entry count found on day 2016-12-17: -6514
WARNING. Abnormal entry count found on day 2016-12-17: -6514
WARNING. Abnormal entry count found on day 2016-12-24: -4769
WARNING. Abnormal entry count found on day 2016-12-24: -4769
Processing turnstile ('A031', 'R083', '00-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12160
WARNING. Abnormal entry count found on day 2016-12-03: -12160
WARNING. Abnormal entry count found on day 2016-12-10: -11713
WARNING. Abnormal entry count found on day 2016-12-10: -11713
WARNING. Abnormal entry count found on day 2016-12-17: -10100
WARNING. Abnormal entry count found on day 2016-12-17: -10100
WARNING. Abnormal entry count found on day 2016-12-24: -7113
WARNING. Abnormal entry count found on day 2016-12-24: -7113
Processing turnstile ('N519A', 'R461', '01-01-01', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -2547
WARNING. Abnormal entry count found on day 2016-12-03: -2547
WARNING. Abnormal entry count found on day 2016-12-10: -2771
WARNING. Abnormal entry count found on day 2016-12-10: -2771
WARNING. Abnormal entry count found on day 2016-12-17: -3401
WARNING. Abnormal entry count found on day 2016-12-17: -3401
WARNING. Abnormal entry count found on day 2016-12-24: -3182
WARNING. Abnormal entry count found on day 2016-12-24: -3182
Processing turnstile ('R327', 'R361', '01-05-01', 'PELHAM PKWY')
Processing turnstile ('R416', 'R245', '00-00-01', 'ST LAWRENCE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4514
WARNING. Abnormal entry count found on day 2016-12-03: -4514
WARNING. Abnormal entry count found on day 2016-12-10: -4345
WARNING. Abnormal entry count found on day 2016-12-10: -4345
WARNING. Abnormal entry count found on day 2016-12-17: -4473
WARNING. Abnormal entry count found on day 2016-12-17: -4473
WARNING. Abnormal entry count found on day 2016-12-24: -3698
WARNING. Abnormal entry count found on day 2016-12-24: -3698
Processing turnstile ('R170', 'R191', '00-00-00', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18994
WARNING. Abnormal entry count found on day 2016-12-03: -18994
WARNING. Abnormal entry count found on day 2016-12-10: -18772
WARNING. Abnormal entry count found on day 2016-12-10: -18772
WARNING. Abnormal entry count found on day 2016-12-17: -17609
WARNING. Abnormal entry count found on day 2016-12-17: -17609
WARNING. Abnormal entry count found on day 2016-12-24: -13695
WARNING. Abnormal entry count found on day 2016-12-24: -13695
Processing turnstile ('R232A', 'R176', '03-06-01', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11683
WARNING. Abnormal entry count found on day 2016-12-03: -11683
WARNING. Abnormal entry count found on day 2016-12-10: -11716
WARNING. Abnormal entry count found on day 2016-12-10: -11716
WARNING. Abnormal entry count found on day 2016-12-17: -9853
WARNING. Abnormal entry count found on day 2016-12-17: -9853
WARNING. Abnormal entry count found on day 2016-12-24: -6945
WARNING. Abnormal entry count found on day 2016-12-24: -6945
Processing turnstile ('N181A', 'R464', '00-06-00', 'AQUEDUCT RACETR')
WARNING. Abnormal entry count found on day 2016-12-03: -2662
WARNING. Abnormal entry count found on day 2016-12-03: -2662
WARNING. Abnormal entry count found on day 2016-12-10: -1760
WARNING. Abnormal entry count found on day 2016-12-10: -1760
WARNING. Abnormal entry count found on day 2016-12-17: -1910
WARNING. Abnormal entry count found on day 2016-12-17: -1910
WARNING. Abnormal entry count found on day 2016-12-24: -2270
WARNING. Abnormal entry count found on day 2016-12-24: -2270
Processing turnstile ('JFK02', 'R535', '01-00-03', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -1112
WARNING. Abnormal entry count found on day 2016-12-03: -1112
WARNING. Abnormal entry count found on day 2016-12-10: -1002
WARNING. Abnormal entry count found on day 2016-12-10: -1002
WARNING. Abnormal entry count found on day 2016-12-17: -1276
WARNING. Abnormal entry count found on day 2016-12-17: -1276
WARNING. Abnormal entry count found on day 2016-12-24: -1655
WARNING. Abnormal entry count found on day 2016-12-24: -1655
Processing turnstile ('R550', 'R072', '00-00-02', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -119
WARNING. Abnormal entry count found on day 2016-12-03: -119
WARNING. Abnormal entry count found on day 2016-12-10: -94
WARNING. Abnormal entry count found on day 2016-12-10: -94
WARNING. Abnormal entry count found on day 2016-12-17: -91
WARNING. Abnormal entry count found on day 2016-12-17: -91
WARNING. Abnormal entry count found on day 2016-12-24: -168
WARNING. Abnormal entry count found on day 2016-12-24: -168
Processing turnstile ('N049', 'R084', '01-05-01', '59 ST COLUMBUS')
Processing turnstile ('C008', 'R099', '00-06-02', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14711
WARNING. Abnormal entry count found on day 2016-12-03: -14711
WARNING. Abnormal entry count found on day 2016-12-10: -14486
WARNING. Abnormal entry count found on day 2016-12-10: -14486
WARNING. Abnormal entry count found on day 2016-12-17: -13607
WARNING. Abnormal entry count found on day 2016-12-17: -13607
WARNING. Abnormal entry count found on day 2016-12-24: -8869
WARNING. Abnormal entry count found on day 2016-12-24: -8869
Processing turnstile ('A046', 'R463', '00-05-03', 'CANAL ST')
Processing turnstile ('N327', 'R254', '00-05-01', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -5060
WARNING. Abnormal entry count found on day 2016-12-03: -5060
WARNING. Abnormal entry count found on day 2016-12-10: -4867
WARNING. Abnormal entry count found on day 2016-12-10: -4867
WARNING. Abnormal entry count found on day 2016-12-17: -5309
WARNING. Abnormal entry count found on day 2016-12-17: -5309
WARNING. Abnormal entry count found on day 2016-12-24: -3502
WARNING. Abnormal entry count found on day 2016-12-24: -3502
Processing turnstile ('N089', 'R139', '00-04-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6633
WARNING. Abnormal entry count found on day 2016-12-03: -6633
WARNING. Abnormal entry count found on day 2016-12-10: -6803
WARNING. Abnormal entry count found on day 2016-12-10: -6803
WARNING. Abnormal entry count found on day 2016-12-17: -5815
WARNING. Abnormal entry count found on day 2016-12-17: -5815
WARNING. Abnormal entry count found on day 2016-12-24: -4145
WARNING. Abnormal entry count found on day 2016-12-24: -4145
Processing turnstile ('R249', 'R179', '01-00-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8321
WARNING. Abnormal entry count found on day 2016-12-03: -8321
WARNING. Abnormal entry count found on day 2016-12-10: -8175
WARNING. Abnormal entry count found on day 2016-12-10: -8175
WARNING. Abnormal entry count found on day 2016-12-17: -8560
WARNING. Abnormal entry count found on day 2016-12-17: -8560
WARNING. Abnormal entry count found on day 2016-12-24: -6704
WARNING. Abnormal entry count found on day 2016-12-24: -6704
Processing turnstile ('H009', 'R235', '00-03-01', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7123
WARNING. Abnormal entry count found on day 2016-12-03: -7123
WARNING. Abnormal entry count found on day 2016-12-10: -7516
WARNING. Abnormal entry count found on day 2016-12-10: -7516
WARNING. Abnormal entry count found on day 2016-12-17: -7179
WARNING. Abnormal entry count found on day 2016-12-17: -7179
WARNING. Abnormal entry count found on day 2016-12-24: -5628
WARNING. Abnormal entry count found on day 2016-12-24: -5628
Processing turnstile ('R635', 'R277', '00-00-02', 'PRESIDENT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11975
WARNING. Abnormal entry count found on day 2016-12-03: -11975
WARNING. Abnormal entry count found on day 2016-12-10: -11635
WARNING. Abnormal entry count found on day 2016-12-10: -11635
WARNING. Abnormal entry count found on day 2016-12-17: -10238
WARNING. Abnormal entry count found on day 2016-12-17: -10238
WARNING. Abnormal entry count found on day 2016-12-24: -6005
WARNING. Abnormal entry count found on day 2016-12-24: -6005
Processing turnstile ('R163', 'R166', '01-00-01', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9169
WARNING. Abnormal entry count found on day 2016-12-03: -9169
WARNING. Abnormal entry count found on day 2016-12-10: -9234
WARNING. Abnormal entry count found on day 2016-12-10: -9234
WARNING. Abnormal entry count found on day 2016-12-17: -9013
WARNING. Abnormal entry count found on day 2016-12-17: -9013
WARNING. Abnormal entry count found on day 2016-12-24: -6371
WARNING. Abnormal entry count found on day 2016-12-24: -6371
Processing turnstile ('PTH17', 'R541', '01-01-01', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9171
WARNING. Abnormal entry count found on day 2016-12-03: -9171
WARNING. Abnormal entry count found on day 2016-12-10: -9408
WARNING. Abnormal entry count found on day 2016-12-10: -9408
WARNING. Abnormal entry count found on day 2016-12-17: -9056
WARNING. Abnormal entry count found on day 2016-12-17: -9056
WARNING. Abnormal entry count found on day 2016-12-24: -8717
WARNING. Abnormal entry count found on day 2016-12-24: -8717
Processing turnstile ('N121B', 'R438', '00-00-02', 'RALPH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7443
WARNING. Abnormal entry count found on day 2016-12-03: -7443
WARNING. Abnormal entry count found on day 2016-12-10: -7434
WARNING. Abnormal entry count found on day 2016-12-10: -7434
WARNING. Abnormal entry count found on day 2016-12-17: -7065
WARNING. Abnormal entry count found on day 2016-12-17: -7065
WARNING. Abnormal entry count found on day 2016-12-24: -5638
WARNING. Abnormal entry count found on day 2016-12-24: -5638
Processing turnstile ('R519', 'R223', '00-03-00', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11758
WARNING. Abnormal entry count found on day 2016-12-03: -11758
WARNING. Abnormal entry count found on day 2016-12-10: -12313
WARNING. Abnormal entry count found on day 2016-12-10: -12313
WARNING. Abnormal entry count found on day 2016-12-17: -11903
WARNING. Abnormal entry count found on day 2016-12-17: -11903
WARNING. Abnormal entry count found on day 2016-12-24: -9095
WARNING. Abnormal entry count found on day 2016-12-24: -9095
Processing turnstile ('R135', 'R031', '01-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -14302
WARNING. Abnormal entry count found on day 2016-12-03: -14302
WARNING. Abnormal entry count found on day 2016-12-10: -14569
WARNING. Abnormal entry count found on day 2016-12-10: -14569
WARNING. Abnormal entry count found on day 2016-12-17: -12569
WARNING. Abnormal entry count found on day 2016-12-17: -12569
WARNING. Abnormal entry count found on day 2016-12-24: -8234
WARNING. Abnormal entry count found on day 2016-12-24: -8234
Processing turnstile ('R507', 'R134', '00-03-00', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1256
WARNING. Abnormal entry count found on day 2016-12-03: -1256
WARNING. Abnormal entry count found on day 2016-12-10: -1356
WARNING. Abnormal entry count found on day 2016-12-10: -1356
WARNING. Abnormal entry count found on day 2016-12-17: -1258
WARNING. Abnormal entry count found on day 2016-12-17: -1258
WARNING. Abnormal entry count found on day 2016-12-24: -766
WARNING. Abnormal entry count found on day 2016-12-24: -766
Processing turnstile ('R289', 'R119', '00-00-01', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -11520
WARNING. Abnormal entry count found on day 2016-12-03: -11520
WARNING. Abnormal entry count found on day 2016-12-10: -10649
WARNING. Abnormal entry count found on day 2016-12-10: -10649
WARNING. Abnormal entry count found on day 2016-12-17: -10696
WARNING. Abnormal entry count found on day 2016-12-17: -10696
WARNING. Abnormal entry count found on day 2016-12-24: -8273
WARNING. Abnormal entry count found on day 2016-12-24: -8273
Processing turnstile ('N601', 'R319', '00-03-01', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-03: -2978
WARNING. Abnormal entry count found on day 2016-12-03: -2978
WARNING. Abnormal entry count found on day 2016-12-10: -3607
WARNING. Abnormal entry count found on day 2016-12-10: -3607
WARNING. Abnormal entry count found on day 2016-12-17: -3240
WARNING. Abnormal entry count found on day 2016-12-17: -3240
WARNING. Abnormal entry count found on day 2016-12-24: -2443
WARNING. Abnormal entry count found on day 2016-12-24: -2443
Processing turnstile ('R238A', 'R046', '02-00-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7002
WARNING. Abnormal entry count found on day 2016-12-03: -7002
WARNING. Abnormal entry count found on day 2016-12-10: -8010
WARNING. Abnormal entry count found on day 2016-12-10: -8010
WARNING. Abnormal entry count found on day 2016-12-17: -7748
WARNING. Abnormal entry count found on day 2016-12-17: -7748
WARNING. Abnormal entry count found on day 2016-12-24: -7840
WARNING. Abnormal entry count found on day 2016-12-24: -7840
Processing turnstile ('N305', 'R017', '01-00-00', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -3882
WARNING. Abnormal entry count found on day 2016-12-03: -3882
WARNING. Abnormal entry count found on day 2016-12-10: -3778
WARNING. Abnormal entry count found on day 2016-12-10: -3778
WARNING. Abnormal entry count found on day 2016-12-17: -3247
WARNING. Abnormal entry count found on day 2016-12-17: -3247
WARNING. Abnormal entry count found on day 2016-12-24: -2037
WARNING. Abnormal entry count found on day 2016-12-24: -2037
Processing turnstile ('R210', 'R044', '00-05-01', 'BROOKLYN BRIDGE')
Processing turnstile ('N305', 'R017', '01-00-01', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -3687
WARNING. Abnormal entry count found on day 2016-12-03: -3687
WARNING. Abnormal entry count found on day 2016-12-10: -3632
WARNING. Abnormal entry count found on day 2016-12-10: -3632
WARNING. Abnormal entry count found on day 2016-12-17: -3292
WARNING. Abnormal entry count found on day 2016-12-17: -3292
WARNING. Abnormal entry count found on day 2016-12-24: -1799
WARNING. Abnormal entry count found on day 2016-12-24: -1799
Processing turnstile ('R318', 'R408', '00-05-01', 'SIMPSON ST')
Processing turnstile ('N135', 'R385', '01-03-01', 'ROCKAWAY BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -7693
WARNING. Abnormal entry count found on day 2016-12-03: -7693
WARNING. Abnormal entry count found on day 2016-12-10: -8232
WARNING. Abnormal entry count found on day 2016-12-10: -8232
WARNING. Abnormal entry count found on day 2016-12-17: -8239
WARNING. Abnormal entry count found on day 2016-12-17: -8239
WARNING. Abnormal entry count found on day 2016-12-24: -4613
WARNING. Abnormal entry count found on day 2016-12-24: -4613
Processing turnstile ('N103', 'R127', '00-03-01', 'JAY ST-METROTEC')
Processing turnstile ('N112A', 'R284', '01-06-01', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3319
WARNING. Abnormal entry count found on day 2016-12-03: -3319
WARNING. Abnormal entry count found on day 2016-12-10: -4363
WARNING. Abnormal entry count found on day 2016-12-10: -4363
WARNING. Abnormal entry count found on day 2016-12-17: -4076
WARNING. Abnormal entry count found on day 2016-12-17: -4076
WARNING. Abnormal entry count found on day 2016-12-24: -2085
WARNING. Abnormal entry count found on day 2016-12-24: -2085
Processing turnstile ('A030', 'R083', '01-06-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14762
WARNING. Abnormal entry count found on day 2016-12-03: -14762
WARNING. Abnormal entry count found on day 2016-12-10: -14302
WARNING. Abnormal entry count found on day 2016-12-10: -14302
WARNING. Abnormal entry count found on day 2016-12-17: -12796
WARNING. Abnormal entry count found on day 2016-12-17: -12796
WARNING. Abnormal entry count found on day 2016-12-24: -7215
WARNING. Abnormal entry count found on day 2016-12-24: -7215
Processing turnstile ('E009', 'R370', '00-06-00', '71 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10671
WARNING. Abnormal entry count found on day 2016-12-03: -10671
WARNING. Abnormal entry count found on day 2016-12-10: -10565
WARNING. Abnormal entry count found on day 2016-12-10: -10565
WARNING. Abnormal entry count found on day 2016-12-17: -11235
WARNING. Abnormal entry count found on day 2016-12-17: -11235
WARNING. Abnormal entry count found on day 2016-12-24: -9090
WARNING. Abnormal entry count found on day 2016-12-24: -9090
Processing turnstile ('R127', 'R105', '00-06-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20130
WARNING. Abnormal entry count found on day 2016-12-03: -20130
WARNING. Abnormal entry count found on day 2016-12-10: -19446
WARNING. Abnormal entry count found on day 2016-12-10: -19446
WARNING. Abnormal entry count found on day 2016-12-17: -16096
WARNING. Abnormal entry count found on day 2016-12-17: -16096
WARNING. Abnormal entry count found on day 2016-12-24: -11449
WARNING. Abnormal entry count found on day 2016-12-24: -11449
Processing turnstile ('N016A', 'R296', '00-03-01', '163 ST-AMSTERDM')
WARNING. Abnormal entry count found on day 2016-12-03: -265
WARNING. Abnormal entry count found on day 2016-12-03: -265
WARNING. Abnormal entry count found on day 2016-12-10: -313
WARNING. Abnormal entry count found on day 2016-12-10: -313
WARNING. Abnormal entry count found on day 2016-12-17: -300
WARNING. Abnormal entry count found on day 2016-12-17: -300
WARNING. Abnormal entry count found on day 2016-12-24: -229
WARNING. Abnormal entry count found on day 2016-12-24: -229
Processing turnstile ('R227', 'R131', '00-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13077
WARNING. Abnormal entry count found on day 2016-12-03: -13077
WARNING. Abnormal entry count found on day 2016-12-10: -10938
WARNING. Abnormal entry count found on day 2016-12-10: -10938
WARNING. Abnormal entry count found on day 2016-12-17: -8113
WARNING. Abnormal entry count found on day 2016-12-17: -8113
WARNING. Abnormal entry count found on day 2016-12-24: -4644
WARNING. Abnormal entry count found on day 2016-12-24: -4644
Processing turnstile ('C016', 'R278', '00-00-02', '25 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10183
WARNING. Abnormal entry count found on day 2016-12-03: -10183
WARNING. Abnormal entry count found on day 2016-12-10: -9746
WARNING. Abnormal entry count found on day 2016-12-10: -9746
WARNING. Abnormal entry count found on day 2016-12-17: -9176
WARNING. Abnormal entry count found on day 2016-12-17: -9176
WARNING. Abnormal entry count found on day 2016-12-24: -7088
WARNING. Abnormal entry count found on day 2016-12-24: -7088
Processing turnstile ('K022', 'R402', '00-03-00', 'SENECA AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -3508
WARNING. Abnormal entry count found on day 2016-12-03: -3508
WARNING. Abnormal entry count found on day 2016-12-10: -3392
WARNING. Abnormal entry count found on day 2016-12-10: -3392
WARNING. Abnormal entry count found on day 2016-12-17: -3396
WARNING. Abnormal entry count found on day 2016-12-17: -3396
WARNING. Abnormal entry count found on day 2016-12-24: -2666
WARNING. Abnormal entry count found on day 2016-12-24: -2666
Processing turnstile ('D003', 'R391', '00-00-00', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -2408
WARNING. Abnormal entry count found on day 2016-12-03: -2408
WARNING. Abnormal entry count found on day 2016-12-10: -2287
WARNING. Abnormal entry count found on day 2016-12-10: -2287
WARNING. Abnormal entry count found on day 2016-12-17: -2481
WARNING. Abnormal entry count found on day 2016-12-17: -2481
WARNING. Abnormal entry count found on day 2016-12-24: -1819
WARNING. Abnormal entry count found on day 2016-12-24: -1819
Processing turnstile ('A055', 'R227', '00-00-02', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1357
WARNING. Abnormal entry count found on day 2016-12-03: -1357
WARNING. Abnormal entry count found on day 2016-12-10: -1319
WARNING. Abnormal entry count found on day 2016-12-10: -1319
WARNING. Abnormal entry count found on day 2016-12-17: -1100
WARNING. Abnormal entry count found on day 2016-12-17: -1100
WARNING. Abnormal entry count found on day 2016-12-24: -919
WARNING. Abnormal entry count found on day 2016-12-24: -919
Processing turnstile ('N070', 'R012', '04-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -7638
WARNING. Abnormal entry count found on day 2016-12-03: -7638
WARNING. Abnormal entry count found on day 2016-12-10: -7543
WARNING. Abnormal entry count found on day 2016-12-10: -7543
WARNING. Abnormal entry count found on day 2016-12-17: -8064
WARNING. Abnormal entry count found on day 2016-12-17: -8064
WARNING. Abnormal entry count found on day 2016-12-24: -6911
WARNING. Abnormal entry count found on day 2016-12-24: -6911
Processing turnstile ('B021', 'R228', '00-03-01', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -1185
WARNING. Abnormal entry count found on day 2016-12-03: -1185
WARNING. Abnormal entry count found on day 2016-12-10: -1031
WARNING. Abnormal entry count found on day 2016-12-10: -1031
WARNING. Abnormal entry count found on day 2016-12-17: -1016
WARNING. Abnormal entry count found on day 2016-12-17: -1016
WARNING. Abnormal entry count found on day 2016-12-24: -540
WARNING. Abnormal entry count found on day 2016-12-24: -540
Processing turnstile ('N039', 'R251', '01-00-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14850
WARNING. Abnormal entry count found on day 2016-12-03: -14850
WARNING. Abnormal entry count found on day 2016-12-10: -11026
WARNING. Abnormal entry count found on day 2016-12-10: -11026
WARNING. Abnormal entry count found on day 2016-12-17: -10190
WARNING. Abnormal entry count found on day 2016-12-17: -10190
WARNING. Abnormal entry count found on day 2016-12-24: -7173
WARNING. Abnormal entry count found on day 2016-12-24: -7173
Processing turnstile ('E003', 'R369', '00-00-00', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -7279
WARNING. Abnormal entry count found on day 2016-12-03: -7279
WARNING. Abnormal entry count found on day 2016-12-10: -6703
WARNING. Abnormal entry count found on day 2016-12-10: -6703
WARNING. Abnormal entry count found on day 2016-12-17: -6819
WARNING. Abnormal entry count found on day 2016-12-17: -6819
WARNING. Abnormal entry count found on day 2016-12-24: -5361
WARNING. Abnormal entry count found on day 2016-12-24: -5361
Processing turnstile ('R210', 'R044', '00-00-01', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -7488
WARNING. Abnormal entry count found on day 2016-12-03: -7488
WARNING. Abnormal entry count found on day 2016-12-10: -8294
WARNING. Abnormal entry count found on day 2016-12-10: -8294
WARNING. Abnormal entry count found on day 2016-12-17: -7152
WARNING. Abnormal entry count found on day 2016-12-17: -7152
WARNING. Abnormal entry count found on day 2016-12-24: -5318
WARNING. Abnormal entry count found on day 2016-12-24: -5318
Processing turnstile ('N301', 'R113', '00-00-02', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12078
WARNING. Abnormal entry count found on day 2016-12-03: -12078
WARNING. Abnormal entry count found on day 2016-12-10: -12360
WARNING. Abnormal entry count found on day 2016-12-10: -12360
WARNING. Abnormal entry count found on day 2016-12-17: -11203
WARNING. Abnormal entry count found on day 2016-12-17: -11203
WARNING. Abnormal entry count found on day 2016-12-24: -9862
WARNING. Abnormal entry count found on day 2016-12-24: -9862
Processing turnstile ('N095', 'R014', '00-03-08', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7581
WARNING. Abnormal entry count found on day 2016-12-03: -7581
WARNING. Abnormal entry count found on day 2016-12-10: -6902
WARNING. Abnormal entry count found on day 2016-12-10: -6902
WARNING. Abnormal entry count found on day 2016-12-17: -6733
WARNING. Abnormal entry count found on day 2016-12-17: -6733
WARNING. Abnormal entry count found on day 2016-12-24: -4571
WARNING. Abnormal entry count found on day 2016-12-24: -4571
Processing turnstile ('R236', 'R045', '00-00-05', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6764
WARNING. Abnormal entry count found on day 2016-12-03: -6764
WARNING. Abnormal entry count found on day 2016-12-10: -7138
WARNING. Abnormal entry count found on day 2016-12-10: -7138
WARNING. Abnormal entry count found on day 2016-12-17: -6105
WARNING. Abnormal entry count found on day 2016-12-17: -6105
WARNING. Abnormal entry count found on day 2016-12-24: -4029
WARNING. Abnormal entry count found on day 2016-12-24: -4029
Processing turnstile ('R131', 'R190', '00-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17626
WARNING. Abnormal entry count found on day 2016-12-03: -17626
WARNING. Abnormal entry count found on day 2016-12-10: -18203
WARNING. Abnormal entry count found on day 2016-12-10: -18203
WARNING. Abnormal entry count found on day 2016-12-17: -16224
WARNING. Abnormal entry count found on day 2016-12-17: -16224
WARNING. Abnormal entry count found on day 2016-12-24: -10573
WARNING. Abnormal entry count found on day 2016-12-24: -10573
Processing turnstile ('R325', 'R388', '00-05-00', 'E 180 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-24: -13
WARNING. Abnormal entry count found on day 2016-12-24: -13
Processing turnstile ('N536', 'R270', '00-00-01', 'SMITH-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4584
WARNING. Abnormal entry count found on day 2016-12-03: -4584
WARNING. Abnormal entry count found on day 2016-12-10: -4627
WARNING. Abnormal entry count found on day 2016-12-10: -4627
WARNING. Abnormal entry count found on day 2016-12-17: -4460
WARNING. Abnormal entry count found on day 2016-12-17: -4460
WARNING. Abnormal entry count found on day 2016-12-24: -3100
WARNING. Abnormal entry count found on day 2016-12-24: -3100
Processing turnstile ('R232', 'R176', '02-00-04', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5902
WARNING. Abnormal entry count found on day 2016-12-03: -5902
WARNING. Abnormal entry count found on day 2016-12-10: -6013
WARNING. Abnormal entry count found on day 2016-12-10: -6013
WARNING. Abnormal entry count found on day 2016-12-17: -5521
WARNING. Abnormal entry count found on day 2016-12-17: -5521
WARNING. Abnormal entry count found on day 2016-12-24: -4004
WARNING. Abnormal entry count found on day 2016-12-24: -4004
Processing turnstile ('N073', 'R013', '02-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -4444
WARNING. Abnormal entry count found on day 2016-12-03: -4444
WARNING. Abnormal entry count found on day 2016-12-10: -4064
WARNING. Abnormal entry count found on day 2016-12-10: -4064
WARNING. Abnormal entry count found on day 2016-12-17: -3499
WARNING. Abnormal entry count found on day 2016-12-17: -3499
WARNING. Abnormal entry count found on day 2016-12-24: -2273
WARNING. Abnormal entry count found on day 2016-12-24: -2273
Processing turnstile ('JFK03', 'R536', '00-03-00', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-03: -6101
WARNING. Abnormal entry count found on day 2016-12-03: -6101
WARNING. Abnormal entry count found on day 2016-12-10: -6021
WARNING. Abnormal entry count found on day 2016-12-10: -6021
WARNING. Abnormal entry count found on day 2016-12-17: -8137
WARNING. Abnormal entry count found on day 2016-12-17: -8137
WARNING. Abnormal entry count found on day 2016-12-24: -5356
WARNING. Abnormal entry count found on day 2016-12-24: -5356
Processing turnstile ('R518', 'R261', '00-03-01', '40 ST LOWERY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11559
WARNING. Abnormal entry count found on day 2016-12-03: -11559
WARNING. Abnormal entry count found on day 2016-12-10: -12409
WARNING. Abnormal entry count found on day 2016-12-10: -12409
WARNING. Abnormal entry count found on day 2016-12-17: -11923
WARNING. Abnormal entry count found on day 2016-12-17: -11923
WARNING. Abnormal entry count found on day 2016-12-24: -8476
WARNING. Abnormal entry count found on day 2016-12-24: -8476
Processing turnstile ('N601A', 'R319', '01-03-03', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-24: -313
WARNING. Abnormal entry count found on day 2016-12-24: -313
Processing turnstile ('R201', 'R041', '00-00-01', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -2774
WARNING. Abnormal entry count found on day 2016-12-03: -2774
WARNING. Abnormal entry count found on day 2016-12-10: -2507
WARNING. Abnormal entry count found on day 2016-12-10: -2507
WARNING. Abnormal entry count found on day 2016-12-17: -2416
WARNING. Abnormal entry count found on day 2016-12-17: -2416
WARNING. Abnormal entry count found on day 2016-12-24: -1850
WARNING. Abnormal entry count found on day 2016-12-24: -1850
Processing turnstile ('B023', 'R211', '01-05-01', 'KINGS HWY')
Processing turnstile ('K026', 'R100', '00-00-02', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4110
WARNING. Abnormal entry count found on day 2016-12-03: -4110
WARNING. Abnormal entry count found on day 2016-12-10: -4272
WARNING. Abnormal entry count found on day 2016-12-10: -4272
WARNING. Abnormal entry count found on day 2016-12-17: -4583
WARNING. Abnormal entry count found on day 2016-12-17: -4583
WARNING. Abnormal entry count found on day 2016-12-24: -2780
WARNING. Abnormal entry count found on day 2016-12-24: -2780
Processing turnstile ('N043', 'R186', '00-00-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17302
WARNING. Abnormal entry count found on day 2016-12-03: -17302
WARNING. Abnormal entry count found on day 2016-12-10: -16961
WARNING. Abnormal entry count found on day 2016-12-10: -16961
WARNING. Abnormal entry count found on day 2016-12-17: -14643
WARNING. Abnormal entry count found on day 2016-12-17: -14643
WARNING. Abnormal entry count found on day 2016-12-24: -11513
WARNING. Abnormal entry count found on day 2016-12-24: -11513
Processing turnstile ('J037', 'R009', '00-00-02', '121 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2323
WARNING. Abnormal entry count found on day 2016-12-03: -2323
WARNING. Abnormal entry count found on day 2016-12-10: -2205
WARNING. Abnormal entry count found on day 2016-12-10: -2205
WARNING. Abnormal entry count found on day 2016-12-17: -2141
WARNING. Abnormal entry count found on day 2016-12-17: -2141
WARNING. Abnormal entry count found on day 2016-12-24: -1831
WARNING. Abnormal entry count found on day 2016-12-24: -1831
Processing turnstile ('R262A', 'R195', '04-00-04', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -280
WARNING. Abnormal entry count found on day 2016-12-24: -280
Processing turnstile ('N519', 'R461', '00-03-00', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -8642
WARNING. Abnormal entry count found on day 2016-12-03: -8642
WARNING. Abnormal entry count found on day 2016-12-10: -8939
WARNING. Abnormal entry count found on day 2016-12-10: -8939
WARNING. Abnormal entry count found on day 2016-12-17: -9407
WARNING. Abnormal entry count found on day 2016-12-17: -9407
WARNING. Abnormal entry count found on day 2016-12-24: -6634
WARNING. Abnormal entry count found on day 2016-12-24: -6634
Processing turnstile ('R606', 'R225', '00-00-01', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6366
WARNING. Abnormal entry count found on day 2016-12-03: -6366
WARNING. Abnormal entry count found on day 2016-12-10: -6439
WARNING. Abnormal entry count found on day 2016-12-10: -6439
WARNING. Abnormal entry count found on day 2016-12-17: -6843
WARNING. Abnormal entry count found on day 2016-12-17: -6843
WARNING. Abnormal entry count found on day 2016-12-24: -4549
WARNING. Abnormal entry count found on day 2016-12-24: -4549
Processing turnstile ('R219', 'R160', '00-00-04', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -17821
WARNING. Abnormal entry count found on day 2016-12-03: -17821
WARNING. Abnormal entry count found on day 2016-12-10: -17628
WARNING. Abnormal entry count found on day 2016-12-10: -17628
WARNING. Abnormal entry count found on day 2016-12-17: -15493
WARNING. Abnormal entry count found on day 2016-12-17: -15493
WARNING. Abnormal entry count found on day 2016-12-24: -10661
WARNING. Abnormal entry count found on day 2016-12-24: -10661
Processing turnstile ('R528', 'R097', '00-00-03', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -17643
WARNING. Abnormal entry count found on day 2016-12-03: -17643
WARNING. Abnormal entry count found on day 2016-12-10: -17993
WARNING. Abnormal entry count found on day 2016-12-10: -17993
WARNING. Abnormal entry count found on day 2016-12-17: -20229
WARNING. Abnormal entry count found on day 2016-12-17: -20229
WARNING. Abnormal entry count found on day 2016-12-24: -14159
WARNING. Abnormal entry count found on day 2016-12-24: -14159
Processing turnstile ('N060', 'R010', '01-05-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-10: -9
WARNING. Abnormal entry count found on day 2016-12-10: -9
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('R601A', 'R108', '02-05-00', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -19
WARNING. Abnormal entry count found on day 2016-12-03: -19
WARNING. Abnormal entry count found on day 2016-12-10: -17
WARNING. Abnormal entry count found on day 2016-12-10: -17
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('R155', 'R116', '01-00-08', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8238
WARNING. Abnormal entry count found on day 2016-12-03: -8238
WARNING. Abnormal entry count found on day 2016-12-10: -8474
WARNING. Abnormal entry count found on day 2016-12-10: -8474
WARNING. Abnormal entry count found on day 2016-12-17: -7932
WARNING. Abnormal entry count found on day 2016-12-17: -7932
WARNING. Abnormal entry count found on day 2016-12-24: -7001
WARNING. Abnormal entry count found on day 2016-12-24: -7001
Processing turnstile ('A054', 'R227', '01-00-01', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2375
WARNING. Abnormal entry count found on day 2016-12-03: -2375
WARNING. Abnormal entry count found on day 2016-12-10: -2216
WARNING. Abnormal entry count found on day 2016-12-10: -2216
WARNING. Abnormal entry count found on day 2016-12-17: -2054
WARNING. Abnormal entry count found on day 2016-12-17: -2054
WARNING. Abnormal entry count found on day 2016-12-24: -1925
WARNING. Abnormal entry count found on day 2016-12-24: -1925
Processing turnstile ('R610', 'R057', '00-06-03', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -1941
WARNING. Abnormal entry count found on day 2016-12-03: -1941
WARNING. Abnormal entry count found on day 2016-12-10: -1822
WARNING. Abnormal entry count found on day 2016-12-10: -1822
WARNING. Abnormal entry count found on day 2016-12-17: -1743
WARNING. Abnormal entry count found on day 2016-12-17: -1743
WARNING. Abnormal entry count found on day 2016-12-24: -1255
WARNING. Abnormal entry count found on day 2016-12-24: -1255
Processing turnstile ('N026', 'R102', '00-00-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -27962
WARNING. Abnormal entry count found on day 2016-12-03: -27962
WARNING. Abnormal entry count found on day 2016-12-10: -26988
WARNING. Abnormal entry count found on day 2016-12-10: -26988
WARNING. Abnormal entry count found on day 2016-12-17: -25799
WARNING. Abnormal entry count found on day 2016-12-17: -25799
WARNING. Abnormal entry count found on day 2016-12-24: -16084
WARNING. Abnormal entry count found on day 2016-12-24: -16084
Processing turnstile ('R645', 'R110', '00-05-01', 'FLATBUSH AV-B.C')
Processing turnstile ('N181', 'R357', '00-00-00', 'AQUEDUCT N.COND')
WARNING. Abnormal entry count found on day 2016-12-03: -1906
WARNING. Abnormal entry count found on day 2016-12-03: -1906
WARNING. Abnormal entry count found on day 2016-12-10: -1865
WARNING. Abnormal entry count found on day 2016-12-10: -1865
WARNING. Abnormal entry count found on day 2016-12-17: -1778
WARNING. Abnormal entry count found on day 2016-12-17: -1778
WARNING. Abnormal entry count found on day 2016-12-24: -1353
WARNING. Abnormal entry count found on day 2016-12-24: -1353
Processing turnstile ('PTH16', 'R550', '01-01-03', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -3357
WARNING. Abnormal entry count found on day 2016-12-03: -3357
WARNING. Abnormal entry count found on day 2016-12-10: -3509
WARNING. Abnormal entry count found on day 2016-12-10: -3509
WARNING. Abnormal entry count found on day 2016-12-17: -2787
WARNING. Abnormal entry count found on day 2016-12-17: -2787
WARNING. Abnormal entry count found on day 2016-12-24: -2259
WARNING. Abnormal entry count found on day 2016-12-24: -2259
Processing turnstile ('N336', 'R158', '00-00-01', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -9641
WARNING. Abnormal entry count found on day 2016-12-03: -9641
WARNING. Abnormal entry count found on day 2016-12-10: -9086
WARNING. Abnormal entry count found on day 2016-12-10: -9086
WARNING. Abnormal entry count found on day 2016-12-17: -9189
WARNING. Abnormal entry count found on day 2016-12-17: -9189
WARNING. Abnormal entry count found on day 2016-12-24: -7450
WARNING. Abnormal entry count found on day 2016-12-24: -7450
Processing turnstile ('N534', 'R220', '01-06-01', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2560
WARNING. Abnormal entry count found on day 2016-12-03: -2560
WARNING. Abnormal entry count found on day 2016-12-10: -2579
WARNING. Abnormal entry count found on day 2016-12-10: -2579
WARNING. Abnormal entry count found on day 2016-12-17: -2305
WARNING. Abnormal entry count found on day 2016-12-17: -2305
WARNING. Abnormal entry count found on day 2016-12-24: -1542
WARNING. Abnormal entry count found on day 2016-12-24: -1542
Processing turnstile ('R507', 'R134', '00-03-05', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2959
WARNING. Abnormal entry count found on day 2016-12-03: -2959
WARNING. Abnormal entry count found on day 2016-12-10: -2949
WARNING. Abnormal entry count found on day 2016-12-10: -2949
WARNING. Abnormal entry count found on day 2016-12-17: -2529
WARNING. Abnormal entry count found on day 2016-12-17: -2529
WARNING. Abnormal entry count found on day 2016-12-24: -1653
WARNING. Abnormal entry count found on day 2016-12-24: -1653
Processing turnstile ('PTH16', 'R550', '01-01-00', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -710
WARNING. Abnormal entry count found on day 2016-12-03: -710
WARNING. Abnormal entry count found on day 2016-12-10: -816
WARNING. Abnormal entry count found on day 2016-12-10: -816
WARNING. Abnormal entry count found on day 2016-12-17: -605
WARNING. Abnormal entry count found on day 2016-12-17: -605
WARNING. Abnormal entry count found on day 2016-12-24: -446
WARNING. Abnormal entry count found on day 2016-12-24: -446
Processing turnstile ('R217A', 'R194', '00-05-02', 'BLEECKER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15196
WARNING. Abnormal entry count found on day 2016-12-03: -15196
WARNING. Abnormal entry count found on day 2016-12-10: -14885
WARNING. Abnormal entry count found on day 2016-12-10: -14885
WARNING. Abnormal entry count found on day 2016-12-17: -12277
WARNING. Abnormal entry count found on day 2016-12-17: -12277
WARNING. Abnormal entry count found on day 2016-12-24: -9263
WARNING. Abnormal entry count found on day 2016-12-24: -9263
Processing turnstile ('C008', 'R099', '00-06-00', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -20192
WARNING. Abnormal entry count found on day 2016-12-03: -20192
WARNING. Abnormal entry count found on day 2016-12-10: -19831
WARNING. Abnormal entry count found on day 2016-12-10: -19831
WARNING. Abnormal entry count found on day 2016-12-17: -17805
WARNING. Abnormal entry count found on day 2016-12-17: -17805
WARNING. Abnormal entry count found on day 2016-12-24: -12508
WARNING. Abnormal entry count found on day 2016-12-24: -12508
Processing turnstile ('R154', 'R116', '00-03-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9512
WARNING. Abnormal entry count found on day 2016-12-03: -9512
WARNING. Abnormal entry count found on day 2016-12-10: -9388
WARNING. Abnormal entry count found on day 2016-12-10: -9388
WARNING. Abnormal entry count found on day 2016-12-17: -8718
WARNING. Abnormal entry count found on day 2016-12-17: -8718
WARNING. Abnormal entry count found on day 2016-12-24: -7617
WARNING. Abnormal entry count found on day 2016-12-24: -7617
Processing turnstile ('R513', 'R093', '00-00-02', '30 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3306
WARNING. Abnormal entry count found on day 2016-12-03: -3306
WARNING. Abnormal entry count found on day 2016-12-10: -2557
WARNING. Abnormal entry count found on day 2016-12-10: -2557
WARNING. Abnormal entry count found on day 2016-12-17: -5301
WARNING. Abnormal entry count found on day 2016-12-17: -5301
WARNING. Abnormal entry count found on day 2016-12-24: -1868
WARNING. Abnormal entry count found on day 2016-12-24: -1868
Processing turnstile ('N551', 'R421', '00-00-01', 'AVENUE I')
WARNING. Abnormal entry count found on day 2016-12-03: -2283
WARNING. Abnormal entry count found on day 2016-12-03: -2283
WARNING. Abnormal entry count found on day 2016-12-10: -2083
WARNING. Abnormal entry count found on day 2016-12-10: -2083
WARNING. Abnormal entry count found on day 2016-12-17: -2341
WARNING. Abnormal entry count found on day 2016-12-17: -2341
WARNING. Abnormal entry count found on day 2016-12-24: -1511
WARNING. Abnormal entry count found on day 2016-12-24: -1511
Processing turnstile ('N025', 'R102', '01-00-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7438
WARNING. Abnormal entry count found on day 2016-12-03: -7438
WARNING. Abnormal entry count found on day 2016-12-10: -7179
WARNING. Abnormal entry count found on day 2016-12-10: -7179
WARNING. Abnormal entry count found on day 2016-12-17: -6611
WARNING. Abnormal entry count found on day 2016-12-17: -6611
WARNING. Abnormal entry count found on day 2016-12-24: -4742
WARNING. Abnormal entry count found on day 2016-12-24: -4742
Processing turnstile ('R130', 'R321', '01-00-02', '18 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3800
WARNING. Abnormal entry count found on day 2016-12-03: -3800
WARNING. Abnormal entry count found on day 2016-12-10: -3920
WARNING. Abnormal entry count found on day 2016-12-10: -3920
WARNING. Abnormal entry count found on day 2016-12-17: -3346
WARNING. Abnormal entry count found on day 2016-12-17: -3346
WARNING. Abnormal entry count found on day 2016-12-24: -1941
WARNING. Abnormal entry count found on day 2016-12-24: -1941
Processing turnstile ('R138', 'R293', '00-03-06', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -17382
WARNING. Abnormal entry count found on day 2016-12-03: -17382
WARNING. Abnormal entry count found on day 2016-12-10: -17198
WARNING. Abnormal entry count found on day 2016-12-10: -17198
WARNING. Abnormal entry count found on day 2016-12-17: -15903
WARNING. Abnormal entry count found on day 2016-12-17: -15903
WARNING. Abnormal entry count found on day 2016-12-24: -13795
WARNING. Abnormal entry count found on day 2016-12-24: -13795
Processing turnstile ('A049', 'R088', '02-00-01', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3372
WARNING. Abnormal entry count found on day 2016-12-03: -3372
WARNING. Abnormal entry count found on day 2016-12-10: -3152
WARNING. Abnormal entry count found on day 2016-12-10: -3152
WARNING. Abnormal entry count found on day 2016-12-17: -5107
WARNING. Abnormal entry count found on day 2016-12-17: -5107
WARNING. Abnormal entry count found on day 2016-12-24: -7081
WARNING. Abnormal entry count found on day 2016-12-24: -7081
Processing turnstile ('N415', 'R286', '00-00-01', 'MYRTLE-WILLOUGH')
WARNING. Abnormal entry count found on day 2016-12-03: -4999
WARNING. Abnormal entry count found on day 2016-12-03: -4999
WARNING. Abnormal entry count found on day 2016-12-10: -5064
WARNING. Abnormal entry count found on day 2016-12-10: -5064
WARNING. Abnormal entry count found on day 2016-12-17: -4672
WARNING. Abnormal entry count found on day 2016-12-17: -4672
WARNING. Abnormal entry count found on day 2016-12-24: -3453
WARNING. Abnormal entry count found on day 2016-12-24: -3453
Processing turnstile ('A081', 'R028', '04-05-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17
WARNING. Abnormal entry count found on day 2016-12-03: -17
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -10
WARNING. Abnormal entry count found on day 2016-12-24: -10
Processing turnstile ('N051', 'R084', '02-03-04', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -22283
WARNING. Abnormal entry count found on day 2016-12-03: -22283
WARNING. Abnormal entry count found on day 2016-12-10: -21477
WARNING. Abnormal entry count found on day 2016-12-10: -21477
WARNING. Abnormal entry count found on day 2016-12-17: -20203
WARNING. Abnormal entry count found on day 2016-12-17: -20203
WARNING. Abnormal entry count found on day 2016-12-24: -14452
WARNING. Abnormal entry count found on day 2016-12-24: -14452
Processing turnstile ('PTH06', 'R546', '00-00-03', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -11794
WARNING. Abnormal entry count found on day 2016-12-03: -11794
WARNING. Abnormal entry count found on day 2016-12-10: -10977
WARNING. Abnormal entry count found on day 2016-12-10: -10977
WARNING. Abnormal entry count found on day 2016-12-17: -11639
WARNING. Abnormal entry count found on day 2016-12-17: -11639
WARNING. Abnormal entry count found on day 2016-12-24: -9518
WARNING. Abnormal entry count found on day 2016-12-24: -9518
Processing turnstile ('N317', 'R267', '02-00-01', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1413
WARNING. Abnormal entry count found on day 2016-12-03: -1413
WARNING. Abnormal entry count found on day 2016-12-10: -1421
WARNING. Abnormal entry count found on day 2016-12-10: -1421
WARNING. Abnormal entry count found on day 2016-12-17: -1457
WARNING. Abnormal entry count found on day 2016-12-17: -1457
WARNING. Abnormal entry count found on day 2016-12-24: -1108
WARNING. Abnormal entry count found on day 2016-12-24: -1108
Processing turnstile ('N223', 'R156', '01-05-00', 'BEDFORD PK BLVD')
Processing turnstile ('N129', 'R382', '00-03-01', 'GRANT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12280
WARNING. Abnormal entry count found on day 2016-12-03: -12280
WARNING. Abnormal entry count found on day 2016-12-10: -11601
WARNING. Abnormal entry count found on day 2016-12-10: -11601
WARNING. Abnormal entry count found on day 2016-12-17: -10846
WARNING. Abnormal entry count found on day 2016-12-17: -10846
WARNING. Abnormal entry count found on day 2016-12-24: -8742
WARNING. Abnormal entry count found on day 2016-12-24: -8742
Processing turnstile ('R216', 'R322', '01-00-00', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2376
WARNING. Abnormal entry count found on day 2016-12-03: -2376
WARNING. Abnormal entry count found on day 2016-12-10: -2260
WARNING. Abnormal entry count found on day 2016-12-10: -2260
WARNING. Abnormal entry count found on day 2016-12-17: -2515
WARNING. Abnormal entry count found on day 2016-12-17: -2515
WARNING. Abnormal entry count found on day 2016-12-24: -2199
WARNING. Abnormal entry count found on day 2016-12-24: -2199
Processing turnstile ('R231A', 'R176', '01-06-00', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2643
WARNING. Abnormal entry count found on day 2016-12-03: -2643
WARNING. Abnormal entry count found on day 2016-12-10: -2545
WARNING. Abnormal entry count found on day 2016-12-10: -2545
WARNING. Abnormal entry count found on day 2016-12-17: -2434
WARNING. Abnormal entry count found on day 2016-12-17: -2434
WARNING. Abnormal entry count found on day 2016-12-24: -1582
WARNING. Abnormal entry count found on day 2016-12-24: -1582
Processing turnstile ('N087', 'R282', '01-06-01', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2460
WARNING. Abnormal entry count found on day 2016-12-03: -2460
WARNING. Abnormal entry count found on day 2016-12-10: -2488
WARNING. Abnormal entry count found on day 2016-12-10: -2488
WARNING. Abnormal entry count found on day 2016-12-17: -2445
WARNING. Abnormal entry count found on day 2016-12-17: -2445
WARNING. Abnormal entry count found on day 2016-12-24: -1503
WARNING. Abnormal entry count found on day 2016-12-24: -1503
Processing turnstile ('R101', 'R001', '02-07-00', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -7715
WARNING. Abnormal entry count found on day 2016-12-03: -7715
WARNING. Abnormal entry count found on day 2016-12-10: -9166
WARNING. Abnormal entry count found on day 2016-12-10: -9166
WARNING. Abnormal entry count found on day 2016-12-17: -9337
WARNING. Abnormal entry count found on day 2016-12-17: -9337
WARNING. Abnormal entry count found on day 2016-12-24: -6719
WARNING. Abnormal entry count found on day 2016-12-24: -6719
Processing turnstile ('A033', 'R170', '02-00-03', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -22654
WARNING. Abnormal entry count found on day 2016-12-03: -22654
WARNING. Abnormal entry count found on day 2016-12-10: -22063
WARNING. Abnormal entry count found on day 2016-12-10: -22063
WARNING. Abnormal entry count found on day 2016-12-17: -23680
WARNING. Abnormal entry count found on day 2016-12-17: -23680
WARNING. Abnormal entry count found on day 2016-12-24: -13419
WARNING. Abnormal entry count found on day 2016-12-24: -13419
Processing turnstile ('N112A', 'R284', '01-00-01', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1474
WARNING. Abnormal entry count found on day 2016-12-03: -1474
WARNING. Abnormal entry count found on day 2016-12-10: -1427
WARNING. Abnormal entry count found on day 2016-12-10: -1427
WARNING. Abnormal entry count found on day 2016-12-17: -1192
WARNING. Abnormal entry count found on day 2016-12-17: -1192
WARNING. Abnormal entry count found on day 2016-12-24: -903
WARNING. Abnormal entry count found on day 2016-12-24: -903
Processing turnstile ('A037', 'R170', '05-00-03', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -26237
WARNING. Abnormal entry count found on day 2016-12-03: -26237
WARNING. Abnormal entry count found on day 2016-12-10: -22963
WARNING. Abnormal entry count found on day 2016-12-10: -22963
WARNING. Abnormal entry count found on day 2016-12-17: -27996
WARNING. Abnormal entry count found on day 2016-12-17: -27996
WARNING. Abnormal entry count found on day 2016-12-24: -19469
WARNING. Abnormal entry count found on day 2016-12-24: -19469
Processing turnstile ('J032', 'R006', '01-05-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-17: -12
WARNING. Abnormal entry count found on day 2016-12-17: -12
Processing turnstile ('N334B', 'R341', '00-03-01', '75 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -570
WARNING. Abnormal entry count found on day 2016-12-03: -570
WARNING. Abnormal entry count found on day 2016-12-10: -576
WARNING. Abnormal entry count found on day 2016-12-10: -576
WARNING. Abnormal entry count found on day 2016-12-17: -552
WARNING. Abnormal entry count found on day 2016-12-17: -552
WARNING. Abnormal entry count found on day 2016-12-24: -430
WARNING. Abnormal entry count found on day 2016-12-24: -430
Processing turnstile ('A033', 'R170', '02-00-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -7030
WARNING. Abnormal entry count found on day 2016-12-03: -7030
WARNING. Abnormal entry count found on day 2016-12-10: -6787
WARNING. Abnormal entry count found on day 2016-12-10: -6787
WARNING. Abnormal entry count found on day 2016-12-17: -6908
WARNING. Abnormal entry count found on day 2016-12-17: -6908
WARNING. Abnormal entry count found on day 2016-12-24: -3803
WARNING. Abnormal entry count found on day 2016-12-24: -3803
Processing turnstile ('E004', 'R234', '00-00-01', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4737
WARNING. Abnormal entry count found on day 2016-12-03: -4737
WARNING. Abnormal entry count found on day 2016-12-10: -4727
WARNING. Abnormal entry count found on day 2016-12-10: -4727
WARNING. Abnormal entry count found on day 2016-12-17: -4588
WARNING. Abnormal entry count found on day 2016-12-17: -4588
WARNING. Abnormal entry count found on day 2016-12-24: -3764
WARNING. Abnormal entry count found on day 2016-12-24: -3764
Processing turnstile ('R641', 'R210', '00-06-00', 'BEVERLY RD')
WARNING. Abnormal entry count found on day 2016-12-03: -1512
WARNING. Abnormal entry count found on day 2016-12-03: -1512
WARNING. Abnormal entry count found on day 2016-12-10: -1496
WARNING. Abnormal entry count found on day 2016-12-10: -1496
WARNING. Abnormal entry count found on day 2016-12-17: -1550
WARNING. Abnormal entry count found on day 2016-12-17: -1550
WARNING. Abnormal entry count found on day 2016-12-24: -1201
WARNING. Abnormal entry count found on day 2016-12-24: -1201
Processing turnstile ('A043', 'R462', '00-06-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5675
WARNING. Abnormal entry count found on day 2016-12-03: -5675
WARNING. Abnormal entry count found on day 2016-12-10: -6630
WARNING. Abnormal entry count found on day 2016-12-10: -6630
WARNING. Abnormal entry count found on day 2016-12-17: -5648
WARNING. Abnormal entry count found on day 2016-12-17: -5648
WARNING. Abnormal entry count found on day 2016-12-24: -6125
WARNING. Abnormal entry count found on day 2016-12-24: -6125
Processing turnstile ('N333B', 'R141', '02-03-01', 'FOREST HILLS 71')
Processing turnstile ('N325A', 'R218', '00-03-02', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -786
WARNING. Abnormal entry count found on day 2016-12-03: -786
WARNING. Abnormal entry count found on day 2016-12-10: -803
WARNING. Abnormal entry count found on day 2016-12-10: -803
WARNING. Abnormal entry count found on day 2016-12-17: -990
WARNING. Abnormal entry count found on day 2016-12-17: -990
WARNING. Abnormal entry count found on day 2016-12-24: -797
WARNING. Abnormal entry count found on day 2016-12-24: -797
Processing turnstile ('R217A', 'R194', '00-03-00', 'BLEECKER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6123
WARNING. Abnormal entry count found on day 2016-12-03: -6123
WARNING. Abnormal entry count found on day 2016-12-10: -6278
WARNING. Abnormal entry count found on day 2016-12-10: -6278
WARNING. Abnormal entry count found on day 2016-12-17: -6952
WARNING. Abnormal entry count found on day 2016-12-17: -6952
WARNING. Abnormal entry count found on day 2016-12-24: -4984
WARNING. Abnormal entry count found on day 2016-12-24: -4984
Processing turnstile ('A016', 'R081', '03-00-02', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12920
WARNING. Abnormal entry count found on day 2016-12-03: -12920
WARNING. Abnormal entry count found on day 2016-12-10: -12275
WARNING. Abnormal entry count found on day 2016-12-10: -12275
WARNING. Abnormal entry count found on day 2016-12-17: -10223
WARNING. Abnormal entry count found on day 2016-12-17: -10223
WARNING. Abnormal entry count found on day 2016-12-24: -11405
WARNING. Abnormal entry count found on day 2016-12-24: -11405
Processing turnstile ('PTH06', 'R546', '00-00-04', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -6310
WARNING. Abnormal entry count found on day 2016-12-03: -6310
WARNING. Abnormal entry count found on day 2016-12-10: -6044
WARNING. Abnormal entry count found on day 2016-12-10: -6044
WARNING. Abnormal entry count found on day 2016-12-21: -398478
WARNING. Abnormal entry count found on day 2016-12-17: 396285
WARNING. Abnormal entry count found on day 2016-12-21: -398478
WARNING. Abnormal entry count found on day 2016-12-17: 396285
WARNING. Abnormal entry count found on day 2016-12-21: -398478
WARNING. Abnormal entry count found on day 2016-12-24: -4777
WARNING. Abnormal entry count found on day 2016-12-24: -4777
Processing turnstile ('R526', 'R096', '00-05-00', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -13841
WARNING. Abnormal entry count found on day 2016-12-03: -13841
WARNING. Abnormal entry count found on day 2016-12-10: -13928
WARNING. Abnormal entry count found on day 2016-12-10: -13928
WARNING. Abnormal entry count found on day 2016-12-17: -13234
WARNING. Abnormal entry count found on day 2016-12-17: -13234
WARNING. Abnormal entry count found on day 2016-12-24: -11893
WARNING. Abnormal entry count found on day 2016-12-24: -11893
Processing turnstile ('N327', 'R254', '00-06-02', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -20020
WARNING. Abnormal entry count found on day 2016-12-03: -20020
WARNING. Abnormal entry count found on day 2016-12-10: -21798
WARNING. Abnormal entry count found on day 2016-12-10: -21798
WARNING. Abnormal entry count found on day 2016-12-17: -21247
WARNING. Abnormal entry count found on day 2016-12-17: -21247
WARNING. Abnormal entry count found on day 2016-12-24: -17096
WARNING. Abnormal entry count found on day 2016-12-24: -17096
Processing turnstile ('A002', 'R051', '02-03-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4224
WARNING. Abnormal entry count found on day 2016-12-03: -4224
WARNING. Abnormal entry count found on day 2016-12-10: -4216
WARNING. Abnormal entry count found on day 2016-12-10: -4216
WARNING. Abnormal entry count found on day 2016-12-17: -4727
WARNING. Abnormal entry count found on day 2016-12-17: -4727
WARNING. Abnormal entry count found on day 2016-12-24: -3693
WARNING. Abnormal entry count found on day 2016-12-24: -3693
Processing turnstile ('H026', 'R137', '00-03-00', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -23520
WARNING. Abnormal entry count found on day 2016-12-03: -23520
WARNING. Abnormal entry count found on day 2016-12-10: -18281
WARNING. Abnormal entry count found on day 2016-12-10: -18281
WARNING. Abnormal entry count found on day 2016-12-17: -17652
WARNING. Abnormal entry count found on day 2016-12-17: -17652
WARNING. Abnormal entry count found on day 2016-12-24: -14242
WARNING. Abnormal entry count found on day 2016-12-24: -14242
Processing turnstile ('N311', 'R339', '01-06-00', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -119
WARNING. Abnormal entry count found on day 2016-12-03: -119
WARNING. Abnormal entry count found on day 2016-12-10: -138
WARNING. Abnormal entry count found on day 2016-12-10: -138
WARNING. Abnormal entry count found on day 2016-12-17: -168
WARNING. Abnormal entry count found on day 2016-12-17: -168
WARNING. Abnormal entry count found on day 2016-12-24: -153
WARNING. Abnormal entry count found on day 2016-12-24: -153
Processing turnstile ('R415', 'R120', '00-00-01', 'MORISN AV/SNDVW')
WARNING. Abnormal entry count found on day 2016-12-03: -7687
WARNING. Abnormal entry count found on day 2016-12-03: -7687
WARNING. Abnormal entry count found on day 2016-12-10: -7342
WARNING. Abnormal entry count found on day 2016-12-10: -7342
WARNING. Abnormal entry count found on day 2016-12-17: -7665
WARNING. Abnormal entry count found on day 2016-12-17: -7665
WARNING. Abnormal entry count found on day 2016-12-24: -6252
WARNING. Abnormal entry count found on day 2016-12-24: -6252
Processing turnstile ('R629', 'R065', '00-03-00', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4313
WARNING. Abnormal entry count found on day 2016-12-03: -4313
WARNING. Abnormal entry count found on day 2016-12-10: -4098
WARNING. Abnormal entry count found on day 2016-12-10: -4098
WARNING. Abnormal entry count found on day 2016-12-17: -3538
WARNING. Abnormal entry count found on day 2016-12-17: -3538
WARNING. Abnormal entry count found on day 2016-12-24: -3002
WARNING. Abnormal entry count found on day 2016-12-24: -3002
Processing turnstile ('R243', 'R049', '00-00-01', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8542
WARNING. Abnormal entry count found on day 2016-12-03: -8542
WARNING. Abnormal entry count found on day 2016-12-10: -8247
WARNING. Abnormal entry count found on day 2016-12-10: -8247
WARNING. Abnormal entry count found on day 2016-12-17: -7504
WARNING. Abnormal entry count found on day 2016-12-17: -7504
WARNING. Abnormal entry count found on day 2016-12-24: -5842
WARNING. Abnormal entry count found on day 2016-12-24: -5842
Processing turnstile ('R416', 'R245', '00-05-01', 'ST LAWRENCE AV')
Processing turnstile ('N405', 'R239', '00-00-00', 'GREENPOINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9204
WARNING. Abnormal entry count found on day 2016-12-03: -9204
WARNING. Abnormal entry count found on day 2016-12-10: -8959
WARNING. Abnormal entry count found on day 2016-12-10: -8959
WARNING. Abnormal entry count found on day 2016-12-17: -8159
WARNING. Abnormal entry count found on day 2016-12-17: -8159
WARNING. Abnormal entry count found on day 2016-12-24: -5582
WARNING. Abnormal entry count found on day 2016-12-24: -5582
Processing turnstile ('N224', 'R157', '00-00-04', 'NORWOOD 205 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3957
WARNING. Abnormal entry count found on day 2016-12-03: -3957
WARNING. Abnormal entry count found on day 2016-12-10: -3706
WARNING. Abnormal entry count found on day 2016-12-10: -3706
WARNING. Abnormal entry count found on day 2016-12-17: -3725
WARNING. Abnormal entry count found on day 2016-12-17: -3725
WARNING. Abnormal entry count found on day 2016-12-24: -3353
WARNING. Abnormal entry count found on day 2016-12-24: -3353
Processing turnstile ('R242', 'R049', '01-00-02', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7940
WARNING. Abnormal entry count found on day 2016-12-03: -7940
WARNING. Abnormal entry count found on day 2016-12-10: -8023
WARNING. Abnormal entry count found on day 2016-12-10: -8023
WARNING. Abnormal entry count found on day 2016-12-17: -6969
WARNING. Abnormal entry count found on day 2016-12-17: -6969
WARNING. Abnormal entry count found on day 2016-12-24: -4868
WARNING. Abnormal entry count found on day 2016-12-24: -4868
Processing turnstile ('A050', 'R088', '00-06-02', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5946
WARNING. Abnormal entry count found on day 2016-12-03: -5946
WARNING. Abnormal entry count found on day 2016-12-10: -5443
WARNING. Abnormal entry count found on day 2016-12-10: -5443
WARNING. Abnormal entry count found on day 2016-12-17: -5683
WARNING. Abnormal entry count found on day 2016-12-17: -5683
WARNING. Abnormal entry count found on day 2016-12-24: -6715
WARNING. Abnormal entry count found on day 2016-12-24: -6715
Processing turnstile ('N333', 'R141', '01-00-03', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -1506
WARNING. Abnormal entry count found on day 2016-12-03: -1506
WARNING. Abnormal entry count found on day 2016-12-10: -1606
WARNING. Abnormal entry count found on day 2016-12-10: -1606
WARNING. Abnormal entry count found on day 2016-12-17: -1481
WARNING. Abnormal entry count found on day 2016-12-17: -1481
WARNING. Abnormal entry count found on day 2016-12-24: -1174
WARNING. Abnormal entry count found on day 2016-12-24: -1174
Processing turnstile ('R647', 'R110', '02-05-00', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -2566
WARNING. Abnormal entry count found on day 2016-12-03: -2566
WARNING. Abnormal entry count found on day 2016-12-10: -2457
WARNING. Abnormal entry count found on day 2016-12-10: -2457
WARNING. Abnormal entry count found on day 2016-12-17: -2169
WARNING. Abnormal entry count found on day 2016-12-17: -2169
WARNING. Abnormal entry count found on day 2016-12-24: -1361
WARNING. Abnormal entry count found on day 2016-12-24: -1361
Processing turnstile ('R518', 'R261', '00-00-00', '40 ST LOWERY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7223
WARNING. Abnormal entry count found on day 2016-12-03: -7223
WARNING. Abnormal entry count found on day 2016-12-10: -6052
WARNING. Abnormal entry count found on day 2016-12-10: -6052
WARNING. Abnormal entry count found on day 2016-12-17: -6318
WARNING. Abnormal entry count found on day 2016-12-17: -6318
WARNING. Abnormal entry count found on day 2016-12-24: -4486
WARNING. Abnormal entry count found on day 2016-12-24: -4486
Processing turnstile ('N303', 'R015', '00-00-08', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7173
WARNING. Abnormal entry count found on day 2016-12-03: -7173
WARNING. Abnormal entry count found on day 2016-12-10: -7245
WARNING. Abnormal entry count found on day 2016-12-10: -7245
WARNING. Abnormal entry count found on day 2016-12-17: -7404
WARNING. Abnormal entry count found on day 2016-12-17: -7404
WARNING. Abnormal entry count found on day 2016-12-24: -6847
WARNING. Abnormal entry count found on day 2016-12-24: -6847
Processing turnstile ('N559', 'R425', '00-06-00', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -2835
WARNING. Abnormal entry count found on day 2016-12-03: -2835
WARNING. Abnormal entry count found on day 2016-12-10: -2577
WARNING. Abnormal entry count found on day 2016-12-10: -2577
WARNING. Abnormal entry count found on day 2016-12-17: -2694
WARNING. Abnormal entry count found on day 2016-12-17: -2694
WARNING. Abnormal entry count found on day 2016-12-24: -1978
WARNING. Abnormal entry count found on day 2016-12-24: -1978
Processing turnstile ('N303', 'R015', '00-00-0A', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5114
WARNING. Abnormal entry count found on day 2016-12-03: -5114
WARNING. Abnormal entry count found on day 2016-12-10: -4975
WARNING. Abnormal entry count found on day 2016-12-10: -4975
WARNING. Abnormal entry count found on day 2016-12-17: -5489
WARNING. Abnormal entry count found on day 2016-12-17: -5489
WARNING. Abnormal entry count found on day 2016-12-24: -4866
WARNING. Abnormal entry count found on day 2016-12-24: -4866
Processing turnstile ('N503', 'R021', '00-00-01', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -12943
WARNING. Abnormal entry count found on day 2016-12-03: -12943
WARNING. Abnormal entry count found on day 2016-12-10: -13575
WARNING. Abnormal entry count found on day 2016-12-10: -13575
WARNING. Abnormal entry count found on day 2016-12-17: -14051
WARNING. Abnormal entry count found on day 2016-12-17: -14051
WARNING. Abnormal entry count found on day 2016-12-24: -12528
WARNING. Abnormal entry count found on day 2016-12-24: -12528
Processing turnstile ('N020', 'R101', '00-00-01', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18942
WARNING. Abnormal entry count found on day 2016-12-03: -18942
WARNING. Abnormal entry count found on day 2016-12-10: -17242
WARNING. Abnormal entry count found on day 2016-12-10: -17242
WARNING. Abnormal entry count found on day 2016-12-17: -14986
WARNING. Abnormal entry count found on day 2016-12-17: -14986
WARNING. Abnormal entry count found on day 2016-12-24: -10425
WARNING. Abnormal entry count found on day 2016-12-24: -10425
Processing turnstile ('PTH07', 'R550', '00-02-04', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -215
WARNING. Abnormal entry count found on day 2016-12-03: -215
WARNING. Abnormal entry count found on day 2016-12-10: -205
WARNING. Abnormal entry count found on day 2016-12-10: -205
WARNING. Abnormal entry count found on day 2016-12-17: -159
WARNING. Abnormal entry count found on day 2016-12-17: -159
WARNING. Abnormal entry count found on day 2016-12-24: -41
WARNING. Abnormal entry count found on day 2016-12-24: -41
Processing turnstile ('N420B', 'R317', '00-00-01', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -212
WARNING. Abnormal entry count found on day 2016-12-03: -212
WARNING. Abnormal entry count found on day 2016-12-10: -154
WARNING. Abnormal entry count found on day 2016-12-10: -154
WARNING. Abnormal entry count found on day 2016-12-17: -148
WARNING. Abnormal entry count found on day 2016-12-17: -148
WARNING. Abnormal entry count found on day 2016-12-24: -131
WARNING. Abnormal entry count found on day 2016-12-24: -131
Processing turnstile ('N043', 'R186', '00-00-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12352
WARNING. Abnormal entry count found on day 2016-12-03: -12352
WARNING. Abnormal entry count found on day 2016-12-10: -12030
WARNING. Abnormal entry count found on day 2016-12-10: -12030
WARNING. Abnormal entry count found on day 2016-12-17: -10720
WARNING. Abnormal entry count found on day 2016-12-17: -10720
WARNING. Abnormal entry count found on day 2016-12-24: -7616
WARNING. Abnormal entry count found on day 2016-12-24: -7616
Processing turnstile ('N405', 'R239', '00-06-01', 'GREENPOINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9235
WARNING. Abnormal entry count found on day 2016-12-03: -9235
WARNING. Abnormal entry count found on day 2016-12-10: -8671
WARNING. Abnormal entry count found on day 2016-12-10: -8671
WARNING. Abnormal entry count found on day 2016-12-17: -7969
WARNING. Abnormal entry count found on day 2016-12-17: -7969
WARNING. Abnormal entry count found on day 2016-12-24: -5469
WARNING. Abnormal entry count found on day 2016-12-24: -5469
Processing turnstile ('R116', 'R030', '00-00-02', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8173
WARNING. Abnormal entry count found on day 2016-12-03: -8173
WARNING. Abnormal entry count found on day 2016-12-10: -7873
WARNING. Abnormal entry count found on day 2016-12-10: -7873
WARNING. Abnormal entry count found on day 2016-12-17: -6280
WARNING. Abnormal entry count found on day 2016-12-17: -6280
WARNING. Abnormal entry count found on day 2016-12-24: -3917
WARNING. Abnormal entry count found on day 2016-12-24: -3917
Processing turnstile ('R176', 'R169', '00-03-00', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -12551
WARNING. Abnormal entry count found on day 2016-12-03: -12551
WARNING. Abnormal entry count found on day 2016-12-10: -12096
WARNING. Abnormal entry count found on day 2016-12-10: -12096
WARNING. Abnormal entry count found on day 2016-12-17: -11199
WARNING. Abnormal entry count found on day 2016-12-17: -11199
WARNING. Abnormal entry count found on day 2016-12-24: -3854
WARNING. Abnormal entry count found on day 2016-12-24: -3854
Processing turnstile ('G001', 'R151', '00-05-01', 'CONEY IS-STILLW')
Processing turnstile ('B022', 'R229', '00-05-01', 'AVENUE M')
WARNING. Abnormal entry count found on day 2016-12-03: -4196
WARNING. Abnormal entry count found on day 2016-12-03: -4196
WARNING. Abnormal entry count found on day 2016-12-10: -4424
WARNING. Abnormal entry count found on day 2016-12-10: -4424
WARNING. Abnormal entry count found on day 2016-12-17: -4315
WARNING. Abnormal entry count found on day 2016-12-17: -4315
WARNING. Abnormal entry count found on day 2016-12-24: -2759
WARNING. Abnormal entry count found on day 2016-12-24: -2759
Processing turnstile ('N120', 'R153', '00-05-01', 'UTICA AV')
Processing turnstile ('A047', 'R087', '00-00-01', 'CITY HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -2213
WARNING. Abnormal entry count found on day 2016-12-03: -2213
WARNING. Abnormal entry count found on day 2016-12-10: -2188
WARNING. Abnormal entry count found on day 2016-12-10: -2188
WARNING. Abnormal entry count found on day 2016-12-17: -1920
WARNING. Abnormal entry count found on day 2016-12-17: -1920
WARNING. Abnormal entry count found on day 2016-12-24: -1500
WARNING. Abnormal entry count found on day 2016-12-24: -1500
Processing turnstile ('N500', 'R020', '00-00-03', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -25850
WARNING. Abnormal entry count found on day 2016-12-03: -25850
WARNING. Abnormal entry count found on day 2016-12-10: -26293
WARNING. Abnormal entry count found on day 2016-12-10: -26293
WARNING. Abnormal entry count found on day 2016-12-17: -27034
WARNING. Abnormal entry count found on day 2016-12-17: -27034
WARNING. Abnormal entry count found on day 2016-12-24: -26617
WARNING. Abnormal entry count found on day 2016-12-24: -26617
Processing turnstile ('R520', 'R223', '01-05-00', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('R115', 'R029', '00-00-00', 'PARK PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -3333
WARNING. Abnormal entry count found on day 2016-12-03: -3333
WARNING. Abnormal entry count found on day 2016-12-10: -2914
WARNING. Abnormal entry count found on day 2016-12-10: -2914
WARNING. Abnormal entry count found on day 2016-12-17: -2796
WARNING. Abnormal entry count found on day 2016-12-17: -2796
WARNING. Abnormal entry count found on day 2016-12-24: -2139
WARNING. Abnormal entry count found on day 2016-12-24: -2139
Processing turnstile ('PTH17', 'R541', '01-00-09', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9912
WARNING. Abnormal entry count found on day 2016-12-03: -9912
WARNING. Abnormal entry count found on day 2016-12-10: -10243
WARNING. Abnormal entry count found on day 2016-12-10: -10243
WARNING. Abnormal entry count found on day 2016-12-17: -9076
WARNING. Abnormal entry count found on day 2016-12-17: -9076
WARNING. Abnormal entry count found on day 2016-12-24: -10080
WARNING. Abnormal entry count found on day 2016-12-24: -10080
Processing turnstile ('N500', 'R020', '00-03-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -18510
WARNING. Abnormal entry count found on day 2016-12-03: -18510
WARNING. Abnormal entry count found on day 2016-12-10: -19052
WARNING. Abnormal entry count found on day 2016-12-10: -19052
WARNING. Abnormal entry count found on day 2016-12-17: -18589
WARNING. Abnormal entry count found on day 2016-12-17: -18589
WARNING. Abnormal entry count found on day 2016-12-24: -18246
WARNING. Abnormal entry count found on day 2016-12-24: -18246
Processing turnstile ('N554', 'R423', '01-04-00', 'AVENUE N')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('R161A', 'R452', '01-00-04', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11561
WARNING. Abnormal entry count found on day 2016-12-03: -11561
WARNING. Abnormal entry count found on day 2016-12-10: -11432
WARNING. Abnormal entry count found on day 2016-12-10: -11432
WARNING. Abnormal entry count found on day 2016-12-17: -11420
WARNING. Abnormal entry count found on day 2016-12-17: -11420
WARNING. Abnormal entry count found on day 2016-12-24: -8440
WARNING. Abnormal entry count found on day 2016-12-24: -8440
Processing turnstile ('R244', 'R050', '00-03-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4989
WARNING. Abnormal entry count found on day 2016-12-03: -4989
WARNING. Abnormal entry count found on day 2016-12-10: -5217
WARNING. Abnormal entry count found on day 2016-12-10: -5217
WARNING. Abnormal entry count found on day 2016-12-17: -4804
WARNING. Abnormal entry count found on day 2016-12-17: -4804
WARNING. Abnormal entry count found on day 2016-12-24: -3965
WARNING. Abnormal entry count found on day 2016-12-24: -3965
Processing turnstile ('H026', 'R137', '00-03-03', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -9324
WARNING. Abnormal entry count found on day 2016-12-03: -9324
WARNING. Abnormal entry count found on day 2016-12-10: -8440
WARNING. Abnormal entry count found on day 2016-12-10: -8440
WARNING. Abnormal entry count found on day 2016-12-17: -7157
WARNING. Abnormal entry count found on day 2016-12-17: -7157
WARNING. Abnormal entry count found on day 2016-12-24: -5405
WARNING. Abnormal entry count found on day 2016-12-24: -5405
Processing turnstile ('N051', 'R084', '02-03-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -12883
WARNING. Abnormal entry count found on day 2016-12-03: -12883
WARNING. Abnormal entry count found on day 2016-12-10: -13209
WARNING. Abnormal entry count found on day 2016-12-10: -13209
WARNING. Abnormal entry count found on day 2016-12-17: -11615
WARNING. Abnormal entry count found on day 2016-12-17: -11615
WARNING. Abnormal entry count found on day 2016-12-24: -8475
WARNING. Abnormal entry count found on day 2016-12-24: -8475
Processing turnstile ('R262A', 'R195', '04-00-02', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -336
WARNING. Abnormal entry count found on day 2016-12-24: -336
Processing turnstile ('N408A', 'R256', '00-00-03', 'NASSAU ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5690
WARNING. Abnormal entry count found on day 2016-12-03: -5690
WARNING. Abnormal entry count found on day 2016-12-10: -5618
WARNING. Abnormal entry count found on day 2016-12-10: -5618
WARNING. Abnormal entry count found on day 2016-12-17: -5106
WARNING. Abnormal entry count found on day 2016-12-17: -5106
WARNING. Abnormal entry count found on day 2016-12-24: -3434
WARNING. Abnormal entry count found on day 2016-12-24: -3434
Processing turnstile ('N125', 'R440', '00-00-00', 'LIBERTY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4391
WARNING. Abnormal entry count found on day 2016-12-03: -4391
WARNING. Abnormal entry count found on day 2016-12-10: -4038
WARNING. Abnormal entry count found on day 2016-12-10: -4038
WARNING. Abnormal entry count found on day 2016-12-17: -4211
WARNING. Abnormal entry count found on day 2016-12-17: -4211
WARNING. Abnormal entry count found on day 2016-12-24: -2849
WARNING. Abnormal entry count found on day 2016-12-24: -2849
Processing turnstile ('N316A', 'R267', '01-00-01', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3496
WARNING. Abnormal entry count found on day 2016-12-03: -3496
WARNING. Abnormal entry count found on day 2016-12-10: -3513
WARNING. Abnormal entry count found on day 2016-12-10: -3513
WARNING. Abnormal entry count found on day 2016-12-17: -3229
WARNING. Abnormal entry count found on day 2016-12-17: -3229
WARNING. Abnormal entry count found on day 2016-12-24: -2225
WARNING. Abnormal entry count found on day 2016-12-24: -2225
Processing turnstile ('PTH03', 'R552', '00-01-05', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -3624
WARNING. Abnormal entry count found on day 2016-12-03: -3624
WARNING. Abnormal entry count found on day 2016-12-10: -3503
WARNING. Abnormal entry count found on day 2016-12-10: -3503
WARNING. Abnormal entry count found on day 2016-12-17: -3796
WARNING. Abnormal entry count found on day 2016-12-17: -3796
WARNING. Abnormal entry count found on day 2016-12-24: -2955
WARNING. Abnormal entry count found on day 2016-12-24: -2955
Processing turnstile ('A042', 'R086', '01-00-00', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2965
WARNING. Abnormal entry count found on day 2016-12-03: -2965
WARNING. Abnormal entry count found on day 2016-12-10: -2976
WARNING. Abnormal entry count found on day 2016-12-10: -2976
WARNING. Abnormal entry count found on day 2016-12-17: -3266
WARNING. Abnormal entry count found on day 2016-12-17: -3266
WARNING. Abnormal entry count found on day 2016-12-24: -2898
WARNING. Abnormal entry count found on day 2016-12-24: -2898
Processing turnstile ('R158', 'R084', '00-02-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -6010
WARNING. Abnormal entry count found on day 2016-12-03: -6010
WARNING. Abnormal entry count found on day 2016-12-10: -5685
WARNING. Abnormal entry count found on day 2016-12-10: -5685
WARNING. Abnormal entry count found on day 2016-12-17: -4713
WARNING. Abnormal entry count found on day 2016-12-17: -4713
WARNING. Abnormal entry count found on day 2016-12-24: -3439
WARNING. Abnormal entry count found on day 2016-12-24: -3439
Processing turnstile ('R186', 'R036', '00-00-01', 'DYCKMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12550
WARNING. Abnormal entry count found on day 2016-12-03: -12550
WARNING. Abnormal entry count found on day 2016-12-10: -11209
WARNING. Abnormal entry count found on day 2016-12-10: -11209
WARNING. Abnormal entry count found on day 2016-12-17: -12111
WARNING. Abnormal entry count found on day 2016-12-17: -12111
WARNING. Abnormal entry count found on day 2016-12-24: -9291
WARNING. Abnormal entry count found on day 2016-12-24: -9291
Processing turnstile ('R302', 'R324', '01-00-01', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11847
WARNING. Abnormal entry count found on day 2016-12-03: -11847
WARNING. Abnormal entry count found on day 2016-12-10: -11503
WARNING. Abnormal entry count found on day 2016-12-10: -11503
WARNING. Abnormal entry count found on day 2016-12-17: -11273
WARNING. Abnormal entry count found on day 2016-12-17: -11273
WARNING. Abnormal entry count found on day 2016-12-24: -8407
WARNING. Abnormal entry count found on day 2016-12-24: -8407
Processing turnstile ('R605', 'R456', '00-00-00', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2636
WARNING. Abnormal entry count found on day 2016-12-03: -2636
WARNING. Abnormal entry count found on day 2016-12-10: -2744
WARNING. Abnormal entry count found on day 2016-12-10: -2744
WARNING. Abnormal entry count found on day 2016-12-17: -2590
WARNING. Abnormal entry count found on day 2016-12-17: -2590
WARNING. Abnormal entry count found on day 2016-12-24: -1903
WARNING. Abnormal entry count found on day 2016-12-24: -1903
Processing turnstile ('R423', 'R429', '00-05-01', 'PELHAM BAY PARK')
Processing turnstile ('N003', 'R185', '00-00-02', 'DYCKMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12552
WARNING. Abnormal entry count found on day 2016-12-03: -12552
WARNING. Abnormal entry count found on day 2016-12-10: -12388
WARNING. Abnormal entry count found on day 2016-12-10: -12388
WARNING. Abnormal entry count found on day 2016-12-17: -11465
WARNING. Abnormal entry count found on day 2016-12-17: -11465
WARNING. Abnormal entry count found on day 2016-12-24: -8755
WARNING. Abnormal entry count found on day 2016-12-24: -8755
Processing turnstile ('N602', 'R259', '00-00-02', 'ROOSEVELT ISLND')
WARNING. Abnormal entry count found on day 2016-12-03: -10783
WARNING. Abnormal entry count found on day 2016-12-03: -10783
WARNING. Abnormal entry count found on day 2016-12-10: -11066
WARNING. Abnormal entry count found on day 2016-12-10: -11066
WARNING. Abnormal entry count found on day 2016-12-17: -10105
WARNING. Abnormal entry count found on day 2016-12-17: -10105
WARNING. Abnormal entry count found on day 2016-12-24: -8919
WARNING. Abnormal entry count found on day 2016-12-24: -8919
Processing turnstile ('R639', 'R109', '00-05-01', 'CHURCH AV')
Processing turnstile ('R521', 'R327', '00-06-00', '52 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3521
WARNING. Abnormal entry count found on day 2016-12-03: -3521
WARNING. Abnormal entry count found on day 2016-12-10: -3197
WARNING. Abnormal entry count found on day 2016-12-10: -3197
WARNING. Abnormal entry count found on day 2016-12-17: -3359
WARNING. Abnormal entry count found on day 2016-12-17: -3359
WARNING. Abnormal entry count found on day 2016-12-24: -2776
WARNING. Abnormal entry count found on day 2016-12-24: -2776
Processing turnstile ('R258', 'R132', '00-03-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10731
WARNING. Abnormal entry count found on day 2016-12-03: -10731
WARNING. Abnormal entry count found on day 2016-12-10: -11245
WARNING. Abnormal entry count found on day 2016-12-10: -11245
WARNING. Abnormal entry count found on day 2016-12-17: -10381
WARNING. Abnormal entry count found on day 2016-12-17: -10381
WARNING. Abnormal entry count found on day 2016-12-24: -7057
WARNING. Abnormal entry count found on day 2016-12-24: -7057
Processing turnstile ('A060', 'R001', '00-00-00', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -11769
WARNING. Abnormal entry count found on day 2016-12-03: -11769
WARNING. Abnormal entry count found on day 2016-12-10: -10676
WARNING. Abnormal entry count found on day 2016-12-10: -10676
WARNING. Abnormal entry count found on day 2016-12-17: -11290
WARNING. Abnormal entry count found on day 2016-12-17: -11290
WARNING. Abnormal entry count found on day 2016-12-24: -12895
WARNING. Abnormal entry count found on day 2016-12-24: -12895
Processing turnstile ('N559', 'R425', '00-00-00', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -6249
WARNING. Abnormal entry count found on day 2016-12-03: -6249
WARNING. Abnormal entry count found on day 2016-12-10: -5527
WARNING. Abnormal entry count found on day 2016-12-10: -5527
WARNING. Abnormal entry count found on day 2016-12-17: -5824
WARNING. Abnormal entry count found on day 2016-12-17: -5824
WARNING. Abnormal entry count found on day 2016-12-24: -4623
WARNING. Abnormal entry count found on day 2016-12-24: -4623
Processing turnstile ('N511', 'R163', '03-00-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8812
WARNING. Abnormal entry count found on day 2016-12-03: -8812
WARNING. Abnormal entry count found on day 2016-12-10: -9150
WARNING. Abnormal entry count found on day 2016-12-10: -9150
WARNING. Abnormal entry count found on day 2016-12-17: -7531
WARNING. Abnormal entry count found on day 2016-12-17: -7531
WARNING. Abnormal entry count found on day 2016-12-24: -4318
WARNING. Abnormal entry count found on day 2016-12-24: -4318
Processing turnstile ('R252', 'R180', '00-03-00', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12482
WARNING. Abnormal entry count found on day 2016-12-03: -12482
WARNING. Abnormal entry count found on day 2016-12-10: -16982
WARNING. Abnormal entry count found on day 2016-12-10: -16982
WARNING. Abnormal entry count found on day 2016-12-17: -12233
WARNING. Abnormal entry count found on day 2016-12-17: -12233
WARNING. Abnormal entry count found on day 2016-12-24: -11435
WARNING. Abnormal entry count found on day 2016-12-24: -11435
Processing turnstile ('R160', 'R164', '02-00-01', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -11196
WARNING. Abnormal entry count found on day 2016-12-03: -11196
WARNING. Abnormal entry count found on day 2016-12-10: -11600
WARNING. Abnormal entry count found on day 2016-12-10: -11600
WARNING. Abnormal entry count found on day 2016-12-17: -11107
WARNING. Abnormal entry count found on day 2016-12-17: -11107
WARNING. Abnormal entry count found on day 2016-12-24: -6866
WARNING. Abnormal entry count found on day 2016-12-24: -6866
Processing turnstile ('PTH04', 'R551', '00-00-01', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -8714
WARNING. Abnormal entry count found on day 2016-12-03: -8714
WARNING. Abnormal entry count found on day 2016-12-10: -8711
WARNING. Abnormal entry count found on day 2016-12-10: -8711
WARNING. Abnormal entry count found on day 2016-12-17: -8558
WARNING. Abnormal entry count found on day 2016-12-17: -8558
WARNING. Abnormal entry count found on day 2016-12-24: -7051
WARNING. Abnormal entry count found on day 2016-12-24: -7051
Processing turnstile ('R606', 'R225', '00-06-00', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3787
WARNING. Abnormal entry count found on day 2016-12-03: -3787
WARNING. Abnormal entry count found on day 2016-12-10: -3985
WARNING. Abnormal entry count found on day 2016-12-10: -3985
WARNING. Abnormal entry count found on day 2016-12-17: -4120
WARNING. Abnormal entry count found on day 2016-12-17: -4120
WARNING. Abnormal entry count found on day 2016-12-24: -3003
WARNING. Abnormal entry count found on day 2016-12-24: -3003
Processing turnstile ('N222', 'R156', '00-00-03', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -8096
WARNING. Abnormal entry count found on day 2016-12-03: -8096
WARNING. Abnormal entry count found on day 2016-12-10: -7915
WARNING. Abnormal entry count found on day 2016-12-10: -7915
WARNING. Abnormal entry count found on day 2016-12-17: -7676
WARNING. Abnormal entry count found on day 2016-12-17: -7676
WARNING. Abnormal entry count found on day 2016-12-24: -6034
WARNING. Abnormal entry count found on day 2016-12-24: -6034
Processing turnstile ('R220', 'R160', '01-00-02', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -2318
WARNING. Abnormal entry count found on day 2016-12-03: -2318
WARNING. Abnormal entry count found on day 2016-12-10: -2624
WARNING. Abnormal entry count found on day 2016-12-10: -2624
WARNING. Abnormal entry count found on day 2016-12-17: -2483
WARNING. Abnormal entry count found on day 2016-12-17: -2483
WARNING. Abnormal entry count found on day 2016-12-24: -1624
WARNING. Abnormal entry count found on day 2016-12-24: -1624
Processing turnstile ('R412', 'R146', '00-06-01', 'HUNTS POINT AV')
Processing turnstile ('N415', 'R286', '00-00-00', 'MYRTLE-WILLOUGH')
WARNING. Abnormal entry count found on day 2016-12-03: -8242
WARNING. Abnormal entry count found on day 2016-12-03: -8242
WARNING. Abnormal entry count found on day 2016-12-10: -8086
WARNING. Abnormal entry count found on day 2016-12-10: -8086
WARNING. Abnormal entry count found on day 2016-12-17: -7796
WARNING. Abnormal entry count found on day 2016-12-17: -7796
WARNING. Abnormal entry count found on day 2016-12-24: -5680
WARNING. Abnormal entry count found on day 2016-12-24: -5680
Processing turnstile ('R637', 'R451', '00-00-00', 'WINTHROP ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9497
WARNING. Abnormal entry count found on day 2016-12-03: -9497
WARNING. Abnormal entry count found on day 2016-12-10: -9863
WARNING. Abnormal entry count found on day 2016-12-10: -9863
WARNING. Abnormal entry count found on day 2016-12-17: -9112
WARNING. Abnormal entry count found on day 2016-12-17: -9112
WARNING. Abnormal entry count found on day 2016-12-24: -6491
WARNING. Abnormal entry count found on day 2016-12-24: -6491
Processing turnstile ('R645', 'R110', '00-05-00', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -19
WARNING. Abnormal entry count found on day 2016-12-03: -19
WARNING. Abnormal entry count found on day 2016-12-10: -12
WARNING. Abnormal entry count found on day 2016-12-10: -12
WARNING. Abnormal entry count found on day 2016-12-17: -17
WARNING. Abnormal entry count found on day 2016-12-17: -17
WARNING. Abnormal entry count found on day 2016-12-24: -13
WARNING. Abnormal entry count found on day 2016-12-24: -13
Processing turnstile ('TRAM2', 'R469', '00-00-00', 'RIT-ROOSEVELT')
WARNING. Abnormal entry count found on day 2016-12-03: -8495
WARNING. Abnormal entry count found on day 2016-12-03: -8495
WARNING. Abnormal entry count found on day 2016-12-10: -8164
WARNING. Abnormal entry count found on day 2016-12-10: -8164
WARNING. Abnormal entry count found on day 2016-12-17: -8486
WARNING. Abnormal entry count found on day 2016-12-17: -8486
WARNING. Abnormal entry count found on day 2016-12-24: -9672
WARNING. Abnormal entry count found on day 2016-12-24: -9672
Processing turnstile ('N323', 'R018', '01-00-02', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -13582
WARNING. Abnormal entry count found on day 2016-12-03: -13582
WARNING. Abnormal entry count found on day 2016-12-10: -13197
WARNING. Abnormal entry count found on day 2016-12-10: -13197
WARNING. Abnormal entry count found on day 2016-12-17: -13439
WARNING. Abnormal entry count found on day 2016-12-17: -13439
WARNING. Abnormal entry count found on day 2016-12-24: -12339
WARNING. Abnormal entry count found on day 2016-12-24: -12339
Processing turnstile ('R101', 'R001', '02-07-01', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -10184
WARNING. Abnormal entry count found on day 2016-12-03: -10184
WARNING. Abnormal entry count found on day 2016-12-10: -8429
WARNING. Abnormal entry count found on day 2016-12-10: -8429
WARNING. Abnormal entry count found on day 2016-12-17: -8271
WARNING. Abnormal entry count found on day 2016-12-17: -8271
WARNING. Abnormal entry count found on day 2016-12-24: -8423
WARNING. Abnormal entry count found on day 2016-12-24: -8423
Processing turnstile ('R197', 'R117', '00-03-00', 'V.CORTLANDT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -9561
WARNING. Abnormal entry count found on day 2016-12-03: -9561
WARNING. Abnormal entry count found on day 2016-12-10: -9355
WARNING. Abnormal entry count found on day 2016-12-10: -9355
WARNING. Abnormal entry count found on day 2016-12-17: -8206
WARNING. Abnormal entry count found on day 2016-12-17: -8206
WARNING. Abnormal entry count found on day 2016-12-24: -6386
WARNING. Abnormal entry count found on day 2016-12-24: -6386
Processing turnstile ('C023', 'R213', '00-00-01', 'BAY RIDGE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7555
WARNING. Abnormal entry count found on day 2016-12-03: -7555
WARNING. Abnormal entry count found on day 2016-12-10: -7522
WARNING. Abnormal entry count found on day 2016-12-10: -7522
WARNING. Abnormal entry count found on day 2016-12-17: -7375
WARNING. Abnormal entry count found on day 2016-12-17: -7375
WARNING. Abnormal entry count found on day 2016-12-24: -5498
WARNING. Abnormal entry count found on day 2016-12-24: -5498
Processing turnstile ('R241A', 'R048', '00-00-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16655
WARNING. Abnormal entry count found on day 2016-12-03: -16655
WARNING. Abnormal entry count found on day 2016-12-10: -16731
WARNING. Abnormal entry count found on day 2016-12-10: -16731
WARNING. Abnormal entry count found on day 2016-12-17: -13282
WARNING. Abnormal entry count found on day 2016-12-17: -13282
WARNING. Abnormal entry count found on day 2016-12-24: -10652
WARNING. Abnormal entry count found on day 2016-12-24: -10652
Processing turnstile ('PTH07', 'R550', '00-02-01', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -66
WARNING. Abnormal entry count found on day 2016-12-03: -66
WARNING. Abnormal entry count found on day 2016-12-10: -92
WARNING. Abnormal entry count found on day 2016-12-10: -92
WARNING. Abnormal entry count found on day 2016-12-17: -67
WARNING. Abnormal entry count found on day 2016-12-17: -67
WARNING. Abnormal entry count found on day 2016-12-24: -31
WARNING. Abnormal entry count found on day 2016-12-24: -31
Processing turnstile ('B026', 'R230', '00-00-02', 'NECK RD')
WARNING. Abnormal entry count found on day 2016-12-03: -4023
WARNING. Abnormal entry count found on day 2016-12-03: -4023
WARNING. Abnormal entry count found on day 2016-12-10: -4233
WARNING. Abnormal entry count found on day 2016-12-10: -4233
WARNING. Abnormal entry count found on day 2016-12-17: -3857
WARNING. Abnormal entry count found on day 2016-12-17: -3857
WARNING. Abnormal entry count found on day 2016-12-24: -3361
WARNING. Abnormal entry count found on day 2016-12-24: -3361
Processing turnstile ('R127', 'R105', '00-00-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -2547
WARNING. Abnormal entry count found on day 2016-12-05: -1937
WARNING. Abnormal entry count found on day 2016-12-06: -2952
WARNING. Abnormal entry count found on day 2016-12-07: -2984
WARNING. Abnormal entry count found on day 2016-12-08: -3090
WARNING. Abnormal entry count found on day 2016-12-09: -3266
WARNING. Abnormal entry count found on day 2016-12-03: 16776
WARNING. Abnormal entry count found on day 2016-12-04: -2547
WARNING. Abnormal entry count found on day 2016-12-05: -1937
WARNING. Abnormal entry count found on day 2016-12-06: -2952
WARNING. Abnormal entry count found on day 2016-12-07: -2984
WARNING. Abnormal entry count found on day 2016-12-08: -3090
WARNING. Abnormal entry count found on day 2016-12-09: -3266
WARNING. Abnormal entry count found on day 2016-12-03: 16776
WARNING. Abnormal entry count found on day 2016-12-04: -2547
WARNING. Abnormal entry count found on day 2016-12-05: -1937
WARNING. Abnormal entry count found on day 2016-12-06: -2952
WARNING. Abnormal entry count found on day 2016-12-07: -2984
WARNING. Abnormal entry count found on day 2016-12-08: -3090
WARNING. Abnormal entry count found on day 2016-12-09: -3266
WARNING. Abnormal entry count found on day 2016-12-10: -3317
WARNING. Abnormal entry count found on day 2016-12-11: -2510
WARNING. Abnormal entry count found on day 2016-12-12: -1903
WARNING. Abnormal entry count found on day 2016-12-13: -3088
WARNING. Abnormal entry count found on day 2016-12-14: -3142
WARNING. Abnormal entry count found on day 2016-12-15: -3192
WARNING. Abnormal entry count found on day 2016-12-16: -2667
WARNING. Abnormal entry count found on day 2016-12-10: 16502
WARNING. Abnormal entry count found on day 2016-12-11: -2510
WARNING. Abnormal entry count found on day 2016-12-12: -1903
WARNING. Abnormal entry count found on day 2016-12-13: -3088
WARNING. Abnormal entry count found on day 2016-12-14: -3142
WARNING. Abnormal entry count found on day 2016-12-15: -3192
WARNING. Abnormal entry count found on day 2016-12-16: -2667
WARNING. Abnormal entry count found on day 2016-12-10: 16502
WARNING. Abnormal entry count found on day 2016-12-11: -2510
WARNING. Abnormal entry count found on day 2016-12-12: -1903
WARNING. Abnormal entry count found on day 2016-12-13: -3088
WARNING. Abnormal entry count found on day 2016-12-14: -3142
WARNING. Abnormal entry count found on day 2016-12-15: -3192
WARNING. Abnormal entry count found on day 2016-12-16: -2667
WARNING. Abnormal entry count found on day 2016-12-17: -2622
WARNING. Abnormal entry count found on day 2016-12-18: -47
WARNING. Abnormal entry count found on day 2016-12-19: -321
WARNING. Abnormal entry count found on day 2016-12-20: -2867
WARNING. Abnormal entry count found on day 2016-12-21: -2994
WARNING. Abnormal entry count found on day 2016-12-22: -3075
WARNING. Abnormal entry count found on day 2016-12-23: -2823
WARNING. Abnormal entry count found on day 2016-12-17: 12127
WARNING. Abnormal entry count found on day 2016-12-18: -47
WARNING. Abnormal entry count found on day 2016-12-19: -321
WARNING. Abnormal entry count found on day 2016-12-20: -2867
WARNING. Abnormal entry count found on day 2016-12-21: -2994
WARNING. Abnormal entry count found on day 2016-12-22: -3075
WARNING. Abnormal entry count found on day 2016-12-23: -2823
WARNING. Abnormal entry count found on day 2016-12-17: 12127
WARNING. Abnormal entry count found on day 2016-12-18: -47
WARNING. Abnormal entry count found on day 2016-12-19: -321
WARNING. Abnormal entry count found on day 2016-12-20: -2867
WARNING. Abnormal entry count found on day 2016-12-21: -2994
WARNING. Abnormal entry count found on day 2016-12-22: -3075
WARNING. Abnormal entry count found on day 2016-12-23: -2823
WARNING. Abnormal entry count found on day 2016-12-24: -2698
WARNING. Abnormal entry count found on day 2016-12-25: -1600
WARNING. Abnormal entry count found on day 2016-12-26: -1033
WARNING. Abnormal entry count found on day 2016-12-27: -1662
WARNING. Abnormal entry count found on day 2016-12-28: -2359
WARNING. Abnormal entry count found on day 2016-12-29: -2424
WARNING. Abnormal entry count found on day 2016-12-30: -2234
WARNING. Abnormal entry count found on day 2016-12-24: 11312
WARNING. Abnormal entry count found on day 2016-12-25: -1600
WARNING. Abnormal entry count found on day 2016-12-26: -1033
WARNING. Abnormal entry count found on day 2016-12-27: -1662
WARNING. Abnormal entry count found on day 2016-12-28: -2359
WARNING. Abnormal entry count found on day 2016-12-29: -2424
WARNING. Abnormal entry count found on day 2016-12-30: -2234
WARNING. Abnormal entry count found on day 2016-12-24: 11312
WARNING. Abnormal entry count found on day 2016-12-25: -1600
WARNING. Abnormal entry count found on day 2016-12-26: -1033
WARNING. Abnormal entry count found on day 2016-12-27: -1662
WARNING. Abnormal entry count found on day 2016-12-28: -2359
WARNING. Abnormal entry count found on day 2016-12-29: -2424
WARNING. Abnormal entry count found on day 2016-12-30: -2234
Processing turnstile ('R307', 'R207', '01-05-01', '135 ST')
Processing turnstile ('N207', 'R104', '00-00-01', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10747
WARNING. Abnormal entry count found on day 2016-12-03: -10747
WARNING. Abnormal entry count found on day 2016-12-10: -10462
WARNING. Abnormal entry count found on day 2016-12-10: -10462
WARNING. Abnormal entry count found on day 2016-12-17: -11388
WARNING. Abnormal entry count found on day 2016-12-17: -11388
WARNING. Abnormal entry count found on day 2016-12-24: -8471
WARNING. Abnormal entry count found on day 2016-12-24: -8471
Processing turnstile ('R412', 'R146', '00-06-00', 'HUNTS POINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -8
WARNING. Abnormal entry count found on day 2016-12-24: -8
Processing turnstile ('N063', 'R011', '02-03-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -16298
WARNING. Abnormal entry count found on day 2016-12-03: -16298
WARNING. Abnormal entry count found on day 2016-12-10: -15786
WARNING. Abnormal entry count found on day 2016-12-10: -15786
WARNING. Abnormal entry count found on day 2016-12-17: -14818
WARNING. Abnormal entry count found on day 2016-12-17: -14818
WARNING. Abnormal entry count found on day 2016-12-24: -11486
WARNING. Abnormal entry count found on day 2016-12-24: -11486
Processing turnstile ('PTH17', 'R541', '01-01-02', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9503
WARNING. Abnormal entry count found on day 2016-12-03: -9503
WARNING. Abnormal entry count found on day 2016-12-10: -8986
WARNING. Abnormal entry count found on day 2016-12-10: -8986
WARNING. Abnormal entry count found on day 2016-12-17: -8085
WARNING. Abnormal entry count found on day 2016-12-17: -8085
WARNING. Abnormal entry count found on day 2016-12-24: -8222
WARNING. Abnormal entry count found on day 2016-12-24: -8222
Processing turnstile ('N126', 'R441', '00-00-02', 'VAN SICLEN AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -6753
WARNING. Abnormal entry count found on day 2016-12-03: -6753
WARNING. Abnormal entry count found on day 2016-12-10: -6355
WARNING. Abnormal entry count found on day 2016-12-10: -6355
WARNING. Abnormal entry count found on day 2016-12-17: -6176
WARNING. Abnormal entry count found on day 2016-12-17: -6176
WARNING. Abnormal entry count found on day 2016-12-24: -4497
WARNING. Abnormal entry count found on day 2016-12-24: -4497
Processing turnstile ('JFK02', 'R535', '01-00-06', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -273
WARNING. Abnormal entry count found on day 2016-12-03: -273
WARNING. Abnormal entry count found on day 2016-12-10: -281
WARNING. Abnormal entry count found on day 2016-12-10: -281
WARNING. Abnormal entry count found on day 2016-12-17: -337
WARNING. Abnormal entry count found on day 2016-12-17: -337
WARNING. Abnormal entry count found on day 2016-12-24: -467
WARNING. Abnormal entry count found on day 2016-12-24: -467
Processing turnstile ('R532', 'R328', '00-05-00', 'METS-WILLETS PT')
Processing turnstile ('J024', 'R437', '00-00-02', 'CRESCENT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13016
WARNING. Abnormal entry count found on day 2016-12-03: -13016
WARNING. Abnormal entry count found on day 2016-12-10: -12593
WARNING. Abnormal entry count found on day 2016-12-10: -12593
WARNING. Abnormal entry count found on day 2016-12-17: -12643
WARNING. Abnormal entry count found on day 2016-12-17: -12643
WARNING. Abnormal entry count found on day 2016-12-24: -10480
WARNING. Abnormal entry count found on day 2016-12-24: -10480
Processing turnstile ('N141', 'R356', '00-00-02', 'OZONE PK LEFFRT')
WARNING. Abnormal entry count found on day 2016-12-03: -5947
WARNING. Abnormal entry count found on day 2016-12-03: -5947
WARNING. Abnormal entry count found on day 2016-12-10: -5671
WARNING. Abnormal entry count found on day 2016-12-10: -5671
WARNING. Abnormal entry count found on day 2016-12-17: -6179
WARNING. Abnormal entry count found on day 2016-12-17: -6179
WARNING. Abnormal entry count found on day 2016-12-24: -3434
WARNING. Abnormal entry count found on day 2016-12-24: -3434
Processing turnstile ('R532H', 'R328', '02-03-02', 'METS-WILLETS PT')
Processing turnstile ('R612', 'R057', '01-00-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -1143
WARNING. Abnormal entry count found on day 2016-12-03: -1143
WARNING. Abnormal entry count found on day 2016-12-10: -1054
WARNING. Abnormal entry count found on day 2016-12-10: -1054
WARNING. Abnormal entry count found on day 2016-12-17: -1244
WARNING. Abnormal entry count found on day 2016-12-17: -1244
WARNING. Abnormal entry count found on day 2016-12-24: -988
WARNING. Abnormal entry count found on day 2016-12-24: -988
Processing turnstile ('N417', 'R269', '00-00-02', 'BEDFORD-NOSTRAN')
WARNING. Abnormal entry count found on day 2016-12-03: -10761
WARNING. Abnormal entry count found on day 2016-12-03: -10761
WARNING. Abnormal entry count found on day 2016-12-10: -10823
WARNING. Abnormal entry count found on day 2016-12-10: -10823
WARNING. Abnormal entry count found on day 2016-12-17: -9544
WARNING. Abnormal entry count found on day 2016-12-17: -9544
WARNING. Abnormal entry count found on day 2016-12-24: -6373
WARNING. Abnormal entry count found on day 2016-12-24: -6373
Processing turnstile ('A039', 'R085', '01-00-01', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -4444
WARNING. Abnormal entry count found on day 2016-12-03: -4444
WARNING. Abnormal entry count found on day 2016-12-10: -4343
WARNING. Abnormal entry count found on day 2016-12-10: -4343
WARNING. Abnormal entry count found on day 2016-12-17: -4376
WARNING. Abnormal entry count found on day 2016-12-17: -4376
WARNING. Abnormal entry count found on day 2016-12-24: -3585
WARNING. Abnormal entry count found on day 2016-12-24: -3585
Processing turnstile ('N078', 'R175', '01-06-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4292
WARNING. Abnormal entry count found on day 2016-12-03: -4292
WARNING. Abnormal entry count found on day 2016-12-10: -4117
WARNING. Abnormal entry count found on day 2016-12-10: -4117
WARNING. Abnormal entry count found on day 2016-12-17: -3755
WARNING. Abnormal entry count found on day 2016-12-17: -3755
WARNING. Abnormal entry count found on day 2016-12-24: -2269
WARNING. Abnormal entry count found on day 2016-12-24: -2269
Processing turnstile ('R305', 'R206', '01-00-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11498
WARNING. Abnormal entry count found on day 2016-12-03: -11498
WARNING. Abnormal entry count found on day 2016-12-10: -11640
WARNING. Abnormal entry count found on day 2016-12-10: -11640
WARNING. Abnormal entry count found on day 2016-12-17: -11612
WARNING. Abnormal entry count found on day 2016-12-17: -11612
WARNING. Abnormal entry count found on day 2016-12-24: -8091
WARNING. Abnormal entry count found on day 2016-12-24: -8091
Processing turnstile ('R625', 'R062', '01-06-01', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -1625
WARNING. Abnormal entry count found on day 2016-12-03: -1625
WARNING. Abnormal entry count found on day 2016-12-10: -1624
WARNING. Abnormal entry count found on day 2016-12-10: -1624
WARNING. Abnormal entry count found on day 2016-12-17: -1568
WARNING. Abnormal entry count found on day 2016-12-17: -1568
WARNING. Abnormal entry count found on day 2016-12-24: -926
WARNING. Abnormal entry count found on day 2016-12-24: -926
Processing turnstile ('N110', 'R283', '00-06-00', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8384
WARNING. Abnormal entry count found on day 2016-12-03: -8384
WARNING. Abnormal entry count found on day 2016-12-10: -8352
WARNING. Abnormal entry count found on day 2016-12-10: -8352
WARNING. Abnormal entry count found on day 2016-12-17: -7341
WARNING. Abnormal entry count found on day 2016-12-17: -7341
WARNING. Abnormal entry count found on day 2016-12-24: -4867
WARNING. Abnormal entry count found on day 2016-12-24: -4867
Processing turnstile ('R238', 'R046', '00-03-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22781
WARNING. Abnormal entry count found on day 2016-12-03: -22781
WARNING. Abnormal entry count found on day 2016-12-10: -18251
WARNING. Abnormal entry count found on day 2016-12-10: -18251
WARNING. Abnormal entry count found on day 2016-12-17: -18819
WARNING. Abnormal entry count found on day 2016-12-17: -18819
WARNING. Abnormal entry count found on day 2016-12-24: -14970
WARNING. Abnormal entry count found on day 2016-12-24: -14970
Processing turnstile ('R507', 'R134', '00-00-02', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6004
WARNING. Abnormal entry count found on day 2016-12-03: -6004
WARNING. Abnormal entry count found on day 2016-12-10: -5992
WARNING. Abnormal entry count found on day 2016-12-10: -5992
WARNING. Abnormal entry count found on day 2016-12-17: -5265
WARNING. Abnormal entry count found on day 2016-12-17: -5265
WARNING. Abnormal entry count found on day 2016-12-24: -2898
WARNING. Abnormal entry count found on day 2016-12-24: -2898
Processing turnstile ('R617', 'R058', '00-00-00', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8238
WARNING. Abnormal entry count found on day 2016-12-03: -8238
WARNING. Abnormal entry count found on day 2016-12-10: -8102
WARNING. Abnormal entry count found on day 2016-12-10: -8102
WARNING. Abnormal entry count found on day 2016-12-17: -7119
WARNING. Abnormal entry count found on day 2016-12-17: -7119
WARNING. Abnormal entry count found on day 2016-12-24: -4508
WARNING. Abnormal entry count found on day 2016-12-24: -4508
Processing turnstile ('N094', 'R029', '01-00-01', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -4588
WARNING. Abnormal entry count found on day 2016-12-03: -4588
WARNING. Abnormal entry count found on day 2016-12-10: -4339
WARNING. Abnormal entry count found on day 2016-12-10: -4339
WARNING. Abnormal entry count found on day 2016-12-17: -6898
WARNING. Abnormal entry count found on day 2016-12-17: -6898
WARNING. Abnormal entry count found on day 2016-12-24: -8367
WARNING. Abnormal entry count found on day 2016-12-24: -8367
Processing turnstile ('R251', 'R144', '00-03-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -34161
WARNING. Abnormal entry count found on day 2016-12-03: -34161
WARNING. Abnormal entry count found on day 2016-12-10: -33815
WARNING. Abnormal entry count found on day 2016-12-10: -33815
WARNING. Abnormal entry count found on day 2016-12-17: -30106
WARNING. Abnormal entry count found on day 2016-12-17: -30106
WARNING. Abnormal entry count found on day 2016-12-24: -21027
WARNING. Abnormal entry count found on day 2016-12-24: -21027
Processing turnstile ('R306', 'R207', '00-00-04', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15609
WARNING. Abnormal entry count found on day 2016-12-03: -15609
WARNING. Abnormal entry count found on day 2016-12-10: -15351
WARNING. Abnormal entry count found on day 2016-12-10: -15351
WARNING. Abnormal entry count found on day 2016-12-17: -14937
WARNING. Abnormal entry count found on day 2016-12-17: -14937
WARNING. Abnormal entry count found on day 2016-12-24: -12028
WARNING. Abnormal entry count found on day 2016-12-24: -12028
Processing turnstile ('H005', 'R330', '00-00-01', '3 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3871
WARNING. Abnormal entry count found on day 2016-12-03: -3871
WARNING. Abnormal entry count found on day 2016-12-10: -3986
WARNING. Abnormal entry count found on day 2016-12-10: -3986
WARNING. Abnormal entry count found on day 2016-12-17: -3643
WARNING. Abnormal entry count found on day 2016-12-17: -3643
WARNING. Abnormal entry count found on day 2016-12-24: -2819
WARNING. Abnormal entry count found on day 2016-12-24: -2819
Processing turnstile ('R401', 'R445', '00-06-00', '3 AV 138 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12168
WARNING. Abnormal entry count found on day 2016-12-03: -12168
WARNING. Abnormal entry count found on day 2016-12-10: -11170
WARNING. Abnormal entry count found on day 2016-12-10: -11170
WARNING. Abnormal entry count found on day 2016-12-17: -10770
WARNING. Abnormal entry count found on day 2016-12-17: -10770
WARNING. Abnormal entry count found on day 2016-12-24: -7324
WARNING. Abnormal entry count found on day 2016-12-24: -7324
Processing turnstile ('A039', 'R085', '01-03-00', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -2867
WARNING. Abnormal entry count found on day 2016-12-03: -2867
WARNING. Abnormal entry count found on day 2016-12-10: -2818
WARNING. Abnormal entry count found on day 2016-12-10: -2818
WARNING. Abnormal entry count found on day 2016-12-17: -2645
WARNING. Abnormal entry count found on day 2016-12-17: -2645
WARNING. Abnormal entry count found on day 2016-12-24: -2262
WARNING. Abnormal entry count found on day 2016-12-24: -2262
Processing turnstile ('J007', 'R377', '00-00-00', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16555
WARNING. Abnormal entry count found on day 2016-12-03: -16555
WARNING. Abnormal entry count found on day 2016-12-10: -15325
WARNING. Abnormal entry count found on day 2016-12-10: -15325
WARNING. Abnormal entry count found on day 2016-12-17: -15885
WARNING. Abnormal entry count found on day 2016-12-17: -15885
WARNING. Abnormal entry count found on day 2016-12-24: -12766
WARNING. Abnormal entry count found on day 2016-12-24: -12766
Processing turnstile ('N505', 'R022', '02-00-05', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -4447
WARNING. Abnormal entry count found on day 2016-12-03: -4447
WARNING. Abnormal entry count found on day 2016-12-10: -4885
WARNING. Abnormal entry count found on day 2016-12-10: -4885
WARNING. Abnormal entry count found on day 2016-12-17: -7251
WARNING. Abnormal entry count found on day 2016-12-17: -7251
WARNING. Abnormal entry count found on day 2016-12-24: -5707
WARNING. Abnormal entry count found on day 2016-12-24: -5707
Processing turnstile ('R511', 'R091', '00-00-03', '36 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6158
WARNING. Abnormal entry count found on day 2016-12-03: -6158
WARNING. Abnormal entry count found on day 2016-12-10: -5807
WARNING. Abnormal entry count found on day 2016-12-10: -5807
WARNING. Abnormal entry count found on day 2016-12-17: -5688
WARNING. Abnormal entry count found on day 2016-12-17: -5688
WARNING. Abnormal entry count found on day 2016-12-24: -3883
WARNING. Abnormal entry count found on day 2016-12-24: -3883
Processing turnstile ('R290', 'R161', '00-00-01', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -8388
WARNING. Abnormal entry count found on day 2016-12-03: -8388
WARNING. Abnormal entry count found on day 2016-12-10: -7990
WARNING. Abnormal entry count found on day 2016-12-10: -7990
WARNING. Abnormal entry count found on day 2016-12-17: -7902
WARNING. Abnormal entry count found on day 2016-12-17: -7902
WARNING. Abnormal entry count found on day 2016-12-24: -5900
WARNING. Abnormal entry count found on day 2016-12-24: -5900
Processing turnstile ('N333B', 'R141', '02-01-02', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -3680
WARNING. Abnormal entry count found on day 2016-12-03: -3680
WARNING. Abnormal entry count found on day 2016-12-10: -3503
WARNING. Abnormal entry count found on day 2016-12-10: -3503
WARNING. Abnormal entry count found on day 2016-12-17: -3637
WARNING. Abnormal entry count found on day 2016-12-17: -3637
WARNING. Abnormal entry count found on day 2016-12-24: -2850
WARNING. Abnormal entry count found on day 2016-12-24: -2850
Processing turnstile ('PTH16', 'R550', '01-00-04', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -1699
WARNING. Abnormal entry count found on day 2016-12-03: -1699
WARNING. Abnormal entry count found on day 2016-12-10: -1707
WARNING. Abnormal entry count found on day 2016-12-10: -1707
WARNING. Abnormal entry count found on day 2016-12-17: -1759
WARNING. Abnormal entry count found on day 2016-12-17: -1759
WARNING. Abnormal entry count found on day 2016-12-24: -695
WARNING. Abnormal entry count found on day 2016-12-24: -695
Processing turnstile ('N128', 'R200', '00-05-00', 'EUCLID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R245', 'R051', '00-05-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8113
WARNING. Abnormal entry count found on day 2016-12-03: -8113
WARNING. Abnormal entry count found on day 2016-12-10: -7135
WARNING. Abnormal entry count found on day 2016-12-10: -7135
WARNING. Abnormal entry count found on day 2016-12-17: -6485
WARNING. Abnormal entry count found on day 2016-12-17: -6485
WARNING. Abnormal entry count found on day 2016-12-24: -5159
WARNING. Abnormal entry count found on day 2016-12-24: -5159
Processing turnstile ('R532', 'R328', '00-05-04', 'METS-WILLETS PT')
Processing turnstile ('N519A', 'R461', '01-01-02', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -6057
WARNING. Abnormal entry count found on day 2016-12-03: -6057
WARNING. Abnormal entry count found on day 2016-12-10: -6241
WARNING. Abnormal entry count found on day 2016-12-10: -6241
WARNING. Abnormal entry count found on day 2016-12-17: -7151
WARNING. Abnormal entry count found on day 2016-12-17: -7151
WARNING. Abnormal entry count found on day 2016-12-24: -5895
WARNING. Abnormal entry count found on day 2016-12-24: -5895
Processing turnstile ('A069', 'R044', '01-00-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2519
WARNING. Abnormal entry count found on day 2016-12-03: -2519
WARNING. Abnormal entry count found on day 2016-12-10: -2414
WARNING. Abnormal entry count found on day 2016-12-10: -2414
WARNING. Abnormal entry count found on day 2016-12-17: -2427
WARNING. Abnormal entry count found on day 2016-12-17: -2427
WARNING. Abnormal entry count found on day 2016-12-24: -1790
WARNING. Abnormal entry count found on day 2016-12-24: -1790
Processing turnstile ('R192', 'R039', '00-00-03', 'MARBLE HILL-225')
WARNING. Abnormal entry count found on day 2016-12-03: -2907
WARNING. Abnormal entry count found on day 2016-12-03: -2907
WARNING. Abnormal entry count found on day 2016-12-10: -3318
WARNING. Abnormal entry count found on day 2016-12-10: -3318
WARNING. Abnormal entry count found on day 2016-12-17: -3183
WARNING. Abnormal entry count found on day 2016-12-17: -3183
WARNING. Abnormal entry count found on day 2016-12-24: -2279
WARNING. Abnormal entry count found on day 2016-12-24: -2279
Processing turnstile ('JFK03', 'R536', '00-03-02', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-03: -4878
WARNING. Abnormal entry count found on day 2016-12-03: -4878
WARNING. Abnormal entry count found on day 2016-12-10: -5300
WARNING. Abnormal entry count found on day 2016-12-10: -5300
WARNING. Abnormal entry count found on day 2016-12-17: -7235
WARNING. Abnormal entry count found on day 2016-12-17: -7235
WARNING. Abnormal entry count found on day 2016-12-24: -5517
WARNING. Abnormal entry count found on day 2016-12-24: -5517
Processing turnstile ('A054', 'R227', '01-03-00', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2715
WARNING. Abnormal entry count found on day 2016-12-03: -2715
WARNING. Abnormal entry count found on day 2016-12-10: -2650
WARNING. Abnormal entry count found on day 2016-12-10: -2650
WARNING. Abnormal entry count found on day 2016-12-17: -2876
WARNING. Abnormal entry count found on day 2016-12-17: -2876
WARNING. Abnormal entry count found on day 2016-12-24: -3471
WARNING. Abnormal entry count found on day 2016-12-24: -3471
Processing turnstile ('R501', 'R054', '00-06-01', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -13281
WARNING. Abnormal entry count found on day 2016-12-03: -13281
WARNING. Abnormal entry count found on day 2016-12-10: -10693
WARNING. Abnormal entry count found on day 2016-12-10: -10693
WARNING. Abnormal entry count found on day 2016-12-17: -12669
WARNING. Abnormal entry count found on day 2016-12-17: -12669
WARNING. Abnormal entry count found on day 2016-12-24: -11675
WARNING. Abnormal entry count found on day 2016-12-24: -11675
Processing turnstile ('N513', 'R163', '04-00-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9369
WARNING. Abnormal entry count found on day 2016-12-03: -9369
WARNING. Abnormal entry count found on day 2016-12-10: -9434
WARNING. Abnormal entry count found on day 2016-12-10: -9434
WARNING. Abnormal entry count found on day 2016-12-17: -8854
WARNING. Abnormal entry count found on day 2016-12-17: -8854
WARNING. Abnormal entry count found on day 2016-12-24: -6154
WARNING. Abnormal entry count found on day 2016-12-24: -6154
Processing turnstile ('R529', 'R208', '00-05-00', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-12-03: -19920
WARNING. Abnormal entry count found on day 2016-12-03: -19920
WARNING. Abnormal entry count found on day 2016-12-10: -18858
WARNING. Abnormal entry count found on day 2016-12-10: -18858
WARNING. Abnormal entry count found on day 2016-12-17: -17903
WARNING. Abnormal entry count found on day 2016-12-17: -17903
WARNING. Abnormal entry count found on day 2016-12-24: -16318
WARNING. Abnormal entry count found on day 2016-12-24: -16318
Processing turnstile ('R215', 'R322', '00-00-01', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18509
WARNING. Abnormal entry count found on day 2016-12-03: -18509
WARNING. Abnormal entry count found on day 2016-12-10: -18560
WARNING. Abnormal entry count found on day 2016-12-10: -18560
WARNING. Abnormal entry count found on day 2016-12-17: -19015
WARNING. Abnormal entry count found on day 2016-12-17: -19015
WARNING. Abnormal entry count found on day 2016-12-24: -16295
WARNING. Abnormal entry count found on day 2016-12-24: -16295
Processing turnstile ('N420B', 'R317', '00-06-01', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -17285
WARNING. Abnormal entry count found on day 2016-12-03: -17285
WARNING. Abnormal entry count found on day 2016-12-10: -16983
WARNING. Abnormal entry count found on day 2016-12-10: -16983
WARNING. Abnormal entry count found on day 2016-12-17: -13224
WARNING. Abnormal entry count found on day 2016-12-17: -13224
WARNING. Abnormal entry count found on day 2016-12-24: -8483
WARNING. Abnormal entry count found on day 2016-12-24: -8483
Processing turnstile ('C028', 'R216', '01-06-00', 'BAY RIDGE-95 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4872
WARNING. Abnormal entry count found on day 2016-12-03: -4872
WARNING. Abnormal entry count found on day 2016-12-10: -4611
WARNING. Abnormal entry count found on day 2016-12-10: -4611
WARNING. Abnormal entry count found on day 2016-12-17: -4508
WARNING. Abnormal entry count found on day 2016-12-17: -4508
WARNING. Abnormal entry count found on day 2016-12-24: -2986
WARNING. Abnormal entry count found on day 2016-12-24: -2986
Processing turnstile ('R412', 'R146', '00-03-00', 'HUNTS POINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5128
WARNING. Abnormal entry count found on day 2016-12-03: -5128
WARNING. Abnormal entry count found on day 2016-12-10: -4985
WARNING. Abnormal entry count found on day 2016-12-10: -4985
WARNING. Abnormal entry count found on day 2016-12-17: -5070
WARNING. Abnormal entry count found on day 2016-12-17: -5070
WARNING. Abnormal entry count found on day 2016-12-24: -4086
WARNING. Abnormal entry count found on day 2016-12-24: -4086
Processing turnstile ('R247', 'R178', '01-00-00', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6916
WARNING. Abnormal entry count found on day 2016-12-03: -6916
WARNING. Abnormal entry count found on day 2016-12-10: -6672
WARNING. Abnormal entry count found on day 2016-12-10: -6672
WARNING. Abnormal entry count found on day 2016-12-17: -6124
WARNING. Abnormal entry count found on day 2016-12-17: -6124
WARNING. Abnormal entry count found on day 2016-12-24: -4827
WARNING. Abnormal entry count found on day 2016-12-24: -4827
Processing turnstile ('N318', 'R298', '00-00-01', 'NORTHERN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -8847
WARNING. Abnormal entry count found on day 2016-12-03: -8847
WARNING. Abnormal entry count found on day 2016-12-10: -8996
WARNING. Abnormal entry count found on day 2016-12-10: -8996
WARNING. Abnormal entry count found on day 2016-12-17: -8462
WARNING. Abnormal entry count found on day 2016-12-17: -8462
WARNING. Abnormal entry count found on day 2016-12-24: -6232
WARNING. Abnormal entry count found on day 2016-12-24: -6232
Processing turnstile ('J020', 'R433', '00-00-00', 'ALABAMA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3157
WARNING. Abnormal entry count found on day 2016-12-03: -3157
WARNING. Abnormal entry count found on day 2016-12-10: -2934
WARNING. Abnormal entry count found on day 2016-12-10: -2934
WARNING. Abnormal entry count found on day 2016-12-17: -2990
WARNING. Abnormal entry count found on day 2016-12-17: -2990
WARNING. Abnormal entry count found on day 2016-12-24: -2220
WARNING. Abnormal entry count found on day 2016-12-24: -2220
Processing turnstile ('R610', 'R057', '00-03-06', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -15237
WARNING. Abnormal entry count found on day 2016-12-03: -15237
WARNING. Abnormal entry count found on day 2016-12-10: -15817
WARNING. Abnormal entry count found on day 2016-12-10: -15817
WARNING. Abnormal entry count found on day 2016-12-17: -16100
WARNING. Abnormal entry count found on day 2016-12-17: -16100
WARNING. Abnormal entry count found on day 2016-12-24: -10861
WARNING. Abnormal entry count found on day 2016-12-24: -10861
Processing turnstile ('B031', 'R172', '01-06-03', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -2654
WARNING. Abnormal entry count found on day 2016-12-03: -2654
WARNING. Abnormal entry count found on day 2016-12-10: -2476
WARNING. Abnormal entry count found on day 2016-12-10: -2476
WARNING. Abnormal entry count found on day 2016-12-17: -2481
WARNING. Abnormal entry count found on day 2016-12-17: -2481
WARNING. Abnormal entry count found on day 2016-12-24: -1991
WARNING. Abnormal entry count found on day 2016-12-24: -1991
Processing turnstile ('N405', 'R239', '00-03-01', 'GREENPOINT AV')
Processing turnstile ('R192', 'R039', '00-00-01', 'MARBLE HILL-225')
WARNING. Abnormal entry count found on day 2016-12-03: -9465
WARNING. Abnormal entry count found on day 2016-12-03: -9465
WARNING. Abnormal entry count found on day 2016-12-10: -6777
WARNING. Abnormal entry count found on day 2016-12-10: -6777
WARNING. Abnormal entry count found on day 2016-12-17: -9736
WARNING. Abnormal entry count found on day 2016-12-17: -9736
WARNING. Abnormal entry count found on day 2016-12-24: -7012
WARNING. Abnormal entry count found on day 2016-12-24: -7012
Processing turnstile ('R527', 'R122', '00-05-01', '90 ST-ELMHURST')
WARNING. Abnormal entry count found on day 2016-12-03: -11644
WARNING. Abnormal entry count found on day 2016-12-03: -11644
WARNING. Abnormal entry count found on day 2016-12-10: -10738
WARNING. Abnormal entry count found on day 2016-12-10: -10738
WARNING. Abnormal entry count found on day 2016-12-17: -10124
WARNING. Abnormal entry count found on day 2016-12-17: -10124
WARNING. Abnormal entry count found on day 2016-12-24: -8835
WARNING. Abnormal entry count found on day 2016-12-24: -8835
Processing turnstile ('N134', 'R385', '00-00-00', 'ROCKAWAY BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -8464
WARNING. Abnormal entry count found on day 2016-12-03: -8464
WARNING. Abnormal entry count found on day 2016-12-10: -8208
WARNING. Abnormal entry count found on day 2016-12-10: -8208
WARNING. Abnormal entry count found on day 2016-12-17: -8047
WARNING. Abnormal entry count found on day 2016-12-17: -8047
WARNING. Abnormal entry count found on day 2016-12-24: -5797
WARNING. Abnormal entry count found on day 2016-12-24: -5797
Processing turnstile ('R200A', 'R041', '01-00-01', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -10668
WARNING. Abnormal entry count found on day 2016-12-03: -10668
WARNING. Abnormal entry count found on day 2016-12-10: -10142
WARNING. Abnormal entry count found on day 2016-12-10: -10142
WARNING. Abnormal entry count found on day 2016-12-17: -9598
WARNING. Abnormal entry count found on day 2016-12-17: -9598
WARNING. Abnormal entry count found on day 2016-12-24: -7414
WARNING. Abnormal entry count found on day 2016-12-24: -7414
Processing turnstile ('A025', 'R023', '01-06-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -4879
WARNING. Abnormal entry count found on day 2016-12-03: -4879
WARNING. Abnormal entry count found on day 2016-12-10: -4749
WARNING. Abnormal entry count found on day 2016-12-10: -4749
WARNING. Abnormal entry count found on day 2016-12-17: -4638
WARNING. Abnormal entry count found on day 2016-12-17: -4638
WARNING. Abnormal entry count found on day 2016-12-24: -4073
WARNING. Abnormal entry count found on day 2016-12-24: -4073
Processing turnstile ('N095', 'R014', '00-03-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17728
WARNING. Abnormal entry count found on day 2016-12-03: -17728
WARNING. Abnormal entry count found on day 2016-12-10: -18614
WARNING. Abnormal entry count found on day 2016-12-10: -18614
WARNING. Abnormal entry count found on day 2016-12-17: -16109
WARNING. Abnormal entry count found on day 2016-12-17: -16109
WARNING. Abnormal entry count found on day 2016-12-24: -11331
WARNING. Abnormal entry count found on day 2016-12-24: -11331
Processing turnstile ('N606', 'R025', '00-05-01', 'JAMAICA CENTER')
Processing turnstile ('N528', 'R257', '01-00-00', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -11253
WARNING. Abnormal entry count found on day 2016-12-03: -11253
WARNING. Abnormal entry count found on day 2016-12-10: -10193
WARNING. Abnormal entry count found on day 2016-12-10: -10193
WARNING. Abnormal entry count found on day 2016-12-17: -7530
WARNING. Abnormal entry count found on day 2016-12-17: -7530
WARNING. Abnormal entry count found on day 2016-12-24: -9020
WARNING. Abnormal entry count found on day 2016-12-24: -9020
Processing turnstile ('R333', 'R366', '00-00-02', '225 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8860
WARNING. Abnormal entry count found on day 2016-12-03: -8860
WARNING. Abnormal entry count found on day 2016-12-10: -8258
WARNING. Abnormal entry count found on day 2016-12-10: -8258
WARNING. Abnormal entry count found on day 2016-12-17: -8184
WARNING. Abnormal entry count found on day 2016-12-17: -8184
WARNING. Abnormal entry count found on day 2016-12-24: -6110
WARNING. Abnormal entry count found on day 2016-12-24: -6110
Processing turnstile ('H040', 'R376', '00-00-03', 'EAST 105 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3186
WARNING. Abnormal entry count found on day 2016-12-03: -3186
WARNING. Abnormal entry count found on day 2016-12-10: -3274
WARNING. Abnormal entry count found on day 2016-12-10: -3274
WARNING. Abnormal entry count found on day 2016-12-17: -3173
WARNING. Abnormal entry count found on day 2016-12-17: -3173
WARNING. Abnormal entry count found on day 2016-12-24: -2255
WARNING. Abnormal entry count found on day 2016-12-24: -2255
Processing turnstile ('R258', 'R132', '00-05-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -40
WARNING. Abnormal entry count found on day 2016-12-03: -40
WARNING. Abnormal entry count found on day 2016-12-10: -23
WARNING. Abnormal entry count found on day 2016-12-10: -23
WARNING. Abnormal entry count found on day 2016-12-23: 134210365
WARNING. Abnormal entry count found on day 2016-12-17: -134210398
WARNING. Abnormal entry count found on day 2016-12-23: 134210365
WARNING. Abnormal entry count found on day 2016-12-17: -134210398
WARNING. Abnormal entry count found on day 2016-12-23: 134210365
WARNING. Abnormal entry count found on day 2016-12-24: -27
WARNING. Abnormal entry count found on day 2016-12-24: -27
Processing turnstile ('N026', 'R102', '00-00-06', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13782
WARNING. Abnormal entry count found on day 2016-12-03: -13782
WARNING. Abnormal entry count found on day 2016-12-10: -13499
WARNING. Abnormal entry count found on day 2016-12-10: -13499
WARNING. Abnormal entry count found on day 2016-12-17: -13655
WARNING. Abnormal entry count found on day 2016-12-17: -13655
WARNING. Abnormal entry count found on day 2016-12-24: -10885
WARNING. Abnormal entry count found on day 2016-12-24: -10885
Processing turnstile ('A043', 'R462', '00-03-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6188
WARNING. Abnormal entry count found on day 2016-12-03: -6188
WARNING. Abnormal entry count found on day 2016-12-10: -6039
WARNING. Abnormal entry count found on day 2016-12-10: -6039
WARNING. Abnormal entry count found on day 2016-12-17: -5866
WARNING. Abnormal entry count found on day 2016-12-17: -5866
WARNING. Abnormal entry count found on day 2016-12-24: -5536
WARNING. Abnormal entry count found on day 2016-12-24: -5536
Processing turnstile ('R301', 'R323', '00-06-00', 'CENTRAL PK N110')
WARNING. Abnormal entry count found on day 2016-12-03: -14616
WARNING. Abnormal entry count found on day 2016-12-03: -14616
WARNING. Abnormal entry count found on day 2016-12-10: -13620
WARNING. Abnormal entry count found on day 2016-12-10: -13620
WARNING. Abnormal entry count found on day 2016-12-17: -13291
WARNING. Abnormal entry count found on day 2016-12-17: -13291
WARNING. Abnormal entry count found on day 2016-12-24: -9172
WARNING. Abnormal entry count found on day 2016-12-24: -9172
Processing turnstile ('N329', 'R201', '00-00-01', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -26880
WARNING. Abnormal entry count found on day 2016-12-03: -26880
WARNING. Abnormal entry count found on day 2016-12-10: -11664
WARNING. Abnormal entry count found on day 2016-12-10: -11664
WARNING. Abnormal entry count found on day 2016-12-17: -21006
WARNING. Abnormal entry count found on day 2016-12-17: -21006
WARNING. Abnormal entry count found on day 2016-12-24: -20349
WARNING. Abnormal entry count found on day 2016-12-24: -20349
Processing turnstile ('R645', 'R110', '00-00-02', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -4945
WARNING. Abnormal entry count found on day 2016-12-03: -4945
WARNING. Abnormal entry count found on day 2016-12-10: -4948
WARNING. Abnormal entry count found on day 2016-12-10: -4948
WARNING. Abnormal entry count found on day 2016-12-17: -4927
WARNING. Abnormal entry count found on day 2016-12-17: -4927
WARNING. Abnormal entry count found on day 2016-12-24: -3949
WARNING. Abnormal entry count found on day 2016-12-24: -3949
Processing turnstile ('R205A', 'R014', '04-02-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11551
WARNING. Abnormal entry count found on day 2016-12-03: -11551
WARNING. Abnormal entry count found on day 2016-12-10: -11532
WARNING. Abnormal entry count found on day 2016-12-10: -11532
WARNING. Abnormal entry count found on day 2016-12-17: -11266
WARNING. Abnormal entry count found on day 2016-12-17: -11266
WARNING. Abnormal entry count found on day 2016-12-24: -8162
WARNING. Abnormal entry count found on day 2016-12-24: -8162
Processing turnstile ('PTH05', 'R543', '00-04-08', 'EXCHANGE PLACE')
Processing turnstile ('A025', 'R023', '01-03-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -20083
WARNING. Abnormal entry count found on day 2016-12-03: -20083
WARNING. Abnormal entry count found on day 2016-12-10: -19128
WARNING. Abnormal entry count found on day 2016-12-10: -19128
WARNING. Abnormal entry count found on day 2016-12-17: -19926
WARNING. Abnormal entry count found on day 2016-12-17: -19926
WARNING. Abnormal entry count found on day 2016-12-24: -16658
WARNING. Abnormal entry count found on day 2016-12-24: -16658
Processing turnstile ('R610', 'R057', '00-04-02', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -1985
WARNING. Abnormal entry count found on day 2016-12-03: -1985
WARNING. Abnormal entry count found on day 2016-12-10: -1970
WARNING. Abnormal entry count found on day 2016-12-10: -1970
WARNING. Abnormal entry count found on day 2016-12-17: -1819
WARNING. Abnormal entry count found on day 2016-12-17: -1819
WARNING. Abnormal entry count found on day 2016-12-24: -1147
WARNING. Abnormal entry count found on day 2016-12-24: -1147
Processing turnstile ('N309A', 'R140', '00-03-02', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -2171
WARNING. Abnormal entry count found on day 2016-12-03: -2171
WARNING. Abnormal entry count found on day 2016-12-10: -2031
WARNING. Abnormal entry count found on day 2016-12-10: -2031
WARNING. Abnormal entry count found on day 2016-12-17: -1823
WARNING. Abnormal entry count found on day 2016-12-17: -1823
WARNING. Abnormal entry count found on day 2016-12-24: -1361
WARNING. Abnormal entry count found on day 2016-12-24: -1361
Processing turnstile ('N049', 'R084', '01-00-01', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-10: -3636
WARNING. Abnormal entry count found on day 2016-12-10: -3636
WARNING. Abnormal entry count found on day 2016-12-17: -5251
WARNING. Abnormal entry count found on day 2016-12-17: -5251
WARNING. Abnormal entry count found on day 2016-12-24: -4542
WARNING. Abnormal entry count found on day 2016-12-24: -4542
Processing turnstile ('R532', 'R328', '00-00-04', 'METS-WILLETS PT')
WARNING. Abnormal entry count found on day 2016-12-03: -3627
WARNING. Abnormal entry count found on day 2016-12-03: -3627
WARNING. Abnormal entry count found on day 2016-12-10: -3198
WARNING. Abnormal entry count found on day 2016-12-10: -3198
WARNING. Abnormal entry count found on day 2016-12-17: -3144
WARNING. Abnormal entry count found on day 2016-12-17: -3144
WARNING. Abnormal entry count found on day 2016-12-24: -2854
WARNING. Abnormal entry count found on day 2016-12-24: -2854
Processing turnstile ('N306', 'R017', '00-00-00', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -3368
WARNING. Abnormal entry count found on day 2016-12-03: -3368
WARNING. Abnormal entry count found on day 2016-12-10: -3404
WARNING. Abnormal entry count found on day 2016-12-10: -3404
WARNING. Abnormal entry count found on day 2016-12-17: -3231
WARNING. Abnormal entry count found on day 2016-12-17: -3231
WARNING. Abnormal entry count found on day 2016-12-24: -2106
WARNING. Abnormal entry count found on day 2016-12-24: -2106
Processing turnstile ('R621', 'R060', '00-03-00', 'EASTN PKWY-MUSM')
WARNING. Abnormal entry count found on day 2016-12-03: -2791
WARNING. Abnormal entry count found on day 2016-12-03: -2791
WARNING. Abnormal entry count found on day 2016-12-10: -2743
WARNING. Abnormal entry count found on day 2016-12-10: -2743
WARNING. Abnormal entry count found on day 2016-12-17: -2539
WARNING. Abnormal entry count found on day 2016-12-17: -2539
WARNING. Abnormal entry count found on day 2016-12-24: -2123
WARNING. Abnormal entry count found on day 2016-12-24: -2123
Processing turnstile ('S101', 'R070', '00-03-03', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -4496
WARNING. Abnormal entry count found on day 2016-12-03: -4496
WARNING. Abnormal entry count found on day 2016-12-10: -4140
WARNING. Abnormal entry count found on day 2016-12-10: -4140
WARNING. Abnormal entry count found on day 2016-12-17: -3652
WARNING. Abnormal entry count found on day 2016-12-17: -3652
WARNING. Abnormal entry count found on day 2016-12-24: -3144
WARNING. Abnormal entry count found on day 2016-12-24: -3144
Processing turnstile ('N543', 'R289', '00-00-00', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -8820
WARNING. Abnormal entry count found on day 2016-12-03: -8820
WARNING. Abnormal entry count found on day 2016-12-10: -9162
WARNING. Abnormal entry count found on day 2016-12-10: -9162
WARNING. Abnormal entry count found on day 2016-12-17: -8235
WARNING. Abnormal entry count found on day 2016-12-17: -8235
WARNING. Abnormal entry count found on day 2016-12-24: -5766
WARNING. Abnormal entry count found on day 2016-12-24: -5766
Processing turnstile ('R221', 'R170', '01-00-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -31215
WARNING. Abnormal entry count found on day 2016-12-03: -31215
WARNING. Abnormal entry count found on day 2016-12-10: -29132
WARNING. Abnormal entry count found on day 2016-12-10: -29132
WARNING. Abnormal entry count found on day 2016-12-17: -28325
WARNING. Abnormal entry count found on day 2016-12-17: -28325
WARNING. Abnormal entry count found on day 2016-12-24: -18720
WARNING. Abnormal entry count found on day 2016-12-24: -18720
Processing turnstile ('R529', 'R208', '00-00-01', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-12-03: -9331
WARNING. Abnormal entry count found on day 2016-12-03: -9331
WARNING. Abnormal entry count found on day 2016-12-10: -9178
WARNING. Abnormal entry count found on day 2016-12-10: -9178
WARNING. Abnormal entry count found on day 2016-12-17: -9524
WARNING. Abnormal entry count found on day 2016-12-17: -9524
WARNING. Abnormal entry count found on day 2016-12-24: -7794
WARNING. Abnormal entry count found on day 2016-12-24: -7794
Processing turnstile ('R515', 'R095', '00-03-02', 'ASTORIA DITMARS')
WARNING. Abnormal entry count found on day 2016-12-03: -13169
WARNING. Abnormal entry count found on day 2016-12-03: -13169
WARNING. Abnormal entry count found on day 2016-12-10: -13295
WARNING. Abnormal entry count found on day 2016-12-10: -13295
WARNING. Abnormal entry count found on day 2016-12-17: -12337
WARNING. Abnormal entry count found on day 2016-12-17: -12337
WARNING. Abnormal entry count found on day 2016-12-24: -9562
WARNING. Abnormal entry count found on day 2016-12-24: -9562
Processing turnstile ('N186', 'R418', '00-00-00', 'BEACH 105 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -757
WARNING. Abnormal entry count found on day 2016-12-03: -757
WARNING. Abnormal entry count found on day 2016-12-10: -722
WARNING. Abnormal entry count found on day 2016-12-10: -722
WARNING. Abnormal entry count found on day 2016-12-17: -682
WARNING. Abnormal entry count found on day 2016-12-17: -682
WARNING. Abnormal entry count found on day 2016-12-24: -431
WARNING. Abnormal entry count found on day 2016-12-24: -431
Processing turnstile ('N087', 'R282', '01-05-00', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R402', 'R446', '00-00-03', 'BROOK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7858
WARNING. Abnormal entry count found on day 2016-12-03: -7858
WARNING. Abnormal entry count found on day 2016-12-10: -7924
WARNING. Abnormal entry count found on day 2016-12-10: -7924
WARNING. Abnormal entry count found on day 2016-12-17: -7438
WARNING. Abnormal entry count found on day 2016-12-17: -7438
WARNING. Abnormal entry count found on day 2016-12-24: -5724
WARNING. Abnormal entry count found on day 2016-12-24: -5724
Processing turnstile ('N095A', 'R014', '01-05-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-17: -46
WARNING. Abnormal entry count found on day 2016-12-17: -46
WARNING. Abnormal entry count found on day 2016-12-24: -80
WARNING. Abnormal entry count found on day 2016-12-24: -80
Processing turnstile ('R417', 'R222', '00-00-02', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -17079
WARNING. Abnormal entry count found on day 2016-12-03: -17079
WARNING. Abnormal entry count found on day 2016-12-10: -16257
WARNING. Abnormal entry count found on day 2016-12-10: -16257
WARNING. Abnormal entry count found on day 2016-12-17: -16076
WARNING. Abnormal entry count found on day 2016-12-17: -16076
WARNING. Abnormal entry count found on day 2016-12-24: -11879
WARNING. Abnormal entry count found on day 2016-12-24: -11879
Processing turnstile ('PTH18', 'R549', '01-02-04', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -4671
WARNING. Abnormal entry count found on day 2016-12-03: -4671
WARNING. Abnormal entry count found on day 2016-12-10: -4210
WARNING. Abnormal entry count found on day 2016-12-10: -4210
WARNING. Abnormal entry count found on day 2016-12-17: -4478
WARNING. Abnormal entry count found on day 2016-12-17: -4478
WARNING. Abnormal entry count found on day 2016-12-24: -3629
WARNING. Abnormal entry count found on day 2016-12-24: -3629
Processing turnstile ('R143', 'R032', '02-00-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10820
WARNING. Abnormal entry count found on day 2016-12-03: -10820
WARNING. Abnormal entry count found on day 2016-12-10: -10247
WARNING. Abnormal entry count found on day 2016-12-10: -10247
WARNING. Abnormal entry count found on day 2016-12-17: -9139
WARNING. Abnormal entry count found on day 2016-12-17: -9139
WARNING. Abnormal entry count found on day 2016-12-24: -6768
WARNING. Abnormal entry count found on day 2016-12-24: -6768
Processing turnstile ('PTH07', 'R550', '00-00-00', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -2936
WARNING. Abnormal entry count found on day 2016-12-03: -2936
WARNING. Abnormal entry count found on day 2016-12-10: -4146
WARNING. Abnormal entry count found on day 2016-12-10: -4146
WARNING. Abnormal entry count found on day 2016-12-17: -3238
WARNING. Abnormal entry count found on day 2016-12-17: -3238
WARNING. Abnormal entry count found on day 2016-12-24: -1741
WARNING. Abnormal entry count found on day 2016-12-24: -1741
Processing turnstile ('R236', 'R045', '00-03-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -31751
WARNING. Abnormal entry count found on day 2016-12-03: -31751
WARNING. Abnormal entry count found on day 2016-12-10: -32246
WARNING. Abnormal entry count found on day 2016-12-10: -32246
WARNING. Abnormal entry count found on day 2016-12-17: -27095
WARNING. Abnormal entry count found on day 2016-12-17: -27095
WARNING. Abnormal entry count found on day 2016-12-24: -16337
WARNING. Abnormal entry count found on day 2016-12-24: -16337
Processing turnstile ('H035', 'R348', '00-00-01', 'ATLANTIC AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2840
WARNING. Abnormal entry count found on day 2016-12-03: -2840
WARNING. Abnormal entry count found on day 2016-12-10: -2730
WARNING. Abnormal entry count found on day 2016-12-10: -2730
WARNING. Abnormal entry count found on day 2016-12-17: -2380
WARNING. Abnormal entry count found on day 2016-12-17: -2380
WARNING. Abnormal entry count found on day 2016-12-24: -1790
WARNING. Abnormal entry count found on day 2016-12-24: -1790
Processing turnstile ('N327', 'R254', '00-00-00', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -394
WARNING. Abnormal entry count found on day 2016-12-03: -394
WARNING. Abnormal entry count found on day 2016-12-10: -373
WARNING. Abnormal entry count found on day 2016-12-10: -373
WARNING. Abnormal entry count found on day 2016-12-17: -412
WARNING. Abnormal entry count found on day 2016-12-17: -412
WARNING. Abnormal entry count found on day 2016-12-24: -302
WARNING. Abnormal entry count found on day 2016-12-24: -302
Processing turnstile ('R115', 'R029', '00-06-00', 'PARK PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -217
WARNING. Abnormal entry count found on day 2016-12-03: -217
WARNING. Abnormal entry count found on day 2016-12-10: -178
WARNING. Abnormal entry count found on day 2016-12-10: -178
WARNING. Abnormal entry count found on day 2016-12-17: -176
WARNING. Abnormal entry count found on day 2016-12-17: -176
WARNING. Abnormal entry count found on day 2016-12-24: -163
WARNING. Abnormal entry count found on day 2016-12-24: -163
Processing turnstile ('R245', 'R051', '00-03-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6580
WARNING. Abnormal entry count found on day 2016-12-03: -6580
WARNING. Abnormal entry count found on day 2016-12-10: -6840
WARNING. Abnormal entry count found on day 2016-12-10: -6840
WARNING. Abnormal entry count found on day 2016-12-17: -7306
WARNING. Abnormal entry count found on day 2016-12-17: -7306
WARNING. Abnormal entry count found on day 2016-12-24: -5827
WARNING. Abnormal entry count found on day 2016-12-24: -5827
Processing turnstile ('J007', 'R377', '00-00-01', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15350
WARNING. Abnormal entry count found on day 2016-12-03: -15350
WARNING. Abnormal entry count found on day 2016-12-10: -15405
WARNING. Abnormal entry count found on day 2016-12-10: -15405
WARNING. Abnormal entry count found on day 2016-12-17: -15434
WARNING. Abnormal entry count found on day 2016-12-17: -15434
WARNING. Abnormal entry count found on day 2016-12-24: -12273
WARNING. Abnormal entry count found on day 2016-12-24: -12273
Processing turnstile ('N078', 'R175', '01-06-03', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -27100
WARNING. Abnormal entry count found on day 2016-12-03: -27100
WARNING. Abnormal entry count found on day 2016-12-10: -23662
WARNING. Abnormal entry count found on day 2016-12-10: -23662
WARNING. Abnormal entry count found on day 2016-12-17: -21499
WARNING. Abnormal entry count found on day 2016-12-17: -21499
WARNING. Abnormal entry count found on day 2016-12-24: -16778
WARNING. Abnormal entry count found on day 2016-12-24: -16778
Processing turnstile ('N324', 'R018', '00-00-01', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -9101
WARNING. Abnormal entry count found on day 2016-12-03: -9101
WARNING. Abnormal entry count found on day 2016-12-10: -9469
WARNING. Abnormal entry count found on day 2016-12-10: -9469
WARNING. Abnormal entry count found on day 2016-12-17: -8991
WARNING. Abnormal entry count found on day 2016-12-17: -8991
WARNING. Abnormal entry count found on day 2016-12-24: -6945
WARNING. Abnormal entry count found on day 2016-12-24: -6945
Processing turnstile ('A081', 'R028', '04-05-01', 'FULTON ST')
Processing turnstile ('J009', 'R378', '00-00-00', 'MYRTLE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -17822
WARNING. Abnormal entry count found on day 2016-12-03: -17822
WARNING. Abnormal entry count found on day 2016-12-10: -16749
WARNING. Abnormal entry count found on day 2016-12-10: -16749
WARNING. Abnormal entry count found on day 2016-12-17: -15903
WARNING. Abnormal entry count found on day 2016-12-17: -15903
WARNING. Abnormal entry count found on day 2016-12-24: -12379
WARNING. Abnormal entry count found on day 2016-12-24: -12379
Processing turnstile ('R260', 'R205', '01-05-01', '149/GRAND CONC')
Processing turnstile ('R624', 'R124', '00-00-00', 'KINGSTON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10276
WARNING. Abnormal entry count found on day 2016-12-03: -10276
WARNING. Abnormal entry count found on day 2016-12-10: -9850
WARNING. Abnormal entry count found on day 2016-12-10: -9850
WARNING. Abnormal entry count found on day 2016-12-17: -9572
WARNING. Abnormal entry count found on day 2016-12-17: -9572
WARNING. Abnormal entry count found on day 2016-12-24: -8945
WARNING. Abnormal entry count found on day 2016-12-24: -8945
Processing turnstile ('R302', 'R324', '01-00-04', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9233
WARNING. Abnormal entry count found on day 2016-12-03: -9233
WARNING. Abnormal entry count found on day 2016-12-10: -9668
WARNING. Abnormal entry count found on day 2016-12-10: -9668
WARNING. Abnormal entry count found on day 2016-12-17: -9587
WARNING. Abnormal entry count found on day 2016-12-17: -9587
WARNING. Abnormal entry count found on day 2016-12-24: -6383
WARNING. Abnormal entry count found on day 2016-12-24: -6383
Processing turnstile ('R636', 'R209', '00-00-00', 'STERLING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14427
WARNING. Abnormal entry count found on day 2016-12-03: -14427
WARNING. Abnormal entry count found on day 2016-12-10: -14264
WARNING. Abnormal entry count found on day 2016-12-10: -14264
WARNING. Abnormal entry count found on day 2016-12-17: -13715
WARNING. Abnormal entry count found on day 2016-12-17: -13715
WARNING. Abnormal entry count found on day 2016-12-24: -10534
WARNING. Abnormal entry count found on day 2016-12-24: -10534
Processing turnstile ('PTH19', 'R549', '02-01-07', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -850
WARNING. Abnormal entry count found on day 2016-12-03: -850
WARNING. Abnormal entry count found on day 2016-12-10: -1216
WARNING. Abnormal entry count found on day 2016-12-10: -1216
WARNING. Abnormal entry count found on day 2016-12-17: -1222
WARNING. Abnormal entry count found on day 2016-12-17: -1222
WARNING. Abnormal entry count found on day 2016-12-24: -803
WARNING. Abnormal entry count found on day 2016-12-24: -803
Processing turnstile ('R250', 'R179', '00-00-08', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24526
WARNING. Abnormal entry count found on day 2016-12-03: -24526
WARNING. Abnormal entry count found on day 2016-12-10: -26296
WARNING. Abnormal entry count found on day 2016-12-10: -26296
WARNING. Abnormal entry count found on day 2016-12-17: -23432
WARNING. Abnormal entry count found on day 2016-12-17: -23432
WARNING. Abnormal entry count found on day 2016-12-24: -17634
WARNING. Abnormal entry count found on day 2016-12-24: -17634
Processing turnstile ('N220', 'R155', '01-06-01', 'KINGSBRIDGE RD')
Processing turnstile ('N037', 'R314', '00-00-00', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13454
WARNING. Abnormal entry count found on day 2016-12-03: -13454
WARNING. Abnormal entry count found on day 2016-12-10: -13085
WARNING. Abnormal entry count found on day 2016-12-10: -13085
WARNING. Abnormal entry count found on day 2016-12-17: -12438
WARNING. Abnormal entry count found on day 2016-12-17: -12438
WARNING. Abnormal entry count found on day 2016-12-24: -9669
WARNING. Abnormal entry count found on day 2016-12-24: -9669
Processing turnstile ('C014', 'R246', '00-00-01', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7039
WARNING. Abnormal entry count found on day 2016-12-03: -7039
WARNING. Abnormal entry count found on day 2016-12-10: -7038
WARNING. Abnormal entry count found on day 2016-12-10: -7038
WARNING. Abnormal entry count found on day 2016-12-17: -6429
WARNING. Abnormal entry count found on day 2016-12-17: -6429
WARNING. Abnormal entry count found on day 2016-12-24: -3868
WARNING. Abnormal entry count found on day 2016-12-24: -3868
Processing turnstile ('N046', 'R281', '00-00-02', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14250
WARNING. Abnormal entry count found on day 2016-12-03: -14250
WARNING. Abnormal entry count found on day 2016-12-10: -13109
WARNING. Abnormal entry count found on day 2016-12-10: -13109
WARNING. Abnormal entry count found on day 2016-12-17: -12525
WARNING. Abnormal entry count found on day 2016-12-17: -12525
WARNING. Abnormal entry count found on day 2016-12-24: -12417
WARNING. Abnormal entry count found on day 2016-12-24: -12417
Processing turnstile ('PTH05', 'R543', '00-00-01', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -8486
WARNING. Abnormal entry count found on day 2016-12-03: -8486
WARNING. Abnormal entry count found on day 2016-12-10: -7056
WARNING. Abnormal entry count found on day 2016-12-10: -7056
WARNING. Abnormal entry count found on day 2016-12-17: -7361
WARNING. Abnormal entry count found on day 2016-12-17: -7361
WARNING. Abnormal entry count found on day 2016-12-24: -5148
WARNING. Abnormal entry count found on day 2016-12-24: -5148
Processing turnstile ('N336', 'R158', '00-00-05', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -3845
WARNING. Abnormal entry count found on day 2016-12-03: -3845
WARNING. Abnormal entry count found on day 2016-12-10: -3692
WARNING. Abnormal entry count found on day 2016-12-10: -3692
WARNING. Abnormal entry count found on day 2016-12-17: -3817
WARNING. Abnormal entry count found on day 2016-12-17: -3817
WARNING. Abnormal entry count found on day 2016-12-24: -2789
WARNING. Abnormal entry count found on day 2016-12-24: -2789
Processing turnstile ('R528', 'R097', '00-06-00', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -2853
WARNING. Abnormal entry count found on day 2016-12-03: -2853
WARNING. Abnormal entry count found on day 2016-12-10: -2727
WARNING. Abnormal entry count found on day 2016-12-10: -2727
WARNING. Abnormal entry count found on day 2016-12-17: -2856
WARNING. Abnormal entry count found on day 2016-12-17: -2856
WARNING. Abnormal entry count found on day 2016-12-24: -2414
WARNING. Abnormal entry count found on day 2016-12-24: -2414
Processing turnstile ('R262B', 'R195', '05-00-02', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -212
WARNING. Abnormal entry count found on day 2016-12-24: -212
Processing turnstile ('B021', 'R228', '00-04-01', 'AVENUE J')
Processing turnstile ('H040', 'R376', '00-00-02', 'EAST 105 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4539
WARNING. Abnormal entry count found on day 2016-12-03: -4539
WARNING. Abnormal entry count found on day 2016-12-10: -4395
WARNING. Abnormal entry count found on day 2016-12-10: -4395
WARNING. Abnormal entry count found on day 2016-12-17: -4294
WARNING. Abnormal entry count found on day 2016-12-17: -4294
WARNING. Abnormal entry count found on day 2016-12-24: -3222
WARNING. Abnormal entry count found on day 2016-12-24: -3222
Processing turnstile ('C028', 'R216', '01-05-00', 'BAY RIDGE-95 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('N094', 'R029', '01-00-03', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -8783
WARNING. Abnormal entry count found on day 2016-12-03: -8783
WARNING. Abnormal entry count found on day 2016-12-10: -8524
WARNING. Abnormal entry count found on day 2016-12-10: -8524
WARNING. Abnormal entry count found on day 2016-12-17: -12432
WARNING. Abnormal entry count found on day 2016-12-17: -12432
WARNING. Abnormal entry count found on day 2016-12-24: -12941
WARNING. Abnormal entry count found on day 2016-12-24: -12941
Processing turnstile ('S101A', 'R070', '01-03-02', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -4759
WARNING. Abnormal entry count found on day 2016-12-03: -4759
WARNING. Abnormal entry count found on day 2016-12-10: -4390
WARNING. Abnormal entry count found on day 2016-12-10: -4390
WARNING. Abnormal entry count found on day 2016-12-17: -4194
WARNING. Abnormal entry count found on day 2016-12-17: -4194
WARNING. Abnormal entry count found on day 2016-12-24: -3334
WARNING. Abnormal entry count found on day 2016-12-24: -3334
Processing turnstile ('N526', 'R142', '02-06-00', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -583
WARNING. Abnormal entry count found on day 2016-12-03: -583
WARNING. Abnormal entry count found on day 2016-12-10: -580
WARNING. Abnormal entry count found on day 2016-12-10: -580
WARNING. Abnormal entry count found on day 2016-12-17: -637
WARNING. Abnormal entry count found on day 2016-12-17: -637
WARNING. Abnormal entry count found on day 2016-12-24: -375
WARNING. Abnormal entry count found on day 2016-12-24: -375
Processing turnstile ('R423', 'R429', '00-00-03', 'PELHAM BAY PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -2792
WARNING. Abnormal entry count found on day 2016-12-03: -2792
WARNING. Abnormal entry count found on day 2016-12-10: -3143
WARNING. Abnormal entry count found on day 2016-12-10: -3143
WARNING. Abnormal entry count found on day 2016-12-17: -3170
WARNING. Abnormal entry count found on day 2016-12-17: -3170
WARNING. Abnormal entry count found on day 2016-12-24: -2180
WARNING. Abnormal entry count found on day 2016-12-24: -2180
Processing turnstile ('H009', 'R235', '00-03-03', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -22955
WARNING. Abnormal entry count found on day 2016-12-03: -22955
WARNING. Abnormal entry count found on day 2016-12-10: -21959
WARNING. Abnormal entry count found on day 2016-12-10: -21959
WARNING. Abnormal entry count found on day 2016-12-17: -21221
WARNING. Abnormal entry count found on day 2016-12-17: -21221
WARNING. Abnormal entry count found on day 2016-12-24: -16028
WARNING. Abnormal entry count found on day 2016-12-24: -16028
Processing turnstile ('PTH13', 'R541', '00-00-00', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2101
WARNING. Abnormal entry count found on day 2016-12-03: -2101
WARNING. Abnormal entry count found on day 2016-12-10: -2119
WARNING. Abnormal entry count found on day 2016-12-10: -2119
WARNING. Abnormal entry count found on day 2016-12-17: -1835
WARNING. Abnormal entry count found on day 2016-12-17: -1835
WARNING. Abnormal entry count found on day 2016-12-24: -1113
WARNING. Abnormal entry count found on day 2016-12-24: -1113
Processing turnstile ('N603', 'R303', '00-00-03', '21 ST-QNSBRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -21569
WARNING. Abnormal entry count found on day 2016-12-03: -21569
WARNING. Abnormal entry count found on day 2016-12-10: -19874
WARNING. Abnormal entry count found on day 2016-12-10: -19874
WARNING. Abnormal entry count found on day 2016-12-17: -20311
WARNING. Abnormal entry count found on day 2016-12-17: -20311
WARNING. Abnormal entry count found on day 2016-12-24: -16773
WARNING. Abnormal entry count found on day 2016-12-24: -16773
Processing turnstile ('R244', 'R050', '00-06-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9341
WARNING. Abnormal entry count found on day 2016-12-03: -9341
WARNING. Abnormal entry count found on day 2016-12-10: -9981
WARNING. Abnormal entry count found on day 2016-12-10: -9981
WARNING. Abnormal entry count found on day 2016-12-17: -8125
WARNING. Abnormal entry count found on day 2016-12-17: -8125
WARNING. Abnormal entry count found on day 2016-12-24: -5816
WARNING. Abnormal entry count found on day 2016-12-24: -5816
Processing turnstile ('N500', 'R020', '00-00-02', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -23782
WARNING. Abnormal entry count found on day 2016-12-03: -23782
WARNING. Abnormal entry count found on day 2016-12-10: -23567
WARNING. Abnormal entry count found on day 2016-12-10: -23567
WARNING. Abnormal entry count found on day 2016-12-17: -23906
WARNING. Abnormal entry count found on day 2016-12-17: -23906
WARNING. Abnormal entry count found on day 2016-12-24: -23679
WARNING. Abnormal entry count found on day 2016-12-24: -23679
Processing turnstile ('D012', 'R395', '00-00-02', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -3321
WARNING. Abnormal entry count found on day 2016-12-03: -3321
WARNING. Abnormal entry count found on day 2016-12-10: -3246
WARNING. Abnormal entry count found on day 2016-12-10: -3246
WARNING. Abnormal entry count found on day 2016-12-17: -3415
WARNING. Abnormal entry count found on day 2016-12-17: -3415
WARNING. Abnormal entry count found on day 2016-12-24: -2949
WARNING. Abnormal entry count found on day 2016-12-24: -2949
Processing turnstile ('R101', 'R001', '02-00-04', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -3330
WARNING. Abnormal entry count found on day 2016-12-03: -3330
WARNING. Abnormal entry count found on day 2016-12-10: -2705
WARNING. Abnormal entry count found on day 2016-12-10: -2705
WARNING. Abnormal entry count found on day 2016-12-17: -3372
WARNING. Abnormal entry count found on day 2016-12-17: -3372
WARNING. Abnormal entry count found on day 2016-12-24: -3871
WARNING. Abnormal entry count found on day 2016-12-24: -3871
Processing turnstile ('R246', 'R177', '00-00-02', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -16543
WARNING. Abnormal entry count found on day 2016-12-03: -16543
WARNING. Abnormal entry count found on day 2016-12-10: -14737
WARNING. Abnormal entry count found on day 2016-12-10: -14737
WARNING. Abnormal entry count found on day 2016-12-17: -12019
WARNING. Abnormal entry count found on day 2016-12-17: -12019
WARNING. Abnormal entry count found on day 2016-12-24: -6874
WARNING. Abnormal entry count found on day 2016-12-24: -6874
Processing turnstile ('R101', 'R001', '02-00-07', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -6549
WARNING. Abnormal entry count found on day 2016-12-03: -6549
WARNING. Abnormal entry count found on day 2016-12-10: -6610
WARNING. Abnormal entry count found on day 2016-12-10: -6610
WARNING. Abnormal entry count found on day 2016-12-17: -6383
WARNING. Abnormal entry count found on day 2016-12-17: -6383
WARNING. Abnormal entry count found on day 2016-12-24: -5645
WARNING. Abnormal entry count found on day 2016-12-24: -5645
Processing turnstile ('N067', 'R012', '00-00-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -5883
WARNING. Abnormal entry count found on day 2016-12-03: -5883
WARNING. Abnormal entry count found on day 2016-12-10: -5643
WARNING. Abnormal entry count found on day 2016-12-10: -5643
WARNING. Abnormal entry count found on day 2016-12-17: -4697
WARNING. Abnormal entry count found on day 2016-12-17: -4697
WARNING. Abnormal entry count found on day 2016-12-24: -4244
WARNING. Abnormal entry count found on day 2016-12-24: -4244
Processing turnstile ('C018', 'R197', '00-00-01', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13243
WARNING. Abnormal entry count found on day 2016-12-03: -13243
WARNING. Abnormal entry count found on day 2016-12-10: -12855
WARNING. Abnormal entry count found on day 2016-12-10: -12855
WARNING. Abnormal entry count found on day 2016-12-17: -12728
WARNING. Abnormal entry count found on day 2016-12-17: -12728
WARNING. Abnormal entry count found on day 2016-12-24: -8914
WARNING. Abnormal entry count found on day 2016-12-24: -8914
Processing turnstile ('R238A', 'R046', '02-00-02', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9258
WARNING. Abnormal entry count found on day 2016-12-03: -9258
WARNING. Abnormal entry count found on day 2016-12-10: -10282
WARNING. Abnormal entry count found on day 2016-12-10: -10282
WARNING. Abnormal entry count found on day 2016-12-17: -9525
WARNING. Abnormal entry count found on day 2016-12-17: -9525
WARNING. Abnormal entry count found on day 2016-12-24: -8514
WARNING. Abnormal entry count found on day 2016-12-24: -8514
Processing turnstile ('R176', 'R169', '00-00-00', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -7965
WARNING. Abnormal entry count found on day 2016-12-03: -7965
WARNING. Abnormal entry count found on day 2016-12-10: -7192
WARNING. Abnormal entry count found on day 2016-12-10: -7192
WARNING. Abnormal entry count found on day 2016-12-17: -6384
WARNING. Abnormal entry count found on day 2016-12-17: -6384
WARNING. Abnormal entry count found on day 2016-12-24: -4595
WARNING. Abnormal entry count found on day 2016-12-24: -4595
Processing turnstile ('R163', 'R166', '01-00-00', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8538
WARNING. Abnormal entry count found on day 2016-12-03: -8538
WARNING. Abnormal entry count found on day 2016-12-10: -8689
WARNING. Abnormal entry count found on day 2016-12-10: -8689
WARNING. Abnormal entry count found on day 2016-12-17: -8539
WARNING. Abnormal entry count found on day 2016-12-17: -8539
WARNING. Abnormal entry count found on day 2016-12-24: -5901
WARNING. Abnormal entry count found on day 2016-12-24: -5901
Processing turnstile ('A047', 'R087', '00-06-01', 'CITY HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -3706
WARNING. Abnormal entry count found on day 2016-12-03: -3706
WARNING. Abnormal entry count found on day 2016-12-10: -3440
WARNING. Abnormal entry count found on day 2016-12-10: -3440
WARNING. Abnormal entry count found on day 2016-12-17: -3238
WARNING. Abnormal entry count found on day 2016-12-17: -3238
WARNING. Abnormal entry count found on day 2016-12-24: -2198
WARNING. Abnormal entry count found on day 2016-12-24: -2198
Processing turnstile ('N077', 'R111', '02-06-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -222
WARNING. Abnormal entry count found on day 2016-12-03: -222
WARNING. Abnormal entry count found on day 2016-12-10: -611
WARNING. Abnormal entry count found on day 2016-12-10: -611
WARNING. Abnormal entry count found on day 2016-12-17: -532
WARNING. Abnormal entry count found on day 2016-12-17: -532
WARNING. Abnormal entry count found on day 2016-12-24: -411
WARNING. Abnormal entry count found on day 2016-12-24: -411
Processing turnstile ('A049', 'R088', '02-03-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6205
WARNING. Abnormal entry count found on day 2016-12-03: -6205
WARNING. Abnormal entry count found on day 2016-12-10: -6222
WARNING. Abnormal entry count found on day 2016-12-10: -6222
WARNING. Abnormal entry count found on day 2016-12-17: -6637
WARNING. Abnormal entry count found on day 2016-12-17: -6637
WARNING. Abnormal entry count found on day 2016-12-24: -8113
WARNING. Abnormal entry count found on day 2016-12-24: -8113
Processing turnstile ('R612', 'R057', '01-03-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -4656
WARNING. Abnormal entry count found on day 2016-12-03: -4656
WARNING. Abnormal entry count found on day 2016-12-10: -4000
WARNING. Abnormal entry count found on day 2016-12-10: -4000
WARNING. Abnormal entry count found on day 2016-12-17: -4294
WARNING. Abnormal entry count found on day 2016-12-17: -4294
WARNING. Abnormal entry count found on day 2016-12-24: -3222
WARNING. Abnormal entry count found on day 2016-12-24: -3222
Processing turnstile ('R244A', 'R050', '01-00-04', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20960
WARNING. Abnormal entry count found on day 2016-12-03: -20960
WARNING. Abnormal entry count found on day 2016-12-10: -19622
WARNING. Abnormal entry count found on day 2016-12-10: -19622
WARNING. Abnormal entry count found on day 2016-12-17: -19054
WARNING. Abnormal entry count found on day 2016-12-17: -19054
WARNING. Abnormal entry count found on day 2016-12-24: -13715
WARNING. Abnormal entry count found on day 2016-12-24: -13715
Processing turnstile ('R417', 'R222', '00-05-01', 'PARKCHESTER')
Processing turnstile ('PTH05', 'R543', '00-00-06', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -1393
WARNING. Abnormal entry count found on day 2016-12-03: -1393
WARNING. Abnormal entry count found on day 2016-12-10: -1333
WARNING. Abnormal entry count found on day 2016-12-10: -1333
WARNING. Abnormal entry count found on day 2016-12-17: -731
WARNING. Abnormal entry count found on day 2016-12-17: -731
WARNING. Abnormal entry count found on day 2016-12-24: -871
WARNING. Abnormal entry count found on day 2016-12-24: -871
Processing turnstile ('N120', 'R153', '00-00-00', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11629
WARNING. Abnormal entry count found on day 2016-12-03: -11629
WARNING. Abnormal entry count found on day 2016-12-10: -11484
WARNING. Abnormal entry count found on day 2016-12-10: -11484
WARNING. Abnormal entry count found on day 2016-12-17: -11065
WARNING. Abnormal entry count found on day 2016-12-17: -11065
WARNING. Abnormal entry count found on day 2016-12-24: -9117
WARNING. Abnormal entry count found on day 2016-12-24: -9117
Processing turnstile ('B026', 'R230', '00-00-00', 'NECK RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3408
WARNING. Abnormal entry count found on day 2016-12-03: -3408
WARNING. Abnormal entry count found on day 2016-12-10: -3392
WARNING. Abnormal entry count found on day 2016-12-10: -3392
WARNING. Abnormal entry count found on day 2016-12-17: -3620
WARNING. Abnormal entry count found on day 2016-12-17: -3620
WARNING. Abnormal entry count found on day 2016-12-24: -2696
WARNING. Abnormal entry count found on day 2016-12-24: -2696
Processing turnstile ('N016A', 'R296', '00-00-00', '163 ST-AMSTERDM')
WARNING. Abnormal entry count found on day 2016-12-03: -8487
WARNING. Abnormal entry count found on day 2016-12-03: -8487
WARNING. Abnormal entry count found on day 2016-12-10: -8510
WARNING. Abnormal entry count found on day 2016-12-10: -8510
WARNING. Abnormal entry count found on day 2016-12-17: -8137
WARNING. Abnormal entry count found on day 2016-12-17: -8137
WARNING. Abnormal entry count found on day 2016-12-24: -6350
WARNING. Abnormal entry count found on day 2016-12-24: -6350
Processing turnstile ('K019', 'R413', '00-03-01', 'KNICKERBOCKER')
WARNING. Abnormal entry count found on day 2016-12-03: -10807
WARNING. Abnormal entry count found on day 2016-12-03: -10807
WARNING. Abnormal entry count found on day 2016-12-10: -10646
WARNING. Abnormal entry count found on day 2016-12-10: -10646
WARNING. Abnormal entry count found on day 2016-12-17: -10415
WARNING. Abnormal entry count found on day 2016-12-17: -10415
WARNING. Abnormal entry count found on day 2016-12-24: -8055
WARNING. Abnormal entry count found on day 2016-12-24: -8055
Processing turnstile ('N557', 'R130', '00-03-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -567
WARNING. Abnormal entry count found on day 2016-12-03: -567
WARNING. Abnormal entry count found on day 2016-12-10: -566
WARNING. Abnormal entry count found on day 2016-12-10: -566
WARNING. Abnormal entry count found on day 2016-12-17: -610
WARNING. Abnormal entry count found on day 2016-12-17: -610
WARNING. Abnormal entry count found on day 2016-12-24: -568
WARNING. Abnormal entry count found on day 2016-12-24: -568
Processing turnstile ('R524', 'R347', '00-05-00', '69 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5708
WARNING. Abnormal entry count found on day 2016-12-03: -5708
WARNING. Abnormal entry count found on day 2016-12-10: -5356
WARNING. Abnormal entry count found on day 2016-12-10: -5356
WARNING. Abnormal entry count found on day 2016-12-17: -5458
WARNING. Abnormal entry count found on day 2016-12-17: -5458
WARNING. Abnormal entry count found on day 2016-12-24: -4240
WARNING. Abnormal entry count found on day 2016-12-24: -4240
Processing turnstile ('S102', 'R165', '00-00-01', 'TOMPKINSVILLE')
WARNING. Abnormal entry count found on day 2016-12-03: -1231
WARNING. Abnormal entry count found on day 2016-12-03: -1231
WARNING. Abnormal entry count found on day 2016-12-10: -1596
WARNING. Abnormal entry count found on day 2016-12-10: -1596
WARNING. Abnormal entry count found on day 2016-12-17: -1683
WARNING. Abnormal entry count found on day 2016-12-17: -1683
WARNING. Abnormal entry count found on day 2016-12-24: -858
WARNING. Abnormal entry count found on day 2016-12-24: -858
Processing turnstile ('N057', 'R188', '00-03-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3154
WARNING. Abnormal entry count found on day 2016-12-03: -3154
WARNING. Abnormal entry count found on day 2016-12-10: -3249
WARNING. Abnormal entry count found on day 2016-12-10: -3249
WARNING. Abnormal entry count found on day 2016-12-17: -2987
WARNING. Abnormal entry count found on day 2016-12-17: -2987
WARNING. Abnormal entry count found on day 2016-12-24: -2670
WARNING. Abnormal entry count found on day 2016-12-24: -2670
Processing turnstile ('R289', 'R119', '00-03-01', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -20431
WARNING. Abnormal entry count found on day 2016-12-03: -20431
WARNING. Abnormal entry count found on day 2016-12-10: -19825
WARNING. Abnormal entry count found on day 2016-12-10: -19825
WARNING. Abnormal entry count found on day 2016-12-17: -18248
WARNING. Abnormal entry count found on day 2016-12-17: -18248
WARNING. Abnormal entry count found on day 2016-12-24: -15532
WARNING. Abnormal entry count found on day 2016-12-24: -15532
Processing turnstile ('PTH17', 'R541', '01-00-08', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10464
WARNING. Abnormal entry count found on day 2016-12-03: -10464
WARNING. Abnormal entry count found on day 2016-12-10: -10540
WARNING. Abnormal entry count found on day 2016-12-10: -10540
WARNING. Abnormal entry count found on day 2016-12-17: -9216
WARNING. Abnormal entry count found on day 2016-12-17: -9216
WARNING. Abnormal entry count found on day 2016-12-24: -7835
WARNING. Abnormal entry count found on day 2016-12-24: -7835
Processing turnstile ('R533', 'R055', '00-00-01', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -8341
WARNING. Abnormal entry count found on day 2016-12-03: -8341
WARNING. Abnormal entry count found on day 2016-12-10: -8007
WARNING. Abnormal entry count found on day 2016-12-10: -8007
WARNING. Abnormal entry count found on day 2016-12-17: -7957
WARNING. Abnormal entry count found on day 2016-12-17: -7957
WARNING. Abnormal entry count found on day 2016-12-24: -7010
WARNING. Abnormal entry count found on day 2016-12-24: -7010
Processing turnstile ('R508', 'R346', '00-00-00', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -4647
WARNING. Abnormal entry count found on day 2016-12-03: -4647
WARNING. Abnormal entry count found on day 2016-12-10: -4680
WARNING. Abnormal entry count found on day 2016-12-10: -4680
WARNING. Abnormal entry count found on day 2016-12-17: -4206
WARNING. Abnormal entry count found on day 2016-12-17: -4206
WARNING. Abnormal entry count found on day 2016-12-24: -3125
WARNING. Abnormal entry count found on day 2016-12-24: -3125
Processing turnstile ('C009', 'R057', '03-00-02', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -7774
WARNING. Abnormal entry count found on day 2016-12-03: -7774
WARNING. Abnormal entry count found on day 2016-12-10: -7807
WARNING. Abnormal entry count found on day 2016-12-10: -7807
WARNING. Abnormal entry count found on day 2016-12-17: -7510
WARNING. Abnormal entry count found on day 2016-12-17: -7510
WARNING. Abnormal entry count found on day 2016-12-24: -4887
WARNING. Abnormal entry count found on day 2016-12-24: -4887
Processing turnstile ('D015', 'R396', '00-00-01', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -2175
WARNING. Abnormal entry count found on day 2016-12-03: -2175
WARNING. Abnormal entry count found on day 2016-12-10: -1952
WARNING. Abnormal entry count found on day 2016-12-10: -1952
WARNING. Abnormal entry count found on day 2016-12-17: -2029
WARNING. Abnormal entry count found on day 2016-12-17: -2029
WARNING. Abnormal entry count found on day 2016-12-24: -1947
WARNING. Abnormal entry count found on day 2016-12-24: -1947
Processing turnstile ('N318', 'R298', '00-00-02', 'NORTHERN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -14566
WARNING. Abnormal entry count found on day 2016-12-03: -14566
WARNING. Abnormal entry count found on day 2016-12-10: -14001
WARNING. Abnormal entry count found on day 2016-12-10: -14001
WARNING. Abnormal entry count found on day 2016-12-17: -13725
WARNING. Abnormal entry count found on day 2016-12-17: -13725
WARNING. Abnormal entry count found on day 2016-12-24: -11003
WARNING. Abnormal entry count found on day 2016-12-24: -11003
Processing turnstile ('R532', 'R328', '00-00-02', 'METS-WILLETS PT')
WARNING. Abnormal entry count found on day 2016-12-09: -1108
WARNING. Abnormal entry count found on day 2016-12-03: -261
WARNING. Abnormal entry count found on day 2016-12-09: -1108
WARNING. Abnormal entry count found on day 2016-12-03: -261
WARNING. Abnormal entry count found on day 2016-12-09: -1108
WARNING. Abnormal entry count found on day 2016-12-10: -1854
WARNING. Abnormal entry count found on day 2016-12-10: -1854
WARNING. Abnormal entry count found on day 2016-12-17: -1700
WARNING. Abnormal entry count found on day 2016-12-17: -1700
WARNING. Abnormal entry count found on day 2016-12-24: -1683
WARNING. Abnormal entry count found on day 2016-12-24: -1683
Processing turnstile ('B031', 'R172', '01-06-01', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -659
WARNING. Abnormal entry count found on day 2016-12-03: -659
WARNING. Abnormal entry count found on day 2016-12-10: -623
WARNING. Abnormal entry count found on day 2016-12-10: -623
WARNING. Abnormal entry count found on day 2016-12-17: -650
WARNING. Abnormal entry count found on day 2016-12-17: -650
WARNING. Abnormal entry count found on day 2016-12-24: -489
WARNING. Abnormal entry count found on day 2016-12-24: -489
Processing turnstile ('A049', 'R088', '02-05-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-06: -2
WARNING. Abnormal entry count found on day 2016-12-07: -2
WARNING. Abnormal entry count found on day 2016-12-08: -2
WARNING. Abnormal entry count found on day 2016-12-09: -1
WARNING. Abnormal entry count found on day 2016-12-06: -2
WARNING. Abnormal entry count found on day 2016-12-07: -2
WARNING. Abnormal entry count found on day 2016-12-08: -2
WARNING. Abnormal entry count found on day 2016-12-09: -1
WARNING. Abnormal entry count found on day 2016-12-06: -2
WARNING. Abnormal entry count found on day 2016-12-07: -2
WARNING. Abnormal entry count found on day 2016-12-08: -2
WARNING. Abnormal entry count found on day 2016-12-09: -1
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-11: -1
WARNING. Abnormal entry count found on day 2016-12-13: -2
WARNING. Abnormal entry count found on day 2016-12-14: -2
WARNING. Abnormal entry count found on day 2016-12-15: -6
WARNING. Abnormal entry count found on day 2016-12-16: -1
WARNING. Abnormal entry count found on day 2016-12-11: -1
WARNING. Abnormal entry count found on day 2016-12-13: -2
WARNING. Abnormal entry count found on day 2016-12-14: -2
WARNING. Abnormal entry count found on day 2016-12-15: -6
WARNING. Abnormal entry count found on day 2016-12-16: -1
WARNING. Abnormal entry count found on day 2016-12-11: -1
WARNING. Abnormal entry count found on day 2016-12-13: -2
WARNING. Abnormal entry count found on day 2016-12-14: -2
WARNING. Abnormal entry count found on day 2016-12-15: -6
WARNING. Abnormal entry count found on day 2016-12-16: -1
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-20: -3
WARNING. Abnormal entry count found on day 2016-12-21: -2
WARNING. Abnormal entry count found on day 2016-12-22: -8
WARNING. Abnormal entry count found on day 2016-12-23: -2
WARNING. Abnormal entry count found on day 2016-12-20: -3
WARNING. Abnormal entry count found on day 2016-12-21: -2
WARNING. Abnormal entry count found on day 2016-12-22: -8
WARNING. Abnormal entry count found on day 2016-12-23: -2
WARNING. Abnormal entry count found on day 2016-12-20: -3
WARNING. Abnormal entry count found on day 2016-12-21: -2
WARNING. Abnormal entry count found on day 2016-12-22: -8
WARNING. Abnormal entry count found on day 2016-12-23: -2
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-30: -4
WARNING. Abnormal entry count found on day 2016-12-30: -4
WARNING. Abnormal entry count found on day 2016-12-30: -4
Processing turnstile ('PTH07', 'R550', '00-00-06', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -11019
WARNING. Abnormal entry count found on day 2016-12-03: -11019
WARNING. Abnormal entry count found on day 2016-12-10: -11195
WARNING. Abnormal entry count found on day 2016-12-10: -11195
WARNING. Abnormal entry count found on day 2016-12-17: -10395
WARNING. Abnormal entry count found on day 2016-12-17: -10395
WARNING. Abnormal entry count found on day 2016-12-24: -7075
WARNING. Abnormal entry count found on day 2016-12-24: -7075
Processing turnstile ('R179', 'R193', '01-00-02', '157 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3011
WARNING. Abnormal entry count found on day 2016-12-03: -3011
WARNING. Abnormal entry count found on day 2016-12-10: -2248
WARNING. Abnormal entry count found on day 2016-12-10: -2248
WARNING. Abnormal entry count found on day 2016-12-17: -2730
WARNING. Abnormal entry count found on day 2016-12-17: -2730
WARNING. Abnormal entry count found on day 2016-12-24: -1621
WARNING. Abnormal entry count found on day 2016-12-24: -1621
Processing turnstile ('H007', 'R248', '00-00-00', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -24926
WARNING. Abnormal entry count found on day 2016-12-03: -24926
WARNING. Abnormal entry count found on day 2016-12-10: -24607
WARNING. Abnormal entry count found on day 2016-12-10: -24607
WARNING. Abnormal entry count found on day 2016-12-17: -22157
WARNING. Abnormal entry count found on day 2016-12-17: -22157
WARNING. Abnormal entry count found on day 2016-12-24: -15677
WARNING. Abnormal entry count found on day 2016-12-24: -15677
Processing turnstile ('H022', 'R279', '00-00-00', 'JEFFERSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13280
WARNING. Abnormal entry count found on day 2016-12-03: -13280
WARNING. Abnormal entry count found on day 2016-12-10: -12562
WARNING. Abnormal entry count found on day 2016-12-10: -12562
WARNING. Abnormal entry count found on day 2016-12-17: -11432
WARNING. Abnormal entry count found on day 2016-12-17: -11432
WARNING. Abnormal entry count found on day 2016-12-24: -8596
WARNING. Abnormal entry count found on day 2016-12-24: -8596
Processing turnstile ('R290', 'R161', '00-00-02', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -9946
WARNING. Abnormal entry count found on day 2016-12-03: -9946
WARNING. Abnormal entry count found on day 2016-12-10: -9598
WARNING. Abnormal entry count found on day 2016-12-10: -9598
WARNING. Abnormal entry count found on day 2016-12-17: -9141
WARNING. Abnormal entry count found on day 2016-12-17: -9141
WARNING. Abnormal entry count found on day 2016-12-24: -6464
WARNING. Abnormal entry count found on day 2016-12-24: -6464
Processing turnstile ('N325A', 'R218', '00-06-00', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16638
WARNING. Abnormal entry count found on day 2016-12-03: -16638
WARNING. Abnormal entry count found on day 2016-12-10: -15961
WARNING. Abnormal entry count found on day 2016-12-10: -15961
WARNING. Abnormal entry count found on day 2016-12-17: -15999
WARNING. Abnormal entry count found on day 2016-12-17: -15999
WARNING. Abnormal entry count found on day 2016-12-24: -12574
WARNING. Abnormal entry count found on day 2016-12-24: -12574
Processing turnstile ('R247', 'R178', '01-00-03', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4191
WARNING. Abnormal entry count found on day 2016-12-03: -4191
WARNING. Abnormal entry count found on day 2016-12-10: -4203
WARNING. Abnormal entry count found on day 2016-12-10: -4203
WARNING. Abnormal entry count found on day 2016-12-17: -3682
WARNING. Abnormal entry count found on day 2016-12-17: -3682
WARNING. Abnormal entry count found on day 2016-12-24: -2631
WARNING. Abnormal entry count found on day 2016-12-24: -2631
Processing turnstile ('N600', 'R302', '00-06-01', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10295
WARNING. Abnormal entry count found on day 2016-12-03: -10295
WARNING. Abnormal entry count found on day 2016-12-10: -14724
WARNING. Abnormal entry count found on day 2016-12-10: -14724
WARNING. Abnormal entry count found on day 2016-12-17: -13060
WARNING. Abnormal entry count found on day 2016-12-17: -13060
WARNING. Abnormal entry count found on day 2016-12-24: -10139
WARNING. Abnormal entry count found on day 2016-12-24: -10139
Processing turnstile ('R160A', 'R164', '00-05-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -9
WARNING. Abnormal entry count found on day 2016-12-10: -9
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-17: -8
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('R114', 'R028', '02-00-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3741
WARNING. Abnormal entry count found on day 2016-12-03: -3741
WARNING. Abnormal entry count found on day 2016-12-10: -3677
WARNING. Abnormal entry count found on day 2016-12-10: -3677
WARNING. Abnormal entry count found on day 2016-12-17: -3717
WARNING. Abnormal entry count found on day 2016-12-17: -3717
WARNING. Abnormal entry count found on day 2016-12-24: -1953
WARNING. Abnormal entry count found on day 2016-12-24: -1953
Processing turnstile ('N117', 'R198', '01-00-00', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10277
WARNING. Abnormal entry count found on day 2016-12-03: -10277
WARNING. Abnormal entry count found on day 2016-12-10: -9973
WARNING. Abnormal entry count found on day 2016-12-10: -9973
WARNING. Abnormal entry count found on day 2016-12-17: -9634
WARNING. Abnormal entry count found on day 2016-12-17: -9634
WARNING. Abnormal entry count found on day 2016-12-24: -7789
WARNING. Abnormal entry count found on day 2016-12-24: -7789
Processing turnstile ('N531', 'R129', '01-00-00', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3433
WARNING. Abnormal entry count found on day 2016-12-03: -3433
WARNING. Abnormal entry count found on day 2016-12-10: -3496
WARNING. Abnormal entry count found on day 2016-12-10: -3496
WARNING. Abnormal entry count found on day 2016-12-17: -3471
WARNING. Abnormal entry count found on day 2016-12-17: -3471
WARNING. Abnormal entry count found on day 2016-12-24: -2348
WARNING. Abnormal entry count found on day 2016-12-24: -2348
Processing turnstile ('N118', 'R199', '01-00-02', 'KINGSTON-THROOP')
WARNING. Abnormal entry count found on day 2016-12-03: -2594
WARNING. Abnormal entry count found on day 2016-12-03: -2594
WARNING. Abnormal entry count found on day 2016-12-10: -2511
WARNING. Abnormal entry count found on day 2016-12-10: -2511
WARNING. Abnormal entry count found on day 2016-12-17: -2181
WARNING. Abnormal entry count found on day 2016-12-17: -2181
WARNING. Abnormal entry count found on day 2016-12-24: -1665
WARNING. Abnormal entry count found on day 2016-12-24: -1665
Processing turnstile ('N525', 'R142', '01-00-01', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -11505
WARNING. Abnormal entry count found on day 2016-12-03: -11505
WARNING. Abnormal entry count found on day 2016-12-10: -16594
WARNING. Abnormal entry count found on day 2016-12-10: -16594
WARNING. Abnormal entry count found on day 2016-12-17: -10826
WARNING. Abnormal entry count found on day 2016-12-17: -10826
WARNING. Abnormal entry count found on day 2016-12-24: -7842
WARNING. Abnormal entry count found on day 2016-12-24: -7842
Processing turnstile ('A015', 'R081', '00-00-00', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10806
WARNING. Abnormal entry count found on day 2016-12-03: -10806
WARNING. Abnormal entry count found on day 2016-12-10: -10420
WARNING. Abnormal entry count found on day 2016-12-10: -10420
WARNING. Abnormal entry count found on day 2016-12-17: -11972
WARNING. Abnormal entry count found on day 2016-12-17: -11972
WARNING. Abnormal entry count found on day 2016-12-24: -11626
WARNING. Abnormal entry count found on day 2016-12-24: -11626
Processing turnstile ('G001', 'R151', '00-00-01', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -5775
WARNING. Abnormal entry count found on day 2016-12-03: -5775
WARNING. Abnormal entry count found on day 2016-12-10: -4960
WARNING. Abnormal entry count found on day 2016-12-10: -4960
WARNING. Abnormal entry count found on day 2016-12-17: -5496
WARNING. Abnormal entry count found on day 2016-12-17: -5496
WARNING. Abnormal entry count found on day 2016-12-24: -5041
WARNING. Abnormal entry count found on day 2016-12-24: -5041
Processing turnstile ('R249', 'R179', '01-00-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4036
WARNING. Abnormal entry count found on day 2016-12-03: -4036
WARNING. Abnormal entry count found on day 2016-12-10: -4176
WARNING. Abnormal entry count found on day 2016-12-10: -4176
WARNING. Abnormal entry count found on day 2016-12-17: -4295
WARNING. Abnormal entry count found on day 2016-12-17: -4295
WARNING. Abnormal entry count found on day 2016-12-24: -3515
WARNING. Abnormal entry count found on day 2016-12-24: -3515
Processing turnstile ('A071', 'R044', '02-06-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3248
WARNING. Abnormal entry count found on day 2016-12-03: -3248
WARNING. Abnormal entry count found on day 2016-12-10: -3020
WARNING. Abnormal entry count found on day 2016-12-10: -3020
WARNING. Abnormal entry count found on day 2016-12-17: -2687
WARNING. Abnormal entry count found on day 2016-12-17: -2687
WARNING. Abnormal entry count found on day 2016-12-24: -1700
WARNING. Abnormal entry count found on day 2016-12-24: -1700
Processing turnstile ('PTH17', 'R541', '01-00-05', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11314
WARNING. Abnormal entry count found on day 2016-12-03: -11314
WARNING. Abnormal entry count found on day 2016-12-10: -11183
WARNING. Abnormal entry count found on day 2016-12-10: -11183
WARNING. Abnormal entry count found on day 2016-12-17: -9926
WARNING. Abnormal entry count found on day 2016-12-17: -9926
WARNING. Abnormal entry count found on day 2016-12-24: -8998
WARNING. Abnormal entry count found on day 2016-12-24: -8998
Processing turnstile ('R135', 'R031', '01-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -16465
WARNING. Abnormal entry count found on day 2016-12-03: -16465
WARNING. Abnormal entry count found on day 2016-12-10: -16603
WARNING. Abnormal entry count found on day 2016-12-10: -16603
WARNING. Abnormal entry count found on day 2016-12-17: -14081
WARNING. Abnormal entry count found on day 2016-12-17: -14081
WARNING. Abnormal entry count found on day 2016-12-24: -9573
WARNING. Abnormal entry count found on day 2016-12-24: -9573
Processing turnstile ('A029', 'R082', '00-03-01', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7633
WARNING. Abnormal entry count found on day 2016-12-03: -7633
WARNING. Abnormal entry count found on day 2016-12-10: -10578
WARNING. Abnormal entry count found on day 2016-12-10: -10578
WARNING. Abnormal entry count found on day 2016-12-17: -8195
WARNING. Abnormal entry count found on day 2016-12-17: -8195
WARNING. Abnormal entry count found on day 2016-12-24: -6611
WARNING. Abnormal entry count found on day 2016-12-24: -6611
Processing turnstile ('R533', 'R055', '00-00-00', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -11231
WARNING. Abnormal entry count found on day 2016-12-03: -11231
WARNING. Abnormal entry count found on day 2016-12-10: -10194
WARNING. Abnormal entry count found on day 2016-12-10: -10194
WARNING. Abnormal entry count found on day 2016-12-17: -9957
WARNING. Abnormal entry count found on day 2016-12-17: -9957
WARNING. Abnormal entry count found on day 2016-12-24: -8461
WARNING. Abnormal entry count found on day 2016-12-24: -8461
Processing turnstile ('N520', 'R240', '00-00-06', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -21797
WARNING. Abnormal entry count found on day 2016-12-03: -21797
WARNING. Abnormal entry count found on day 2016-12-10: -29741
WARNING. Abnormal entry count found on day 2016-12-10: -29741
WARNING. Abnormal entry count found on day 2016-12-17: -25751
WARNING. Abnormal entry count found on day 2016-12-17: -25751
WARNING. Abnormal entry count found on day 2016-12-24: -16403
WARNING. Abnormal entry count found on day 2016-12-24: -16403
Processing turnstile ('N561', 'R271', '00-00-02', 'AVENUE X')
WARNING. Abnormal entry count found on day 2016-12-03: -889
WARNING. Abnormal entry count found on day 2016-12-03: -889
WARNING. Abnormal entry count found on day 2016-12-10: -851
WARNING. Abnormal entry count found on day 2016-12-10: -851
WARNING. Abnormal entry count found on day 2016-12-17: -840
WARNING. Abnormal entry count found on day 2016-12-17: -840
WARNING. Abnormal entry count found on day 2016-12-24: -544
WARNING. Abnormal entry count found on day 2016-12-24: -544
Processing turnstile ('K026', 'R100', '00-00-03', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4337
WARNING. Abnormal entry count found on day 2016-12-03: -4337
WARNING. Abnormal entry count found on day 2016-12-10: -4326
WARNING. Abnormal entry count found on day 2016-12-10: -4326
WARNING. Abnormal entry count found on day 2016-12-17: -5070
WARNING. Abnormal entry count found on day 2016-12-17: -5070
WARNING. Abnormal entry count found on day 2016-12-24: -3218
WARNING. Abnormal entry count found on day 2016-12-24: -3218
Processing turnstile ('R301', 'R323', '00-00-00', 'CENTRAL PK N110')
WARNING. Abnormal entry count found on day 2016-12-03: -7357
WARNING. Abnormal entry count found on day 2016-12-03: -7357
WARNING. Abnormal entry count found on day 2016-12-10: -7253
WARNING. Abnormal entry count found on day 2016-12-10: -7253
WARNING. Abnormal entry count found on day 2016-12-17: -6907
WARNING. Abnormal entry count found on day 2016-12-17: -6907
WARNING. Abnormal entry count found on day 2016-12-24: -5327
WARNING. Abnormal entry count found on day 2016-12-24: -5327
Processing turnstile ('R287', 'R244', '00-00-00', 'BURNSIDE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14818
WARNING. Abnormal entry count found on day 2016-12-03: -14818
WARNING. Abnormal entry count found on day 2016-12-10: -17631
WARNING. Abnormal entry count found on day 2016-12-10: -17631
WARNING. Abnormal entry count found on day 2016-12-17: -18691
WARNING. Abnormal entry count found on day 2016-12-17: -18691
WARNING. Abnormal entry count found on day 2016-12-24: -5399468
WARNING. Abnormal entry count found on day 2016-12-24: -10179
WARNING. Abnormal entry count found on day 2016-12-24: -10179
Processing turnstile ('N547', 'R420', '01-04-00', 'DITMAS AV')
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
Processing turnstile ('R622', 'R123', '00-00-05', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7945
WARNING. Abnormal entry count found on day 2016-12-03: -7945
WARNING. Abnormal entry count found on day 2016-12-10: -7481
WARNING. Abnormal entry count found on day 2016-12-10: -7481
WARNING. Abnormal entry count found on day 2016-12-17: -6855
WARNING. Abnormal entry count found on day 2016-12-17: -6855
WARNING. Abnormal entry count found on day 2016-12-24: -4466
WARNING. Abnormal entry count found on day 2016-12-24: -4466
Processing turnstile ('R202', 'R042', '00-00-03', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -10733
WARNING. Abnormal entry count found on day 2016-12-03: -10733
WARNING. Abnormal entry count found on day 2016-12-10: -8901
WARNING. Abnormal entry count found on day 2016-12-10: -8901
WARNING. Abnormal entry count found on day 2016-12-17: -9882
WARNING. Abnormal entry count found on day 2016-12-17: -9882
WARNING. Abnormal entry count found on day 2016-12-24: -8931
WARNING. Abnormal entry count found on day 2016-12-24: -8931
Processing turnstile ('R304', 'R206', '00-00-04', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10575
WARNING. Abnormal entry count found on day 2016-12-03: -10575
WARNING. Abnormal entry count found on day 2016-12-10: -10513
WARNING. Abnormal entry count found on day 2016-12-10: -10513
WARNING. Abnormal entry count found on day 2016-12-17: -10199
WARNING. Abnormal entry count found on day 2016-12-17: -10199
WARNING. Abnormal entry count found on day 2016-12-24: -7740
WARNING. Abnormal entry count found on day 2016-12-24: -7740
Processing turnstile ('C009', 'R057', '03-03-03', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -13795
WARNING. Abnormal entry count found on day 2016-12-03: -13795
WARNING. Abnormal entry count found on day 2016-12-10: -12885
WARNING. Abnormal entry count found on day 2016-12-10: -12885
WARNING. Abnormal entry count found on day 2016-12-17: -13054
WARNING. Abnormal entry count found on day 2016-12-17: -13054
WARNING. Abnormal entry count found on day 2016-12-24: -8962
WARNING. Abnormal entry count found on day 2016-12-24: -8962
Processing turnstile ('N316', 'R267', '00-00-01', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6386
WARNING. Abnormal entry count found on day 2016-12-03: -6386
WARNING. Abnormal entry count found on day 2016-12-10: -6324
WARNING. Abnormal entry count found on day 2016-12-10: -6324
WARNING. Abnormal entry count found on day 2016-12-17: -5812
WARNING. Abnormal entry count found on day 2016-12-17: -5812
WARNING. Abnormal entry count found on day 2016-12-24: -4168
WARNING. Abnormal entry count found on day 2016-12-24: -4168
Processing turnstile ('R173', 'R159', '00-03-01', '116 ST-COLUMBIA')
WARNING. Abnormal entry count found on day 2016-12-03: -24341
WARNING. Abnormal entry count found on day 2016-12-03: -24341
WARNING. Abnormal entry count found on day 2016-12-10: -21446
WARNING. Abnormal entry count found on day 2016-12-10: -21446
WARNING. Abnormal entry count found on day 2016-12-17: -18958
WARNING. Abnormal entry count found on day 2016-12-17: -18958
WARNING. Abnormal entry count found on day 2016-12-24: -9163
WARNING. Abnormal entry count found on day 2016-12-24: -9163
Processing turnstile ('N501A', 'R020', '02-00-02', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -7539
WARNING. Abnormal entry count found on day 2016-12-03: -7539
WARNING. Abnormal entry count found on day 2016-12-10: -7857
WARNING. Abnormal entry count found on day 2016-12-10: -7857
WARNING. Abnormal entry count found on day 2016-12-17: -8037
WARNING. Abnormal entry count found on day 2016-12-17: -8037
WARNING. Abnormal entry count found on day 2016-12-24: -7136
WARNING. Abnormal entry count found on day 2016-12-24: -7136
Processing turnstile ('R246', 'R177', '00-03-04', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -19090
WARNING. Abnormal entry count found on day 2016-12-03: -19090
WARNING. Abnormal entry count found on day 2016-12-10: -19643
WARNING. Abnormal entry count found on day 2016-12-10: -19643
WARNING. Abnormal entry count found on day 2016-12-17: -16963
WARNING. Abnormal entry count found on day 2016-12-17: -16963
WARNING. Abnormal entry count found on day 2016-12-24: -11017
WARNING. Abnormal entry count found on day 2016-12-24: -11017
Processing turnstile ('R523', 'R147', '00-00-03', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -2431
WARNING. Abnormal entry count found on day 2016-12-03: -2431
WARNING. Abnormal entry count found on day 2016-12-10: -8869
WARNING. Abnormal entry count found on day 2016-12-10: -8869
WARNING. Abnormal entry count found on day 2016-12-17: -8927
WARNING. Abnormal entry count found on day 2016-12-17: -8927
WARNING. Abnormal entry count found on day 2016-12-24: -6665
WARNING. Abnormal entry count found on day 2016-12-24: -6665
Processing turnstile ('A035', 'R170', '00-00-03', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -17555
WARNING. Abnormal entry count found on day 2016-12-03: -17555
WARNING. Abnormal entry count found on day 2016-12-10: -17624
WARNING. Abnormal entry count found on day 2016-12-10: -17624
WARNING. Abnormal entry count found on day 2016-12-17: -16152
WARNING. Abnormal entry count found on day 2016-12-17: -16152
WARNING. Abnormal entry count found on day 2016-12-24: -8547
WARNING. Abnormal entry count found on day 2016-12-24: -8547
Processing turnstile ('N511', 'R163', '03-06-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1139
WARNING. Abnormal entry count found on day 2016-12-03: -1139
WARNING. Abnormal entry count found on day 2016-12-10: -1189
WARNING. Abnormal entry count found on day 2016-12-10: -1189
WARNING. Abnormal entry count found on day 2016-12-17: -955
WARNING. Abnormal entry count found on day 2016-12-17: -955
WARNING. Abnormal entry count found on day 2016-12-24: -450
WARNING. Abnormal entry count found on day 2016-12-24: -450
Processing turnstile ('R293', 'R133', '00-00-00', 'MOSHOLU PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -7972
WARNING. Abnormal entry count found on day 2016-12-03: -7972
WARNING. Abnormal entry count found on day 2016-12-10: -8155
WARNING. Abnormal entry count found on day 2016-12-10: -8155
WARNING. Abnormal entry count found on day 2016-12-17: -7981
WARNING. Abnormal entry count found on day 2016-12-17: -7981
WARNING. Abnormal entry count found on day 2016-12-24: -6144
WARNING. Abnormal entry count found on day 2016-12-24: -6144
Processing turnstile ('N025', 'R102', '01-06-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3959
WARNING. Abnormal entry count found on day 2016-12-03: -3959
WARNING. Abnormal entry count found on day 2016-12-10: -3682
WARNING. Abnormal entry count found on day 2016-12-10: -3682
WARNING. Abnormal entry count found on day 2016-12-17: -3584
WARNING. Abnormal entry count found on day 2016-12-17: -3584
WARNING. Abnormal entry count found on day 2016-12-24: -2467
WARNING. Abnormal entry count found on day 2016-12-24: -2467
Processing turnstile ('R529', 'R208', '00-06-01', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-12-03: -8824
WARNING. Abnormal entry count found on day 2016-12-03: -8824
WARNING. Abnormal entry count found on day 2016-12-10: -8457
WARNING. Abnormal entry count found on day 2016-12-10: -8457
WARNING. Abnormal entry count found on day 2016-12-17: -8975
WARNING. Abnormal entry count found on day 2016-12-17: -8975
WARNING. Abnormal entry count found on day 2016-12-24: -6693
WARNING. Abnormal entry count found on day 2016-12-24: -6693
Processing turnstile ('PTH13', 'R541', '00-04-03', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8295
WARNING. Abnormal entry count found on day 2016-12-03: -8295
WARNING. Abnormal entry count found on day 2016-12-10: -6889
WARNING. Abnormal entry count found on day 2016-12-10: -6889
WARNING. Abnormal entry count found on day 2016-12-17: -9897
WARNING. Abnormal entry count found on day 2016-12-17: -9897
WARNING. Abnormal entry count found on day 2016-12-24: -9209
WARNING. Abnormal entry count found on day 2016-12-24: -9209
Processing turnstile ('N213', 'R154', '00-06-01', 'TREMONT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5123
WARNING. Abnormal entry count found on day 2016-12-03: -5123
WARNING. Abnormal entry count found on day 2016-12-10: -6842
WARNING. Abnormal entry count found on day 2016-12-10: -6842
WARNING. Abnormal entry count found on day 2016-12-17: -4885
WARNING. Abnormal entry count found on day 2016-12-17: -4885
WARNING. Abnormal entry count found on day 2016-12-24: -3884
WARNING. Abnormal entry count found on day 2016-12-24: -3884
Processing turnstile ('R166', 'R167', '02-00-02', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4104
WARNING. Abnormal entry count found on day 2016-12-03: -4104
WARNING. Abnormal entry count found on day 2016-12-10: -4382
WARNING. Abnormal entry count found on day 2016-12-10: -4382
WARNING. Abnormal entry count found on day 2016-12-17: -3856
WARNING. Abnormal entry count found on day 2016-12-17: -3856
WARNING. Abnormal entry count found on day 2016-12-24: -2047
WARNING. Abnormal entry count found on day 2016-12-24: -2047
Processing turnstile ('N301', 'R113', '00-00-00', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10245
WARNING. Abnormal entry count found on day 2016-12-03: -10245
WARNING. Abnormal entry count found on day 2016-12-10: -10041
WARNING. Abnormal entry count found on day 2016-12-10: -10041
WARNING. Abnormal entry count found on day 2016-12-17: -9784
WARNING. Abnormal entry count found on day 2016-12-17: -9784
WARNING. Abnormal entry count found on day 2016-12-24: -8421
WARNING. Abnormal entry count found on day 2016-12-24: -8421
Processing turnstile ('N090', 'R139', '01-05-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7170
WARNING. Abnormal entry count found on day 2016-12-03: -7170
WARNING. Abnormal entry count found on day 2016-12-10: -6260
WARNING. Abnormal entry count found on day 2016-12-10: -6260
WARNING. Abnormal entry count found on day 2016-12-17: -5513
WARNING. Abnormal entry count found on day 2016-12-17: -5513
WARNING. Abnormal entry count found on day 2016-12-24: -3042
WARNING. Abnormal entry count found on day 2016-12-24: -3042
Processing turnstile ('R141', 'R031', '00-03-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -15754
WARNING. Abnormal entry count found on day 2016-12-03: -15754
WARNING. Abnormal entry count found on day 2016-12-10: -15343
WARNING. Abnormal entry count found on day 2016-12-10: -15343
WARNING. Abnormal entry count found on day 2016-12-17: -17636
WARNING. Abnormal entry count found on day 2016-12-17: -17636
WARNING. Abnormal entry count found on day 2016-12-24: -13796
WARNING. Abnormal entry count found on day 2016-12-24: -13796
Processing turnstile ('R503', 'R276', '01-00-00', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -7820
WARNING. Abnormal entry count found on day 2016-12-03: -7820
WARNING. Abnormal entry count found on day 2016-12-10: -7880
WARNING. Abnormal entry count found on day 2016-12-10: -7880
WARNING. Abnormal entry count found on day 2016-12-17: -7802
WARNING. Abnormal entry count found on day 2016-12-17: -7802
WARNING. Abnormal entry count found on day 2016-12-24: -5595
WARNING. Abnormal entry count found on day 2016-12-24: -5595
Processing turnstile ('R520', 'R223', '01-06-01', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15263
WARNING. Abnormal entry count found on day 2016-12-03: -15263
WARNING. Abnormal entry count found on day 2016-12-10: -14905
WARNING. Abnormal entry count found on day 2016-12-10: -14905
WARNING. Abnormal entry count found on day 2016-12-17: -15251
WARNING. Abnormal entry count found on day 2016-12-17: -15251
WARNING. Abnormal entry count found on day 2016-12-24: -11924
WARNING. Abnormal entry count found on day 2016-12-24: -11924
Processing turnstile ('R242', 'R049', '01-03-02', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6848
WARNING. Abnormal entry count found on day 2016-12-03: -6848
WARNING. Abnormal entry count found on day 2016-12-10: -6703
WARNING. Abnormal entry count found on day 2016-12-10: -6703
WARNING. Abnormal entry count found on day 2016-12-17: -6372
WARNING. Abnormal entry count found on day 2016-12-17: -6372
WARNING. Abnormal entry count found on day 2016-12-24: -5450
WARNING. Abnormal entry count found on day 2016-12-24: -5450
Processing turnstile ('H013', 'R249', '01-00-01', 'GRAHAM AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14513
WARNING. Abnormal entry count found on day 2016-12-03: -14513
WARNING. Abnormal entry count found on day 2016-12-10: -15321
WARNING. Abnormal entry count found on day 2016-12-10: -15321
WARNING. Abnormal entry count found on day 2016-12-17: -13146
WARNING. Abnormal entry count found on day 2016-12-17: -13146
WARNING. Abnormal entry count found on day 2016-12-24: -7945
WARNING. Abnormal entry count found on day 2016-12-24: -7945
Processing turnstile ('N554', 'R423', '01-04-01', 'AVENUE N')
Processing turnstile ('R226', 'R131', '02-06-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-17: -10
WARNING. Abnormal entry count found on day 2016-12-17: -10
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('R501', 'R054', '00-00-01', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -14337
WARNING. Abnormal entry count found on day 2016-12-03: -14337
WARNING. Abnormal entry count found on day 2016-12-10: -14193
WARNING. Abnormal entry count found on day 2016-12-10: -14193
WARNING. Abnormal entry count found on day 2016-12-17: -13338
WARNING. Abnormal entry count found on day 2016-12-17: -13338
WARNING. Abnormal entry count found on day 2016-12-24: -9842
WARNING. Abnormal entry count found on day 2016-12-24: -9842
Processing turnstile ('A031', 'R083', '00-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9377
WARNING. Abnormal entry count found on day 2016-12-03: -9377
WARNING. Abnormal entry count found on day 2016-12-10: -9105
WARNING. Abnormal entry count found on day 2016-12-10: -9105
WARNING. Abnormal entry count found on day 2016-12-17: -7701
WARNING. Abnormal entry count found on day 2016-12-17: -7701
WARNING. Abnormal entry count found on day 2016-12-24: -5599
WARNING. Abnormal entry count found on day 2016-12-24: -5599
Processing turnstile ('R412', 'R146', '00-00-03', 'HUNTS POINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7163
WARNING. Abnormal entry count found on day 2016-12-03: -7163
WARNING. Abnormal entry count found on day 2016-12-10: -6875
WARNING. Abnormal entry count found on day 2016-12-10: -6875
WARNING. Abnormal entry count found on day 2016-12-17: -6679
WARNING. Abnormal entry count found on day 2016-12-17: -6679
WARNING. Abnormal entry count found on day 2016-12-24: -4702
WARNING. Abnormal entry count found on day 2016-12-24: -4702
Processing turnstile ('N555', 'R423', '00-00-02', 'AVENUE N')
WARNING. Abnormal entry count found on day 2016-12-03: -5429
WARNING. Abnormal entry count found on day 2016-12-03: -5429
WARNING. Abnormal entry count found on day 2016-12-10: -4872
WARNING. Abnormal entry count found on day 2016-12-10: -4872
WARNING. Abnormal entry count found on day 2016-12-17: -5278
WARNING. Abnormal entry count found on day 2016-12-17: -5278
WARNING. Abnormal entry count found on day 2016-12-24: -4207
WARNING. Abnormal entry count found on day 2016-12-24: -4207
Processing turnstile ('N131', 'R383', '00-00-00', '80 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3927
WARNING. Abnormal entry count found on day 2016-12-03: -3927
WARNING. Abnormal entry count found on day 2016-12-10: -3818
WARNING. Abnormal entry count found on day 2016-12-10: -3818
WARNING. Abnormal entry count found on day 2016-12-17: -3730
WARNING. Abnormal entry count found on day 2016-12-17: -3730
WARNING. Abnormal entry count found on day 2016-12-24: -2875
WARNING. Abnormal entry count found on day 2016-12-24: -2875
Processing turnstile ('B004', 'R171', '00-00-03', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -18515
WARNING. Abnormal entry count found on day 2016-12-03: -18515
WARNING. Abnormal entry count found on day 2016-12-10: -18101
WARNING. Abnormal entry count found on day 2016-12-10: -18101
WARNING. Abnormal entry count found on day 2016-12-17: -16753
WARNING. Abnormal entry count found on day 2016-12-17: -16753
WARNING. Abnormal entry count found on day 2016-12-24: -10872
WARNING. Abnormal entry count found on day 2016-12-24: -10872
Processing turnstile ('R194', 'R040', '00-03-00', '231 ST')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
Processing turnstile ('A011', 'R080', '01-00-01', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14474
WARNING. Abnormal entry count found on day 2016-12-03: -14474
WARNING. Abnormal entry count found on day 2016-12-10: -15054
WARNING. Abnormal entry count found on day 2016-12-10: -15054
WARNING. Abnormal entry count found on day 2016-12-17: -12038
WARNING. Abnormal entry count found on day 2016-12-17: -12038
WARNING. Abnormal entry count found on day 2016-12-24: -9490
WARNING. Abnormal entry count found on day 2016-12-24: -9490
Processing turnstile ('R510', 'R090', '00-00-01', '39 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5635
WARNING. Abnormal entry count found on day 2016-12-03: -5635
WARNING. Abnormal entry count found on day 2016-12-10: -4990
WARNING. Abnormal entry count found on day 2016-12-10: -4990
WARNING. Abnormal entry count found on day 2016-12-17: -4232
WARNING. Abnormal entry count found on day 2016-12-17: -4232
WARNING. Abnormal entry count found on day 2016-12-24: -4322
WARNING. Abnormal entry count found on day 2016-12-24: -4322
Processing turnstile ('PTH16', 'R550', '01-00-08', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -1418
WARNING. Abnormal entry count found on day 2016-12-03: -1418
WARNING. Abnormal entry count found on day 2016-12-10: -1489
WARNING. Abnormal entry count found on day 2016-12-10: -1489
WARNING. Abnormal entry count found on day 2016-12-17: -1179
WARNING. Abnormal entry count found on day 2016-12-17: -1179
WARNING. Abnormal entry count found on day 2016-12-24: -702
WARNING. Abnormal entry count found on day 2016-12-24: -702
Processing turnstile ('R102', 'R304', '01-03-00', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4324
WARNING. Abnormal entry count found on day 2016-12-03: -4324
WARNING. Abnormal entry count found on day 2016-12-10: -4366
WARNING. Abnormal entry count found on day 2016-12-10: -4366
WARNING. Abnormal entry count found on day 2016-12-17: -3478
WARNING. Abnormal entry count found on day 2016-12-17: -3478
WARNING. Abnormal entry count found on day 2016-12-24: -2234
WARNING. Abnormal entry count found on day 2016-12-24: -2234
Processing turnstile ('N087', 'R282', '01-05-01', 'SPRING ST')
Processing turnstile ('PTH18', 'R549', '01-00-06', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -3498
WARNING. Abnormal entry count found on day 2016-12-03: -3498
WARNING. Abnormal entry count found on day 2016-12-10: -4378
WARNING. Abnormal entry count found on day 2016-12-10: -4378
WARNING. Abnormal entry count found on day 2016-12-17: -3326
WARNING. Abnormal entry count found on day 2016-12-17: -3326
WARNING. Abnormal entry count found on day 2016-12-24: -2586
WARNING. Abnormal entry count found on day 2016-12-24: -2586
Processing turnstile ('N322', 'R340', '00-00-01', '65 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5345
WARNING. Abnormal entry count found on day 2016-12-03: -5345
WARNING. Abnormal entry count found on day 2016-12-10: -5277
WARNING. Abnormal entry count found on day 2016-12-10: -5277
WARNING. Abnormal entry count found on day 2016-12-17: -5346
WARNING. Abnormal entry count found on day 2016-12-17: -5346
WARNING. Abnormal entry count found on day 2016-12-24: -4516
WARNING. Abnormal entry count found on day 2016-12-24: -4516
Processing turnstile ('N405', 'R239', '00-00-03', 'GREENPOINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5698
WARNING. Abnormal entry count found on day 2016-12-03: -5698
WARNING. Abnormal entry count found on day 2016-12-10: -5493
WARNING. Abnormal entry count found on day 2016-12-10: -5493
WARNING. Abnormal entry count found on day 2016-12-17: -5043
WARNING. Abnormal entry count found on day 2016-12-17: -5043
WARNING. Abnormal entry count found on day 2016-12-24: -3179
WARNING. Abnormal entry count found on day 2016-12-24: -3179
Processing turnstile ('R210A', 'R044', '03-06-01', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -1504
WARNING. Abnormal entry count found on day 2016-12-03: -1504
WARNING. Abnormal entry count found on day 2016-12-10: -1502
WARNING. Abnormal entry count found on day 2016-12-10: -1502
WARNING. Abnormal entry count found on day 2016-12-17: -1279
WARNING. Abnormal entry count found on day 2016-12-17: -1279
WARNING. Abnormal entry count found on day 2016-12-24: -785
WARNING. Abnormal entry count found on day 2016-12-24: -785
Processing turnstile ('N095A', 'R014', '01-00-04', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13980
WARNING. Abnormal entry count found on day 2016-12-03: -13980
WARNING. Abnormal entry count found on day 2016-12-10: -13834
WARNING. Abnormal entry count found on day 2016-12-10: -13834
WARNING. Abnormal entry count found on day 2016-12-17: -14352
WARNING. Abnormal entry count found on day 2016-12-17: -14352
WARNING. Abnormal entry count found on day 2016-12-24: -12735
WARNING. Abnormal entry count found on day 2016-12-24: -12735
Processing turnstile ('R262A', 'R195', '04-00-01', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -272
WARNING. Abnormal entry count found on day 2016-12-24: -272
Processing turnstile ('H028', 'R266', '00-00-01', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7205
WARNING. Abnormal entry count found on day 2016-12-03: -7205
WARNING. Abnormal entry count found on day 2016-12-10: -7205
WARNING. Abnormal entry count found on day 2016-12-10: -7205
WARNING. Abnormal entry count found on day 2016-12-17: -6711
WARNING. Abnormal entry count found on day 2016-12-17: -6711
WARNING. Abnormal entry count found on day 2016-12-24: -5357
WARNING. Abnormal entry count found on day 2016-12-24: -5357
Processing turnstile ('A011', 'R080', '01-00-03', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4108
WARNING. Abnormal entry count found on day 2016-12-03: -4108
WARNING. Abnormal entry count found on day 2016-12-10: -6472
WARNING. Abnormal entry count found on day 2016-12-10: -6472
WARNING. Abnormal entry count found on day 2016-12-17: -5484
WARNING. Abnormal entry count found on day 2016-12-17: -5484
WARNING. Abnormal entry count found on day 2016-12-24: -4511
WARNING. Abnormal entry count found on day 2016-12-24: -4511
Processing turnstile ('R262A', 'R195', '04-00-00', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -257
WARNING. Abnormal entry count found on day 2016-12-24: -257
Processing turnstile ('N338B', 'R128', '00-06-00', 'SUTPHIN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3401
WARNING. Abnormal entry count found on day 2016-12-03: -3401
WARNING. Abnormal entry count found on day 2016-12-10: -3076
WARNING. Abnormal entry count found on day 2016-12-10: -3076
WARNING. Abnormal entry count found on day 2016-12-17: -3078
WARNING. Abnormal entry count found on day 2016-12-17: -3078
WARNING. Abnormal entry count found on day 2016-12-24: -2153
WARNING. Abnormal entry count found on day 2016-12-24: -2153
Processing turnstile ('N215', 'R237', '00-00-00', '182-183 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -11548
WARNING. Abnormal entry count found on day 2016-12-03: -11548
WARNING. Abnormal entry count found on day 2016-12-10: -11149
WARNING. Abnormal entry count found on day 2016-12-10: -11149
WARNING. Abnormal entry count found on day 2016-12-17: -11428
WARNING. Abnormal entry count found on day 2016-12-17: -11428
WARNING. Abnormal entry count found on day 2016-12-24: -9252
WARNING. Abnormal entry count found on day 2016-12-24: -9252
Processing turnstile ('R204A', 'R043', '03-05-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R601A', 'R108', '02-00-05', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -7666
WARNING. Abnormal entry count found on day 2016-12-03: -7666
WARNING. Abnormal entry count found on day 2016-12-10: -7098
WARNING. Abnormal entry count found on day 2016-12-10: -7098
WARNING. Abnormal entry count found on day 2016-12-17: -5962
WARNING. Abnormal entry count found on day 2016-12-17: -5962
WARNING. Abnormal entry count found on day 2016-12-24: -3434
WARNING. Abnormal entry count found on day 2016-12-24: -3434
Processing turnstile ('S101A', 'R070', '01-00-03', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -2787
WARNING. Abnormal entry count found on day 2016-12-03: -2787
WARNING. Abnormal entry count found on day 2016-12-10: -2712
WARNING. Abnormal entry count found on day 2016-12-10: -2712
WARNING. Abnormal entry count found on day 2016-12-17: -2572
WARNING. Abnormal entry count found on day 2016-12-17: -2572
WARNING. Abnormal entry count found on day 2016-12-24: -1885
WARNING. Abnormal entry count found on day 2016-12-24: -1885
Processing turnstile ('C003', 'R089', '00-03-01', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -530
WARNING. Abnormal entry count found on day 2016-12-03: -530
WARNING. Abnormal entry count found on day 2016-12-10: -540
WARNING. Abnormal entry count found on day 2016-12-10: -540
WARNING. Abnormal entry count found on day 2016-12-17: -467
WARNING. Abnormal entry count found on day 2016-12-17: -467
WARNING. Abnormal entry count found on day 2016-12-24: -331
WARNING. Abnormal entry count found on day 2016-12-24: -331
Processing turnstile ('R618', 'R058', '01-00-01', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1390
WARNING. Abnormal entry count found on day 2016-12-03: -1390
WARNING. Abnormal entry count found on day 2016-12-10: -1329
WARNING. Abnormal entry count found on day 2016-12-10: -1329
WARNING. Abnormal entry count found on day 2016-12-17: -1457
WARNING. Abnormal entry count found on day 2016-12-17: -1457
WARNING. Abnormal entry count found on day 2016-12-24: -960
WARNING. Abnormal entry count found on day 2016-12-24: -960
Processing turnstile ('A047', 'R087', '00-03-00', 'CITY HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -3915
WARNING. Abnormal entry count found on day 2016-12-03: -3915
WARNING. Abnormal entry count found on day 2016-12-10: -3960
WARNING. Abnormal entry count found on day 2016-12-10: -3960
WARNING. Abnormal entry count found on day 2016-12-17: -3845
WARNING. Abnormal entry count found on day 2016-12-17: -3845
WARNING. Abnormal entry count found on day 2016-12-24: -3508
WARNING. Abnormal entry count found on day 2016-12-24: -3508
Processing turnstile ('N062', 'R011', '01-00-02', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -9084
WARNING. Abnormal entry count found on day 2016-12-03: -9084
WARNING. Abnormal entry count found on day 2016-12-10: -9787
WARNING. Abnormal entry count found on day 2016-12-10: -9787
WARNING. Abnormal entry count found on day 2016-12-17: -9205
WARNING. Abnormal entry count found on day 2016-12-17: -9205
WARNING. Abnormal entry count found on day 2016-12-24: -6751
WARNING. Abnormal entry count found on day 2016-12-24: -6751
Processing turnstile ('N306', 'R017', '00-03-00', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -13704
WARNING. Abnormal entry count found on day 2016-12-03: -13704
WARNING. Abnormal entry count found on day 2016-12-10: -12566
WARNING. Abnormal entry count found on day 2016-12-10: -12566
WARNING. Abnormal entry count found on day 2016-12-17: -12637
WARNING. Abnormal entry count found on day 2016-12-17: -12637
WARNING. Abnormal entry count found on day 2016-12-24: -7575
WARNING. Abnormal entry count found on day 2016-12-24: -7575
Processing turnstile ('R248', 'R178', '00-00-02', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14965
WARNING. Abnormal entry count found on day 2016-12-03: -14965
WARNING. Abnormal entry count found on day 2016-12-10: -22687
WARNING. Abnormal entry count found on day 2016-12-10: -22687
WARNING. Abnormal entry count found on day 2016-12-17: -22335
WARNING. Abnormal entry count found on day 2016-12-17: -22335
WARNING. Abnormal entry count found on day 2016-12-24: -15819
WARNING. Abnormal entry count found on day 2016-12-24: -15819
Processing turnstile ('A013', 'R081', '01-03-01', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11352
WARNING. Abnormal entry count found on day 2016-12-03: -11352
WARNING. Abnormal entry count found on day 2016-12-10: -13781
WARNING. Abnormal entry count found on day 2016-12-10: -13781
WARNING. Abnormal entry count found on day 2016-12-17: -12484
WARNING. Abnormal entry count found on day 2016-12-17: -12484
WARNING. Abnormal entry count found on day 2016-12-24: -10644
WARNING. Abnormal entry count found on day 2016-12-24: -10644
Processing turnstile ('N507', 'R023', '00-03-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -6699
WARNING. Abnormal entry count found on day 2016-12-03: -6699
WARNING. Abnormal entry count found on day 2016-12-10: -7618
WARNING. Abnormal entry count found on day 2016-12-10: -7618
WARNING. Abnormal entry count found on day 2016-12-17: -8299
WARNING. Abnormal entry count found on day 2016-12-17: -8299
WARNING. Abnormal entry count found on day 2016-12-24: -5499
WARNING. Abnormal entry count found on day 2016-12-24: -5499
Processing turnstile ('K017', 'R401', '00-03-01', 'CENTRAL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9142
WARNING. Abnormal entry count found on day 2016-12-03: -9142
WARNING. Abnormal entry count found on day 2016-12-10: -8970
WARNING. Abnormal entry count found on day 2016-12-10: -8970
WARNING. Abnormal entry count found on day 2016-12-17: -8067
WARNING. Abnormal entry count found on day 2016-12-17: -8067
WARNING. Abnormal entry count found on day 2016-12-24: -5649
WARNING. Abnormal entry count found on day 2016-12-24: -5649
Processing turnstile ('R550', 'R072', '00-03-09', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -2003
WARNING. Abnormal entry count found on day 2016-12-03: -2003
WARNING. Abnormal entry count found on day 2016-12-10: -1805
WARNING. Abnormal entry count found on day 2016-12-10: -1805
WARNING. Abnormal entry count found on day 2016-12-17: -1611
WARNING. Abnormal entry count found on day 2016-12-17: -1611
WARNING. Abnormal entry count found on day 2016-12-24: -1432
WARNING. Abnormal entry count found on day 2016-12-24: -1432
Processing turnstile ('N120', 'R153', '00-00-03', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -25675
WARNING. Abnormal entry count found on day 2016-12-03: -25675
WARNING. Abnormal entry count found on day 2016-12-10: -24918
WARNING. Abnormal entry count found on day 2016-12-10: -24918
WARNING. Abnormal entry count found on day 2016-12-17: -23673
WARNING. Abnormal entry count found on day 2016-12-17: -23673
WARNING. Abnormal entry count found on day 2016-12-24: -20342
WARNING. Abnormal entry count found on day 2016-12-24: -20342
Processing turnstile ('N116', 'R198', '00-00-00', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -23662
WARNING. Abnormal entry count found on day 2016-12-03: -23662
WARNING. Abnormal entry count found on day 2016-12-10: -22178
WARNING. Abnormal entry count found on day 2016-12-10: -22178
WARNING. Abnormal entry count found on day 2016-12-17: -20932
WARNING. Abnormal entry count found on day 2016-12-17: -20932
WARNING. Abnormal entry count found on day 2016-12-24: -15674
WARNING. Abnormal entry count found on day 2016-12-24: -15674
Processing turnstile ('N126', 'R441', '00-00-00', 'VAN SICLEN AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -8251
WARNING. Abnormal entry count found on day 2016-12-03: -8251
WARNING. Abnormal entry count found on day 2016-12-10: -8214
WARNING. Abnormal entry count found on day 2016-12-10: -8214
WARNING. Abnormal entry count found on day 2016-12-17: -7820
WARNING. Abnormal entry count found on day 2016-12-17: -7820
WARNING. Abnormal entry count found on day 2016-12-24: -6496
WARNING. Abnormal entry count found on day 2016-12-24: -6496
Processing turnstile ('R321', 'R386', '01-00-02', '174 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3687
WARNING. Abnormal entry count found on day 2016-12-03: -3687
WARNING. Abnormal entry count found on day 2016-12-10: -2058
WARNING. Abnormal entry count found on day 2016-12-10: -2058
WARNING. Abnormal entry count found on day 2016-12-17: -2448
WARNING. Abnormal entry count found on day 2016-12-17: -2448
WARNING. Abnormal entry count found on day 2016-12-24: -1529
WARNING. Abnormal entry count found on day 2016-12-24: -1529
Processing turnstile ('R252', 'R180', '00-00-02', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18969
WARNING. Abnormal entry count found on day 2016-12-03: -18969
WARNING. Abnormal entry count found on day 2016-12-10: -21134
WARNING. Abnormal entry count found on day 2016-12-10: -21134
WARNING. Abnormal entry count found on day 2016-12-17: -17368
WARNING. Abnormal entry count found on day 2016-12-17: -17368
WARNING. Abnormal entry count found on day 2016-12-24: -13663
WARNING. Abnormal entry count found on day 2016-12-24: -13663
Processing turnstile ('N503', 'R021', '00-00-05', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -12652
WARNING. Abnormal entry count found on day 2016-12-03: -12652
WARNING. Abnormal entry count found on day 2016-12-10: -12145
WARNING. Abnormal entry count found on day 2016-12-10: -12145
WARNING. Abnormal entry count found on day 2016-12-17: -12187
WARNING. Abnormal entry count found on day 2016-12-17: -12187
WARNING. Abnormal entry count found on day 2016-12-24: -10536
WARNING. Abnormal entry count found on day 2016-12-24: -10536
Processing turnstile ('N604', 'R342', '00-00-00', 'JAMAICA VAN WK')
WARNING. Abnormal entry count found on day 2016-12-03: -10596
WARNING. Abnormal entry count found on day 2016-12-03: -10596
WARNING. Abnormal entry count found on day 2016-12-10: -10294
WARNING. Abnormal entry count found on day 2016-12-10: -10294
WARNING. Abnormal entry count found on day 2016-12-17: -10114
WARNING. Abnormal entry count found on day 2016-12-17: -10114
WARNING. Abnormal entry count found on day 2016-12-24: -8250
WARNING. Abnormal entry count found on day 2016-12-24: -8250
Processing turnstile ('H027', 'R137', '01-06-02', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -3734
WARNING. Abnormal entry count found on day 2016-12-03: -3734
WARNING. Abnormal entry count found on day 2016-12-10: -4362
WARNING. Abnormal entry count found on day 2016-12-10: -4362
WARNING. Abnormal entry count found on day 2016-12-17: -4056
WARNING. Abnormal entry count found on day 2016-12-17: -4056
WARNING. Abnormal entry count found on day 2016-12-24: -2914
WARNING. Abnormal entry count found on day 2016-12-24: -2914
Processing turnstile ('N220', 'R155', '01-00-01', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -6090
WARNING. Abnormal entry count found on day 2016-12-03: -6090
WARNING. Abnormal entry count found on day 2016-12-10: -5903
WARNING. Abnormal entry count found on day 2016-12-10: -5903
WARNING. Abnormal entry count found on day 2016-12-17: -5876
WARNING. Abnormal entry count found on day 2016-12-17: -5876
WARNING. Abnormal entry count found on day 2016-12-24: -5036
WARNING. Abnormal entry count found on day 2016-12-24: -5036
Processing turnstile ('R606', 'R225', '00-00-03', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2804
WARNING. Abnormal entry count found on day 2016-12-03: -2804
WARNING. Abnormal entry count found on day 2016-12-10: -2897
WARNING. Abnormal entry count found on day 2016-12-10: -2897
WARNING. Abnormal entry count found on day 2016-12-17: -3109
WARNING. Abnormal entry count found on day 2016-12-17: -3109
WARNING. Abnormal entry count found on day 2016-12-24: -1902
WARNING. Abnormal entry count found on day 2016-12-24: -1902
Processing turnstile ('H026', 'R137', '00-03-01', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -18351
WARNING. Abnormal entry count found on day 2016-12-03: -18351
WARNING. Abnormal entry count found on day 2016-12-10: -16382
WARNING. Abnormal entry count found on day 2016-12-10: -16382
WARNING. Abnormal entry count found on day 2016-12-17: -15886
WARNING. Abnormal entry count found on day 2016-12-17: -15886
WARNING. Abnormal entry count found on day 2016-12-24: -12091
WARNING. Abnormal entry count found on day 2016-12-24: -12091
Processing turnstile ('R602', 'R108', '00-06-01', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -31418
WARNING. Abnormal entry count found on day 2016-12-03: -31418
WARNING. Abnormal entry count found on day 2016-12-10: -29514
WARNING. Abnormal entry count found on day 2016-12-10: -29514
WARNING. Abnormal entry count found on day 2016-12-17: -26208
WARNING. Abnormal entry count found on day 2016-12-17: -26208
WARNING. Abnormal entry count found on day 2016-12-24: -16212
WARNING. Abnormal entry count found on day 2016-12-24: -16212
Processing turnstile ('R200A', 'R041', '01-00-03', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -10390
WARNING. Abnormal entry count found on day 2016-12-03: -10390
WARNING. Abnormal entry count found on day 2016-12-10: -10285
WARNING. Abnormal entry count found on day 2016-12-10: -10285
WARNING. Abnormal entry count found on day 2016-12-17: -9369
WARNING. Abnormal entry count found on day 2016-12-17: -9369
WARNING. Abnormal entry count found on day 2016-12-24: -7350
WARNING. Abnormal entry count found on day 2016-12-24: -7350
Processing turnstile ('N139', 'R355', '00-00-01', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2418
WARNING. Abnormal entry count found on day 2016-12-03: -2418
WARNING. Abnormal entry count found on day 2016-12-10: -2562
WARNING. Abnormal entry count found on day 2016-12-10: -2562
WARNING. Abnormal entry count found on day 2016-12-17: -2246
WARNING. Abnormal entry count found on day 2016-12-17: -2246
WARNING. Abnormal entry count found on day 2016-12-24: -1825
WARNING. Abnormal entry count found on day 2016-12-24: -1825
Processing turnstile ('R515', 'R095', '00-03-00', 'ASTORIA DITMARS')
WARNING. Abnormal entry count found on day 2016-12-03: -15983
WARNING. Abnormal entry count found on day 2016-12-03: -15983
WARNING. Abnormal entry count found on day 2016-12-10: -15736
WARNING. Abnormal entry count found on day 2016-12-10: -15736
WARNING. Abnormal entry count found on day 2016-12-17: -14379
WARNING. Abnormal entry count found on day 2016-12-17: -14379
WARNING. Abnormal entry count found on day 2016-12-24: -11051
WARNING. Abnormal entry count found on day 2016-12-24: -11051
Processing turnstile ('A050', 'R088', '00-06-03', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N504', 'R021', '02-00-02', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -14133
WARNING. Abnormal entry count found on day 2016-12-03: -14133
WARNING. Abnormal entry count found on day 2016-12-10: -13639
WARNING. Abnormal entry count found on day 2016-12-10: -13639
WARNING. Abnormal entry count found on day 2016-12-17: -13871
WARNING. Abnormal entry count found on day 2016-12-17: -13871
WARNING. Abnormal entry count found on day 2016-12-24: -11279
WARNING. Abnormal entry count found on day 2016-12-24: -11279
Processing turnstile ('R197', 'R117', '00-00-02', 'V.CORTLANDT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -14041
WARNING. Abnormal entry count found on day 2016-12-03: -14041
WARNING. Abnormal entry count found on day 2016-12-10: -13564
WARNING. Abnormal entry count found on day 2016-12-10: -13564
WARNING. Abnormal entry count found on day 2016-12-17: -11703
WARNING. Abnormal entry count found on day 2016-12-17: -11703
WARNING. Abnormal entry count found on day 2016-12-24: -9660
WARNING. Abnormal entry count found on day 2016-12-24: -9660
Processing turnstile ('D009', 'R393', '00-00-00', '20 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -134
WARNING. Abnormal entry count found on day 2016-12-03: -134
WARNING. Abnormal entry count found on day 2016-12-10: -120
WARNING. Abnormal entry count found on day 2016-12-10: -120
WARNING. Abnormal entry count found on day 2016-12-17: -131
WARNING. Abnormal entry count found on day 2016-12-17: -131
WARNING. Abnormal entry count found on day 2016-12-24: -55
WARNING. Abnormal entry count found on day 2016-12-24: -55
Processing turnstile ('R202', 'R042', '00-06-00', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -2042
WARNING. Abnormal entry count found on day 2016-12-03: -2042
WARNING. Abnormal entry count found on day 2016-12-10: -1818
WARNING. Abnormal entry count found on day 2016-12-10: -1818
WARNING. Abnormal entry count found on day 2016-12-17: -1809
WARNING. Abnormal entry count found on day 2016-12-17: -1809
WARNING. Abnormal entry count found on day 2016-12-24: -2404
WARNING. Abnormal entry count found on day 2016-12-24: -2404
Processing turnstile ('R240', 'R047', '00-00-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -32852
WARNING. Abnormal entry count found on day 2016-12-03: -32852
WARNING. Abnormal entry count found on day 2016-12-10: -31445
WARNING. Abnormal entry count found on day 2016-12-10: -31445
WARNING. Abnormal entry count found on day 2016-12-17: -26997
WARNING. Abnormal entry count found on day 2016-12-17: -26997
WARNING. Abnormal entry count found on day 2016-12-24: -19953
WARNING. Abnormal entry count found on day 2016-12-24: -19953
Processing turnstile ('R208', 'R014', '03-00-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -156
WARNING. Abnormal entry count found on day 2016-12-03: -156
WARNING. Abnormal entry count found on day 2016-12-10: -146
WARNING. Abnormal entry count found on day 2016-12-10: -146
WARNING. Abnormal entry count found on day 2016-12-17: -136
WARNING. Abnormal entry count found on day 2016-12-17: -136
WARNING. Abnormal entry count found on day 2016-12-24: -151
WARNING. Abnormal entry count found on day 2016-12-24: -151
Processing turnstile ('N095A', 'R014', '01-03-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15908
WARNING. Abnormal entry count found on day 2016-12-03: -15908
WARNING. Abnormal entry count found on day 2016-12-10: -15900
WARNING. Abnormal entry count found on day 2016-12-10: -15900
WARNING. Abnormal entry count found on day 2016-12-17: -16894
WARNING. Abnormal entry count found on day 2016-12-17: -16894
WARNING. Abnormal entry count found on day 2016-12-24: -13621
WARNING. Abnormal entry count found on day 2016-12-24: -13621
Processing turnstile ('N400A', 'R359', '02-06-05', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('TRAM2', 'R469', '00-03-01', 'RIT-ROOSEVELT')
WARNING. Abnormal entry count found on day 2016-12-03: -1413
WARNING. Abnormal entry count found on day 2016-12-03: -1413
WARNING. Abnormal entry count found on day 2016-12-10: -1101
WARNING. Abnormal entry count found on day 2016-12-10: -1101
WARNING. Abnormal entry count found on day 2016-12-17: -1251
WARNING. Abnormal entry count found on day 2016-12-17: -1251
WARNING. Abnormal entry count found on day 2016-12-24: -2236
WARNING. Abnormal entry count found on day 2016-12-24: -2236
Processing turnstile ('N602', 'R259', '00-05-00', 'ROOSEVELT ISLND')
WARNING. Abnormal entry count found on day 2016-12-03: -21
WARNING. Abnormal entry count found on day 2016-12-03: -21
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-17: -21
WARNING. Abnormal entry count found on day 2016-12-17: -21
WARNING. Abnormal entry count found on day 2016-12-24: -12
WARNING. Abnormal entry count found on day 2016-12-24: -12
Processing turnstile ('N314', 'R238', '01-03-00', 'STEINWAY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5235
WARNING. Abnormal entry count found on day 2016-12-03: -5235
WARNING. Abnormal entry count found on day 2016-12-10: -4938
WARNING. Abnormal entry count found on day 2016-12-10: -4938
WARNING. Abnormal entry count found on day 2016-12-17: -5082
WARNING. Abnormal entry count found on day 2016-12-17: -5082
WARNING. Abnormal entry count found on day 2016-12-24: -4358
WARNING. Abnormal entry count found on day 2016-12-24: -4358
Processing turnstile ('K024', 'R403', '00-00-01', 'FOREST AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -7212
WARNING. Abnormal entry count found on day 2016-12-03: -7212
WARNING. Abnormal entry count found on day 2016-12-10: -7121
WARNING. Abnormal entry count found on day 2016-12-10: -7121
WARNING. Abnormal entry count found on day 2016-12-17: -6726
WARNING. Abnormal entry count found on day 2016-12-17: -6726
WARNING. Abnormal entry count found on day 2016-12-24: -4890
WARNING. Abnormal entry count found on day 2016-12-24: -4890
Processing turnstile ('R328', 'R361', '00-00-00', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -12860
WARNING. Abnormal entry count found on day 2016-12-03: -12860
WARNING. Abnormal entry count found on day 2016-12-10: -12888
WARNING. Abnormal entry count found on day 2016-12-10: -12888
WARNING. Abnormal entry count found on day 2016-12-17: -12997
WARNING. Abnormal entry count found on day 2016-12-17: -12997
WARNING. Abnormal entry count found on day 2016-12-24: -11045
WARNING. Abnormal entry count found on day 2016-12-24: -11045
Processing turnstile ('N221', 'R155', '00-00-03', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3196
WARNING. Abnormal entry count found on day 2016-12-03: -3196
WARNING. Abnormal entry count found on day 2016-12-10: -3240
WARNING. Abnormal entry count found on day 2016-12-10: -3240
WARNING. Abnormal entry count found on day 2016-12-17: -3178
WARNING. Abnormal entry count found on day 2016-12-17: -3178
WARNING. Abnormal entry count found on day 2016-12-24: -2537
WARNING. Abnormal entry count found on day 2016-12-24: -2537
Processing turnstile ('R194', 'R040', '00-00-03', '231 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17996
WARNING. Abnormal entry count found on day 2016-12-03: -17996
WARNING. Abnormal entry count found on day 2016-12-10: -16801
WARNING. Abnormal entry count found on day 2016-12-10: -16801
WARNING. Abnormal entry count found on day 2016-12-17: -17009
WARNING. Abnormal entry count found on day 2016-12-17: -17009
WARNING. Abnormal entry count found on day 2016-12-24: -13203
WARNING. Abnormal entry count found on day 2016-12-24: -13203
Processing turnstile ('N134', 'R385', '00-00-01', 'ROCKAWAY BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -6731
WARNING. Abnormal entry count found on day 2016-12-03: -6731
WARNING. Abnormal entry count found on day 2016-12-10: -6370
WARNING. Abnormal entry count found on day 2016-12-10: -6370
WARNING. Abnormal entry count found on day 2016-12-17: -6292
WARNING. Abnormal entry count found on day 2016-12-17: -6292
WARNING. Abnormal entry count found on day 2016-12-24: -4748
WARNING. Abnormal entry count found on day 2016-12-24: -4748
Processing turnstile ('N503', 'R021', '00-00-03', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -9275
WARNING. Abnormal entry count found on day 2016-12-03: -9275
WARNING. Abnormal entry count found on day 2016-12-10: -8966
WARNING. Abnormal entry count found on day 2016-12-10: -8966
WARNING. Abnormal entry count found on day 2016-12-17: -9351
WARNING. Abnormal entry count found on day 2016-12-17: -9351
WARNING. Abnormal entry count found on day 2016-12-24: -8477
WARNING. Abnormal entry count found on day 2016-12-24: -8477
Processing turnstile ('R550', 'R072', '00-05-00', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R643', 'R135', '00-00-00', 'NEWKIRK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15654
WARNING. Abnormal entry count found on day 2016-12-03: -15654
WARNING. Abnormal entry count found on day 2016-12-10: -14781
WARNING. Abnormal entry count found on day 2016-12-10: -14781
WARNING. Abnormal entry count found on day 2016-12-17: -14851
WARNING. Abnormal entry count found on day 2016-12-17: -14851
WARNING. Abnormal entry count found on day 2016-12-24: -11049
WARNING. Abnormal entry count found on day 2016-12-24: -11049
Processing turnstile ('R310', 'R053', '01-03-00', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9713
WARNING. Abnormal entry count found on day 2016-12-03: -9713
WARNING. Abnormal entry count found on day 2016-12-10: -9000
WARNING. Abnormal entry count found on day 2016-12-10: -9000
WARNING. Abnormal entry count found on day 2016-12-17: -8736
WARNING. Abnormal entry count found on day 2016-12-17: -8736
WARNING. Abnormal entry count found on day 2016-12-24: -6273
WARNING. Abnormal entry count found on day 2016-12-24: -6273
Processing turnstile ('R508', 'R346', '00-03-02', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -5318
WARNING. Abnormal entry count found on day 2016-12-03: -5318
WARNING. Abnormal entry count found on day 2016-12-10: -4911
WARNING. Abnormal entry count found on day 2016-12-10: -4911
WARNING. Abnormal entry count found on day 2016-12-17: -4606
WARNING. Abnormal entry count found on day 2016-12-17: -4606
WARNING. Abnormal entry count found on day 2016-12-24: -3265
WARNING. Abnormal entry count found on day 2016-12-24: -3265
Processing turnstile ('R244', 'R050', '00-00-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2490
WARNING. Abnormal entry count found on day 2016-12-03: -2490
WARNING. Abnormal entry count found on day 2016-12-10: -2515
WARNING. Abnormal entry count found on day 2016-12-10: -2515
WARNING. Abnormal entry count found on day 2016-12-17: -2655
WARNING. Abnormal entry count found on day 2016-12-17: -2655
WARNING. Abnormal entry count found on day 2016-12-24: -1848
WARNING. Abnormal entry count found on day 2016-12-24: -1848
Processing turnstile ('R252', 'R180', '00-00-01', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17516
WARNING. Abnormal entry count found on day 2016-12-03: -17516
WARNING. Abnormal entry count found on day 2016-12-10: -19234
WARNING. Abnormal entry count found on day 2016-12-10: -19234
WARNING. Abnormal entry count found on day 2016-12-17: -18011
WARNING. Abnormal entry count found on day 2016-12-17: -18011
WARNING. Abnormal entry count found on day 2016-12-24: -12359
WARNING. Abnormal entry count found on day 2016-12-24: -12359
Processing turnstile ('N418', 'R269', '01-05-00', 'BEDFORD-NOSTRAN')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N539A', 'R288', '00-06-03', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8466
WARNING. Abnormal entry count found on day 2016-12-03: -8466
WARNING. Abnormal entry count found on day 2016-12-10: -8189
WARNING. Abnormal entry count found on day 2016-12-10: -8189
WARNING. Abnormal entry count found on day 2016-12-17: -8199
WARNING. Abnormal entry count found on day 2016-12-17: -8199
WARNING. Abnormal entry count found on day 2016-12-24: -4674
WARNING. Abnormal entry count found on day 2016-12-24: -4674
Processing turnstile ('R200A', 'R041', '01-00-00', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -8346
WARNING. Abnormal entry count found on day 2016-12-03: -8346
WARNING. Abnormal entry count found on day 2016-12-10: -8478
WARNING. Abnormal entry count found on day 2016-12-10: -8478
WARNING. Abnormal entry count found on day 2016-12-17: -7219
WARNING. Abnormal entry count found on day 2016-12-17: -7219
WARNING. Abnormal entry count found on day 2016-12-24: -5723
WARNING. Abnormal entry count found on day 2016-12-24: -5723
Processing turnstile ('N550', 'R242', '01-05-01', '18 AV')
Processing turnstile ('R249', 'R179', '01-00-08', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8100
WARNING. Abnormal entry count found on day 2016-12-03: -8100
WARNING. Abnormal entry count found on day 2016-12-10: -7550
WARNING. Abnormal entry count found on day 2016-12-10: -7550
WARNING. Abnormal entry count found on day 2016-12-17: -7807
WARNING. Abnormal entry count found on day 2016-12-17: -7807
WARNING. Abnormal entry count found on day 2016-12-24: -6296
WARNING. Abnormal entry count found on day 2016-12-24: -6296
Processing turnstile ('N213', 'R154', '00-06-00', 'TREMONT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7127
WARNING. Abnormal entry count found on day 2016-12-03: -7127
WARNING. Abnormal entry count found on day 2016-12-10: -7631
WARNING. Abnormal entry count found on day 2016-12-10: -7631
WARNING. Abnormal entry count found on day 2016-12-17: -7303
WARNING. Abnormal entry count found on day 2016-12-17: -7303
WARNING. Abnormal entry count found on day 2016-12-24: -6006
WARNING. Abnormal entry count found on day 2016-12-24: -6006
Processing turnstile ('R526', 'R096', '00-00-00', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -6957
WARNING. Abnormal entry count found on day 2016-12-03: -6957
WARNING. Abnormal entry count found on day 2016-12-10: -5064
WARNING. Abnormal entry count found on day 2016-12-10: -5064
WARNING. Abnormal entry count found on day 2016-12-17: -4818
WARNING. Abnormal entry count found on day 2016-12-17: -4818
WARNING. Abnormal entry count found on day 2016-12-24: -4182
WARNING. Abnormal entry count found on day 2016-12-24: -4182
Processing turnstile ('S101', 'R070', '00-00-04', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -2201
WARNING. Abnormal entry count found on day 2016-12-03: -2201
WARNING. Abnormal entry count found on day 2016-12-10: -2010
WARNING. Abnormal entry count found on day 2016-12-10: -2010
WARNING. Abnormal entry count found on day 2016-12-17: -1971
WARNING. Abnormal entry count found on day 2016-12-17: -1971
WARNING. Abnormal entry count found on day 2016-12-24: -1294
WARNING. Abnormal entry count found on day 2016-12-24: -1294
Processing turnstile ('R532H', 'R328', '02-06-01', 'METS-WILLETS PT')
Processing turnstile ('C022', 'R212', '01-06-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10367
WARNING. Abnormal entry count found on day 2016-12-03: -10367
WARNING. Abnormal entry count found on day 2016-12-10: -10065
WARNING. Abnormal entry count found on day 2016-12-10: -10065
WARNING. Abnormal entry count found on day 2016-12-17: -9562
WARNING. Abnormal entry count found on day 2016-12-17: -9562
WARNING. Abnormal entry count found on day 2016-12-24: -7487
WARNING. Abnormal entry count found on day 2016-12-24: -7487
Processing turnstile ('R134', 'R272', '01-00-03', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7272
WARNING. Abnormal entry count found on day 2016-12-03: -7272
WARNING. Abnormal entry count found on day 2016-12-10: -6750
WARNING. Abnormal entry count found on day 2016-12-10: -6750
WARNING. Abnormal entry count found on day 2016-12-17: -5878
WARNING. Abnormal entry count found on day 2016-12-17: -5878
WARNING. Abnormal entry count found on day 2016-12-24: -3668
WARNING. Abnormal entry count found on day 2016-12-24: -3668
Processing turnstile ('A013', 'R081', '01-05-00', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R231', 'R176', '00-00-05', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12247
WARNING. Abnormal entry count found on day 2016-12-03: -12247
WARNING. Abnormal entry count found on day 2016-12-10: -12399
WARNING. Abnormal entry count found on day 2016-12-10: -12399
WARNING. Abnormal entry count found on day 2016-12-17: -10920
WARNING. Abnormal entry count found on day 2016-12-17: -10920
WARNING. Abnormal entry count found on day 2016-12-24: -7808
WARNING. Abnormal entry count found on day 2016-12-24: -7808
Processing turnstile ('N329A', 'R201', '01-06-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -21380
WARNING. Abnormal entry count found on day 2016-12-03: -21380
WARNING. Abnormal entry count found on day 2016-12-10: -20603
WARNING. Abnormal entry count found on day 2016-12-10: -20603
WARNING. Abnormal entry count found on day 2016-12-17: -22001
WARNING. Abnormal entry count found on day 2016-12-17: -22001
WARNING. Abnormal entry count found on day 2016-12-24: -18418
WARNING. Abnormal entry count found on day 2016-12-24: -18418
Processing turnstile ('R262A', 'R195', '04-00-05', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -196
WARNING. Abnormal entry count found on day 2016-12-24: -196
Processing turnstile ('A058', 'R001', '01-06-01', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -2272
WARNING. Abnormal entry count found on day 2016-12-03: -2272
WARNING. Abnormal entry count found on day 2016-12-10: -2358
WARNING. Abnormal entry count found on day 2016-12-10: -2358
WARNING. Abnormal entry count found on day 2016-12-17: -2145
WARNING. Abnormal entry count found on day 2016-12-17: -2145
WARNING. Abnormal entry count found on day 2016-12-24: -1673
WARNING. Abnormal entry count found on day 2016-12-24: -1673
Processing turnstile ('N405', 'R239', '00-03-00', 'GREENPOINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-17: -12
WARNING. Abnormal entry count found on day 2016-12-17: -12
Processing turnstile ('N114', 'R297', '01-00-03', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7388
WARNING. Abnormal entry count found on day 2016-12-03: -7388
WARNING. Abnormal entry count found on day 2016-12-10: -6959
WARNING. Abnormal entry count found on day 2016-12-10: -6959
WARNING. Abnormal entry count found on day 2016-12-17: -6444
WARNING. Abnormal entry count found on day 2016-12-17: -6444
WARNING. Abnormal entry count found on day 2016-12-24: -5167
WARNING. Abnormal entry count found on day 2016-12-24: -5167
Processing turnstile ('A043', 'R462', '00-00-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11819
WARNING. Abnormal entry count found on day 2016-12-03: -11819
WARNING. Abnormal entry count found on day 2016-12-10: -11829
WARNING. Abnormal entry count found on day 2016-12-10: -11829
WARNING. Abnormal entry count found on day 2016-12-17: -11316
WARNING. Abnormal entry count found on day 2016-12-17: -11316
WARNING. Abnormal entry count found on day 2016-12-24: -7708
WARNING. Abnormal entry count found on day 2016-12-24: -7708
Processing turnstile ('R205A', 'R014', '04-02-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13946
WARNING. Abnormal entry count found on day 2016-12-03: -13946
WARNING. Abnormal entry count found on day 2016-12-10: -14331
WARNING. Abnormal entry count found on day 2016-12-10: -14331
WARNING. Abnormal entry count found on day 2016-12-17: -13239
WARNING. Abnormal entry count found on day 2016-12-17: -13239
WARNING. Abnormal entry count found on day 2016-12-24: -10007
WARNING. Abnormal entry count found on day 2016-12-24: -10007
Processing turnstile ('R240', 'R047', '00-03-05', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13123
WARNING. Abnormal entry count found on day 2016-12-03: -13123
WARNING. Abnormal entry count found on day 2016-12-10: -13565
WARNING. Abnormal entry count found on day 2016-12-10: -13565
WARNING. Abnormal entry count found on day 2016-12-17: -11930
WARNING. Abnormal entry count found on day 2016-12-17: -11930
WARNING. Abnormal entry count found on day 2016-12-24: -7475
WARNING. Abnormal entry count found on day 2016-12-24: -7475
Processing turnstile ('R727', 'R430', '00-00-02', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -6875
WARNING. Abnormal entry count found on day 2016-12-03: -6875
WARNING. Abnormal entry count found on day 2016-12-10: -6498
WARNING. Abnormal entry count found on day 2016-12-10: -6498
WARNING. Abnormal entry count found on day 2016-12-17: -6249
WARNING. Abnormal entry count found on day 2016-12-17: -6249
WARNING. Abnormal entry count found on day 2016-12-24: -4427
WARNING. Abnormal entry count found on day 2016-12-24: -4427
Processing turnstile ('PTH01', 'R549', '00-00-08', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -4289
WARNING. Abnormal entry count found on day 2016-12-03: -4289
WARNING. Abnormal entry count found on day 2016-12-10: -4178
WARNING. Abnormal entry count found on day 2016-12-10: -4178
WARNING. Abnormal entry count found on day 2016-12-17: -3845
WARNING. Abnormal entry count found on day 2016-12-17: -3845
WARNING. Abnormal entry count found on day 2016-12-24: -2857
WARNING. Abnormal entry count found on day 2016-12-24: -2857
Processing turnstile ('R523', 'R147', '00-06-00', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -693
WARNING. Abnormal entry count found on day 2016-12-03: -693
WARNING. Abnormal entry count found on day 2016-12-10: -2877
WARNING. Abnormal entry count found on day 2016-12-10: -2877
WARNING. Abnormal entry count found on day 2016-12-17: -2730
WARNING. Abnormal entry count found on day 2016-12-17: -2730
WARNING. Abnormal entry count found on day 2016-12-24: -1457
WARNING. Abnormal entry count found on day 2016-12-24: -1457
Processing turnstile ('N314', 'R238', '01-00-00', 'STEINWAY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7814
WARNING. Abnormal entry count found on day 2016-12-03: -7814
WARNING. Abnormal entry count found on day 2016-12-10: -7681
WARNING. Abnormal entry count found on day 2016-12-10: -7681
WARNING. Abnormal entry count found on day 2016-12-17: -7929
WARNING. Abnormal entry count found on day 2016-12-17: -7929
WARNING. Abnormal entry count found on day 2016-12-24: -6035
WARNING. Abnormal entry count found on day 2016-12-24: -6035
Processing turnstile ('R641', 'R210', '00-00-01', 'BEVERLY RD')
WARNING. Abnormal entry count found on day 2016-12-03: -7868
WARNING. Abnormal entry count found on day 2016-12-03: -7868
WARNING. Abnormal entry count found on day 2016-12-10: -7936
WARNING. Abnormal entry count found on day 2016-12-10: -7936
WARNING. Abnormal entry count found on day 2016-12-17: -7473
WARNING. Abnormal entry count found on day 2016-12-17: -7473
WARNING. Abnormal entry count found on day 2016-12-24: -5821
WARNING. Abnormal entry count found on day 2016-12-24: -5821
Processing turnstile ('N305', 'R017', '01-03-03', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -9082
WARNING. Abnormal entry count found on day 2016-12-03: -9082
WARNING. Abnormal entry count found on day 2016-12-10: -9634
WARNING. Abnormal entry count found on day 2016-12-10: -9634
WARNING. Abnormal entry count found on day 2016-12-17: -8730
WARNING. Abnormal entry count found on day 2016-12-17: -8730
WARNING. Abnormal entry count found on day 2016-12-24: -6248
WARNING. Abnormal entry count found on day 2016-12-24: -6248
Processing turnstile ('R137', 'R031', '02-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -5210
WARNING. Abnormal entry count found on day 2016-12-03: -5210
WARNING. Abnormal entry count found on day 2016-12-10: -6018
WARNING. Abnormal entry count found on day 2016-12-10: -6018
WARNING. Abnormal entry count found on day 2016-12-17: -4841
WARNING. Abnormal entry count found on day 2016-12-17: -4841
WARNING. Abnormal entry count found on day 2016-12-24: -2608
WARNING. Abnormal entry count found on day 2016-12-24: -2608
Processing turnstile ('N072', 'R012', '05-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -8842
WARNING. Abnormal entry count found on day 2016-12-03: -8842
WARNING. Abnormal entry count found on day 2016-12-10: -8662
WARNING. Abnormal entry count found on day 2016-12-10: -8662
WARNING. Abnormal entry count found on day 2016-12-17: -8187
WARNING. Abnormal entry count found on day 2016-12-17: -8187
WARNING. Abnormal entry count found on day 2016-12-24: -7270
WARNING. Abnormal entry count found on day 2016-12-24: -7270
Processing turnstile ('R318', 'R408', '00-00-01', 'SIMPSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12985
WARNING. Abnormal entry count found on day 2016-12-03: -12985
WARNING. Abnormal entry count found on day 2016-12-10: -15569
WARNING. Abnormal entry count found on day 2016-12-10: -15569
WARNING. Abnormal entry count found on day 2016-12-17: -16013
WARNING. Abnormal entry count found on day 2016-12-17: -16013
WARNING. Abnormal entry count found on day 2016-12-24: -12963
WARNING. Abnormal entry count found on day 2016-12-24: -12963
Processing turnstile ('R527', 'R122', '00-03-03', '90 ST-ELMHURST')
WARNING. Abnormal entry count found on day 2016-12-03: -12777
WARNING. Abnormal entry count found on day 2016-12-03: -12777
WARNING. Abnormal entry count found on day 2016-12-10: -12529
WARNING. Abnormal entry count found on day 2016-12-10: -12529
WARNING. Abnormal entry count found on day 2016-12-17: -12837
WARNING. Abnormal entry count found on day 2016-12-17: -12837
WARNING. Abnormal entry count found on day 2016-12-24: -10440
WARNING. Abnormal entry count found on day 2016-12-24: -10440
Processing turnstile ('C004', 'R089', '01-06-01', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -6473
WARNING. Abnormal entry count found on day 2016-12-03: -6473
WARNING. Abnormal entry count found on day 2016-12-10: -6582
WARNING. Abnormal entry count found on day 2016-12-10: -6582
WARNING. Abnormal entry count found on day 2016-12-17: -5704
WARNING. Abnormal entry count found on day 2016-12-17: -5704
WARNING. Abnormal entry count found on day 2016-12-24: -5679
WARNING. Abnormal entry count found on day 2016-12-24: -5679
Processing turnstile ('S101', 'R070', '00-00-07', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -1829
WARNING. Abnormal entry count found on day 2016-12-03: -1829
WARNING. Abnormal entry count found on day 2016-12-10: -1709
WARNING. Abnormal entry count found on day 2016-12-10: -1709
WARNING. Abnormal entry count found on day 2016-12-17: -1737
WARNING. Abnormal entry count found on day 2016-12-17: -1737
WARNING. Abnormal entry count found on day 2016-12-24: -1142
WARNING. Abnormal entry count found on day 2016-12-24: -1142
Processing turnstile ('N195', 'R358', '00-00-00', 'BEACH 25 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4683
WARNING. Abnormal entry count found on day 2016-12-03: -4683
WARNING. Abnormal entry count found on day 2016-12-10: -4491
WARNING. Abnormal entry count found on day 2016-12-10: -4491
WARNING. Abnormal entry count found on day 2016-12-17: -4469
WARNING. Abnormal entry count found on day 2016-12-17: -4469
WARNING. Abnormal entry count found on day 2016-12-24: -3393
WARNING. Abnormal entry count found on day 2016-12-24: -3393
Processing turnstile ('C019', 'R232', '00-00-00', '45 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7644
WARNING. Abnormal entry count found on day 2016-12-03: -7644
WARNING. Abnormal entry count found on day 2016-12-10: -7854
WARNING. Abnormal entry count found on day 2016-12-10: -7854
WARNING. Abnormal entry count found on day 2016-12-17: -8074
WARNING. Abnormal entry count found on day 2016-12-17: -8074
WARNING. Abnormal entry count found on day 2016-12-24: -5643
WARNING. Abnormal entry count found on day 2016-12-24: -5643
Processing turnstile ('B026', 'R230', '00-05-00', 'NECK RD')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('R208', 'R014', '03-00-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -461
WARNING. Abnormal entry count found on day 2016-12-03: -461
WARNING. Abnormal entry count found on day 2016-12-10: -483
WARNING. Abnormal entry count found on day 2016-12-10: -483
WARNING. Abnormal entry count found on day 2016-12-17: -473
WARNING. Abnormal entry count found on day 2016-12-17: -473
WARNING. Abnormal entry count found on day 2016-12-24: -570
WARNING. Abnormal entry count found on day 2016-12-24: -570
Processing turnstile ('R204', 'R043', '02-03-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1932
WARNING. Abnormal entry count found on day 2016-12-03: -1932
WARNING. Abnormal entry count found on day 2016-12-10: -1843
WARNING. Abnormal entry count found on day 2016-12-10: -1843
WARNING. Abnormal entry count found on day 2016-12-17: -1708
WARNING. Abnormal entry count found on day 2016-12-17: -1708
WARNING. Abnormal entry count found on day 2016-12-24: -1329
WARNING. Abnormal entry count found on day 2016-12-24: -1329
Processing turnstile ('G001', 'R151', '00-03-00', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -1416
WARNING. Abnormal entry count found on day 2016-12-03: -1416
WARNING. Abnormal entry count found on day 2016-12-10: -1174
WARNING. Abnormal entry count found on day 2016-12-10: -1174
WARNING. Abnormal entry count found on day 2016-12-17: -1317
WARNING. Abnormal entry count found on day 2016-12-17: -1317
WARNING. Abnormal entry count found on day 2016-12-24: -1321
WARNING. Abnormal entry count found on day 2016-12-24: -1321
Processing turnstile ('R639', 'R109', '00-00-01', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9453
WARNING. Abnormal entry count found on day 2016-12-03: -9453
WARNING. Abnormal entry count found on day 2016-12-10: -9495
WARNING. Abnormal entry count found on day 2016-12-10: -9495
WARNING. Abnormal entry count found on day 2016-12-17: -9542
WARNING. Abnormal entry count found on day 2016-12-17: -9542
WARNING. Abnormal entry count found on day 2016-12-24: -6621
WARNING. Abnormal entry count found on day 2016-12-24: -6621
Processing turnstile ('R612', 'R057', '01-00-01', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -1605
WARNING. Abnormal entry count found on day 2016-12-03: -1605
WARNING. Abnormal entry count found on day 2016-12-10: -1519
WARNING. Abnormal entry count found on day 2016-12-10: -1519
WARNING. Abnormal entry count found on day 2016-12-17: -1759
WARNING. Abnormal entry count found on day 2016-12-17: -1759
WARNING. Abnormal entry count found on day 2016-12-24: -1378
WARNING. Abnormal entry count found on day 2016-12-24: -1378
Processing turnstile ('N556', 'R424', '00-00-00', 'AVENUE P')
WARNING. Abnormal entry count found on day 2016-12-03: -9341
WARNING. Abnormal entry count found on day 2016-12-03: -9341
WARNING. Abnormal entry count found on day 2016-12-10: -8306
WARNING. Abnormal entry count found on day 2016-12-10: -8306
WARNING. Abnormal entry count found on day 2016-12-17: -9143
WARNING. Abnormal entry count found on day 2016-12-17: -9143
WARNING. Abnormal entry count found on day 2016-12-24: -7465
WARNING. Abnormal entry count found on day 2016-12-24: -7465
Processing turnstile ('N138', 'R355', '01-06-01', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1940
WARNING. Abnormal entry count found on day 2016-12-03: -1940
WARNING. Abnormal entry count found on day 2016-12-10: -2356
WARNING. Abnormal entry count found on day 2016-12-10: -2356
WARNING. Abnormal entry count found on day 2016-12-17: -2193
WARNING. Abnormal entry count found on day 2016-12-17: -2193
WARNING. Abnormal entry count found on day 2016-12-24: -1723
WARNING. Abnormal entry count found on day 2016-12-24: -1723
Processing turnstile ('R203', 'R043', '00-05-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5894
WARNING. Abnormal entry count found on day 2016-12-03: -5894
WARNING. Abnormal entry count found on day 2016-12-10: -6162
WARNING. Abnormal entry count found on day 2016-12-10: -6162
WARNING. Abnormal entry count found on day 2016-12-17: -6336
WARNING. Abnormal entry count found on day 2016-12-17: -6336
WARNING. Abnormal entry count found on day 2016-12-24: -3699
WARNING. Abnormal entry count found on day 2016-12-24: -3699
Processing turnstile ('N333A', 'R141', '00-06-00', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -14466
WARNING. Abnormal entry count found on day 2016-12-03: -14466
WARNING. Abnormal entry count found on day 2016-12-10: -14058
WARNING. Abnormal entry count found on day 2016-12-10: -14058
WARNING. Abnormal entry count found on day 2016-12-17: -13102
WARNING. Abnormal entry count found on day 2016-12-17: -13102
WARNING. Abnormal entry count found on day 2016-12-24: -9472
WARNING. Abnormal entry count found on day 2016-12-24: -9472
Processing turnstile ('N331', 'R219', '00-00-02', '67 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5625
WARNING. Abnormal entry count found on day 2016-12-03: -5625
WARNING. Abnormal entry count found on day 2016-12-10: -5538
WARNING. Abnormal entry count found on day 2016-12-10: -5538
WARNING. Abnormal entry count found on day 2016-12-17: -5174
WARNING. Abnormal entry count found on day 2016-12-17: -5174
WARNING. Abnormal entry count found on day 2016-12-24: -3691
WARNING. Abnormal entry count found on day 2016-12-24: -3691
Processing turnstile ('R414', 'R162', '00-05-00', 'ELDER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('N303', 'R015', '00-00-05', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9218
WARNING. Abnormal entry count found on day 2016-12-03: -9218
WARNING. Abnormal entry count found on day 2016-12-10: -9056
WARNING. Abnormal entry count found on day 2016-12-10: -9056
WARNING. Abnormal entry count found on day 2016-12-17: -9417
WARNING. Abnormal entry count found on day 2016-12-17: -9417
WARNING. Abnormal entry count found on day 2016-12-24: -9123
WARNING. Abnormal entry count found on day 2016-12-24: -9123
Processing turnstile ('N316A', 'R267', '01-03-01', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2501
WARNING. Abnormal entry count found on day 2016-12-03: -2501
WARNING. Abnormal entry count found on day 2016-12-10: -2591
WARNING. Abnormal entry count found on day 2016-12-10: -2591
WARNING. Abnormal entry count found on day 2016-12-17: -2969
WARNING. Abnormal entry count found on day 2016-12-17: -2969
WARNING. Abnormal entry count found on day 2016-12-24: -1844
WARNING. Abnormal entry count found on day 2016-12-24: -1844
Processing turnstile ('R629', 'R065', '00-03-02', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6281
WARNING. Abnormal entry count found on day 2016-12-03: -6281
WARNING. Abnormal entry count found on day 2016-12-10: -5734
WARNING. Abnormal entry count found on day 2016-12-10: -5734
WARNING. Abnormal entry count found on day 2016-12-17: -5529
WARNING. Abnormal entry count found on day 2016-12-17: -5529
WARNING. Abnormal entry count found on day 2016-12-24: -4742
WARNING. Abnormal entry count found on day 2016-12-24: -4742
Processing turnstile ('N001', 'R173', '01-05-01', 'INWOOD-207 ST')
Processing turnstile ('R204', 'R043', '02-06-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1281
WARNING. Abnormal entry count found on day 2016-12-03: -1281
WARNING. Abnormal entry count found on day 2016-12-10: -1596
WARNING. Abnormal entry count found on day 2016-12-10: -1596
WARNING. Abnormal entry count found on day 2016-12-17: -1196
WARNING. Abnormal entry count found on day 2016-12-17: -1196
WARNING. Abnormal entry count found on day 2016-12-24: -1213
WARNING. Abnormal entry count found on day 2016-12-24: -1213
Processing turnstile ('R145', 'R032', '00-00-04', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3103
WARNING. Abnormal entry count found on day 2016-12-03: -3103
WARNING. Abnormal entry count found on day 2016-12-10: -3211
WARNING. Abnormal entry count found on day 2016-12-10: -3211
WARNING. Abnormal entry count found on day 2016-12-17: -2701
WARNING. Abnormal entry count found on day 2016-12-17: -2701
WARNING. Abnormal entry count found on day 2016-12-24: -1640
WARNING. Abnormal entry count found on day 2016-12-24: -1640
Processing turnstile ('C027', 'R216', '00-00-02', 'BAY RIDGE-95 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2683
WARNING. Abnormal entry count found on day 2016-12-03: -2683
WARNING. Abnormal entry count found on day 2016-12-10: -2559
WARNING. Abnormal entry count found on day 2016-12-10: -2559
WARNING. Abnormal entry count found on day 2016-12-17: -2465
WARNING. Abnormal entry count found on day 2016-12-17: -2465
WARNING. Abnormal entry count found on day 2016-12-24: -1821
WARNING. Abnormal entry count found on day 2016-12-24: -1821
Processing turnstile ('R245', 'R051', '00-00-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -1566
WARNING. Abnormal entry count found on day 2016-12-05: -1220
WARNING. Abnormal entry count found on day 2016-12-06: -1722
WARNING. Abnormal entry count found on day 2016-12-07: -1888
WARNING. Abnormal entry count found on day 2016-12-08: -1829
WARNING. Abnormal entry count found on day 2016-12-09: -1880
WARNING. Abnormal entry count found on day 2016-12-03: 10105
WARNING. Abnormal entry count found on day 2016-12-04: -1566
WARNING. Abnormal entry count found on day 2016-12-05: -1220
WARNING. Abnormal entry count found on day 2016-12-06: -1722
WARNING. Abnormal entry count found on day 2016-12-07: -1888
WARNING. Abnormal entry count found on day 2016-12-08: -1829
WARNING. Abnormal entry count found on day 2016-12-09: -1880
WARNING. Abnormal entry count found on day 2016-12-03: 10105
WARNING. Abnormal entry count found on day 2016-12-04: -1566
WARNING. Abnormal entry count found on day 2016-12-05: -1220
WARNING. Abnormal entry count found on day 2016-12-06: -1722
WARNING. Abnormal entry count found on day 2016-12-07: -1888
WARNING. Abnormal entry count found on day 2016-12-08: -1829
WARNING. Abnormal entry count found on day 2016-12-09: -1880
WARNING. Abnormal entry count found on day 2016-12-10: -1986
WARNING. Abnormal entry count found on day 2016-12-11: -1584
WARNING. Abnormal entry count found on day 2016-12-12: -1346
WARNING. Abnormal entry count found on day 2016-12-13: -1839
WARNING. Abnormal entry count found on day 2016-12-14: -1835
WARNING. Abnormal entry count found on day 2016-12-15: -1915
WARNING. Abnormal entry count found on day 2016-12-16: -1935
WARNING. Abnormal entry count found on day 2016-12-10: 10454
WARNING. Abnormal entry count found on day 2016-12-11: -1584
WARNING. Abnormal entry count found on day 2016-12-12: -1346
WARNING. Abnormal entry count found on day 2016-12-13: -1839
WARNING. Abnormal entry count found on day 2016-12-14: -1835
WARNING. Abnormal entry count found on day 2016-12-15: -1915
WARNING. Abnormal entry count found on day 2016-12-16: -1935
WARNING. Abnormal entry count found on day 2016-12-10: 10454
WARNING. Abnormal entry count found on day 2016-12-11: -1584
WARNING. Abnormal entry count found on day 2016-12-12: -1346
WARNING. Abnormal entry count found on day 2016-12-13: -1839
WARNING. Abnormal entry count found on day 2016-12-14: -1835
WARNING. Abnormal entry count found on day 2016-12-15: -1915
WARNING. Abnormal entry count found on day 2016-12-16: -1935
WARNING. Abnormal entry count found on day 2016-12-17: -1918
WARNING. Abnormal entry count found on day 2016-12-18: -1468
WARNING. Abnormal entry count found on day 2016-12-19: -1209
WARNING. Abnormal entry count found on day 2016-12-20: -1896
WARNING. Abnormal entry count found on day 2016-12-21: -2050
WARNING. Abnormal entry count found on day 2016-12-22: -1969
WARNING. Abnormal entry count found on day 2016-12-23: -2054
WARNING. Abnormal entry count found on day 2016-12-17: 10646
WARNING. Abnormal entry count found on day 2016-12-18: -1468
WARNING. Abnormal entry count found on day 2016-12-19: -1209
WARNING. Abnormal entry count found on day 2016-12-20: -1896
WARNING. Abnormal entry count found on day 2016-12-21: -2050
WARNING. Abnormal entry count found on day 2016-12-22: -1969
WARNING. Abnormal entry count found on day 2016-12-23: -2054
WARNING. Abnormal entry count found on day 2016-12-17: 10646
WARNING. Abnormal entry count found on day 2016-12-18: -1468
WARNING. Abnormal entry count found on day 2016-12-19: -1209
WARNING. Abnormal entry count found on day 2016-12-20: -1896
WARNING. Abnormal entry count found on day 2016-12-21: -2050
WARNING. Abnormal entry count found on day 2016-12-22: -1969
WARNING. Abnormal entry count found on day 2016-12-23: -2054
WARNING. Abnormal entry count found on day 2016-12-24: -1969
WARNING. Abnormal entry count found on day 2016-12-25: -1120
WARNING. Abnormal entry count found on day 2016-12-26: -265
WARNING. Abnormal entry count found on day 2016-12-27: -1436
WARNING. Abnormal entry count found on day 2016-12-28: -1703
WARNING. Abnormal entry count found on day 2016-12-29: -1757
WARNING. Abnormal entry count found on day 2016-12-30: -1758
WARNING. Abnormal entry count found on day 2016-12-25: -1120
WARNING. Abnormal entry count found on day 2016-12-26: -265
WARNING. Abnormal entry count found on day 2016-12-27: -1436
WARNING. Abnormal entry count found on day 2016-12-28: -1703
WARNING. Abnormal entry count found on day 2016-12-29: -1757
WARNING. Abnormal entry count found on day 2016-12-30: -1758
WARNING. Abnormal entry count found on day 2016-12-25: -1120
WARNING. Abnormal entry count found on day 2016-12-26: -265
WARNING. Abnormal entry count found on day 2016-12-27: -1436
WARNING. Abnormal entry count found on day 2016-12-28: -1703
WARNING. Abnormal entry count found on day 2016-12-29: -1757
WARNING. Abnormal entry count found on day 2016-12-30: -1758
Processing turnstile ('N310', 'R140', '01-00-01', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -5313
WARNING. Abnormal entry count found on day 2016-12-03: -5313
WARNING. Abnormal entry count found on day 2016-12-10: -5111
WARNING. Abnormal entry count found on day 2016-12-10: -5111
WARNING. Abnormal entry count found on day 2016-12-17: -4926
WARNING. Abnormal entry count found on day 2016-12-17: -4926
WARNING. Abnormal entry count found on day 2016-12-24: -3381
WARNING. Abnormal entry count found on day 2016-12-24: -3381
Processing turnstile ('N550', 'R242', '01-05-00', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
Processing turnstile ('A058', 'R001', '01-00-00', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -4924
WARNING. Abnormal entry count found on day 2016-12-03: -4924
WARNING. Abnormal entry count found on day 2016-12-10: -4916
WARNING. Abnormal entry count found on day 2016-12-10: -4916
WARNING. Abnormal entry count found on day 2016-12-17: -4896
WARNING. Abnormal entry count found on day 2016-12-17: -4896
WARNING. Abnormal entry count found on day 2016-12-24: -3980
WARNING. Abnormal entry count found on day 2016-12-24: -3980
Processing turnstile ('R204', 'R043', '02-03-03', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1516
WARNING. Abnormal entry count found on day 2016-12-03: -1516
WARNING. Abnormal entry count found on day 2016-12-10: -1449
WARNING. Abnormal entry count found on day 2016-12-10: -1449
WARNING. Abnormal entry count found on day 2016-12-17: -1325
WARNING. Abnormal entry count found on day 2016-12-17: -1325
WARNING. Abnormal entry count found on day 2016-12-24: -912
WARNING. Abnormal entry count found on day 2016-12-24: -912
Processing turnstile ('PTH18', 'R549', '01-00-02', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -8831
WARNING. Abnormal entry count found on day 2016-12-03: -8831
WARNING. Abnormal entry count found on day 2016-12-10: -8814
WARNING. Abnormal entry count found on day 2016-12-10: -8814
WARNING. Abnormal entry count found on day 2016-12-17: -7293
WARNING. Abnormal entry count found on day 2016-12-17: -7293
WARNING. Abnormal entry count found on day 2016-12-24: -5456
WARNING. Abnormal entry count found on day 2016-12-24: -5456
Processing turnstile ('C022', 'R212', '01-05-01', '59 ST')
Processing turnstile ('R103', 'R304', '00-06-01', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -530
WARNING. Abnormal entry count found on day 2016-12-03: -530
WARNING. Abnormal entry count found on day 2016-12-10: -614
WARNING. Abnormal entry count found on day 2016-12-10: -614
WARNING. Abnormal entry count found on day 2016-12-17: -565
WARNING. Abnormal entry count found on day 2016-12-17: -565
WARNING. Abnormal entry count found on day 2016-12-24: -851
WARNING. Abnormal entry count found on day 2016-12-24: -851
Processing turnstile ('N141', 'R356', '00-00-01', 'OZONE PK LEFFRT')
WARNING. Abnormal entry count found on day 2016-12-03: -2917
WARNING. Abnormal entry count found on day 2016-12-03: -2917
WARNING. Abnormal entry count found on day 2016-12-10: -3454
WARNING. Abnormal entry count found on day 2016-12-10: -3454
WARNING. Abnormal entry count found on day 2016-12-17: -3305
WARNING. Abnormal entry count found on day 2016-12-17: -3305
WARNING. Abnormal entry count found on day 2016-12-24: -1761
WARNING. Abnormal entry count found on day 2016-12-24: -1761
Processing turnstile ('R139', 'R031', '04-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -9696
WARNING. Abnormal entry count found on day 2016-12-03: -9696
WARNING. Abnormal entry count found on day 2016-12-10: -9918
WARNING. Abnormal entry count found on day 2016-12-10: -9918
WARNING. Abnormal entry count found on day 2016-12-17: -9225
WARNING. Abnormal entry count found on day 2016-12-17: -9225
WARNING. Abnormal entry count found on day 2016-12-24: -7484
WARNING. Abnormal entry count found on day 2016-12-24: -7484
Processing turnstile ('R176', 'R169', '00-00-01', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -14352
WARNING. Abnormal entry count found on day 2016-12-03: -14352
WARNING. Abnormal entry count found on day 2016-12-10: -13507
WARNING. Abnormal entry count found on day 2016-12-10: -13507
WARNING. Abnormal entry count found on day 2016-12-17: -12351
WARNING. Abnormal entry count found on day 2016-12-17: -12351
WARNING. Abnormal entry count found on day 2016-12-24: -9504
WARNING. Abnormal entry count found on day 2016-12-24: -9504
Processing turnstile ('N067', 'R012', '00-03-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -6597
WARNING. Abnormal entry count found on day 2016-12-03: -6597
WARNING. Abnormal entry count found on day 2016-12-10: -15276
WARNING. Abnormal entry count found on day 2016-12-10: -15276
WARNING. Abnormal entry count found on day 2016-12-17: -13471
WARNING. Abnormal entry count found on day 2016-12-17: -13471
WARNING. Abnormal entry count found on day 2016-12-24: -12581
WARNING. Abnormal entry count found on day 2016-12-24: -12581
Processing turnstile ('A033', 'R170', '02-06-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -14865
WARNING. Abnormal entry count found on day 2016-12-03: -14865
WARNING. Abnormal entry count found on day 2016-12-10: -14727
WARNING. Abnormal entry count found on day 2016-12-10: -14727
WARNING. Abnormal entry count found on day 2016-12-17: -14072
WARNING. Abnormal entry count found on day 2016-12-17: -14072
WARNING. Abnormal entry count found on day 2016-12-24: -7675
WARNING. Abnormal entry count found on day 2016-12-24: -7675
Processing turnstile ('N319', 'R298', '01-00-01', 'NORTHERN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3106
WARNING. Abnormal entry count found on day 2016-12-03: -3106
WARNING. Abnormal entry count found on day 2016-12-10: -3140
WARNING. Abnormal entry count found on day 2016-12-10: -3140
WARNING. Abnormal entry count found on day 2016-12-17: -3358
WARNING. Abnormal entry count found on day 2016-12-17: -3358
WARNING. Abnormal entry count found on day 2016-12-24: -2585
WARNING. Abnormal entry count found on day 2016-12-24: -2585
Processing turnstile ('A038', 'R085', '00-06-00', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -23242
WARNING. Abnormal entry count found on day 2016-12-03: -23242
WARNING. Abnormal entry count found on day 2016-12-10: -19437
WARNING. Abnormal entry count found on day 2016-12-10: -19437
WARNING. Abnormal entry count found on day 2016-12-17: -17788
WARNING. Abnormal entry count found on day 2016-12-17: -17788
WARNING. Abnormal entry count found on day 2016-12-24: -10858
WARNING. Abnormal entry count found on day 2016-12-24: -10858
Processing turnstile ('R237', 'R046', '01-00-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3061
WARNING. Abnormal entry count found on day 2016-12-03: -3061
WARNING. Abnormal entry count found on day 2016-12-10: -2926
WARNING. Abnormal entry count found on day 2016-12-10: -2926
WARNING. Abnormal entry count found on day 2016-12-17: -2329
WARNING. Abnormal entry count found on day 2016-12-17: -2329
WARNING. Abnormal entry count found on day 2016-12-24: -1286
WARNING. Abnormal entry count found on day 2016-12-24: -1286
Processing turnstile ('R530', 'R310', '00-00-03', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11745
WARNING. Abnormal entry count found on day 2016-12-03: -11745
WARNING. Abnormal entry count found on day 2016-12-10: -11688
WARNING. Abnormal entry count found on day 2016-12-10: -11688
WARNING. Abnormal entry count found on day 2016-12-17: -12046
WARNING. Abnormal entry count found on day 2016-12-17: -12046
WARNING. Abnormal entry count found on day 2016-12-24: -9960
WARNING. Abnormal entry count found on day 2016-12-24: -9960
Processing turnstile ('B024', 'R211', '00-00-02', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -9986
WARNING. Abnormal entry count found on day 2016-12-03: -9986
WARNING. Abnormal entry count found on day 2016-12-10: -9708
WARNING. Abnormal entry count found on day 2016-12-10: -9708
WARNING. Abnormal entry count found on day 2016-12-17: -9975
WARNING. Abnormal entry count found on day 2016-12-17: -9975
WARNING. Abnormal entry count found on day 2016-12-24: -8163
WARNING. Abnormal entry count found on day 2016-12-24: -8163
Processing turnstile ('N334B', 'R341', '00-03-02', '75 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1248
WARNING. Abnormal entry count found on day 2016-12-03: -1248
WARNING. Abnormal entry count found on day 2016-12-10: -1223
WARNING. Abnormal entry count found on day 2016-12-10: -1223
WARNING. Abnormal entry count found on day 2016-12-17: -1177
WARNING. Abnormal entry count found on day 2016-12-17: -1177
WARNING. Abnormal entry count found on day 2016-12-24: -872
WARNING. Abnormal entry count found on day 2016-12-24: -872
Processing turnstile ('R258', 'R132', '00-03-01', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10989
WARNING. Abnormal entry count found on day 2016-12-03: -10989
WARNING. Abnormal entry count found on day 2016-12-10: -10408
WARNING. Abnormal entry count found on day 2016-12-10: -10408
WARNING. Abnormal entry count found on day 2016-12-17: -9742
WARNING. Abnormal entry count found on day 2016-12-17: -9742
WARNING. Abnormal entry count found on day 2016-12-24: -7441
WARNING. Abnormal entry count found on day 2016-12-24: -7441
Processing turnstile ('N210', 'R253', '00-00-01', '174-175 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -5922
WARNING. Abnormal entry count found on day 2016-12-03: -5922
WARNING. Abnormal entry count found on day 2016-12-10: -5957
WARNING. Abnormal entry count found on day 2016-12-10: -5957
WARNING. Abnormal entry count found on day 2016-12-17: -6090
WARNING. Abnormal entry count found on day 2016-12-17: -6090
WARNING. Abnormal entry count found on day 2016-12-24: -5023
WARNING. Abnormal entry count found on day 2016-12-24: -5023
Processing turnstile ('R521', 'R327', '00-00-00', '52 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11542
WARNING. Abnormal entry count found on day 2016-12-03: -11542
WARNING. Abnormal entry count found on day 2016-12-10: -12096
WARNING. Abnormal entry count found on day 2016-12-10: -12096
WARNING. Abnormal entry count found on day 2016-12-17: -12008
WARNING. Abnormal entry count found on day 2016-12-17: -12008
WARNING. Abnormal entry count found on day 2016-12-24: -9494
WARNING. Abnormal entry count found on day 2016-12-24: -9494
Processing turnstile ('R525', 'R018', '02-06-01', '74 ST-BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -132
WARNING. Abnormal entry count found on day 2016-12-03: -132
WARNING. Abnormal entry count found on day 2016-12-10: -132
WARNING. Abnormal entry count found on day 2016-12-10: -132
WARNING. Abnormal entry count found on day 2016-12-17: -132
WARNING. Abnormal entry count found on day 2016-12-17: -132
WARNING. Abnormal entry count found on day 2016-12-24: -111
WARNING. Abnormal entry count found on day 2016-12-24: -111
Processing turnstile ('R148', 'R033', '01-06-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18499
WARNING. Abnormal entry count found on day 2016-12-03: -18499
WARNING. Abnormal entry count found on day 2016-12-10: -28615
WARNING. Abnormal entry count found on day 2016-12-10: -28615
WARNING. Abnormal entry count found on day 2016-12-17: -22942
WARNING. Abnormal entry count found on day 2016-12-17: -22942
WARNING. Abnormal entry count found on day 2016-12-24: -15439
WARNING. Abnormal entry count found on day 2016-12-24: -15439
Processing turnstile ('N335', 'R158', '01-00-04', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -5405
WARNING. Abnormal entry count found on day 2016-12-03: -5405
WARNING. Abnormal entry count found on day 2016-12-10: -5246
WARNING. Abnormal entry count found on day 2016-12-10: -5246
WARNING. Abnormal entry count found on day 2016-12-17: -5103
WARNING. Abnormal entry count found on day 2016-12-17: -5103
WARNING. Abnormal entry count found on day 2016-12-24: -3903
WARNING. Abnormal entry count found on day 2016-12-24: -3903
Processing turnstile ('PTH19', 'R549', '02-00-02', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1411
WARNING. Abnormal entry count found on day 2016-12-03: -1411
WARNING. Abnormal entry count found on day 2016-12-10: -1450
WARNING. Abnormal entry count found on day 2016-12-10: -1450
WARNING. Abnormal entry count found on day 2016-12-17: -1299
WARNING. Abnormal entry count found on day 2016-12-17: -1299
WARNING. Abnormal entry count found on day 2016-12-24: -560
WARNING. Abnormal entry count found on day 2016-12-24: -560
Processing turnstile ('N339', 'R114', '01-06-00', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -1113
WARNING. Abnormal entry count found on day 2016-12-03: -1113
WARNING. Abnormal entry count found on day 2016-12-10: -1027
WARNING. Abnormal entry count found on day 2016-12-10: -1027
WARNING. Abnormal entry count found on day 2016-12-17: -1030
WARNING. Abnormal entry count found on day 2016-12-17: -1030
WARNING. Abnormal entry count found on day 2016-12-24: -906
WARNING. Abnormal entry count found on day 2016-12-24: -906
Processing turnstile ('J028', 'R004', '00-00-01', '75 ST-ELDERTS')
WARNING. Abnormal entry count found on day 2016-12-03: -3863
WARNING. Abnormal entry count found on day 2016-12-03: -3863
WARNING. Abnormal entry count found on day 2016-12-10: -3612
WARNING. Abnormal entry count found on day 2016-12-10: -3612
WARNING. Abnormal entry count found on day 2016-12-17: -3597
WARNING. Abnormal entry count found on day 2016-12-17: -3597
WARNING. Abnormal entry count found on day 2016-12-24: -2610
WARNING. Abnormal entry count found on day 2016-12-24: -2610
Processing turnstile ('J037', 'R009', '00-00-03', '121 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4159
WARNING. Abnormal entry count found on day 2016-12-03: -4159
WARNING. Abnormal entry count found on day 2016-12-10: -3754
WARNING. Abnormal entry count found on day 2016-12-10: -3754
WARNING. Abnormal entry count found on day 2016-12-17: -3793
WARNING. Abnormal entry count found on day 2016-12-17: -3793
WARNING. Abnormal entry count found on day 2016-12-24: -3051
WARNING. Abnormal entry count found on day 2016-12-24: -3051
Processing turnstile ('R550', 'R072', '00-03-08', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -2709
WARNING. Abnormal entry count found on day 2016-12-03: -2709
WARNING. Abnormal entry count found on day 2016-12-10: -2279
WARNING. Abnormal entry count found on day 2016-12-10: -2279
WARNING. Abnormal entry count found on day 2016-12-17: -2026
WARNING. Abnormal entry count found on day 2016-12-17: -2026
WARNING. Abnormal entry count found on day 2016-12-24: -1638
WARNING. Abnormal entry count found on day 2016-12-24: -1638
Processing turnstile ('J024', 'R437', '00-00-01', 'CRESCENT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9364
WARNING. Abnormal entry count found on day 2016-12-03: -9364
WARNING. Abnormal entry count found on day 2016-12-10: -8615
WARNING. Abnormal entry count found on day 2016-12-10: -8615
WARNING. Abnormal entry count found on day 2016-12-17: -8874
WARNING. Abnormal entry count found on day 2016-12-17: -8874
WARNING. Abnormal entry count found on day 2016-12-24: -7135
WARNING. Abnormal entry count found on day 2016-12-24: -7135
Processing turnstile ('R205A', 'R014', '04-05-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-24: -2
WARNING. Abnormal entry count found on day 2016-12-24: -2
Processing turnstile ('N089', 'R139', '00-00-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4791
WARNING. Abnormal entry count found on day 2016-12-03: -4791
WARNING. Abnormal entry count found on day 2016-12-10: -4861
WARNING. Abnormal entry count found on day 2016-12-10: -4861
WARNING. Abnormal entry count found on day 2016-12-17: -4398
WARNING. Abnormal entry count found on day 2016-12-17: -4398
WARNING. Abnormal entry count found on day 2016-12-24: -3215
WARNING. Abnormal entry count found on day 2016-12-24: -3215
Processing turnstile ('N418', 'R269', '01-06-00', 'BEDFORD-NOSTRAN')
WARNING. Abnormal entry count found on day 2016-12-03: -8182
WARNING. Abnormal entry count found on day 2016-12-03: -8182
WARNING. Abnormal entry count found on day 2016-12-10: -7973
WARNING. Abnormal entry count found on day 2016-12-10: -7973
WARNING. Abnormal entry count found on day 2016-12-17: -7409
WARNING. Abnormal entry count found on day 2016-12-17: -7409
WARNING. Abnormal entry count found on day 2016-12-24: -4558
WARNING. Abnormal entry count found on day 2016-12-24: -4558
Processing turnstile ('R534', 'R055', '01-03-05', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -13860
WARNING. Abnormal entry count found on day 2016-12-03: -13860
WARNING. Abnormal entry count found on day 2016-12-10: -13569
WARNING. Abnormal entry count found on day 2016-12-10: -13569
WARNING. Abnormal entry count found on day 2016-12-17: -13894
WARNING. Abnormal entry count found on day 2016-12-17: -13894
WARNING. Abnormal entry count found on day 2016-12-24: -11620
WARNING. Abnormal entry count found on day 2016-12-24: -11620
Processing turnstile ('N094', 'R029', '01-05-01', 'WORLD TRADE CTR')
Processing turnstile ('A034', 'R170', '03-06-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -9860
WARNING. Abnormal entry count found on day 2016-12-03: -9860
WARNING. Abnormal entry count found on day 2016-12-10: -10205
WARNING. Abnormal entry count found on day 2016-12-10: -10205
WARNING. Abnormal entry count found on day 2016-12-17: -10828
WARNING. Abnormal entry count found on day 2016-12-17: -10828
WARNING. Abnormal entry count found on day 2016-12-24: -5668
WARNING. Abnormal entry count found on day 2016-12-24: -5668
Processing turnstile ('N192', 'R336', '00-00-01', 'BEACH 60 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4318
WARNING. Abnormal entry count found on day 2016-12-03: -4318
WARNING. Abnormal entry count found on day 2016-12-10: -4267
WARNING. Abnormal entry count found on day 2016-12-10: -4267
WARNING. Abnormal entry count found on day 2016-12-17: -4058
WARNING. Abnormal entry count found on day 2016-12-17: -4058
WARNING. Abnormal entry count found on day 2016-12-24: -3278
WARNING. Abnormal entry count found on day 2016-12-24: -3278
Processing turnstile ('N120A', 'R153', '01-00-03', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5890
WARNING. Abnormal entry count found on day 2016-12-03: -5890
WARNING. Abnormal entry count found on day 2016-12-10: -5091
WARNING. Abnormal entry count found on day 2016-12-10: -5091
WARNING. Abnormal entry count found on day 2016-12-17: -5182
WARNING. Abnormal entry count found on day 2016-12-17: -5182
WARNING. Abnormal entry count found on day 2016-12-24: -3730
WARNING. Abnormal entry count found on day 2016-12-24: -3730
Processing turnstile ('R147', 'R033', '04-00-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11019
WARNING. Abnormal entry count found on day 2016-12-03: -11019
WARNING. Abnormal entry count found on day 2016-12-10: -13629
WARNING. Abnormal entry count found on day 2016-12-10: -13629
WARNING. Abnormal entry count found on day 2016-12-17: -9611
WARNING. Abnormal entry count found on day 2016-12-17: -9611
WARNING. Abnormal entry count found on day 2016-12-24: -12427
WARNING. Abnormal entry count found on day 2016-12-24: -12427
Processing turnstile ('N102', 'R127', '01-00-05', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -13302
WARNING. Abnormal entry count found on day 2016-12-03: -13302
WARNING. Abnormal entry count found on day 2016-12-10: -12129
WARNING. Abnormal entry count found on day 2016-12-10: -12129
WARNING. Abnormal entry count found on day 2016-12-17: -9672
WARNING. Abnormal entry count found on day 2016-12-17: -9672
WARNING. Abnormal entry count found on day 2016-12-24: -5320
WARNING. Abnormal entry count found on day 2016-12-24: -5320
Processing turnstile ('R231A', 'R176', '01-00-02', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11893
WARNING. Abnormal entry count found on day 2016-12-03: -11893
WARNING. Abnormal entry count found on day 2016-12-10: -13098
WARNING. Abnormal entry count found on day 2016-12-10: -13098
WARNING. Abnormal entry count found on day 2016-12-17: -11913
WARNING. Abnormal entry count found on day 2016-12-17: -11913
WARNING. Abnormal entry count found on day 2016-12-24: -7505
WARNING. Abnormal entry count found on day 2016-12-24: -7505
Processing turnstile ('C001', 'R108', '01-00-00', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -4792
WARNING. Abnormal entry count found on day 2016-12-03: -4792
WARNING. Abnormal entry count found on day 2016-12-10: -4630
WARNING. Abnormal entry count found on day 2016-12-10: -4630
WARNING. Abnormal entry count found on day 2016-12-17: -3942
WARNING. Abnormal entry count found on day 2016-12-17: -3942
WARNING. Abnormal entry count found on day 2016-12-24: -3176
WARNING. Abnormal entry count found on day 2016-12-24: -3176
Processing turnstile ('N202', 'R315', '00-00-02', '155 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10309
WARNING. Abnormal entry count found on day 2016-12-03: -10309
WARNING. Abnormal entry count found on day 2016-12-10: -10241
WARNING. Abnormal entry count found on day 2016-12-10: -10241
WARNING. Abnormal entry count found on day 2016-12-17: -9720
WARNING. Abnormal entry count found on day 2016-12-17: -9720
WARNING. Abnormal entry count found on day 2016-12-24: -8374
WARNING. Abnormal entry count found on day 2016-12-24: -8374
Processing turnstile ('H003', 'R163', '01-00-02', '6 AV')
WARNING. Abnormal entry count found on day 2016-12-04: -1843
WARNING. Abnormal entry count found on day 2016-12-05: -1359
WARNING. Abnormal entry count found on day 2016-12-06: -2942
WARNING. Abnormal entry count found on day 2016-12-07: -3075
WARNING. Abnormal entry count found on day 2016-12-08: -3155
WARNING. Abnormal entry count found on day 2016-12-09: -3091
WARNING. Abnormal entry count found on day 2016-12-03: 15465
WARNING. Abnormal entry count found on day 2016-12-04: -1843
WARNING. Abnormal entry count found on day 2016-12-05: -1359
WARNING. Abnormal entry count found on day 2016-12-06: -2942
WARNING. Abnormal entry count found on day 2016-12-07: -3075
WARNING. Abnormal entry count found on day 2016-12-08: -3155
WARNING. Abnormal entry count found on day 2016-12-09: -3091
WARNING. Abnormal entry count found on day 2016-12-03: 15465
WARNING. Abnormal entry count found on day 2016-12-04: -1843
WARNING. Abnormal entry count found on day 2016-12-05: -1359
WARNING. Abnormal entry count found on day 2016-12-06: -2942
WARNING. Abnormal entry count found on day 2016-12-07: -3075
WARNING. Abnormal entry count found on day 2016-12-08: -3155
WARNING. Abnormal entry count found on day 2016-12-09: -3091
WARNING. Abnormal entry count found on day 2016-12-10: -3234
WARNING. Abnormal entry count found on day 2016-12-11: -2006
WARNING. Abnormal entry count found on day 2016-12-12: -1353
WARNING. Abnormal entry count found on day 2016-12-13: -2792
WARNING. Abnormal entry count found on day 2016-12-14: -3055
WARNING. Abnormal entry count found on day 2016-12-15: -3054
WARNING. Abnormal entry count found on day 2016-12-16: -3038
WARNING. Abnormal entry count found on day 2016-12-10: 15298
WARNING. Abnormal entry count found on day 2016-12-11: -2006
WARNING. Abnormal entry count found on day 2016-12-12: -1353
WARNING. Abnormal entry count found on day 2016-12-13: -2792
WARNING. Abnormal entry count found on day 2016-12-14: -3055
WARNING. Abnormal entry count found on day 2016-12-15: -3054
WARNING. Abnormal entry count found on day 2016-12-16: -3038
WARNING. Abnormal entry count found on day 2016-12-10: 15298
WARNING. Abnormal entry count found on day 2016-12-11: -2006
WARNING. Abnormal entry count found on day 2016-12-12: -1353
WARNING. Abnormal entry count found on day 2016-12-13: -2792
WARNING. Abnormal entry count found on day 2016-12-14: -3055
WARNING. Abnormal entry count found on day 2016-12-15: -3054
WARNING. Abnormal entry count found on day 2016-12-16: -3038
WARNING. Abnormal entry count found on day 2016-12-17: -3119
WARNING. Abnormal entry count found on day 2016-12-18: -1603
WARNING. Abnormal entry count found on day 2016-12-19: -1337
WARNING. Abnormal entry count found on day 2016-12-20: -444
WARNING. Abnormal entry count found on day 2016-12-18: -1603
WARNING. Abnormal entry count found on day 2016-12-19: -1337
WARNING. Abnormal entry count found on day 2016-12-20: -444
WARNING. Abnormal entry count found on day 2016-12-18: -1603
WARNING. Abnormal entry count found on day 2016-12-19: -1337
WARNING. Abnormal entry count found on day 2016-12-20: -444
Processing turnstile ('N222', 'R156', '00-00-00', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -8972
WARNING. Abnormal entry count found on day 2016-12-03: -8972
WARNING. Abnormal entry count found on day 2016-12-10: -8519
WARNING. Abnormal entry count found on day 2016-12-10: -8519
WARNING. Abnormal entry count found on day 2016-12-17: -8310
WARNING. Abnormal entry count found on day 2016-12-17: -8310
WARNING. Abnormal entry count found on day 2016-12-24: -6274
WARNING. Abnormal entry count found on day 2016-12-24: -6274
Processing turnstile ('R311', 'R053', '00-00-00', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8702
WARNING. Abnormal entry count found on day 2016-12-03: -8702
WARNING. Abnormal entry count found on day 2016-12-10: -8109
WARNING. Abnormal entry count found on day 2016-12-10: -8109
WARNING. Abnormal entry count found on day 2016-12-17: -8062
WARNING. Abnormal entry count found on day 2016-12-17: -8062
WARNING. Abnormal entry count found on day 2016-12-24: -5451
WARNING. Abnormal entry count found on day 2016-12-24: -5451
Processing turnstile ('K022', 'R402', '00-00-00', 'SENECA AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -4231
WARNING. Abnormal entry count found on day 2016-12-03: -4231
WARNING. Abnormal entry count found on day 2016-12-10: -3988
WARNING. Abnormal entry count found on day 2016-12-10: -3988
WARNING. Abnormal entry count found on day 2016-12-17: -3969
WARNING. Abnormal entry count found on day 2016-12-17: -3969
WARNING. Abnormal entry count found on day 2016-12-24: -2910
WARNING. Abnormal entry count found on day 2016-12-24: -2910
Processing turnstile ('N546', 'R204', '00-00-06', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12916
WARNING. Abnormal entry count found on day 2016-12-03: -12916
WARNING. Abnormal entry count found on day 2016-12-10: -14427
WARNING. Abnormal entry count found on day 2016-12-10: -14427
WARNING. Abnormal entry count found on day 2016-12-17: -12037
WARNING. Abnormal entry count found on day 2016-12-17: -12037
WARNING. Abnormal entry count found on day 2016-12-24: -8978
WARNING. Abnormal entry count found on day 2016-12-24: -8978
Processing turnstile ('N501A', 'R020', '02-06-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -2375
WARNING. Abnormal entry count found on day 2016-12-03: -2375
WARNING. Abnormal entry count found on day 2016-12-10: -2446
WARNING. Abnormal entry count found on day 2016-12-10: -2446
WARNING. Abnormal entry count found on day 2016-12-17: -2152
WARNING. Abnormal entry count found on day 2016-12-17: -2152
WARNING. Abnormal entry count found on day 2016-12-24: -1431
WARNING. Abnormal entry count found on day 2016-12-24: -1431
Processing turnstile ('R101', 'R001', '02-07-03', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -13380
WARNING. Abnormal entry count found on day 2016-12-03: -13380
WARNING. Abnormal entry count found on day 2016-12-10: -12257
WARNING. Abnormal entry count found on day 2016-12-10: -12257
WARNING. Abnormal entry count found on day 2016-12-17: -11598
WARNING. Abnormal entry count found on day 2016-12-17: -11598
WARNING. Abnormal entry count found on day 2016-12-24: -11300
WARNING. Abnormal entry count found on day 2016-12-24: -11300
Processing turnstile ('R621', 'R060', '00-00-00', 'EASTN PKWY-MUSM')
WARNING. Abnormal entry count found on day 2016-12-03: -3235
WARNING. Abnormal entry count found on day 2016-12-03: -3235
WARNING. Abnormal entry count found on day 2016-12-10: -3028
WARNING. Abnormal entry count found on day 2016-12-10: -3028
WARNING. Abnormal entry count found on day 2016-12-17: -2981
WARNING. Abnormal entry count found on day 2016-12-17: -2981
WARNING. Abnormal entry count found on day 2016-12-24: -2544
WARNING. Abnormal entry count found on day 2016-12-24: -2544
Processing turnstile ('PTH18', 'R549', '01-00-03', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -7630
WARNING. Abnormal entry count found on day 2016-12-03: -7630
WARNING. Abnormal entry count found on day 2016-12-10: -7330
WARNING. Abnormal entry count found on day 2016-12-10: -7330
WARNING. Abnormal entry count found on day 2016-12-17: -6020
WARNING. Abnormal entry count found on day 2016-12-17: -6020
WARNING. Abnormal entry count found on day 2016-12-24: -4303
WARNING. Abnormal entry count found on day 2016-12-24: -4303
Processing turnstile ('B016', 'R098', '00-00-03', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9848
WARNING. Abnormal entry count found on day 2016-12-03: -9848
WARNING. Abnormal entry count found on day 2016-12-10: -9773
WARNING. Abnormal entry count found on day 2016-12-10: -9773
WARNING. Abnormal entry count found on day 2016-12-17: -9570
WARNING. Abnormal entry count found on day 2016-12-17: -9570
WARNING. Abnormal entry count found on day 2016-12-24: -6945
WARNING. Abnormal entry count found on day 2016-12-24: -6945
Processing turnstile ('R210', 'R044', '00-00-00', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -5770
WARNING. Abnormal entry count found on day 2016-12-03: -5770
WARNING. Abnormal entry count found on day 2016-12-10: -5596
WARNING. Abnormal entry count found on day 2016-12-10: -5596
WARNING. Abnormal entry count found on day 2016-12-17: -4581
WARNING. Abnormal entry count found on day 2016-12-17: -4581
WARNING. Abnormal entry count found on day 2016-12-24: -3280
WARNING. Abnormal entry count found on day 2016-12-24: -3280
Processing turnstile ('R252', 'R180', '00-00-00', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20367
WARNING. Abnormal entry count found on day 2016-12-03: -20367
WARNING. Abnormal entry count found on day 2016-12-10: -21650
WARNING. Abnormal entry count found on day 2016-12-10: -21650
WARNING. Abnormal entry count found on day 2016-12-17: -19974
WARNING. Abnormal entry count found on day 2016-12-17: -19974
WARNING. Abnormal entry count found on day 2016-12-24: -14756
WARNING. Abnormal entry count found on day 2016-12-24: -14756
Processing turnstile ('N124', 'R103', '00-03-01', 'BROADWAY JCT')
WARNING. Abnormal entry count found on day 2016-12-03: -13574
WARNING. Abnormal entry count found on day 2016-12-03: -13574
WARNING. Abnormal entry count found on day 2016-12-10: -13039
WARNING. Abnormal entry count found on day 2016-12-10: -13039
WARNING. Abnormal entry count found on day 2016-12-17: -12768
WARNING. Abnormal entry count found on day 2016-12-17: -12768
WARNING. Abnormal entry count found on day 2016-12-24: -9456
WARNING. Abnormal entry count found on day 2016-12-24: -9456
Processing turnstile ('N335', 'R158', '01-00-03', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -4045
WARNING. Abnormal entry count found on day 2016-12-03: -4045
WARNING. Abnormal entry count found on day 2016-12-10: -3976
WARNING. Abnormal entry count found on day 2016-12-10: -3976
WARNING. Abnormal entry count found on day 2016-12-17: -4075
WARNING. Abnormal entry count found on day 2016-12-17: -4075
WARNING. Abnormal entry count found on day 2016-12-24: -2978
WARNING. Abnormal entry count found on day 2016-12-24: -2978
Processing turnstile ('R208', 'R014', '03-01-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1439
WARNING. Abnormal entry count found on day 2016-12-03: -1439
WARNING. Abnormal entry count found on day 2016-12-10: -1323
WARNING. Abnormal entry count found on day 2016-12-10: -1323
WARNING. Abnormal entry count found on day 2016-12-17: -1403
WARNING. Abnormal entry count found on day 2016-12-17: -1403
WARNING. Abnormal entry count found on day 2016-12-24: -1221
WARNING. Abnormal entry count found on day 2016-12-24: -1221
Processing turnstile ('N183', 'R415', '00-00-01', 'BROAD CHANNEL')
WARNING. Abnormal entry count found on day 2016-12-03: -945
WARNING. Abnormal entry count found on day 2016-12-03: -945
WARNING. Abnormal entry count found on day 2016-12-10: -929
WARNING. Abnormal entry count found on day 2016-12-10: -929
WARNING. Abnormal entry count found on day 2016-12-17: -866
WARNING. Abnormal entry count found on day 2016-12-17: -866
WARNING. Abnormal entry count found on day 2016-12-24: -619
WARNING. Abnormal entry count found on day 2016-12-24: -619
Processing turnstile ('A014', 'R081', '02-06-00', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -239
WARNING. Abnormal entry count found on day 2016-12-03: -239
WARNING. Abnormal entry count found on day 2016-12-10: -217
WARNING. Abnormal entry count found on day 2016-12-10: -217
WARNING. Abnormal entry count found on day 2016-12-17: -330
WARNING. Abnormal entry count found on day 2016-12-17: -330
WARNING. Abnormal entry count found on day 2016-12-24: -424
WARNING. Abnormal entry count found on day 2016-12-24: -424
Processing turnstile ('N336', 'R158', '00-00-04', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -6632
WARNING. Abnormal entry count found on day 2016-12-03: -6632
WARNING. Abnormal entry count found on day 2016-12-10: -6355
WARNING. Abnormal entry count found on day 2016-12-10: -6355
WARNING. Abnormal entry count found on day 2016-12-17: -6324
WARNING. Abnormal entry count found on day 2016-12-17: -6324
WARNING. Abnormal entry count found on day 2016-12-24: -5139
WARNING. Abnormal entry count found on day 2016-12-24: -5139
Processing turnstile ('R515', 'R095', '00-03-01', 'ASTORIA DITMARS')
WARNING. Abnormal entry count found on day 2016-12-03: -11534
WARNING. Abnormal entry count found on day 2016-12-03: -11534
WARNING. Abnormal entry count found on day 2016-12-10: -11418
WARNING. Abnormal entry count found on day 2016-12-10: -11418
WARNING. Abnormal entry count found on day 2016-12-17: -11225
WARNING. Abnormal entry count found on day 2016-12-17: -11225
WARNING. Abnormal entry count found on day 2016-12-24: -8285
WARNING. Abnormal entry count found on day 2016-12-24: -8285
Processing turnstile ('R159', 'R164', '01-06-01', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -827
WARNING. Abnormal entry count found on day 2016-12-03: -827
WARNING. Abnormal entry count found on day 2016-12-10: -1018
WARNING. Abnormal entry count found on day 2016-12-10: -1018
WARNING. Abnormal entry count found on day 2016-12-17: -786
WARNING. Abnormal entry count found on day 2016-12-17: -786
WARNING. Abnormal entry count found on day 2016-12-24: -464
WARNING. Abnormal entry count found on day 2016-12-24: -464
Processing turnstile ('N505', 'R022', '02-00-04', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -7462
WARNING. Abnormal entry count found on day 2016-12-03: -7462
WARNING. Abnormal entry count found on day 2016-12-10: -8460
WARNING. Abnormal entry count found on day 2016-12-10: -8460
WARNING. Abnormal entry count found on day 2016-12-17: -1764
WARNING. Abnormal entry count found on day 2016-12-17: -1764
Processing turnstile ('N554', 'R423', '01-06-00', 'AVENUE N')
WARNING. Abnormal entry count found on day 2016-12-03: -5359
WARNING. Abnormal entry count found on day 2016-12-03: -5359
WARNING. Abnormal entry count found on day 2016-12-10: -4621
WARNING. Abnormal entry count found on day 2016-12-10: -4621
WARNING. Abnormal entry count found on day 2016-12-17: -4897
WARNING. Abnormal entry count found on day 2016-12-17: -4897
WARNING. Abnormal entry count found on day 2016-12-24: -3789
WARNING. Abnormal entry count found on day 2016-12-24: -3789
Processing turnstile ('R422', 'R428', '00-00-01', 'BUHRE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3301
WARNING. Abnormal entry count found on day 2016-12-03: -3301
WARNING. Abnormal entry count found on day 2016-12-10: -3592
WARNING. Abnormal entry count found on day 2016-12-10: -3592
WARNING. Abnormal entry count found on day 2016-12-17: -3609
WARNING. Abnormal entry count found on day 2016-12-17: -3609
WARNING. Abnormal entry count found on day 2016-12-24: -2591
WARNING. Abnormal entry count found on day 2016-12-24: -2591
Processing turnstile ('N306', 'R017', '00-03-03', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -21719
WARNING. Abnormal entry count found on day 2016-12-03: -21719
WARNING. Abnormal entry count found on day 2016-12-10: -21632
WARNING. Abnormal entry count found on day 2016-12-10: -21632
WARNING. Abnormal entry count found on day 2016-12-17: -19558
WARNING. Abnormal entry count found on day 2016-12-17: -19558
WARNING. Abnormal entry count found on day 2016-12-24: -12825
WARNING. Abnormal entry count found on day 2016-12-24: -12825
Processing turnstile ('R307', 'R207', '01-00-02', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9607
WARNING. Abnormal entry count found on day 2016-12-03: -9607
WARNING. Abnormal entry count found on day 2016-12-10: -8863
WARNING. Abnormal entry count found on day 2016-12-10: -8863
WARNING. Abnormal entry count found on day 2016-12-17: -9101
WARNING. Abnormal entry count found on day 2016-12-17: -9101
WARNING. Abnormal entry count found on day 2016-12-24: -7320
WARNING. Abnormal entry count found on day 2016-12-24: -7320
Processing turnstile ('N339', 'R114', '01-06-01', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3739
WARNING. Abnormal entry count found on day 2016-12-03: -3739
WARNING. Abnormal entry count found on day 2016-12-10: -3695
WARNING. Abnormal entry count found on day 2016-12-10: -3695
WARNING. Abnormal entry count found on day 2016-12-17: -3694
WARNING. Abnormal entry count found on day 2016-12-17: -3694
WARNING. Abnormal entry count found on day 2016-12-24: -2842
WARNING. Abnormal entry count found on day 2016-12-24: -2842
Processing turnstile ('N221', 'R155', '00-00-00', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -6056
WARNING. Abnormal entry count found on day 2016-12-03: -6056
WARNING. Abnormal entry count found on day 2016-12-10: -5716
WARNING. Abnormal entry count found on day 2016-12-10: -5716
WARNING. Abnormal entry count found on day 2016-12-17: -5973
WARNING. Abnormal entry count found on day 2016-12-17: -5973
WARNING. Abnormal entry count found on day 2016-12-24: -4598
WARNING. Abnormal entry count found on day 2016-12-24: -4598
Processing turnstile ('PTH16', 'R550', '01-01-01', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -1754
WARNING. Abnormal entry count found on day 2016-12-03: -1754
WARNING. Abnormal entry count found on day 2016-12-10: -1802
WARNING. Abnormal entry count found on day 2016-12-10: -1802
WARNING. Abnormal entry count found on day 2016-12-17: -1266
WARNING. Abnormal entry count found on day 2016-12-17: -1266
WARNING. Abnormal entry count found on day 2016-12-24: -753
WARNING. Abnormal entry count found on day 2016-12-24: -753
Processing turnstile ('R236', 'R045', '00-00-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9151
WARNING. Abnormal entry count found on day 2016-12-03: -9151
WARNING. Abnormal entry count found on day 2016-12-10: -8942
WARNING. Abnormal entry count found on day 2016-12-10: -8942
WARNING. Abnormal entry count found on day 2016-12-17: -7747
WARNING. Abnormal entry count found on day 2016-12-17: -7747
WARNING. Abnormal entry count found on day 2016-12-24: -5172
WARNING. Abnormal entry count found on day 2016-12-24: -5172
Processing turnstile ('R287', 'R244', '00-06-00', 'BURNSIDE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6837
WARNING. Abnormal entry count found on day 2016-12-03: -6837
WARNING. Abnormal entry count found on day 2016-12-10: -5202
WARNING. Abnormal entry count found on day 2016-12-10: -5202
WARNING. Abnormal entry count found on day 2016-12-17: -646
WARNING. Abnormal entry count found on day 2016-12-17: -646
WARNING. Abnormal entry count found on day 2016-12-24: -3989
WARNING. Abnormal entry count found on day 2016-12-24: -3989
Processing turnstile ('N067', 'R012', '00-06-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -16
WARNING. Abnormal entry count found on day 2016-12-03: -16
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-10: -11
WARNING. Abnormal entry count found on day 2016-12-17: -18
WARNING. Abnormal entry count found on day 2016-12-17: -18
WARNING. Abnormal entry count found on day 2016-12-24: -9
WARNING. Abnormal entry count found on day 2016-12-24: -9
Processing turnstile ('R122', 'R290', '02-05-01', 'HOUSTON ST')
Processing turnstile ('N083', 'R138', '01-02-00', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12614
WARNING. Abnormal entry count found on day 2016-12-03: -12614
WARNING. Abnormal entry count found on day 2016-12-10: -13708
WARNING. Abnormal entry count found on day 2016-12-10: -13708
WARNING. Abnormal entry count found on day 2016-12-17: -13761
WARNING. Abnormal entry count found on day 2016-12-17: -13761
WARNING. Abnormal entry count found on day 2016-12-24: -8771
WARNING. Abnormal entry count found on day 2016-12-24: -8771
Processing turnstile ('R647', 'R110', '02-05-01', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -972
WARNING. Abnormal entry count found on day 2016-12-03: -972
WARNING. Abnormal entry count found on day 2016-12-10: -985
WARNING. Abnormal entry count found on day 2016-12-10: -985
WARNING. Abnormal entry count found on day 2016-12-17: -791
WARNING. Abnormal entry count found on day 2016-12-17: -791
WARNING. Abnormal entry count found on day 2016-12-24: -462
WARNING. Abnormal entry count found on day 2016-12-24: -462
Processing turnstile ('N030', 'R333', '00-00-01', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8359
WARNING. Abnormal entry count found on day 2016-12-03: -8359
WARNING. Abnormal entry count found on day 2016-12-10: -8276
WARNING. Abnormal entry count found on day 2016-12-10: -8276
WARNING. Abnormal entry count found on day 2016-12-17: -7739
WARNING. Abnormal entry count found on day 2016-12-17: -7739
WARNING. Abnormal entry count found on day 2016-12-24: -5744
WARNING. Abnormal entry count found on day 2016-12-24: -5744
Processing turnstile ('R310', 'R053', '01-00-01', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24420
WARNING. Abnormal entry count found on day 2016-12-03: -24420
WARNING. Abnormal entry count found on day 2016-12-10: -22229
WARNING. Abnormal entry count found on day 2016-12-10: -22229
WARNING. Abnormal entry count found on day 2016-12-17: -22402
WARNING. Abnormal entry count found on day 2016-12-17: -22402
WARNING. Abnormal entry count found on day 2016-12-24: -17648
WARNING. Abnormal entry count found on day 2016-12-24: -17648
Processing turnstile ('N078', 'R175', '01-03-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15724
WARNING. Abnormal entry count found on day 2016-12-03: -15724
WARNING. Abnormal entry count found on day 2016-12-10: -16148
WARNING. Abnormal entry count found on day 2016-12-10: -16148
WARNING. Abnormal entry count found on day 2016-12-17: -14825
WARNING. Abnormal entry count found on day 2016-12-17: -14825
WARNING. Abnormal entry count found on day 2016-12-24: -8091
WARNING. Abnormal entry count found on day 2016-12-24: -8091
Processing turnstile ('R200A', 'R041', '01-05-00', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-17: -20
WARNING. Abnormal entry count found on day 2016-12-17: -20
WARNING. Abnormal entry count found on day 2016-12-24: -16
WARNING. Abnormal entry count found on day 2016-12-24: -16
Processing turnstile ('N001', 'R173', '01-06-00', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10001
WARNING. Abnormal entry count found on day 2016-12-03: -10001
WARNING. Abnormal entry count found on day 2016-12-10: -9705
WARNING. Abnormal entry count found on day 2016-12-10: -9705
WARNING. Abnormal entry count found on day 2016-12-17: -9205
WARNING. Abnormal entry count found on day 2016-12-17: -9205
WARNING. Abnormal entry count found on day 2016-12-24: -6985
WARNING. Abnormal entry count found on day 2016-12-24: -6985
Processing turnstile ('N506', 'R022', '00-05-03', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -21738
WARNING. Abnormal entry count found on day 2016-12-03: -21738
WARNING. Abnormal entry count found on day 2016-12-10: -23139
WARNING. Abnormal entry count found on day 2016-12-10: -23139
WARNING. Abnormal entry count found on day 2016-12-17: -27829
WARNING. Abnormal entry count found on day 2016-12-17: -27829
WARNING. Abnormal entry count found on day 2016-12-24: -26639
WARNING. Abnormal entry count found on day 2016-12-24: -26639
Processing turnstile ('N419', 'R287', '00-00-00', 'CLASSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10631
WARNING. Abnormal entry count found on day 2016-12-03: -10631
WARNING. Abnormal entry count found on day 2016-12-10: -10510
WARNING. Abnormal entry count found on day 2016-12-10: -10510
WARNING. Abnormal entry count found on day 2016-12-17: -9607
WARNING. Abnormal entry count found on day 2016-12-17: -9607
WARNING. Abnormal entry count found on day 2016-12-24: -6794
WARNING. Abnormal entry count found on day 2016-12-24: -6794
Processing turnstile ('R530', 'R310', '00-00-04', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14007
WARNING. Abnormal entry count found on day 2016-12-03: -14007
WARNING. Abnormal entry count found on day 2016-12-10: -13077
WARNING. Abnormal entry count found on day 2016-12-10: -13077
WARNING. Abnormal entry count found on day 2016-12-17: -13135
WARNING. Abnormal entry count found on day 2016-12-17: -13135
WARNING. Abnormal entry count found on day 2016-12-24: -11914
WARNING. Abnormal entry count found on day 2016-12-24: -11914
Processing turnstile ('A049', 'R088', '02-01-01', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5836
WARNING. Abnormal entry count found on day 2016-12-03: -5836
WARNING. Abnormal entry count found on day 2016-12-10: -5634
WARNING. Abnormal entry count found on day 2016-12-10: -5634
WARNING. Abnormal entry count found on day 2016-12-17: -6193
WARNING. Abnormal entry count found on day 2016-12-17: -6193
WARNING. Abnormal entry count found on day 2016-12-24: -5442
WARNING. Abnormal entry count found on day 2016-12-24: -5442
Processing turnstile ('A029', 'R082', '00-03-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12105
WARNING. Abnormal entry count found on day 2016-12-03: -12105
WARNING. Abnormal entry count found on day 2016-12-10: -10249
WARNING. Abnormal entry count found on day 2016-12-10: -10249
WARNING. Abnormal entry count found on day 2016-12-17: -9014
WARNING. Abnormal entry count found on day 2016-12-17: -9014
WARNING. Abnormal entry count found on day 2016-12-24: -6368
WARNING. Abnormal entry count found on day 2016-12-24: -6368
Processing turnstile ('H012', 'R268', '01-00-00', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13097
WARNING. Abnormal entry count found on day 2016-12-03: -13097
WARNING. Abnormal entry count found on day 2016-12-10: -13240
WARNING. Abnormal entry count found on day 2016-12-10: -13240
WARNING. Abnormal entry count found on day 2016-12-17: -11109
WARNING. Abnormal entry count found on day 2016-12-17: -11109
WARNING. Abnormal entry count found on day 2016-12-24: -7285
WARNING. Abnormal entry count found on day 2016-12-24: -7285
Processing turnstile ('N073', 'R013', '02-00-07', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -2455
WARNING. Abnormal entry count found on day 2016-12-03: -2455
WARNING. Abnormal entry count found on day 2016-12-10: -2357
WARNING. Abnormal entry count found on day 2016-12-10: -2357
WARNING. Abnormal entry count found on day 2016-12-17: -1848
WARNING. Abnormal entry count found on day 2016-12-17: -1848
WARNING. Abnormal entry count found on day 2016-12-24: -1365
WARNING. Abnormal entry count found on day 2016-12-24: -1365
Processing turnstile ('N072', 'R012', '05-03-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -20718
WARNING. Abnormal entry count found on day 2016-12-03: -20718
WARNING. Abnormal entry count found on day 2016-12-10: -20573
WARNING. Abnormal entry count found on day 2016-12-10: -20573
WARNING. Abnormal entry count found on day 2016-12-17: -19633
WARNING. Abnormal entry count found on day 2016-12-17: -19633
WARNING. Abnormal entry count found on day 2016-12-24: -16441
WARNING. Abnormal entry count found on day 2016-12-24: -16441
Processing turnstile ('N023', 'R332', '01-06-00', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1364
WARNING. Abnormal entry count found on day 2016-12-03: -1364
WARNING. Abnormal entry count found on day 2016-12-10: -1106
WARNING. Abnormal entry count found on day 2016-12-10: -1106
WARNING. Abnormal entry count found on day 2016-12-17: -1162
WARNING. Abnormal entry count found on day 2016-12-17: -1162
WARNING. Abnormal entry count found on day 2016-12-24: -875
WARNING. Abnormal entry count found on day 2016-12-24: -875
Processing turnstile ('E011', 'R371', '00-06-00', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9544
WARNING. Abnormal entry count found on day 2016-12-03: -9544
WARNING. Abnormal entry count found on day 2016-12-10: -10007
WARNING. Abnormal entry count found on day 2016-12-10: -10007
WARNING. Abnormal entry count found on day 2016-12-17: -10618
WARNING. Abnormal entry count found on day 2016-12-17: -10618
WARNING. Abnormal entry count found on day 2016-12-24: -8288
WARNING. Abnormal entry count found on day 2016-12-24: -8288
Processing turnstile ('N083', 'R138', '01-00-00', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12704
WARNING. Abnormal entry count found on day 2016-12-03: -12704
WARNING. Abnormal entry count found on day 2016-12-10: -12372
WARNING. Abnormal entry count found on day 2016-12-10: -12372
WARNING. Abnormal entry count found on day 2016-12-17: -12417
WARNING. Abnormal entry count found on day 2016-12-17: -12417
WARNING. Abnormal entry count found on day 2016-12-24: -9141
WARNING. Abnormal entry count found on day 2016-12-24: -9141
Processing turnstile ('R206', 'R014', '02-05-01', 'FULTON ST')
Processing turnstile ('PTH12', 'R542', '00-00-02', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13913
WARNING. Abnormal entry count found on day 2016-12-03: -13913
WARNING. Abnormal entry count found on day 2016-12-10: -14687
WARNING. Abnormal entry count found on day 2016-12-10: -14687
WARNING. Abnormal entry count found on day 2016-12-17: -11527
WARNING. Abnormal entry count found on day 2016-12-17: -11527
WARNING. Abnormal entry count found on day 2016-12-24: -7372
WARNING. Abnormal entry count found on day 2016-12-24: -7372
Processing turnstile ('J012', 'R379', '00-00-00', 'KOSCIUSZKO ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11981
WARNING. Abnormal entry count found on day 2016-12-03: -11981
WARNING. Abnormal entry count found on day 2016-12-10: -11719
WARNING. Abnormal entry count found on day 2016-12-10: -11719
WARNING. Abnormal entry count found on day 2016-12-17: -11324
WARNING. Abnormal entry count found on day 2016-12-17: -11324
WARNING. Abnormal entry count found on day 2016-12-24: -9113
WARNING. Abnormal entry count found on day 2016-12-24: -9113
Processing turnstile ('R251', 'R144', '00-03-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24977
WARNING. Abnormal entry count found on day 2016-12-03: -24977
WARNING. Abnormal entry count found on day 2016-12-10: -26380
WARNING. Abnormal entry count found on day 2016-12-10: -26380
WARNING. Abnormal entry count found on day 2016-12-17: -21330
WARNING. Abnormal entry count found on day 2016-12-17: -21330
WARNING. Abnormal entry count found on day 2016-12-24: -13225
WARNING. Abnormal entry count found on day 2016-12-24: -13225
Processing turnstile ('R623', 'R061', '00-00-01', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5860
WARNING. Abnormal entry count found on day 2016-12-03: -5860
WARNING. Abnormal entry count found on day 2016-12-10: -5947
WARNING. Abnormal entry count found on day 2016-12-10: -5947
WARNING. Abnormal entry count found on day 2016-12-17: -5513
WARNING. Abnormal entry count found on day 2016-12-17: -5513
WARNING. Abnormal entry count found on day 2016-12-24: -3851
WARNING. Abnormal entry count found on day 2016-12-24: -3851
Processing turnstile ('R550', 'R072', '00-03-05', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -6912
WARNING. Abnormal entry count found on day 2016-12-03: -6912
WARNING. Abnormal entry count found on day 2016-12-10: -6627
WARNING. Abnormal entry count found on day 2016-12-10: -6627
WARNING. Abnormal entry count found on day 2016-12-17: -5458
WARNING. Abnormal entry count found on day 2016-12-17: -5458
WARNING. Abnormal entry count found on day 2016-12-24: -3780
WARNING. Abnormal entry count found on day 2016-12-24: -3780
Processing turnstile ('N070', 'R012', '04-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -10759
WARNING. Abnormal entry count found on day 2016-12-03: -10759
WARNING. Abnormal entry count found on day 2016-12-10: -10321
WARNING. Abnormal entry count found on day 2016-12-10: -10321
WARNING. Abnormal entry count found on day 2016-12-17: -10778
WARNING. Abnormal entry count found on day 2016-12-17: -10778
WARNING. Abnormal entry count found on day 2016-12-24: -8564
WARNING. Abnormal entry count found on day 2016-12-24: -8564
Processing turnstile ('R507', 'R134', '00-03-04', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2804
WARNING. Abnormal entry count found on day 2016-12-03: -2804
WARNING. Abnormal entry count found on day 2016-12-10: -2796
WARNING. Abnormal entry count found on day 2016-12-10: -2796
WARNING. Abnormal entry count found on day 2016-12-17: -2593
WARNING. Abnormal entry count found on day 2016-12-17: -2593
WARNING. Abnormal entry count found on day 2016-12-24: -1672
WARNING. Abnormal entry count found on day 2016-12-24: -1672
Processing turnstile ('B016', 'R098', '00-03-01', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1658
WARNING. Abnormal entry count found on day 2016-12-03: -1658
WARNING. Abnormal entry count found on day 2016-12-10: -534
WARNING. Abnormal entry count found on day 2016-12-10: -534
WARNING. Abnormal entry count found on day 2016-12-17: -5150
WARNING. Abnormal entry count found on day 2016-12-17: -5150
WARNING. Abnormal entry count found on day 2016-12-24: -535
WARNING. Abnormal entry count found on day 2016-12-24: -535
Processing turnstile ('B018', 'R184', '00-00-00', 'CORTELYOU RD')
WARNING. Abnormal entry count found on day 2016-12-03: -14072
WARNING. Abnormal entry count found on day 2016-12-03: -14072
WARNING. Abnormal entry count found on day 2016-12-10: -13704
WARNING. Abnormal entry count found on day 2016-12-10: -13704
WARNING. Abnormal entry count found on day 2016-12-17: -13601
WARNING. Abnormal entry count found on day 2016-12-17: -13601
WARNING. Abnormal entry count found on day 2016-12-24: -10007
WARNING. Abnormal entry count found on day 2016-12-24: -10007
Processing turnstile ('C012', 'R258', '01-00-01', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4699
WARNING. Abnormal entry count found on day 2016-12-03: -4699
WARNING. Abnormal entry count found on day 2016-12-10: -4434
WARNING. Abnormal entry count found on day 2016-12-10: -4434
WARNING. Abnormal entry count found on day 2016-12-17: -4526
WARNING. Abnormal entry count found on day 2016-12-17: -4526
WARNING. Abnormal entry count found on day 2016-12-24: -3054
WARNING. Abnormal entry count found on day 2016-12-24: -3054
Processing turnstile ('J034', 'R007', '00-00-01', '104 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2873
WARNING. Abnormal entry count found on day 2016-12-03: -2873
WARNING. Abnormal entry count found on day 2016-12-10: -2740
WARNING. Abnormal entry count found on day 2016-12-10: -2740
WARNING. Abnormal entry count found on day 2016-12-17: -2733
WARNING. Abnormal entry count found on day 2016-12-17: -2733
WARNING. Abnormal entry count found on day 2016-12-24: -2035
WARNING. Abnormal entry count found on day 2016-12-24: -2035
Processing turnstile ('N526', 'R142', '02-00-03', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -5621
WARNING. Abnormal entry count found on day 2016-12-03: -5621
WARNING. Abnormal entry count found on day 2016-12-10: -5747
WARNING. Abnormal entry count found on day 2016-12-10: -5747
WARNING. Abnormal entry count found on day 2016-12-17: -7055
WARNING. Abnormal entry count found on day 2016-12-17: -7055
WARNING. Abnormal entry count found on day 2016-12-24: -4044
WARNING. Abnormal entry count found on day 2016-12-24: -4044
Processing turnstile ('R111', 'R027', '00-03-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10852
WARNING. Abnormal entry count found on day 2016-12-03: -10852
WARNING. Abnormal entry count found on day 2016-12-10: -10417
WARNING. Abnormal entry count found on day 2016-12-10: -10417
WARNING. Abnormal entry count found on day 2016-12-17: -8844
WARNING. Abnormal entry count found on day 2016-12-17: -8844
WARNING. Abnormal entry count found on day 2016-12-24: -5364
WARNING. Abnormal entry count found on day 2016-12-24: -5364
Processing turnstile ('R203', 'R043', '00-05-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6433
WARNING. Abnormal entry count found on day 2016-12-03: -6433
WARNING. Abnormal entry count found on day 2016-12-10: -6379
WARNING. Abnormal entry count found on day 2016-12-10: -6379
WARNING. Abnormal entry count found on day 2016-12-17: -9952
WARNING. Abnormal entry count found on day 2016-12-17: -9952
WARNING. Abnormal entry count found on day 2016-12-24: -5705
WARNING. Abnormal entry count found on day 2016-12-24: -5705
Processing turnstile ('R243', 'R049', '00-05-01', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7566
WARNING. Abnormal entry count found on day 2016-12-03: -7566
WARNING. Abnormal entry count found on day 2016-12-10: -7803
WARNING. Abnormal entry count found on day 2016-12-10: -7803
WARNING. Abnormal entry count found on day 2016-12-17: -7253
WARNING. Abnormal entry count found on day 2016-12-17: -7253
WARNING. Abnormal entry count found on day 2016-12-24: -6159
WARNING. Abnormal entry count found on day 2016-12-24: -6159
Processing turnstile ('N191', 'R335', '00-00-01', 'BEACH 67 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3859
WARNING. Abnormal entry count found on day 2016-12-03: -3859
WARNING. Abnormal entry count found on day 2016-12-10: -3653
WARNING. Abnormal entry count found on day 2016-12-10: -3653
WARNING. Abnormal entry count found on day 2016-12-17: -3674
WARNING. Abnormal entry count found on day 2016-12-17: -3674
WARNING. Abnormal entry count found on day 2016-12-24: -2941
WARNING. Abnormal entry count found on day 2016-12-24: -2941
Processing turnstile ('N544', 'R289', '01-06-01', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -12184
WARNING. Abnormal entry count found on day 2016-12-03: -12184
WARNING. Abnormal entry count found on day 2016-12-10: -13079
WARNING. Abnormal entry count found on day 2016-12-10: -13079
WARNING. Abnormal entry count found on day 2016-12-17: -9782
WARNING. Abnormal entry count found on day 2016-12-17: -9782
WARNING. Abnormal entry count found on day 2016-12-24: -8096
WARNING. Abnormal entry count found on day 2016-12-24: -8096
Processing turnstile ('R417', 'R222', '00-03-04', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -3253
WARNING. Abnormal entry count found on day 2016-12-03: -3253
WARNING. Abnormal entry count found on day 2016-12-10: -3069
WARNING. Abnormal entry count found on day 2016-12-10: -3069
WARNING. Abnormal entry count found on day 2016-12-17: -3149
WARNING. Abnormal entry count found on day 2016-12-17: -3149
WARNING. Abnormal entry count found on day 2016-12-24: -2216
WARNING. Abnormal entry count found on day 2016-12-24: -2216
Processing turnstile ('R162', 'R166', '00-00-04', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5953
WARNING. Abnormal entry count found on day 2016-12-03: -5953
WARNING. Abnormal entry count found on day 2016-12-10: -6081
WARNING. Abnormal entry count found on day 2016-12-10: -6081
WARNING. Abnormal entry count found on day 2016-12-17: -5472
WARNING. Abnormal entry count found on day 2016-12-17: -5472
WARNING. Abnormal entry count found on day 2016-12-24: -4719
WARNING. Abnormal entry count found on day 2016-12-24: -4719
Processing turnstile ('S101', 'R070', '00-00-05', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -2004
WARNING. Abnormal entry count found on day 2016-12-03: -2004
WARNING. Abnormal entry count found on day 2016-12-10: -1866
WARNING. Abnormal entry count found on day 2016-12-10: -1866
WARNING. Abnormal entry count found on day 2016-12-17: -1802
WARNING. Abnormal entry count found on day 2016-12-17: -1802
WARNING. Abnormal entry count found on day 2016-12-24: -1182
WARNING. Abnormal entry count found on day 2016-12-24: -1182
Processing turnstile ('N330', 'R202', '00-05-01', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -12252
WARNING. Abnormal entry count found on day 2016-12-03: -12252
WARNING. Abnormal entry count found on day 2016-12-10: -12226
WARNING. Abnormal entry count found on day 2016-12-10: -12226
WARNING. Abnormal entry count found on day 2016-12-17: -14158
WARNING. Abnormal entry count found on day 2016-12-17: -14158
WARNING. Abnormal entry count found on day 2016-12-24: -10520
WARNING. Abnormal entry count found on day 2016-12-24: -10520
Processing turnstile ('N408A', 'R256', '00-06-02', 'NASSAU ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3756
WARNING. Abnormal entry count found on day 2016-12-03: -3756
WARNING. Abnormal entry count found on day 2016-12-10: -3940
WARNING. Abnormal entry count found on day 2016-12-10: -3940
WARNING. Abnormal entry count found on day 2016-12-17: -2294
WARNING. Abnormal entry count found on day 2016-12-17: -2294
WARNING. Abnormal entry count found on day 2016-12-24: -1906
WARNING. Abnormal entry count found on day 2016-12-24: -1906
Processing turnstile ('R208', 'R014', '03-03-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1164
WARNING. Abnormal entry count found on day 2016-12-03: -1164
WARNING. Abnormal entry count found on day 2016-12-10: -924
WARNING. Abnormal entry count found on day 2016-12-10: -924
WARNING. Abnormal entry count found on day 2016-12-17: -1024
WARNING. Abnormal entry count found on day 2016-12-17: -1024
WARNING. Abnormal entry count found on day 2016-12-24: -913
WARNING. Abnormal entry count found on day 2016-12-24: -913
Processing turnstile ('N103', 'R127', '00-06-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -11191
WARNING. Abnormal entry count found on day 2016-12-03: -11191
WARNING. Abnormal entry count found on day 2016-12-10: -11858
WARNING. Abnormal entry count found on day 2016-12-10: -11858
WARNING. Abnormal entry count found on day 2016-12-17: -11460
WARNING. Abnormal entry count found on day 2016-12-17: -11460
WARNING. Abnormal entry count found on day 2016-12-24: -7490
WARNING. Abnormal entry count found on day 2016-12-24: -7490
Processing turnstile ('N539A', 'R288', '00-00-03', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -110
WARNING. Abnormal entry count found on day 2016-12-03: -110
WARNING. Abnormal entry count found on day 2016-12-10: -107
WARNING. Abnormal entry count found on day 2016-12-10: -107
WARNING. Abnormal entry count found on day 2016-12-17: -92
WARNING. Abnormal entry count found on day 2016-12-17: -92
WARNING. Abnormal entry count found on day 2016-12-24: -98
WARNING. Abnormal entry count found on day 2016-12-24: -98
Processing turnstile ('N304', 'R015', '01-03-01', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8413
WARNING. Abnormal entry count found on day 2016-12-03: -8413
WARNING. Abnormal entry count found on day 2016-12-10: -7937
WARNING. Abnormal entry count found on day 2016-12-10: -7937
WARNING. Abnormal entry count found on day 2016-12-17: -6124
WARNING. Abnormal entry count found on day 2016-12-17: -6124
WARNING. Abnormal entry count found on day 2016-12-24: -3500
WARNING. Abnormal entry count found on day 2016-12-24: -3500
Processing turnstile ('N203', 'R195', '00-03-00', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -298
WARNING. Abnormal entry count found on day 2016-12-24: -298
Processing turnstile ('R161B', 'R452', '00-05-01', '72 ST')
Processing turnstile ('R203A', 'R043', '01-06-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3575
WARNING. Abnormal entry count found on day 2016-12-03: -3575
WARNING. Abnormal entry count found on day 2016-12-10: -3856
WARNING. Abnormal entry count found on day 2016-12-10: -3856
WARNING. Abnormal entry count found on day 2016-12-17: -3172
WARNING. Abnormal entry count found on day 2016-12-17: -3172
WARNING. Abnormal entry count found on day 2016-12-24: -1890
WARNING. Abnormal entry count found on day 2016-12-24: -1890
Processing turnstile ('R418', 'R106', '00-00-01', 'CASTLE HILL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6469
WARNING. Abnormal entry count found on day 2016-12-03: -6469
WARNING. Abnormal entry count found on day 2016-12-10: -6513
WARNING. Abnormal entry count found on day 2016-12-10: -6513
WARNING. Abnormal entry count found on day 2016-12-17: -6220
WARNING. Abnormal entry count found on day 2016-12-17: -6220
WARNING. Abnormal entry count found on day 2016-12-24: -4987
WARNING. Abnormal entry count found on day 2016-12-24: -4987
Processing turnstile ('N072', 'R012', '05-03-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -19906
WARNING. Abnormal entry count found on day 2016-12-03: -19906
WARNING. Abnormal entry count found on day 2016-12-10: -19945
WARNING. Abnormal entry count found on day 2016-12-10: -19945
WARNING. Abnormal entry count found on day 2016-12-17: -17890
WARNING. Abnormal entry count found on day 2016-12-17: -17890
WARNING. Abnormal entry count found on day 2016-12-24: -15386
WARNING. Abnormal entry count found on day 2016-12-24: -15386
Processing turnstile ('JFK02', 'R535', '01-00-02', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -1258
WARNING. Abnormal entry count found on day 2016-12-03: -1258
WARNING. Abnormal entry count found on day 2016-12-10: -1017
WARNING. Abnormal entry count found on day 2016-12-10: -1017
WARNING. Abnormal entry count found on day 2016-12-17: -1331
WARNING. Abnormal entry count found on day 2016-12-17: -1331
WARNING. Abnormal entry count found on day 2016-12-24: -1820
WARNING. Abnormal entry count found on day 2016-12-24: -1820
Processing turnstile ('N101', 'R252', '01-00-02', 'HIGH ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6801
WARNING. Abnormal entry count found on day 2016-12-03: -6801
WARNING. Abnormal entry count found on day 2016-12-10: -6585
WARNING. Abnormal entry count found on day 2016-12-10: -6585
WARNING. Abnormal entry count found on day 2016-12-17: -5432
WARNING. Abnormal entry count found on day 2016-12-17: -5432
WARNING. Abnormal entry count found on day 2016-12-24: -3423
WARNING. Abnormal entry count found on day 2016-12-24: -3423
Processing turnstile ('N400A', 'R359', '02-00-03', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -2872
WARNING. Abnormal entry count found on day 2016-12-03: -2872
WARNING. Abnormal entry count found on day 2016-12-10: -2858
WARNING. Abnormal entry count found on day 2016-12-10: -2858
WARNING. Abnormal entry count found on day 2016-12-17: -2312
WARNING. Abnormal entry count found on day 2016-12-17: -2312
WARNING. Abnormal entry count found on day 2016-12-24: -1303
WARNING. Abnormal entry count found on day 2016-12-24: -1303
Processing turnstile ('C011', 'R231', '01-00-00', 'UNION ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3643
WARNING. Abnormal entry count found on day 2016-12-03: -3643
WARNING. Abnormal entry count found on day 2016-12-10: -3409
WARNING. Abnormal entry count found on day 2016-12-10: -3409
WARNING. Abnormal entry count found on day 2016-12-17: -3022
WARNING. Abnormal entry count found on day 2016-12-17: -3022
WARNING. Abnormal entry count found on day 2016-12-24: -2397
WARNING. Abnormal entry count found on day 2016-12-24: -2397
Processing turnstile ('C010', 'R231', '00-00-01', 'UNION ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8567
WARNING. Abnormal entry count found on day 2016-12-03: -8567
WARNING. Abnormal entry count found on day 2016-12-10: -9088
WARNING. Abnormal entry count found on day 2016-12-10: -9088
WARNING. Abnormal entry count found on day 2016-12-17: -7555
WARNING. Abnormal entry count found on day 2016-12-17: -7555
WARNING. Abnormal entry count found on day 2016-12-24: -4799
WARNING. Abnormal entry count found on day 2016-12-24: -4799
Processing turnstile ('N303', 'R015', '00-00-00', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13559
WARNING. Abnormal entry count found on day 2016-12-03: -13559
WARNING. Abnormal entry count found on day 2016-12-10: -12916
WARNING. Abnormal entry count found on day 2016-12-10: -12916
WARNING. Abnormal entry count found on day 2016-12-17: -11484
WARNING. Abnormal entry count found on day 2016-12-17: -11484
WARNING. Abnormal entry count found on day 2016-12-24: -9425
WARNING. Abnormal entry count found on day 2016-12-24: -9425
Processing turnstile ('N500', 'R020', '00-05-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-10: -26
WARNING. Abnormal entry count found on day 2016-12-10: -26
WARNING. Abnormal entry count found on day 2016-12-17: -24
WARNING. Abnormal entry count found on day 2016-12-17: -24
WARNING. Abnormal entry count found on day 2016-12-24: -20
WARNING. Abnormal entry count found on day 2016-12-24: -20
Processing turnstile ('H022', 'R279', '00-00-02', 'JEFFERSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10939
WARNING. Abnormal entry count found on day 2016-12-03: -10939
WARNING. Abnormal entry count found on day 2016-12-10: -10221
WARNING. Abnormal entry count found on day 2016-12-10: -10221
WARNING. Abnormal entry count found on day 2016-12-17: -9424
WARNING. Abnormal entry count found on day 2016-12-17: -9424
WARNING. Abnormal entry count found on day 2016-12-24: -6808
WARNING. Abnormal entry count found on day 2016-12-24: -6808
Processing turnstile ('R301', 'R323', '00-03-00', 'CENTRAL PK N110')
WARNING. Abnormal entry count found on day 2016-12-03: -11078
WARNING. Abnormal entry count found on day 2016-12-03: -11078
WARNING. Abnormal entry count found on day 2016-12-10: -10468
WARNING. Abnormal entry count found on day 2016-12-10: -10468
WARNING. Abnormal entry count found on day 2016-12-17: -10282
WARNING. Abnormal entry count found on day 2016-12-17: -10282
WARNING. Abnormal entry count found on day 2016-12-24: -8576
WARNING. Abnormal entry count found on day 2016-12-24: -8576
Processing turnstile ('N026', 'R102', '00-00-02', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17074
WARNING. Abnormal entry count found on day 2016-12-03: -17074
WARNING. Abnormal entry count found on day 2016-12-10: -16443
WARNING. Abnormal entry count found on day 2016-12-10: -16443
WARNING. Abnormal entry count found on day 2016-12-17: -16144
WARNING. Abnormal entry count found on day 2016-12-17: -16144
WARNING. Abnormal entry count found on day 2016-12-24: -13442
WARNING. Abnormal entry count found on day 2016-12-24: -13442
Processing turnstile ('A025', 'R023', '01-06-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -15369
WARNING. Abnormal entry count found on day 2016-12-03: -15369
WARNING. Abnormal entry count found on day 2016-12-10: -14315
WARNING. Abnormal entry count found on day 2016-12-10: -14315
WARNING. Abnormal entry count found on day 2016-12-17: -11031
WARNING. Abnormal entry count found on day 2016-12-17: -11031
WARNING. Abnormal entry count found on day 2016-12-24: -10711
WARNING. Abnormal entry count found on day 2016-12-24: -10711
Processing turnstile ('PTH02', 'R544', '00-00-02', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -8865
WARNING. Abnormal entry count found on day 2016-12-03: -8865
WARNING. Abnormal entry count found on day 2016-12-10: -8915
WARNING. Abnormal entry count found on day 2016-12-10: -8915
WARNING. Abnormal entry count found on day 2016-12-17: -7225
WARNING. Abnormal entry count found on day 2016-12-17: -7225
WARNING. Abnormal entry count found on day 2016-12-24: -6828
WARNING. Abnormal entry count found on day 2016-12-24: -6828
Processing turnstile ('N335', 'R158', '01-00-01', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -8975
WARNING. Abnormal entry count found on day 2016-12-03: -8975
WARNING. Abnormal entry count found on day 2016-12-10: -8657
WARNING. Abnormal entry count found on day 2016-12-10: -8657
WARNING. Abnormal entry count found on day 2016-12-17: -8151
WARNING. Abnormal entry count found on day 2016-12-17: -8151
WARNING. Abnormal entry count found on day 2016-12-24: -5855
WARNING. Abnormal entry count found on day 2016-12-24: -5855
Processing turnstile ('N511', 'R163', '03-00-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10103
WARNING. Abnormal entry count found on day 2016-12-03: -10103
WARNING. Abnormal entry count found on day 2016-12-10: -10169
WARNING. Abnormal entry count found on day 2016-12-10: -10169
WARNING. Abnormal entry count found on day 2016-12-17: -8864
WARNING. Abnormal entry count found on day 2016-12-17: -8864
WARNING. Abnormal entry count found on day 2016-12-24: -5475
WARNING. Abnormal entry count found on day 2016-12-24: -5475
Processing turnstile ('S101', 'R070', '00-00-03', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -2330
WARNING. Abnormal entry count found on day 2016-12-03: -2330
WARNING. Abnormal entry count found on day 2016-12-10: -2194
WARNING. Abnormal entry count found on day 2016-12-10: -2194
WARNING. Abnormal entry count found on day 2016-12-17: -2111
WARNING. Abnormal entry count found on day 2016-12-17: -2111
WARNING. Abnormal entry count found on day 2016-12-24: -1445
WARNING. Abnormal entry count found on day 2016-12-24: -1445
Processing turnstile ('R294', 'R052', '00-00-02', 'WOODLAWN')
WARNING. Abnormal entry count found on day 2016-12-03: -6250
WARNING. Abnormal entry count found on day 2016-12-03: -6250
WARNING. Abnormal entry count found on day 2016-12-10: -5918
WARNING. Abnormal entry count found on day 2016-12-10: -5918
WARNING. Abnormal entry count found on day 2016-12-17: -5694
WARNING. Abnormal entry count found on day 2016-12-17: -5694
WARNING. Abnormal entry count found on day 2016-12-24: -4348
WARNING. Abnormal entry count found on day 2016-12-24: -4348
Processing turnstile ('R515', 'R095', '00-00-03', 'ASTORIA DITMARS')
WARNING. Abnormal entry count found on day 2016-12-03: -10366
WARNING. Abnormal entry count found on day 2016-12-03: -10366
WARNING. Abnormal entry count found on day 2016-12-10: -10247
WARNING. Abnormal entry count found on day 2016-12-10: -10247
WARNING. Abnormal entry count found on day 2016-12-17: -9469
WARNING. Abnormal entry count found on day 2016-12-17: -9469
WARNING. Abnormal entry count found on day 2016-12-24: -6230
WARNING. Abnormal entry count found on day 2016-12-24: -6230
Processing turnstile ('R188', 'R037', '00-06-00', '207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3294
WARNING. Abnormal entry count found on day 2016-12-03: -3294
WARNING. Abnormal entry count found on day 2016-12-10: -3217
WARNING. Abnormal entry count found on day 2016-12-10: -3217
WARNING. Abnormal entry count found on day 2016-12-17: -3591
WARNING. Abnormal entry count found on day 2016-12-17: -3591
WARNING. Abnormal entry count found on day 2016-12-24: -2612
WARNING. Abnormal entry count found on day 2016-12-24: -2612
Processing turnstile ('A030', 'R083', '01-03-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10039
WARNING. Abnormal entry count found on day 2016-12-03: -10039
WARNING. Abnormal entry count found on day 2016-12-10: -10983
WARNING. Abnormal entry count found on day 2016-12-10: -10983
WARNING. Abnormal entry count found on day 2016-12-17: -8292
WARNING. Abnormal entry count found on day 2016-12-17: -8292
WARNING. Abnormal entry count found on day 2016-12-24: -5795
WARNING. Abnormal entry count found on day 2016-12-24: -5795
Processing turnstile ('PTH01', 'R549', '00-01-05', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -10
WARNING. Abnormal entry count found on day 2016-12-03: -10
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-17: -9
WARNING. Abnormal entry count found on day 2016-12-17: -9
WARNING. Abnormal entry count found on day 2016-12-24: -16
WARNING. Abnormal entry count found on day 2016-12-24: -16
Processing turnstile ('R174', 'R034', '00-00-01', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9699
WARNING. Abnormal entry count found on day 2016-12-03: -9699
WARNING. Abnormal entry count found on day 2016-12-10: -8515
WARNING. Abnormal entry count found on day 2016-12-10: -8515
WARNING. Abnormal entry count found on day 2016-12-17: -7946
WARNING. Abnormal entry count found on day 2016-12-17: -7946
WARNING. Abnormal entry count found on day 2016-12-24: -6123
WARNING. Abnormal entry count found on day 2016-12-24: -6123
Processing turnstile ('N067', 'R012', '00-05-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -8611
WARNING. Abnormal entry count found on day 2016-12-03: -8611
WARNING. Abnormal entry count found on day 2016-12-10: -8391
WARNING. Abnormal entry count found on day 2016-12-10: -8391
WARNING. Abnormal entry count found on day 2016-12-17: -8601
WARNING. Abnormal entry count found on day 2016-12-17: -8601
WARNING. Abnormal entry count found on day 2016-12-24: -8972
WARNING. Abnormal entry count found on day 2016-12-24: -8972
Processing turnstile ('N504', 'R021', '02-06-01', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -5400
WARNING. Abnormal entry count found on day 2016-12-03: -5400
WARNING. Abnormal entry count found on day 2016-12-10: -5273
WARNING. Abnormal entry count found on day 2016-12-10: -5273
WARNING. Abnormal entry count found on day 2016-12-17: -5331
WARNING. Abnormal entry count found on day 2016-12-17: -5331
WARNING. Abnormal entry count found on day 2016-12-24: -3904
WARNING. Abnormal entry count found on day 2016-12-24: -3904
Processing turnstile ('N521', 'R300', '01-00-02', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12487
WARNING. Abnormal entry count found on day 2016-12-03: -12487
WARNING. Abnormal entry count found on day 2016-12-10: -12206
WARNING. Abnormal entry count found on day 2016-12-10: -12206
WARNING. Abnormal entry count found on day 2016-12-17: -11117
WARNING. Abnormal entry count found on day 2016-12-17: -11117
WARNING. Abnormal entry count found on day 2016-12-24: -9273
WARNING. Abnormal entry count found on day 2016-12-24: -9273
Processing turnstile ('R323', 'R387', '00-00-01', 'WEST FARMS SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -6714
WARNING. Abnormal entry count found on day 2016-12-03: -6714
WARNING. Abnormal entry count found on day 2016-12-10: -6282
WARNING. Abnormal entry count found on day 2016-12-10: -6282
WARNING. Abnormal entry count found on day 2016-12-17: -6584
WARNING. Abnormal entry count found on day 2016-12-17: -6584
WARNING. Abnormal entry count found on day 2016-12-24: -5415
WARNING. Abnormal entry count found on day 2016-12-24: -5415
Processing turnstile ('N505', 'R022', '02-06-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -16621
WARNING. Abnormal entry count found on day 2016-12-03: -16621
WARNING. Abnormal entry count found on day 2016-12-10: -15259
WARNING. Abnormal entry count found on day 2016-12-10: -15259
WARNING. Abnormal entry count found on day 2016-12-17: -16418
WARNING. Abnormal entry count found on day 2016-12-17: -16418
WARNING. Abnormal entry count found on day 2016-12-24: -10857
WARNING. Abnormal entry count found on day 2016-12-24: -10857
Processing turnstile ('N510', 'R163', '02-00-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10540
WARNING. Abnormal entry count found on day 2016-12-03: -10540
WARNING. Abnormal entry count found on day 2016-12-10: -10707
WARNING. Abnormal entry count found on day 2016-12-10: -10707
WARNING. Abnormal entry count found on day 2016-12-17: -8597
WARNING. Abnormal entry count found on day 2016-12-17: -8597
WARNING. Abnormal entry count found on day 2016-12-24: -5680
WARNING. Abnormal entry count found on day 2016-12-24: -5680
Processing turnstile ('N505', 'R022', '02-00-08', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12724
WARNING. Abnormal entry count found on day 2016-12-03: -12724
WARNING. Abnormal entry count found on day 2016-12-10: -12881
WARNING. Abnormal entry count found on day 2016-12-10: -12881
WARNING. Abnormal entry count found on day 2016-12-17: -10815
WARNING. Abnormal entry count found on day 2016-12-17: -10815
WARNING. Abnormal entry count found on day 2016-12-24: -9923
WARNING. Abnormal entry count found on day 2016-12-24: -9923
Processing turnstile ('H016', 'R250', '00-00-00', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3851
WARNING. Abnormal entry count found on day 2016-12-03: -3851
WARNING. Abnormal entry count found on day 2016-12-10: -3879
WARNING. Abnormal entry count found on day 2016-12-10: -3879
WARNING. Abnormal entry count found on day 2016-12-17: -3954
WARNING. Abnormal entry count found on day 2016-12-17: -3954
WARNING. Abnormal entry count found on day 2016-12-24: -2677
WARNING. Abnormal entry count found on day 2016-12-24: -2677
Processing turnstile ('N507', 'R023', '00-03-05', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -27520
WARNING. Abnormal entry count found on day 2016-12-03: -27520
WARNING. Abnormal entry count found on day 2016-12-10: -27877
WARNING. Abnormal entry count found on day 2016-12-10: -27877
WARNING. Abnormal entry count found on day 2016-12-17: -25869
WARNING. Abnormal entry count found on day 2016-12-17: -25869
WARNING. Abnormal entry count found on day 2016-12-24: -17404
WARNING. Abnormal entry count found on day 2016-12-24: -17404
Processing turnstile ('PTH13', 'R541', '00-04-00', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-09: 334549
WARNING. Abnormal entry count found on day 2016-12-03: -341251
WARNING. Abnormal entry count found on day 2016-12-09: 334549
WARNING. Abnormal entry count found on day 2016-12-03: -341251
WARNING. Abnormal entry count found on day 2016-12-09: 334549
WARNING. Abnormal entry count found on day 2016-12-10: -332565
WARNING. Abnormal entry count found on day 2016-12-10: -9410
WARNING. Abnormal entry count found on day 2016-12-10: -9410
WARNING. Abnormal entry count found on day 2016-12-17: -7810
WARNING. Abnormal entry count found on day 2016-12-17: -7810
WARNING. Abnormal entry count found on day 2016-12-24: -8056
WARNING. Abnormal entry count found on day 2016-12-24: -8056
Processing turnstile ('R112', 'R027', '02-00-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4874
WARNING. Abnormal entry count found on day 2016-12-03: -4874
WARNING. Abnormal entry count found on day 2016-12-10: -4722
WARNING. Abnormal entry count found on day 2016-12-10: -4722
WARNING. Abnormal entry count found on day 2016-12-17: -3671
WARNING. Abnormal entry count found on day 2016-12-17: -3671
WARNING. Abnormal entry count found on day 2016-12-24: -2214
WARNING. Abnormal entry count found on day 2016-12-24: -2214
Processing turnstile ('R529', 'R208', '00-00-04', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-12-03: -22904
WARNING. Abnormal entry count found on day 2016-12-03: -22904
WARNING. Abnormal entry count found on day 2016-12-10: -21288
WARNING. Abnormal entry count found on day 2016-12-10: -21288
WARNING. Abnormal entry count found on day 2016-12-17: -21577
WARNING. Abnormal entry count found on day 2016-12-17: -21577
WARNING. Abnormal entry count found on day 2016-12-24: -19278
WARNING. Abnormal entry count found on day 2016-12-24: -19278
Processing turnstile ('N600', 'R302', '00-00-01', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3883
WARNING. Abnormal entry count found on day 2016-12-03: -3883
WARNING. Abnormal entry count found on day 2016-12-10: -3890
WARNING. Abnormal entry count found on day 2016-12-10: -3890
WARNING. Abnormal entry count found on day 2016-12-17: -3936
WARNING. Abnormal entry count found on day 2016-12-17: -3936
WARNING. Abnormal entry count found on day 2016-12-24: -3835
WARNING. Abnormal entry count found on day 2016-12-24: -3835
Processing turnstile ('N512', 'R163', '00-00-03', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8654
WARNING. Abnormal entry count found on day 2016-12-03: -8654
WARNING. Abnormal entry count found on day 2016-12-10: -8455
WARNING. Abnormal entry count found on day 2016-12-10: -8455
WARNING. Abnormal entry count found on day 2016-12-17: -8018
WARNING. Abnormal entry count found on day 2016-12-17: -8018
WARNING. Abnormal entry count found on day 2016-12-24: -5474
WARNING. Abnormal entry count found on day 2016-12-24: -5474
Processing turnstile ('R610', 'R057', '00-04-05', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -4906
WARNING. Abnormal entry count found on day 2016-12-03: -4906
WARNING. Abnormal entry count found on day 2016-12-10: -5007
WARNING. Abnormal entry count found on day 2016-12-10: -5007
WARNING. Abnormal entry count found on day 2016-12-17: -4877
WARNING. Abnormal entry count found on day 2016-12-17: -4877
WARNING. Abnormal entry count found on day 2016-12-24: -2935
WARNING. Abnormal entry count found on day 2016-12-24: -2935
Processing turnstile ('N309A', 'R140', '00-02-01', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -934
WARNING. Abnormal entry count found on day 2016-12-03: -934
WARNING. Abnormal entry count found on day 2016-12-10: -711
WARNING. Abnormal entry count found on day 2016-12-10: -711
WARNING. Abnormal entry count found on day 2016-12-17: -557
WARNING. Abnormal entry count found on day 2016-12-17: -557
WARNING. Abnormal entry count found on day 2016-12-24: -295
WARNING. Abnormal entry count found on day 2016-12-24: -295
Processing turnstile ('R608', 'R056', '00-03-01', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5259
WARNING. Abnormal entry count found on day 2016-12-03: -5259
WARNING. Abnormal entry count found on day 2016-12-10: -5361
WARNING. Abnormal entry count found on day 2016-12-10: -5361
WARNING. Abnormal entry count found on day 2016-12-17: -5497
WARNING. Abnormal entry count found on day 2016-12-17: -5497
WARNING. Abnormal entry count found on day 2016-12-24: -3948
WARNING. Abnormal entry count found on day 2016-12-24: -3948
Processing turnstile ('N528', 'R257', '01-06-01', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -6110
WARNING. Abnormal entry count found on day 2016-12-03: -6110
WARNING. Abnormal entry count found on day 2016-12-10: -4827
WARNING. Abnormal entry count found on day 2016-12-10: -4827
WARNING. Abnormal entry count found on day 2016-12-19: -3744
WARNING. Abnormal entry count found on day 2016-12-19: -3744
WARNING. Abnormal entry count found on day 2016-12-24: -4189
WARNING. Abnormal entry count found on day 2016-12-24: -4189
Processing turnstile ('R250', 'R179', '00-00-0B', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -33784
WARNING. Abnormal entry count found on day 2016-12-03: -33784
WARNING. Abnormal entry count found on day 2016-12-10: -30057
WARNING. Abnormal entry count found on day 2016-12-10: -30057
WARNING. Abnormal entry count found on day 2016-12-17: -29219
WARNING. Abnormal entry count found on day 2016-12-17: -29219
WARNING. Abnormal entry count found on day 2016-12-24: -23693
WARNING. Abnormal entry count found on day 2016-12-24: -23693
Processing turnstile ('N548', 'R420', '00-00-02', 'DITMAS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9976
WARNING. Abnormal entry count found on day 2016-12-03: -9976
WARNING. Abnormal entry count found on day 2016-12-10: -8400
WARNING. Abnormal entry count found on day 2016-12-10: -8400
WARNING. Abnormal entry count found on day 2016-12-17: -8161
WARNING. Abnormal entry count found on day 2016-12-17: -8161
WARNING. Abnormal entry count found on day 2016-12-24: -6670
WARNING. Abnormal entry count found on day 2016-12-24: -6670
Processing turnstile ('N331', 'R219', '00-00-01', '67 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7171
WARNING. Abnormal entry count found on day 2016-12-03: -7171
WARNING. Abnormal entry count found on day 2016-12-10: -6896
WARNING. Abnormal entry count found on day 2016-12-10: -6896
WARNING. Abnormal entry count found on day 2016-12-17: -6489
WARNING. Abnormal entry count found on day 2016-12-17: -6489
WARNING. Abnormal entry count found on day 2016-12-24: -4507
WARNING. Abnormal entry count found on day 2016-12-24: -4507
Processing turnstile ('PTH05', 'R543', '00-01-04', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -5508
WARNING. Abnormal entry count found on day 2016-12-03: -5508
WARNING. Abnormal entry count found on day 2016-12-10: -5181
WARNING. Abnormal entry count found on day 2016-12-10: -5181
WARNING. Abnormal entry count found on day 2016-12-17: -4731
WARNING. Abnormal entry count found on day 2016-12-17: -4731
WARNING. Abnormal entry count found on day 2016-12-24: -3237
WARNING. Abnormal entry count found on day 2016-12-24: -3237
Processing turnstile ('JFK01', 'R535', '00-00-01', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -334
WARNING. Abnormal entry count found on day 2016-12-03: -334
WARNING. Abnormal entry count found on day 2016-12-10: -311
WARNING. Abnormal entry count found on day 2016-12-10: -311
WARNING. Abnormal entry count found on day 2016-12-17: -525
WARNING. Abnormal entry count found on day 2016-12-17: -525
WARNING. Abnormal entry count found on day 2016-12-24: -376
WARNING. Abnormal entry count found on day 2016-12-24: -376
Processing turnstile ('B020', 'R263', '00-06-03', 'AVENUE H')
Processing turnstile ('N075', 'R111', '01-05-01', '23 ST')
Processing turnstile ('R310', 'R053', '01-00-03', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12468
WARNING. Abnormal entry count found on day 2016-12-03: -12468
WARNING. Abnormal entry count found on day 2016-12-10: -11443
WARNING. Abnormal entry count found on day 2016-12-10: -11443
WARNING. Abnormal entry count found on day 2016-12-17: -11717
WARNING. Abnormal entry count found on day 2016-12-17: -11717
WARNING. Abnormal entry count found on day 2016-12-24: -8458
WARNING. Abnormal entry count found on day 2016-12-24: -8458
Processing turnstile ('PTH05', 'R543', '00-04-02', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -9411
WARNING. Abnormal entry count found on day 2016-12-03: -9411
WARNING. Abnormal entry count found on day 2016-12-10: -7920
WARNING. Abnormal entry count found on day 2016-12-10: -7920
WARNING. Abnormal entry count found on day 2016-12-17: -7162
WARNING. Abnormal entry count found on day 2016-12-17: -7162
WARNING. Abnormal entry count found on day 2016-12-24: -5784
WARNING. Abnormal entry count found on day 2016-12-24: -5784
Processing turnstile ('R412', 'R146', '00-03-01', 'HUNTS POINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5388
WARNING. Abnormal entry count found on day 2016-12-03: -5388
WARNING. Abnormal entry count found on day 2016-12-10: -5092
WARNING. Abnormal entry count found on day 2016-12-10: -5092
WARNING. Abnormal entry count found on day 2016-12-17: -5036
WARNING. Abnormal entry count found on day 2016-12-17: -5036
WARNING. Abnormal entry count found on day 2016-12-24: -4093
WARNING. Abnormal entry count found on day 2016-12-24: -4093
Processing turnstile ('A043', 'R462', '00-00-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10021
WARNING. Abnormal entry count found on day 2016-12-03: -10021
WARNING. Abnormal entry count found on day 2016-12-10: -9770
WARNING. Abnormal entry count found on day 2016-12-10: -9770
WARNING. Abnormal entry count found on day 2016-12-17: -9571
WARNING. Abnormal entry count found on day 2016-12-17: -9571
WARNING. Abnormal entry count found on day 2016-12-24: -6529
WARNING. Abnormal entry count found on day 2016-12-24: -6529
Processing turnstile ('JFK03', 'R536', '00-00-02', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-03: -3089
WARNING. Abnormal entry count found on day 2016-12-03: -3089
WARNING. Abnormal entry count found on day 2016-12-10: -2993
WARNING. Abnormal entry count found on day 2016-12-10: -2993
WARNING. Abnormal entry count found on day 2016-12-17: -4667
WARNING. Abnormal entry count found on day 2016-12-17: -4667
WARNING. Abnormal entry count found on day 2016-12-24: -3613
WARNING. Abnormal entry count found on day 2016-12-24: -3613
Processing turnstile ('R618', 'R058', '01-00-00', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1270
WARNING. Abnormal entry count found on day 2016-12-03: -1270
WARNING. Abnormal entry count found on day 2016-12-10: -1224
WARNING. Abnormal entry count found on day 2016-12-10: -1224
WARNING. Abnormal entry count found on day 2016-12-17: -1175
WARNING. Abnormal entry count found on day 2016-12-17: -1175
WARNING. Abnormal entry count found on day 2016-12-24: -858
WARNING. Abnormal entry count found on day 2016-12-24: -858
Processing turnstile ('H019', 'R294', '00-00-02', 'MORGAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6620
WARNING. Abnormal entry count found on day 2016-12-03: -6620
WARNING. Abnormal entry count found on day 2016-12-10: -6636
WARNING. Abnormal entry count found on day 2016-12-10: -6636
WARNING. Abnormal entry count found on day 2016-12-17: -5870
WARNING. Abnormal entry count found on day 2016-12-17: -5870
WARNING. Abnormal entry count found on day 2016-12-24: -4287
WARNING. Abnormal entry count found on day 2016-12-24: -4287
Processing turnstile ('D005', 'R398', '00-00-01', 'NEW UTRECHT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6527
WARNING. Abnormal entry count found on day 2016-12-03: -6527
WARNING. Abnormal entry count found on day 2016-12-10: -6304
WARNING. Abnormal entry count found on day 2016-12-10: -6304
WARNING. Abnormal entry count found on day 2016-12-17: -5850
WARNING. Abnormal entry count found on day 2016-12-17: -5850
WARNING. Abnormal entry count found on day 2016-12-24: -4494
WARNING. Abnormal entry count found on day 2016-12-24: -4494
Processing turnstile ('R516', 'R291', '00-00-02', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13686
WARNING. Abnormal entry count found on day 2016-12-03: -13686
WARNING. Abnormal entry count found on day 2016-12-10: -10362
WARNING. Abnormal entry count found on day 2016-12-10: -10362
WARNING. Abnormal entry count found on day 2016-12-17: -7198
WARNING. Abnormal entry count found on day 2016-12-17: -7198
WARNING. Abnormal entry count found on day 2016-12-24: -3504
WARNING. Abnormal entry count found on day 2016-12-24: -3504
Processing turnstile ('N519A', 'R461', '01-06-01', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -6285
WARNING. Abnormal entry count found on day 2016-12-03: -6285
WARNING. Abnormal entry count found on day 2016-12-10: -6158
WARNING. Abnormal entry count found on day 2016-12-10: -6158
WARNING. Abnormal entry count found on day 2016-12-17: -6128
WARNING. Abnormal entry count found on day 2016-12-17: -6128
WARNING. Abnormal entry count found on day 2016-12-24: -5427
WARNING. Abnormal entry count found on day 2016-12-24: -5427
Processing turnstile ('R610', 'R057', '00-04-03', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -5863
WARNING. Abnormal entry count found on day 2016-12-03: -5863
WARNING. Abnormal entry count found on day 2016-12-10: -6165
WARNING. Abnormal entry count found on day 2016-12-10: -6165
WARNING. Abnormal entry count found on day 2016-12-17: -6179
WARNING. Abnormal entry count found on day 2016-12-17: -6179
WARNING. Abnormal entry count found on day 2016-12-24: -4213
WARNING. Abnormal entry count found on day 2016-12-24: -4213
Processing turnstile ('R135', 'R031', '01-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11230
WARNING. Abnormal entry count found on day 2016-12-03: -11230
WARNING. Abnormal entry count found on day 2016-12-10: -11507
WARNING. Abnormal entry count found on day 2016-12-10: -11507
WARNING. Abnormal entry count found on day 2016-12-17: -9745
WARNING. Abnormal entry count found on day 2016-12-17: -9745
WARNING. Abnormal entry count found on day 2016-12-24: -5638
WARNING. Abnormal entry count found on day 2016-12-24: -5638
Processing turnstile ('N181A', 'R464', '00-06-02', 'AQUEDUCT RACETR')
WARNING. Abnormal entry count found on day 2016-12-03: -2353
WARNING. Abnormal entry count found on day 2016-12-03: -2353
WARNING. Abnormal entry count found on day 2016-12-10: -1919
WARNING. Abnormal entry count found on day 2016-12-10: -1919
WARNING. Abnormal entry count found on day 2016-12-17: -1971
WARNING. Abnormal entry count found on day 2016-12-17: -1971
WARNING. Abnormal entry count found on day 2016-12-24: -2263
WARNING. Abnormal entry count found on day 2016-12-24: -2263
Processing turnstile ('H001', 'R175', '00-00-04', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9179
WARNING. Abnormal entry count found on day 2016-12-03: -9179
WARNING. Abnormal entry count found on day 2016-12-10: -9635
WARNING. Abnormal entry count found on day 2016-12-10: -9635
WARNING. Abnormal entry count found on day 2016-12-17: -8823
WARNING. Abnormal entry count found on day 2016-12-17: -8823
WARNING. Abnormal entry count found on day 2016-12-24: -7458
WARNING. Abnormal entry count found on day 2016-12-24: -7458
Processing turnstile ('R728', 'R226', '00-00-02', 'GUN HILL RD')
WARNING. Abnormal entry count found on day 2016-12-03: -11164
WARNING. Abnormal entry count found on day 2016-12-03: -11164
WARNING. Abnormal entry count found on day 2016-12-10: -10277
WARNING. Abnormal entry count found on day 2016-12-10: -10277
WARNING. Abnormal entry count found on day 2016-12-17: -9773
WARNING. Abnormal entry count found on day 2016-12-17: -9773
WARNING. Abnormal entry count found on day 2016-12-24: -8954
WARNING. Abnormal entry count found on day 2016-12-24: -8954
Processing turnstile ('R143', 'R032', '02-03-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20122
WARNING. Abnormal entry count found on day 2016-12-03: -20122
WARNING. Abnormal entry count found on day 2016-12-10: -19298
WARNING. Abnormal entry count found on day 2016-12-10: -19298
WARNING. Abnormal entry count found on day 2016-12-17: -18674
WARNING. Abnormal entry count found on day 2016-12-17: -18674
WARNING. Abnormal entry count found on day 2016-12-24: -14153
WARNING. Abnormal entry count found on day 2016-12-24: -14153
Processing turnstile ('A084', 'R125', '01-06-00', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1706
WARNING. Abnormal entry count found on day 2016-12-03: -1706
WARNING. Abnormal entry count found on day 2016-12-10: -2081
WARNING. Abnormal entry count found on day 2016-12-10: -2081
WARNING. Abnormal entry count found on day 2016-12-17: -1526
WARNING. Abnormal entry count found on day 2016-12-17: -1526
WARNING. Abnormal entry count found on day 2016-12-24: -1494
WARNING. Abnormal entry count found on day 2016-12-24: -1494
Processing turnstile ('N507', 'R023', '00-00-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -1494
WARNING. Abnormal entry count found on day 2016-12-03: -1494
WARNING. Abnormal entry count found on day 2016-12-10: -1602
WARNING. Abnormal entry count found on day 2016-12-10: -1602
WARNING. Abnormal entry count found on day 2016-12-17: -1616
WARNING. Abnormal entry count found on day 2016-12-17: -1616
WARNING. Abnormal entry count found on day 2016-12-24: -1229
WARNING. Abnormal entry count found on day 2016-12-24: -1229
Processing turnstile ('N333B', 'R141', '02-01-01', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -3469
WARNING. Abnormal entry count found on day 2016-12-03: -3469
WARNING. Abnormal entry count found on day 2016-12-10: -3340
WARNING. Abnormal entry count found on day 2016-12-10: -3340
WARNING. Abnormal entry count found on day 2016-12-17: -3368
WARNING. Abnormal entry count found on day 2016-12-17: -3368
WARNING. Abnormal entry count found on day 2016-12-24: -2444
WARNING. Abnormal entry count found on day 2016-12-24: -2444
Processing turnstile ('R417', 'R222', '00-03-00', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -1589
WARNING. Abnormal entry count found on day 2016-12-03: -1589
WARNING. Abnormal entry count found on day 2016-12-10: -1558
WARNING. Abnormal entry count found on day 2016-12-10: -1558
WARNING. Abnormal entry count found on day 2016-12-17: -1683
WARNING. Abnormal entry count found on day 2016-12-17: -1683
WARNING. Abnormal entry count found on day 2016-12-24: -1302
WARNING. Abnormal entry count found on day 2016-12-24: -1302
Processing turnstile ('R128', 'R105', '01-03-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4447
WARNING. Abnormal entry count found on day 2016-12-03: -4447
WARNING. Abnormal entry count found on day 2016-12-10: -3991
WARNING. Abnormal entry count found on day 2016-12-10: -3991
WARNING. Abnormal entry count found on day 2016-12-17: -3740
WARNING. Abnormal entry count found on day 2016-12-17: -3740
WARNING. Abnormal entry count found on day 2016-12-24: -2454
WARNING. Abnormal entry count found on day 2016-12-24: -2454
Processing turnstile ('N523', 'R300', '00-00-02', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15550
WARNING. Abnormal entry count found on day 2016-12-03: -15550
WARNING. Abnormal entry count found on day 2016-12-10: -15823
WARNING. Abnormal entry count found on day 2016-12-10: -15823
WARNING. Abnormal entry count found on day 2016-12-17: -15315
WARNING. Abnormal entry count found on day 2016-12-17: -15315
WARNING. Abnormal entry count found on day 2016-12-24: -11215
WARNING. Abnormal entry count found on day 2016-12-24: -11215
Processing turnstile ('R116', 'R030', '00-05-02', 'CHAMBERS ST')
Processing turnstile ('R201', 'R041', '00-05-00', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('R240', 'R047', '00-00-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -26798
WARNING. Abnormal entry count found on day 2016-12-03: -26798
WARNING. Abnormal entry count found on day 2016-12-10: -25687
WARNING. Abnormal entry count found on day 2016-12-10: -25687
WARNING. Abnormal entry count found on day 2016-12-17: -24297
WARNING. Abnormal entry count found on day 2016-12-17: -24297
WARNING. Abnormal entry count found on day 2016-12-24: -14757
WARNING. Abnormal entry count found on day 2016-12-24: -14757
Processing turnstile ('PTH05', 'R543', '00-00-00', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -4614
WARNING. Abnormal entry count found on day 2016-12-03: -4614
WARNING. Abnormal entry count found on day 2016-12-10: -4418
WARNING. Abnormal entry count found on day 2016-12-10: -4418
WARNING. Abnormal entry count found on day 2016-12-17: -2839
WARNING. Abnormal entry count found on day 2016-12-17: -2839
WARNING. Abnormal entry count found on day 2016-12-24: -1857
WARNING. Abnormal entry count found on day 2016-12-24: -1857
Processing turnstile ('N060', 'R010', '01-00-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -10877
WARNING. Abnormal entry count found on day 2016-12-03: -10877
WARNING. Abnormal entry count found on day 2016-12-10: -9297
WARNING. Abnormal entry count found on day 2016-12-10: -9297
WARNING. Abnormal entry count found on day 2016-12-17: -10266
WARNING. Abnormal entry count found on day 2016-12-17: -10266
WARNING. Abnormal entry count found on day 2016-12-24: -9679
WARNING. Abnormal entry count found on day 2016-12-24: -9679
Processing turnstile ('R532', 'R328', '00-06-01', 'METS-WILLETS PT')
Processing turnstile ('A058', 'R001', '01-00-01', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -5724
WARNING. Abnormal entry count found on day 2016-12-03: -5724
WARNING. Abnormal entry count found on day 2016-12-10: -5371
WARNING. Abnormal entry count found on day 2016-12-10: -5371
WARNING. Abnormal entry count found on day 2016-12-17: -5303
WARNING. Abnormal entry count found on day 2016-12-17: -5303
WARNING. Abnormal entry count found on day 2016-12-24: -4349
WARNING. Abnormal entry count found on day 2016-12-24: -4349
Processing turnstile ('D005', 'R398', '00-06-00', 'NEW UTRECHT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5860
WARNING. Abnormal entry count found on day 2016-12-03: -5860
WARNING. Abnormal entry count found on day 2016-12-10: -5579
WARNING. Abnormal entry count found on day 2016-12-10: -5579
WARNING. Abnormal entry count found on day 2016-12-17: -6162
WARNING. Abnormal entry count found on day 2016-12-17: -6162
WARNING. Abnormal entry count found on day 2016-12-24: -7187
WARNING. Abnormal entry count found on day 2016-12-24: -7187
Processing turnstile ('B027', 'R136', '00-00-00', 'SHEEPSHEAD BAY')
WARNING. Abnormal entry count found on day 2016-12-03: -4810
WARNING. Abnormal entry count found on day 2016-12-03: -4810
WARNING. Abnormal entry count found on day 2016-12-10: -4780
WARNING. Abnormal entry count found on day 2016-12-10: -4780
WARNING. Abnormal entry count found on day 2016-12-17: -4731
WARNING. Abnormal entry count found on day 2016-12-17: -4731
WARNING. Abnormal entry count found on day 2016-12-24: -3845
WARNING. Abnormal entry count found on day 2016-12-24: -3845
Processing turnstile ('H006', 'R330', '01-00-01', '3 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7673
WARNING. Abnormal entry count found on day 2016-12-03: -7673
WARNING. Abnormal entry count found on day 2016-12-10: -7707
WARNING. Abnormal entry count found on day 2016-12-10: -7707
WARNING. Abnormal entry count found on day 2016-12-17: -6736
WARNING. Abnormal entry count found on day 2016-12-17: -6736
WARNING. Abnormal entry count found on day 2016-12-24: -4444
WARNING. Abnormal entry count found on day 2016-12-24: -4444
Processing turnstile ('N324', 'R018', '00-03-00', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -16709
WARNING. Abnormal entry count found on day 2016-12-03: -16709
WARNING. Abnormal entry count found on day 2016-12-10: -16769
WARNING. Abnormal entry count found on day 2016-12-10: -16769
WARNING. Abnormal entry count found on day 2016-12-17: -17467
WARNING. Abnormal entry count found on day 2016-12-17: -17467
WARNING. Abnormal entry count found on day 2016-12-24: -15140
WARNING. Abnormal entry count found on day 2016-12-24: -15140
Processing turnstile ('R600', 'R224', '00-00-01', 'CLARK ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6652
WARNING. Abnormal entry count found on day 2016-12-03: -6652
WARNING. Abnormal entry count found on day 2016-12-10: -6427
WARNING. Abnormal entry count found on day 2016-12-10: -6427
WARNING. Abnormal entry count found on day 2016-12-17: -5861
WARNING. Abnormal entry count found on day 2016-12-17: -5861
WARNING. Abnormal entry count found on day 2016-12-24: -4584
WARNING. Abnormal entry count found on day 2016-12-24: -4584
Processing turnstile ('R331', 'R364', '00-00-00', 'GUN HILL RD')
WARNING. Abnormal entry count found on day 2016-12-03: -11395
WARNING. Abnormal entry count found on day 2016-12-03: -11395
WARNING. Abnormal entry count found on day 2016-12-10: -11495
WARNING. Abnormal entry count found on day 2016-12-10: -11495
WARNING. Abnormal entry count found on day 2016-12-17: -11231
WARNING. Abnormal entry count found on day 2016-12-17: -11231
WARNING. Abnormal entry count found on day 2016-12-24: -8925
WARNING. Abnormal entry count found on day 2016-12-24: -8925
Processing turnstile ('N309A', 'R140', '00-05-01', 'QUEENS PLAZA')
Processing turnstile ('R308', 'R344', '00-00-02', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9825
WARNING. Abnormal entry count found on day 2016-12-03: -9825
WARNING. Abnormal entry count found on day 2016-12-10: -9399
WARNING. Abnormal entry count found on day 2016-12-10: -9399
WARNING. Abnormal entry count found on day 2016-12-17: -9288
WARNING. Abnormal entry count found on day 2016-12-17: -9288
WARNING. Abnormal entry count found on day 2016-12-24: -7091
WARNING. Abnormal entry count found on day 2016-12-24: -7091
Processing turnstile ('R550', 'R072', '00-00-03', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -404
WARNING. Abnormal entry count found on day 2016-12-03: -404
WARNING. Abnormal entry count found on day 2016-12-10: -401
WARNING. Abnormal entry count found on day 2016-12-10: -401
WARNING. Abnormal entry count found on day 2016-12-17: -348
WARNING. Abnormal entry count found on day 2016-12-17: -348
WARNING. Abnormal entry count found on day 2016-12-24: -412
WARNING. Abnormal entry count found on day 2016-12-24: -412
Processing turnstile ('R134', 'R272', '01-00-01', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6538
WARNING. Abnormal entry count found on day 2016-12-03: -6538
WARNING. Abnormal entry count found on day 2016-12-10: -5591
WARNING. Abnormal entry count found on day 2016-12-10: -5591
WARNING. Abnormal entry count found on day 2016-12-17: -5325
WARNING. Abnormal entry count found on day 2016-12-17: -5325
WARNING. Abnormal entry count found on day 2016-12-24: -3655
WARNING. Abnormal entry count found on day 2016-12-24: -3655
Processing turnstile ('N080', 'R138', '00-03-00', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12536
WARNING. Abnormal entry count found on day 2016-12-03: -12536
WARNING. Abnormal entry count found on day 2016-12-10: -12387
WARNING. Abnormal entry count found on day 2016-12-10: -12387
WARNING. Abnormal entry count found on day 2016-12-17: -11501
WARNING. Abnormal entry count found on day 2016-12-17: -11501
WARNING. Abnormal entry count found on day 2016-12-24: -11029
WARNING. Abnormal entry count found on day 2016-12-24: -11029
Processing turnstile ('R168A', 'R168', '00-00-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12669
WARNING. Abnormal entry count found on day 2016-12-03: -12669
WARNING. Abnormal entry count found on day 2016-12-10: -12509
WARNING. Abnormal entry count found on day 2016-12-10: -12509
WARNING. Abnormal entry count found on day 2016-12-17: -11255
WARNING. Abnormal entry count found on day 2016-12-17: -11255
WARNING. Abnormal entry count found on day 2016-12-24: -8294
WARNING. Abnormal entry count found on day 2016-12-24: -8294
Processing turnstile ('N101', 'R252', '01-00-01', 'HIGH ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6119
WARNING. Abnormal entry count found on day 2016-12-03: -6119
WARNING. Abnormal entry count found on day 2016-12-10: -6000
WARNING. Abnormal entry count found on day 2016-12-10: -6000
WARNING. Abnormal entry count found on day 2016-12-17: -4944
WARNING. Abnormal entry count found on day 2016-12-17: -4944
WARNING. Abnormal entry count found on day 2016-12-24: -3787
WARNING. Abnormal entry count found on day 2016-12-24: -3787
Processing turnstile ('N409', 'R268', '00-00-00', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3120
WARNING. Abnormal entry count found on day 2016-12-03: -3120
WARNING. Abnormal entry count found on day 2016-12-10: -3107
WARNING. Abnormal entry count found on day 2016-12-10: -3107
WARNING. Abnormal entry count found on day 2016-12-17: -3031
WARNING. Abnormal entry count found on day 2016-12-17: -3031
WARNING. Abnormal entry count found on day 2016-12-24: -2099
WARNING. Abnormal entry count found on day 2016-12-24: -2099
Processing turnstile ('N333', 'R141', '01-00-00', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -10325
WARNING. Abnormal entry count found on day 2016-12-03: -10325
WARNING. Abnormal entry count found on day 2016-12-10: -9905
WARNING. Abnormal entry count found on day 2016-12-10: -9905
WARNING. Abnormal entry count found on day 2016-12-17: -9411
WARNING. Abnormal entry count found on day 2016-12-17: -9411
WARNING. Abnormal entry count found on day 2016-12-24: -6775
WARNING. Abnormal entry count found on day 2016-12-24: -6775
Processing turnstile ('S102', 'R165', '00-05-00', 'TOMPKINSVILLE')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
Processing turnstile ('C020', 'R233', '00-00-00', '53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11611
WARNING. Abnormal entry count found on day 2016-12-03: -11611
WARNING. Abnormal entry count found on day 2016-12-10: -12078
WARNING. Abnormal entry count found on day 2016-12-10: -12078
WARNING. Abnormal entry count found on day 2016-12-17: -11879
WARNING. Abnormal entry count found on day 2016-12-17: -11879
WARNING. Abnormal entry count found on day 2016-12-24: -9936
WARNING. Abnormal entry count found on day 2016-12-24: -9936
Processing turnstile ('N525', 'R142', '01-00-00', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -11114
WARNING. Abnormal entry count found on day 2016-12-03: -11114
WARNING. Abnormal entry count found on day 2016-12-10: -3132
WARNING. Abnormal entry count found on day 2016-12-10: -3132
WARNING. Abnormal entry count found on day 2016-12-17: -10042
WARNING. Abnormal entry count found on day 2016-12-17: -10042
WARNING. Abnormal entry count found on day 2016-12-24: -7113
WARNING. Abnormal entry count found on day 2016-12-24: -7113
Processing turnstile ('R201', 'R041', '00-06-02', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -4539
WARNING. Abnormal entry count found on day 2016-12-03: -4539
WARNING. Abnormal entry count found on day 2016-12-10: -4458
WARNING. Abnormal entry count found on day 2016-12-10: -4458
WARNING. Abnormal entry count found on day 2016-12-17: -4023
WARNING. Abnormal entry count found on day 2016-12-17: -4023
WARNING. Abnormal entry count found on day 2016-12-24: -2495
WARNING. Abnormal entry count found on day 2016-12-24: -2495
Processing turnstile ('R629', 'R065', '00-00-02', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6517
WARNING. Abnormal entry count found on day 2016-12-03: -6517
WARNING. Abnormal entry count found on day 2016-12-10: -6454
WARNING. Abnormal entry count found on day 2016-12-10: -6454
WARNING. Abnormal entry count found on day 2016-12-17: -6553
WARNING. Abnormal entry count found on day 2016-12-17: -6553
WARNING. Abnormal entry count found on day 2016-12-24: -4723
WARNING. Abnormal entry count found on day 2016-12-24: -4723
Processing turnstile ('J007', 'R377', '00-00-02', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -19000
WARNING. Abnormal entry count found on day 2016-12-03: -19000
WARNING. Abnormal entry count found on day 2016-12-10: -17825
WARNING. Abnormal entry count found on day 2016-12-10: -17825
WARNING. Abnormal entry count found on day 2016-12-17: -17684
WARNING. Abnormal entry count found on day 2016-12-17: -17684
WARNING. Abnormal entry count found on day 2016-12-24: -14666
WARNING. Abnormal entry count found on day 2016-12-24: -14666
Processing turnstile ('A039', 'R085', '01-00-00', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -3250
WARNING. Abnormal entry count found on day 2016-12-03: -3250
WARNING. Abnormal entry count found on day 2016-12-10: -3516
WARNING. Abnormal entry count found on day 2016-12-10: -3516
WARNING. Abnormal entry count found on day 2016-12-17: -3235
WARNING. Abnormal entry count found on day 2016-12-17: -3235
WARNING. Abnormal entry count found on day 2016-12-24: -2680
WARNING. Abnormal entry count found on day 2016-12-24: -2680
Processing turnstile ('PTH05', 'R543', '00-04-04', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -1810
WARNING. Abnormal entry count found on day 2016-12-03: -1810
WARNING. Abnormal entry count found on day 2016-12-10: -3030
WARNING. Abnormal entry count found on day 2016-12-10: -3030
WARNING. Abnormal entry count found on day 2016-12-17: -3012
WARNING. Abnormal entry count found on day 2016-12-17: -3012
WARNING. Abnormal entry count found on day 2016-12-24: -2397
WARNING. Abnormal entry count found on day 2016-12-24: -2397
Processing turnstile ('K019', 'R413', '00-00-00', 'KNICKERBOCKER')
WARNING. Abnormal entry count found on day 2016-12-03: -2976
WARNING. Abnormal entry count found on day 2016-12-03: -2976
WARNING. Abnormal entry count found on day 2016-12-10: -2696
WARNING. Abnormal entry count found on day 2016-12-10: -2696
WARNING. Abnormal entry count found on day 2016-12-17: -2262
WARNING. Abnormal entry count found on day 2016-12-17: -2262
WARNING. Abnormal entry count found on day 2016-12-24: -1523
WARNING. Abnormal entry count found on day 2016-12-24: -1523
Processing turnstile ('N063A', 'R011', '00-05-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R203', 'R043', '00-05-03', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15836
WARNING. Abnormal entry count found on day 2016-12-03: -15836
WARNING. Abnormal entry count found on day 2016-12-10: -15102
WARNING. Abnormal entry count found on day 2016-12-10: -15102
WARNING. Abnormal entry count found on day 2016-12-17: -14976
WARNING. Abnormal entry count found on day 2016-12-17: -14976
WARNING. Abnormal entry count found on day 2016-12-24: -8946
WARNING. Abnormal entry count found on day 2016-12-24: -8946
Processing turnstile ('R143', 'R032', '02-00-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7282
WARNING. Abnormal entry count found on day 2016-12-03: -7282
WARNING. Abnormal entry count found on day 2016-12-10: -7276
WARNING. Abnormal entry count found on day 2016-12-10: -7276
WARNING. Abnormal entry count found on day 2016-12-17: -6446
WARNING. Abnormal entry count found on day 2016-12-17: -6446
WARNING. Abnormal entry count found on day 2016-12-24: -4386
WARNING. Abnormal entry count found on day 2016-12-24: -4386
Processing turnstile ('N094', 'R029', '01-06-03', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -20674
WARNING. Abnormal entry count found on day 2016-12-03: -20674
WARNING. Abnormal entry count found on day 2016-12-10: -18715
WARNING. Abnormal entry count found on day 2016-12-10: -18715
WARNING. Abnormal entry count found on day 2016-12-17: -14925
WARNING. Abnormal entry count found on day 2016-12-17: -14925
WARNING. Abnormal entry count found on day 2016-12-24: -10679
WARNING. Abnormal entry count found on day 2016-12-24: -10679
Processing turnstile ('A050', 'R088', '00-05-02', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -746
WARNING. Abnormal entry count found on day 2016-12-03: -746
WARNING. Abnormal entry count found on day 2016-12-10: -765
WARNING. Abnormal entry count found on day 2016-12-10: -765
WARNING. Abnormal entry count found on day 2016-12-17: -808
WARNING. Abnormal entry count found on day 2016-12-17: -808
WARNING. Abnormal entry count found on day 2016-12-24: -678
WARNING. Abnormal entry count found on day 2016-12-24: -678
Processing turnstile ('R515', 'R095', '00-00-00', 'ASTORIA DITMARS')
WARNING. Abnormal entry count found on day 2016-12-03: -11331
WARNING. Abnormal entry count found on day 2016-12-03: -11331
WARNING. Abnormal entry count found on day 2016-12-10: -10985
WARNING. Abnormal entry count found on day 2016-12-10: -10985
WARNING. Abnormal entry count found on day 2016-12-17: -10170
WARNING. Abnormal entry count found on day 2016-12-17: -10170
WARNING. Abnormal entry count found on day 2016-12-24: -7295
WARNING. Abnormal entry count found on day 2016-12-24: -7295
Processing turnstile ('PTH19', 'R549', '02-02-00', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -2364
WARNING. Abnormal entry count found on day 2016-12-03: -2364
WARNING. Abnormal entry count found on day 2016-12-10: -2368
WARNING. Abnormal entry count found on day 2016-12-10: -2368
WARNING. Abnormal entry count found on day 2016-12-17: -1983
WARNING. Abnormal entry count found on day 2016-12-17: -1983
WARNING. Abnormal entry count found on day 2016-12-24: -992
WARNING. Abnormal entry count found on day 2016-12-24: -992
Processing turnstile ('R173', 'R159', '00-00-03', '116 ST-COLUMBIA')
WARNING. Abnormal entry count found on day 2016-12-03: -12195
WARNING. Abnormal entry count found on day 2016-12-03: -12195
WARNING. Abnormal entry count found on day 2016-12-10: -10926
WARNING. Abnormal entry count found on day 2016-12-10: -10926
WARNING. Abnormal entry count found on day 2016-12-17: -7841
WARNING. Abnormal entry count found on day 2016-12-17: -7841
WARNING. Abnormal entry count found on day 2016-12-24: -3686
WARNING. Abnormal entry count found on day 2016-12-24: -3686
Processing turnstile ('G001', 'R151', '00-03-01', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -1659
WARNING. Abnormal entry count found on day 2016-12-03: -1659
WARNING. Abnormal entry count found on day 2016-12-10: -1556
WARNING. Abnormal entry count found on day 2016-12-10: -1556
WARNING. Abnormal entry count found on day 2016-12-17: -1490
WARNING. Abnormal entry count found on day 2016-12-17: -1490
WARNING. Abnormal entry count found on day 2016-12-24: -1687
WARNING. Abnormal entry count found on day 2016-12-24: -1687
Processing turnstile ('N017', 'R331', '00-00-00', '155 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2116
WARNING. Abnormal entry count found on day 2016-12-03: -2116
WARNING. Abnormal entry count found on day 2016-12-10: -2120
WARNING. Abnormal entry count found on day 2016-12-10: -2120
WARNING. Abnormal entry count found on day 2016-12-17: -1919
WARNING. Abnormal entry count found on day 2016-12-17: -1919
WARNING. Abnormal entry count found on day 2016-12-24: -1470
WARNING. Abnormal entry count found on day 2016-12-24: -1470
Processing turnstile ('R410', 'R450', '00-00-00', 'LONGWOOD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6678
WARNING. Abnormal entry count found on day 2016-12-03: -6678
WARNING. Abnormal entry count found on day 2016-12-10: -5511
WARNING. Abnormal entry count found on day 2016-12-10: -5511
WARNING. Abnormal entry count found on day 2016-12-17: -5842
WARNING. Abnormal entry count found on day 2016-12-17: -5842
WARNING. Abnormal entry count found on day 2016-12-24: -4603
WARNING. Abnormal entry count found on day 2016-12-24: -4603
Processing turnstile ('N603', 'R303', '00-00-01', '21 ST-QNSBRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -10905
WARNING. Abnormal entry count found on day 2016-12-03: -10905
WARNING. Abnormal entry count found on day 2016-12-10: -9705
WARNING. Abnormal entry count found on day 2016-12-10: -9705
WARNING. Abnormal entry count found on day 2016-12-17: -9224
WARNING. Abnormal entry count found on day 2016-12-17: -9224
WARNING. Abnormal entry count found on day 2016-12-24: -7422
WARNING. Abnormal entry count found on day 2016-12-24: -7422
Processing turnstile ('N083', 'R138', '01-05-00', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -18
WARNING. Abnormal entry count found on day 2016-12-03: -18
WARNING. Abnormal entry count found on day 2016-12-10: -15
WARNING. Abnormal entry count found on day 2016-12-10: -15
WARNING. Abnormal entry count found on day 2016-12-17: -17
WARNING. Abnormal entry count found on day 2016-12-17: -17
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('N184', 'R416', '00-00-00', 'BEACH 90 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2154
WARNING. Abnormal entry count found on day 2016-12-03: -2154
WARNING. Abnormal entry count found on day 2016-12-10: -1969
WARNING. Abnormal entry count found on day 2016-12-10: -1969
WARNING. Abnormal entry count found on day 2016-12-17: -1921
WARNING. Abnormal entry count found on day 2016-12-17: -1921
WARNING. Abnormal entry count found on day 2016-12-24: -1525
WARNING. Abnormal entry count found on day 2016-12-24: -1525
Processing turnstile ('B032', 'R264', '00-00-02', 'OCEAN PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -5473
WARNING. Abnormal entry count found on day 2016-12-03: -5473
WARNING. Abnormal entry count found on day 2016-12-10: -5128
WARNING. Abnormal entry count found on day 2016-12-10: -5128
WARNING. Abnormal entry count found on day 2016-12-17: -5154
WARNING. Abnormal entry count found on day 2016-12-17: -5154
WARNING. Abnormal entry count found on day 2016-12-24: -4204
WARNING. Abnormal entry count found on day 2016-12-24: -4204
Processing turnstile ('N111', 'R284', '00-06-02', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3979
WARNING. Abnormal entry count found on day 2016-12-03: -3979
WARNING. Abnormal entry count found on day 2016-12-10: -4976
WARNING. Abnormal entry count found on day 2016-12-10: -4976
WARNING. Abnormal entry count found on day 2016-12-17: -4279
WARNING. Abnormal entry count found on day 2016-12-17: -4279
WARNING. Abnormal entry count found on day 2016-12-24: -2153
WARNING. Abnormal entry count found on day 2016-12-24: -2153
Processing turnstile ('N095A', 'R014', '01-05-01', 'FULTON ST')
Processing turnstile ('PTH17', 'R541', '01-00-00', 'THIRTY THIRD ST')
Processing turnstile ('PTH18', 'R549', '01-00-07', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -3694
WARNING. Abnormal entry count found on day 2016-12-03: -3694
WARNING. Abnormal entry count found on day 2016-12-10: -4168
WARNING. Abnormal entry count found on day 2016-12-10: -4168
WARNING. Abnormal entry count found on day 2016-12-17: -3457
WARNING. Abnormal entry count found on day 2016-12-17: -3457
WARNING. Abnormal entry count found on day 2016-12-24: -2948
WARNING. Abnormal entry count found on day 2016-12-24: -2948
Processing turnstile ('N510', 'R163', '02-06-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2118
WARNING. Abnormal entry count found on day 2016-12-03: -2118
WARNING. Abnormal entry count found on day 2016-12-10: -2122
WARNING. Abnormal entry count found on day 2016-12-10: -2122
WARNING. Abnormal entry count found on day 2016-12-17: -1744
WARNING. Abnormal entry count found on day 2016-12-17: -1744
WARNING. Abnormal entry count found on day 2016-12-24: -961
WARNING. Abnormal entry count found on day 2016-12-24: -961
Processing turnstile ('R130', 'R321', '01-00-01', '18 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3311
WARNING. Abnormal entry count found on day 2016-12-03: -3311
WARNING. Abnormal entry count found on day 2016-12-10: -3346
WARNING. Abnormal entry count found on day 2016-12-10: -3346
WARNING. Abnormal entry count found on day 2016-12-17: -2810
WARNING. Abnormal entry count found on day 2016-12-17: -2810
WARNING. Abnormal entry count found on day 2016-12-24: -1761
WARNING. Abnormal entry count found on day 2016-12-24: -1761
Processing turnstile ('R533', 'R055', '00-03-05', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -15579
WARNING. Abnormal entry count found on day 2016-12-03: -15579
WARNING. Abnormal entry count found on day 2016-12-10: -14952
WARNING. Abnormal entry count found on day 2016-12-10: -14952
WARNING. Abnormal entry count found on day 2016-12-17: -16752
WARNING. Abnormal entry count found on day 2016-12-17: -16752
WARNING. Abnormal entry count found on day 2016-12-24: -14465
WARNING. Abnormal entry count found on day 2016-12-24: -14465
Processing turnstile ('N130', 'R383', '01-06-01', '80 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4459
WARNING. Abnormal entry count found on day 2016-12-03: -4459
WARNING. Abnormal entry count found on day 2016-12-10: -4517
WARNING. Abnormal entry count found on day 2016-12-10: -4517
WARNING. Abnormal entry count found on day 2016-12-17: -4253
WARNING. Abnormal entry count found on day 2016-12-17: -4253
WARNING. Abnormal entry count found on day 2016-12-24: -3437
WARNING. Abnormal entry count found on day 2016-12-24: -3437
Processing turnstile ('R311', 'R053', '00-00-01', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7699
WARNING. Abnormal entry count found on day 2016-12-03: -7699
WARNING. Abnormal entry count found on day 2016-12-10: -6925
WARNING. Abnormal entry count found on day 2016-12-10: -6925
WARNING. Abnormal entry count found on day 2016-12-17: -7054
WARNING. Abnormal entry count found on day 2016-12-17: -7054
WARNING. Abnormal entry count found on day 2016-12-24: -5622
WARNING. Abnormal entry count found on day 2016-12-24: -5622
Processing turnstile ('N333A', 'R141', '00-00-03', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -2595
WARNING. Abnormal entry count found on day 2016-12-03: -2595
WARNING. Abnormal entry count found on day 2016-12-10: -2513
WARNING. Abnormal entry count found on day 2016-12-10: -2513
WARNING. Abnormal entry count found on day 2016-12-17: -2521
WARNING. Abnormal entry count found on day 2016-12-17: -2521
WARNING. Abnormal entry count found on day 2016-12-24: -2132
WARNING. Abnormal entry count found on day 2016-12-24: -2132
Processing turnstile ('J020', 'R433', '00-00-01', 'ALABAMA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4507
WARNING. Abnormal entry count found on day 2016-12-03: -4507
WARNING. Abnormal entry count found on day 2016-12-10: -4336
WARNING. Abnormal entry count found on day 2016-12-10: -4336
WARNING. Abnormal entry count found on day 2016-12-17: -4262
WARNING. Abnormal entry count found on day 2016-12-17: -4262
WARNING. Abnormal entry count found on day 2016-12-24: -3201
WARNING. Abnormal entry count found on day 2016-12-24: -3201
Processing turnstile ('R534', 'R055', '01-03-00', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -10227
WARNING. Abnormal entry count found on day 2016-12-03: -10227
WARNING. Abnormal entry count found on day 2016-12-10: -9692
WARNING. Abnormal entry count found on day 2016-12-10: -9692
WARNING. Abnormal entry count found on day 2016-12-17: -9985
WARNING. Abnormal entry count found on day 2016-12-17: -9985
WARNING. Abnormal entry count found on day 2016-12-24: -7572
WARNING. Abnormal entry count found on day 2016-12-24: -7572
Processing turnstile ('N535', 'R220', '00-06-00', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5891
WARNING. Abnormal entry count found on day 2016-12-03: -5891
WARNING. Abnormal entry count found on day 2016-12-10: -5687
WARNING. Abnormal entry count found on day 2016-12-10: -5687
WARNING. Abnormal entry count found on day 2016-12-17: -5749
WARNING. Abnormal entry count found on day 2016-12-17: -5749
WARNING. Abnormal entry count found on day 2016-12-24: -3674
WARNING. Abnormal entry count found on day 2016-12-24: -3674
Processing turnstile ('N196', 'R285', '00-00-01', 'FAR ROCKAWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -6091
WARNING. Abnormal entry count found on day 2016-12-03: -6091
WARNING. Abnormal entry count found on day 2016-12-10: -5639
WARNING. Abnormal entry count found on day 2016-12-10: -5639
WARNING. Abnormal entry count found on day 2016-12-17: -5777
WARNING. Abnormal entry count found on day 2016-12-17: -5777
WARNING. Abnormal entry count found on day 2016-12-24: -4853
WARNING. Abnormal entry count found on day 2016-12-24: -4853
Processing turnstile ('C019', 'R232', '00-00-02', '45 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -1041
WARNING. Abnormal entry count found on day 2016-12-05: -749
WARNING. Abnormal entry count found on day 2016-12-06: -1644
WARNING. Abnormal entry count found on day 2016-12-07: -1755
WARNING. Abnormal entry count found on day 2016-12-08: -1719
WARNING. Abnormal entry count found on day 2016-12-09: -1724
WARNING. Abnormal entry count found on day 2016-12-04: -1041
WARNING. Abnormal entry count found on day 2016-12-05: -749
WARNING. Abnormal entry count found on day 2016-12-06: -1644
WARNING. Abnormal entry count found on day 2016-12-07: -1755
WARNING. Abnormal entry count found on day 2016-12-08: -1719
WARNING. Abnormal entry count found on day 2016-12-09: -1724
WARNING. Abnormal entry count found on day 2016-12-04: -1041
WARNING. Abnormal entry count found on day 2016-12-05: -749
WARNING. Abnormal entry count found on day 2016-12-06: -1644
WARNING. Abnormal entry count found on day 2016-12-07: -1755
WARNING. Abnormal entry count found on day 2016-12-08: -1719
WARNING. Abnormal entry count found on day 2016-12-09: -1724
WARNING. Abnormal entry count found on day 2016-12-10: -1768
WARNING. Abnormal entry count found on day 2016-12-11: -32349
WARNING. Abnormal entry count found on day 2016-12-12: -792
WARNING. Abnormal entry count found on day 2016-12-13: -1703
WARNING. Abnormal entry count found on day 2016-12-14: -1706
WARNING. Abnormal entry count found on day 2016-12-15: -1760
WARNING. Abnormal entry count found on day 2016-12-16: -1708
WARNING. Abnormal entry count found on day 2016-12-10: 40018
WARNING. Abnormal entry count found on day 2016-12-11: -32349
WARNING. Abnormal entry count found on day 2016-12-12: -792
WARNING. Abnormal entry count found on day 2016-12-13: -1703
WARNING. Abnormal entry count found on day 2016-12-14: -1706
WARNING. Abnormal entry count found on day 2016-12-15: -1760
WARNING. Abnormal entry count found on day 2016-12-16: -1708
WARNING. Abnormal entry count found on day 2016-12-10: 40018
WARNING. Abnormal entry count found on day 2016-12-11: -32349
WARNING. Abnormal entry count found on day 2016-12-12: -792
WARNING. Abnormal entry count found on day 2016-12-13: -1703
WARNING. Abnormal entry count found on day 2016-12-14: -1706
WARNING. Abnormal entry count found on day 2016-12-15: -1760
WARNING. Abnormal entry count found on day 2016-12-16: -1708
WARNING. Abnormal entry count found on day 2016-12-17: -1810
WARNING. Abnormal entry count found on day 2016-12-18: -1304
WARNING. Abnormal entry count found on day 2016-12-19: -992
WARNING. Abnormal entry count found on day 2016-12-20: -1783
WARNING. Abnormal entry count found on day 2016-12-21: -1756
WARNING. Abnormal entry count found on day 2016-12-22: -1710
WARNING. Abnormal entry count found on day 2016-12-23: -1696
WARNING. Abnormal entry count found on day 2016-12-18: -1304
WARNING. Abnormal entry count found on day 2016-12-19: -992
WARNING. Abnormal entry count found on day 2016-12-20: -1783
WARNING. Abnormal entry count found on day 2016-12-21: -1756
WARNING. Abnormal entry count found on day 2016-12-22: -1710
WARNING. Abnormal entry count found on day 2016-12-23: -1696
WARNING. Abnormal entry count found on day 2016-12-18: -1304
WARNING. Abnormal entry count found on day 2016-12-19: -992
WARNING. Abnormal entry count found on day 2016-12-20: -1783
WARNING. Abnormal entry count found on day 2016-12-21: -1756
WARNING. Abnormal entry count found on day 2016-12-22: -1710
WARNING. Abnormal entry count found on day 2016-12-23: -1696
WARNING. Abnormal entry count found on day 2016-12-24: -1717
WARNING. Abnormal entry count found on day 2016-12-25: -900
WARNING. Abnormal entry count found on day 2016-12-26: -635
WARNING. Abnormal entry count found on day 2016-12-27: -941
WARNING. Abnormal entry count found on day 2016-12-28: -42516
WARNING. Abnormal entry count found on day 2016-12-29: -1441
WARNING. Abnormal entry count found on day 2016-12-30: -1377
WARNING. Abnormal entry count found on day 2016-12-24: 47810
WARNING. Abnormal entry count found on day 2016-12-25: -900
WARNING. Abnormal entry count found on day 2016-12-26: -635
WARNING. Abnormal entry count found on day 2016-12-27: -941
WARNING. Abnormal entry count found on day 2016-12-28: -42516
WARNING. Abnormal entry count found on day 2016-12-29: -1441
WARNING. Abnormal entry count found on day 2016-12-30: -1377
WARNING. Abnormal entry count found on day 2016-12-24: 47810
WARNING. Abnormal entry count found on day 2016-12-25: -900
WARNING. Abnormal entry count found on day 2016-12-26: -635
WARNING. Abnormal entry count found on day 2016-12-27: -941
WARNING. Abnormal entry count found on day 2016-12-28: -42516
WARNING. Abnormal entry count found on day 2016-12-29: -1441
WARNING. Abnormal entry count found on day 2016-12-30: -1377
Processing turnstile ('S101A', 'R070', '01-03-03', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -4365
WARNING. Abnormal entry count found on day 2016-12-03: -4365
WARNING. Abnormal entry count found on day 2016-12-10: -4209
WARNING. Abnormal entry count found on day 2016-12-10: -4209
WARNING. Abnormal entry count found on day 2016-12-17: -3924
WARNING. Abnormal entry count found on day 2016-12-17: -3924
WARNING. Abnormal entry count found on day 2016-12-24: -2909
WARNING. Abnormal entry count found on day 2016-12-24: -2909
Processing turnstile ('N519A', 'R461', '01-00-02', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -11640
WARNING. Abnormal entry count found on day 2016-12-03: -11640
WARNING. Abnormal entry count found on day 2016-12-10: -11454
WARNING. Abnormal entry count found on day 2016-12-10: -11454
WARNING. Abnormal entry count found on day 2016-12-17: -10511
WARNING. Abnormal entry count found on day 2016-12-17: -10511
WARNING. Abnormal entry count found on day 2016-12-24: -7866
WARNING. Abnormal entry count found on day 2016-12-24: -7866
Processing turnstile ('B012', 'R196', '00-00-00', 'PROSPECT PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -9759
WARNING. Abnormal entry count found on day 2016-12-03: -9759
WARNING. Abnormal entry count found on day 2016-12-10: -9337
WARNING. Abnormal entry count found on day 2016-12-10: -9337
WARNING. Abnormal entry count found on day 2016-12-17: -9001
WARNING. Abnormal entry count found on day 2016-12-17: -9001
WARNING. Abnormal entry count found on day 2016-12-24: -10315
WARNING. Abnormal entry count found on day 2016-12-24: -10315
Processing turnstile ('N317', 'R267', '02-06-01', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -70
WARNING. Abnormal entry count found on day 2016-12-03: -70
WARNING. Abnormal entry count found on day 2016-12-10: -49
WARNING. Abnormal entry count found on day 2016-12-10: -49
WARNING. Abnormal entry count found on day 2016-12-17: -101
WARNING. Abnormal entry count found on day 2016-12-17: -101
WARNING. Abnormal entry count found on day 2016-12-24: -65
WARNING. Abnormal entry count found on day 2016-12-24: -65
Processing turnstile ('R249', 'R179', '01-00-07', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7826
WARNING. Abnormal entry count found on day 2016-12-03: -7826
WARNING. Abnormal entry count found on day 2016-12-10: -7486
WARNING. Abnormal entry count found on day 2016-12-10: -7486
WARNING. Abnormal entry count found on day 2016-12-17: -7607
WARNING. Abnormal entry count found on day 2016-12-17: -7607
WARNING. Abnormal entry count found on day 2016-12-24: -5903
WARNING. Abnormal entry count found on day 2016-12-24: -5903
Processing turnstile ('N077', 'R111', '02-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10399
WARNING. Abnormal entry count found on day 2016-12-03: -10399
WARNING. Abnormal entry count found on day 2016-12-10: -10004
WARNING. Abnormal entry count found on day 2016-12-10: -10004
WARNING. Abnormal entry count found on day 2016-12-17: -9187
WARNING. Abnormal entry count found on day 2016-12-17: -9187
WARNING. Abnormal entry count found on day 2016-12-24: -6455
WARNING. Abnormal entry count found on day 2016-12-24: -6455
Processing turnstile ('R122', 'R290', '02-06-01', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5198
WARNING. Abnormal entry count found on day 2016-12-03: -5198
WARNING. Abnormal entry count found on day 2016-12-10: -4507
WARNING. Abnormal entry count found on day 2016-12-10: -4507
WARNING. Abnormal entry count found on day 2016-12-17: -4410
WARNING. Abnormal entry count found on day 2016-12-17: -4410
WARNING. Abnormal entry count found on day 2016-12-24: -2459
WARNING. Abnormal entry count found on day 2016-12-24: -2459
Processing turnstile ('C009', 'R057', '03-00-03', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -8545
WARNING. Abnormal entry count found on day 2016-12-03: -8545
WARNING. Abnormal entry count found on day 2016-12-10: -8468
WARNING. Abnormal entry count found on day 2016-12-10: -8468
WARNING. Abnormal entry count found on day 2016-12-17: -8747
WARNING. Abnormal entry count found on day 2016-12-17: -8747
WARNING. Abnormal entry count found on day 2016-12-24: -5399
WARNING. Abnormal entry count found on day 2016-12-24: -5399
Processing turnstile ('A046', 'R463', '00-06-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17065
WARNING. Abnormal entry count found on day 2016-12-03: -17065
WARNING. Abnormal entry count found on day 2016-12-10: -16534
WARNING. Abnormal entry count found on day 2016-12-10: -16534
WARNING. Abnormal entry count found on day 2016-12-17: -16473
WARNING. Abnormal entry count found on day 2016-12-17: -16473
WARNING. Abnormal entry count found on day 2016-12-24: -17809
WARNING. Abnormal entry count found on day 2016-12-24: -17809
Processing turnstile ('N080', 'R138', '00-00-02', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -11546
WARNING. Abnormal entry count found on day 2016-12-03: -11546
WARNING. Abnormal entry count found on day 2016-12-10: -11411
WARNING. Abnormal entry count found on day 2016-12-10: -11411
WARNING. Abnormal entry count found on day 2016-12-17: -10173
WARNING. Abnormal entry count found on day 2016-12-17: -10173
WARNING. Abnormal entry count found on day 2016-12-24: -7592
WARNING. Abnormal entry count found on day 2016-12-24: -7592
Processing turnstile ('R133', 'R272', '00-00-02', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13559
WARNING. Abnormal entry count found on day 2016-12-03: -13559
WARNING. Abnormal entry count found on day 2016-12-10: -13422
WARNING. Abnormal entry count found on day 2016-12-10: -13422
WARNING. Abnormal entry count found on day 2016-12-17: -11137
WARNING. Abnormal entry count found on day 2016-12-17: -11137
WARNING. Abnormal entry count found on day 2016-12-24: -8298
WARNING. Abnormal entry count found on day 2016-12-24: -8298
Processing turnstile ('PTH06', 'R546', '00-00-09', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -9265
WARNING. Abnormal entry count found on day 2016-12-03: -9265
WARNING. Abnormal entry count found on day 2016-12-10: -5640
WARNING. Abnormal entry count found on day 2016-12-10: -5640
WARNING. Abnormal entry count found on day 2016-12-17: -6531
WARNING. Abnormal entry count found on day 2016-12-17: -6531
WARNING. Abnormal entry count found on day 2016-12-24: -6136
WARNING. Abnormal entry count found on day 2016-12-24: -6136
Processing turnstile ('N181A', 'R464', '00-06-03', 'AQUEDUCT RACETR')
WARNING. Abnormal entry count found on day 2016-12-03: -2277
WARNING. Abnormal entry count found on day 2016-12-03: -2277
WARNING. Abnormal entry count found on day 2016-12-10: -2018
WARNING. Abnormal entry count found on day 2016-12-10: -2018
WARNING. Abnormal entry count found on day 2016-12-17: -2016
WARNING. Abnormal entry count found on day 2016-12-17: -2016
WARNING. Abnormal entry count found on day 2016-12-24: -1955
WARNING. Abnormal entry count found on day 2016-12-24: -1955
Processing turnstile ('N605', 'R024', '00-05-00', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-10: -9
WARNING. Abnormal entry count found on day 2016-12-10: -9
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('PTH04', 'R551', '00-01-05', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -9785
WARNING. Abnormal entry count found on day 2016-12-03: -9785
WARNING. Abnormal entry count found on day 2016-12-10: -10261
WARNING. Abnormal entry count found on day 2016-12-10: -10261
WARNING. Abnormal entry count found on day 2016-12-17: -9387
WARNING. Abnormal entry count found on day 2016-12-17: -9387
WARNING. Abnormal entry count found on day 2016-12-24: -6877
WARNING. Abnormal entry count found on day 2016-12-24: -6877
Processing turnstile ('N314', 'R238', '01-06-00', 'STEINWAY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7846
WARNING. Abnormal entry count found on day 2016-12-03: -7846
WARNING. Abnormal entry count found on day 2016-12-10: -7549
WARNING. Abnormal entry count found on day 2016-12-10: -7549
WARNING. Abnormal entry count found on day 2016-12-17: -6936
WARNING. Abnormal entry count found on day 2016-12-17: -6936
WARNING. Abnormal entry count found on day 2016-12-24: -4955
WARNING. Abnormal entry count found on day 2016-12-24: -4955
Processing turnstile ('S102', 'R165', '00-05-01', 'TOMPKINSVILLE')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N330C', 'R202', '01-06-00', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -3493
WARNING. Abnormal entry count found on day 2016-12-03: -3493
WARNING. Abnormal entry count found on day 2016-12-10: -3479
WARNING. Abnormal entry count found on day 2016-12-10: -3479
WARNING. Abnormal entry count found on day 2016-12-17: -3746
WARNING. Abnormal entry count found on day 2016-12-17: -3746
WARNING. Abnormal entry count found on day 2016-12-24: -2779
WARNING. Abnormal entry count found on day 2016-12-24: -2779
Processing turnstile ('N002A', 'R173', '00-00-01', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8063
WARNING. Abnormal entry count found on day 2016-12-03: -8063
WARNING. Abnormal entry count found on day 2016-12-10: -8064
WARNING. Abnormal entry count found on day 2016-12-10: -8064
WARNING. Abnormal entry count found on day 2016-12-17: -8190
WARNING. Abnormal entry count found on day 2016-12-17: -8190
WARNING. Abnormal entry count found on day 2016-12-24: -6228
WARNING. Abnormal entry count found on day 2016-12-24: -6228
Processing turnstile ('C001', 'R108', '01-06-01', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -1545
WARNING. Abnormal entry count found on day 2016-12-03: -1545
WARNING. Abnormal entry count found on day 2016-12-10: -1512
WARNING. Abnormal entry count found on day 2016-12-10: -1512
WARNING. Abnormal entry count found on day 2016-12-17: -1227
WARNING. Abnormal entry count found on day 2016-12-17: -1227
WARNING. Abnormal entry count found on day 2016-12-24: -895
WARNING. Abnormal entry count found on day 2016-12-24: -895
Processing turnstile ('N325A', 'R218', '00-00-01', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -547
WARNING. Abnormal entry count found on day 2016-12-03: -547
WARNING. Abnormal entry count found on day 2016-12-10: -507
WARNING. Abnormal entry count found on day 2016-12-10: -507
WARNING. Abnormal entry count found on day 2016-12-17: -600
WARNING. Abnormal entry count found on day 2016-12-17: -600
WARNING. Abnormal entry count found on day 2016-12-24: -449
WARNING. Abnormal entry count found on day 2016-12-24: -449
Processing turnstile ('R301', 'R323', '00-03-01', 'CENTRAL PK N110')
WARNING. Abnormal entry count found on day 2016-12-03: -5516
WARNING. Abnormal entry count found on day 2016-12-03: -5516
WARNING. Abnormal entry count found on day 2016-12-10: -5677
WARNING. Abnormal entry count found on day 2016-12-10: -5677
WARNING. Abnormal entry count found on day 2016-12-17: -5484
WARNING. Abnormal entry count found on day 2016-12-17: -5484
WARNING. Abnormal entry count found on day 2016-12-24: -4381
WARNING. Abnormal entry count found on day 2016-12-24: -4381
Processing turnstile ('N513', 'R163', '04-00-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5749
WARNING. Abnormal entry count found on day 2016-12-03: -5749
WARNING. Abnormal entry count found on day 2016-12-10: -5796
WARNING. Abnormal entry count found on day 2016-12-10: -5796
WARNING. Abnormal entry count found on day 2016-12-17: -5830
WARNING. Abnormal entry count found on day 2016-12-17: -5830
WARNING. Abnormal entry count found on day 2016-12-24: -4211
WARNING. Abnormal entry count found on day 2016-12-24: -4211
Processing turnstile ('D015', 'R396', '00-00-00', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -1782
WARNING. Abnormal entry count found on day 2016-12-03: -1782
WARNING. Abnormal entry count found on day 2016-12-10: -1750
WARNING. Abnormal entry count found on day 2016-12-10: -1750
WARNING. Abnormal entry count found on day 2016-12-17: -1838
WARNING. Abnormal entry count found on day 2016-12-17: -1838
WARNING. Abnormal entry count found on day 2016-12-24: -1537
WARNING. Abnormal entry count found on day 2016-12-24: -1537
Processing turnstile ('N067', 'R012', '00-03-05', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -9409
WARNING. Abnormal entry count found on day 2016-12-03: -9409
WARNING. Abnormal entry count found on day 2016-12-10: -9549
WARNING. Abnormal entry count found on day 2016-12-10: -9549
WARNING. Abnormal entry count found on day 2016-12-17: -9192
WARNING. Abnormal entry count found on day 2016-12-17: -9192
WARNING. Abnormal entry count found on day 2016-12-24: -7707
WARNING. Abnormal entry count found on day 2016-12-24: -7707
Processing turnstile ('N098', 'R028', '00-05-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-17: -23
WARNING. Abnormal entry count found on day 2016-12-17: -23
WARNING. Abnormal entry count found on day 2016-12-24: -14
WARNING. Abnormal entry count found on day 2016-12-24: -14
Processing turnstile ('N186', 'R418', '00-05-01', 'BEACH 105 ST')
Processing turnstile ('N127', 'R442', '00-00-01', 'SHEPHERD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4901
WARNING. Abnormal entry count found on day 2016-12-03: -4901
WARNING. Abnormal entry count found on day 2016-12-10: -4944
WARNING. Abnormal entry count found on day 2016-12-10: -4944
WARNING. Abnormal entry count found on day 2016-12-17: -4641
WARNING. Abnormal entry count found on day 2016-12-17: -4641
WARNING. Abnormal entry count found on day 2016-12-24: -3627
WARNING. Abnormal entry count found on day 2016-12-24: -3627
Processing turnstile ('R606', 'R225', '00-00-04', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1594
WARNING. Abnormal entry count found on day 2016-12-03: -1594
WARNING. Abnormal entry count found on day 2016-12-10: -1640
WARNING. Abnormal entry count found on day 2016-12-10: -1640
WARNING. Abnormal entry count found on day 2016-12-17: -1764
WARNING. Abnormal entry count found on day 2016-12-17: -1764
WARNING. Abnormal entry count found on day 2016-12-24: -1023
WARNING. Abnormal entry count found on day 2016-12-24: -1023
Processing turnstile ('R619', 'R059', '00-03-00', 'GRAND ARMY PLAZ')
WARNING. Abnormal entry count found on day 2016-12-03: -8764
WARNING. Abnormal entry count found on day 2016-12-03: -8764
WARNING. Abnormal entry count found on day 2016-12-10: -8708
WARNING. Abnormal entry count found on day 2016-12-10: -8708
WARNING. Abnormal entry count found on day 2016-12-17: -7132
WARNING. Abnormal entry count found on day 2016-12-17: -7132
WARNING. Abnormal entry count found on day 2016-12-24: -4787
WARNING. Abnormal entry count found on day 2016-12-24: -4787
Processing turnstile ('R730', 'R431', '00-00-03', 'EASTCHSTER/DYRE')
WARNING. Abnormal entry count found on day 2016-12-03: -7133
WARNING. Abnormal entry count found on day 2016-12-03: -7133
WARNING. Abnormal entry count found on day 2016-12-10: -6797
WARNING. Abnormal entry count found on day 2016-12-10: -6797
WARNING. Abnormal entry count found on day 2016-12-17: -6145
WARNING. Abnormal entry count found on day 2016-12-17: -6145
WARNING. Abnormal entry count found on day 2016-12-24: -4793
WARNING. Abnormal entry count found on day 2016-12-24: -4793
Processing turnstile ('A064', 'R311', '00-03-00', 'BOWERY')
WARNING. Abnormal entry count found on day 2016-12-03: -5489
WARNING. Abnormal entry count found on day 2016-12-03: -5489
WARNING. Abnormal entry count found on day 2016-12-10: -5564
WARNING. Abnormal entry count found on day 2016-12-10: -5564
WARNING. Abnormal entry count found on day 2016-12-17: -5276
WARNING. Abnormal entry count found on day 2016-12-17: -5276
WARNING. Abnormal entry count found on day 2016-12-24: -4988
WARNING. Abnormal entry count found on day 2016-12-24: -4988
Processing turnstile ('N045', 'R187', '01-06-01', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -992
WARNING. Abnormal entry count found on day 2016-12-03: -992
WARNING. Abnormal entry count found on day 2016-12-10: -892
WARNING. Abnormal entry count found on day 2016-12-10: -892
WARNING. Abnormal entry count found on day 2016-12-17: -1479
WARNING. Abnormal entry count found on day 2016-12-17: -1479
WARNING. Abnormal entry count found on day 2016-12-24: -3821
WARNING. Abnormal entry count found on day 2016-12-24: -3821
Processing turnstile ('A082', 'R028', '05-06-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3101
WARNING. Abnormal entry count found on day 2016-12-03: -3101
WARNING. Abnormal entry count found on day 2016-12-10: -2950
WARNING. Abnormal entry count found on day 2016-12-10: -2950
WARNING. Abnormal entry count found on day 2016-12-17: -2993
WARNING. Abnormal entry count found on day 2016-12-17: -2993
WARNING. Abnormal entry count found on day 2016-12-24: -2188
WARNING. Abnormal entry count found on day 2016-12-24: -2188
Processing turnstile ('B016', 'R098', '00-03-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -18450
WARNING. Abnormal entry count found on day 2016-12-03: -18450
WARNING. Abnormal entry count found on day 2016-12-10: -18482
WARNING. Abnormal entry count found on day 2016-12-10: -18482
WARNING. Abnormal entry count found on day 2016-12-17: -15628
WARNING. Abnormal entry count found on day 2016-12-17: -15628
WARNING. Abnormal entry count found on day 2016-12-24: -13592
WARNING. Abnormal entry count found on day 2016-12-24: -13592
Processing turnstile ('A069', 'R044', '01-00-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4516
WARNING. Abnormal entry count found on day 2016-12-03: -4516
WARNING. Abnormal entry count found on day 2016-12-10: -4235
WARNING. Abnormal entry count found on day 2016-12-10: -4235
WARNING. Abnormal entry count found on day 2016-12-17: -4063
WARNING. Abnormal entry count found on day 2016-12-17: -4063
WARNING. Abnormal entry count found on day 2016-12-24: -3109
WARNING. Abnormal entry count found on day 2016-12-24: -3109
Processing turnstile ('N072', 'R012', '05-03-06', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -13826
WARNING. Abnormal entry count found on day 2016-12-03: -13826
WARNING. Abnormal entry count found on day 2016-12-10: -14319
WARNING. Abnormal entry count found on day 2016-12-10: -14319
WARNING. Abnormal entry count found on day 2016-12-17: -12583
WARNING. Abnormal entry count found on day 2016-12-17: -12583
WARNING. Abnormal entry count found on day 2016-12-24: -9478
WARNING. Abnormal entry count found on day 2016-12-24: -9478
Processing turnstile ('N063', 'R011', '02-00-02', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -5283
WARNING. Abnormal entry count found on day 2016-12-03: -5283
WARNING. Abnormal entry count found on day 2016-12-10: -5237
WARNING. Abnormal entry count found on day 2016-12-10: -5237
WARNING. Abnormal entry count found on day 2016-12-17: -4785
WARNING. Abnormal entry count found on day 2016-12-17: -4785
WARNING. Abnormal entry count found on day 2016-12-24: -4355
WARNING. Abnormal entry count found on day 2016-12-24: -4355
Processing turnstile ('PTH03', 'R552', '00-00-04', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -5332
WARNING. Abnormal entry count found on day 2016-12-03: -5332
WARNING. Abnormal entry count found on day 2016-12-10: -8459
WARNING. Abnormal entry count found on day 2016-12-10: -8459
WARNING. Abnormal entry count found on day 2016-12-17: -65
WARNING. Abnormal entry count found on day 2016-12-17: -65
WARNING. Abnormal entry count found on day 2016-12-24: -391140
WARNING. Abnormal entry count found on day 2016-12-24: -6975
WARNING. Abnormal entry count found on day 2016-12-24: -6975
Processing turnstile ('B028', 'R136', '01-00-02', 'SHEEPSHEAD BAY')
WARNING. Abnormal entry count found on day 2016-12-03: -13487
WARNING. Abnormal entry count found on day 2016-12-03: -13487
WARNING. Abnormal entry count found on day 2016-12-10: -12643
WARNING. Abnormal entry count found on day 2016-12-10: -12643
WARNING. Abnormal entry count found on day 2016-12-17: -12201
WARNING. Abnormal entry count found on day 2016-12-17: -12201
WARNING. Abnormal entry count found on day 2016-12-24: -9284
WARNING. Abnormal entry count found on day 2016-12-24: -9284
Processing turnstile ('N335', 'R158', '01-06-03', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -759
WARNING. Abnormal entry count found on day 2016-12-03: -759
WARNING. Abnormal entry count found on day 2016-12-10: -757
WARNING. Abnormal entry count found on day 2016-12-10: -757
WARNING. Abnormal entry count found on day 2016-12-17: -750
WARNING. Abnormal entry count found on day 2016-12-17: -750
WARNING. Abnormal entry count found on day 2016-12-24: -514
WARNING. Abnormal entry count found on day 2016-12-24: -514
Processing turnstile ('PTH11', 'R545', '00-00-00', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -5022
WARNING. Abnormal entry count found on day 2016-12-03: -5022
WARNING. Abnormal entry count found on day 2016-12-10: -5924
WARNING. Abnormal entry count found on day 2016-12-10: -5924
WARNING. Abnormal entry count found on day 2016-12-17: -5659
WARNING. Abnormal entry count found on day 2016-12-17: -5659
WARNING. Abnormal entry count found on day 2016-12-24: -4597
WARNING. Abnormal entry count found on day 2016-12-24: -4597
Processing turnstile ('B029', 'R172', '00-00-01', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -6354
WARNING. Abnormal entry count found on day 2016-12-03: -6354
WARNING. Abnormal entry count found on day 2016-12-10: -5927
WARNING. Abnormal entry count found on day 2016-12-10: -5927
WARNING. Abnormal entry count found on day 2016-12-17: -5485
WARNING. Abnormal entry count found on day 2016-12-17: -5485
WARNING. Abnormal entry count found on day 2016-12-24: -4060
WARNING. Abnormal entry count found on day 2016-12-24: -4060
Processing turnstile ('N506', 'R022', '00-03-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -7782
WARNING. Abnormal entry count found on day 2016-12-03: -7782
WARNING. Abnormal entry count found on day 2016-12-10: -7934
WARNING. Abnormal entry count found on day 2016-12-10: -7934
WARNING. Abnormal entry count found on day 2016-12-17: -9843
WARNING. Abnormal entry count found on day 2016-12-17: -9843
WARNING. Abnormal entry count found on day 2016-12-24: -8025
WARNING. Abnormal entry count found on day 2016-12-24: -8025
Processing turnstile ('R169', 'R168', '01-05-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-03: -22
WARNING. Abnormal entry count found on day 2016-12-10: -21
WARNING. Abnormal entry count found on day 2016-12-10: -21
WARNING. Abnormal entry count found on day 2016-12-17: -18
WARNING. Abnormal entry count found on day 2016-12-17: -18
WARNING. Abnormal entry count found on day 2016-12-24: -19
WARNING. Abnormal entry count found on day 2016-12-24: -19
Processing turnstile ('B013', 'R196', '01-00-00', 'PROSPECT PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -7450
WARNING. Abnormal entry count found on day 2016-12-03: -7450
WARNING. Abnormal entry count found on day 2016-12-10: -7228
WARNING. Abnormal entry count found on day 2016-12-10: -7228
WARNING. Abnormal entry count found on day 2016-12-17: -7083
WARNING. Abnormal entry count found on day 2016-12-17: -7083
WARNING. Abnormal entry count found on day 2016-12-24: -4916
WARNING. Abnormal entry count found on day 2016-12-24: -4916
Processing turnstile ('N076', 'R111', '00-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14330
WARNING. Abnormal entry count found on day 2016-12-03: -14330
WARNING. Abnormal entry count found on day 2016-12-10: -13061
WARNING. Abnormal entry count found on day 2016-12-10: -13061
WARNING. Abnormal entry count found on day 2016-12-17: -13505
WARNING. Abnormal entry count found on day 2016-12-17: -13505
WARNING. Abnormal entry count found on day 2016-12-24: -9238
WARNING. Abnormal entry count found on day 2016-12-24: -9238
Processing turnstile ('A006', 'R079', '00-03-02', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14792
WARNING. Abnormal entry count found on day 2016-12-03: -14792
WARNING. Abnormal entry count found on day 2016-12-10: -14346
WARNING. Abnormal entry count found on day 2016-12-10: -14346
WARNING. Abnormal entry count found on day 2016-12-17: -12998
WARNING. Abnormal entry count found on day 2016-12-17: -12998
WARNING. Abnormal entry count found on day 2016-12-24: -10748
WARNING. Abnormal entry count found on day 2016-12-24: -10748
Processing turnstile ('N420B', 'R317', '00-00-02', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -241
WARNING. Abnormal entry count found on day 2016-12-03: -241
WARNING. Abnormal entry count found on day 2016-12-10: -329
WARNING. Abnormal entry count found on day 2016-12-10: -329
WARNING. Abnormal entry count found on day 2016-12-17: -284
WARNING. Abnormal entry count found on day 2016-12-17: -284
WARNING. Abnormal entry count found on day 2016-12-24: -182
WARNING. Abnormal entry count found on day 2016-12-24: -182
Processing turnstile ('C020', 'R233', '00-00-02', '53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8524
WARNING. Abnormal entry count found on day 2016-12-03: -8524
WARNING. Abnormal entry count found on day 2016-12-10: -8286
WARNING. Abnormal entry count found on day 2016-12-10: -8286
WARNING. Abnormal entry count found on day 2016-12-17: -8369
WARNING. Abnormal entry count found on day 2016-12-17: -8369
WARNING. Abnormal entry count found on day 2016-12-24: -6911
WARNING. Abnormal entry count found on day 2016-12-24: -6911
Processing turnstile ('PTH18', 'R549', '01-01-03', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -10985
WARNING. Abnormal entry count found on day 2016-12-03: -10985
WARNING. Abnormal entry count found on day 2016-12-10: -11133
WARNING. Abnormal entry count found on day 2016-12-10: -11133
WARNING. Abnormal entry count found on day 2016-12-17: -8422
WARNING. Abnormal entry count found on day 2016-12-17: -8422
WARNING. Abnormal entry count found on day 2016-12-24: -8915
WARNING. Abnormal entry count found on day 2016-12-24: -8915
Processing turnstile ('R284', 'R243', '00-00-00', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12002
WARNING. Abnormal entry count found on day 2016-12-03: -12002
WARNING. Abnormal entry count found on day 2016-12-10: -11011
WARNING. Abnormal entry count found on day 2016-12-10: -11011
WARNING. Abnormal entry count found on day 2016-12-17: -10278
WARNING. Abnormal entry count found on day 2016-12-17: -10278
WARNING. Abnormal entry count found on day 2016-12-24: -9159
WARNING. Abnormal entry count found on day 2016-12-24: -9159
Processing turnstile ('R112A', 'R027', '03-00-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10528
WARNING. Abnormal entry count found on day 2016-12-03: -10528
WARNING. Abnormal entry count found on day 2016-12-10: -10389
WARNING. Abnormal entry count found on day 2016-12-10: -10389
WARNING. Abnormal entry count found on day 2016-12-17: -9111
WARNING. Abnormal entry count found on day 2016-12-17: -9111
WARNING. Abnormal entry count found on day 2016-12-24: -5323
WARNING. Abnormal entry count found on day 2016-12-24: -5323
Processing turnstile ('G009', 'R151', '02-00-02', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -3568
WARNING. Abnormal entry count found on day 2016-12-03: -3568
WARNING. Abnormal entry count found on day 2016-12-10: -3604
WARNING. Abnormal entry count found on day 2016-12-10: -3604
WARNING. Abnormal entry count found on day 2016-12-17: -3547
WARNING. Abnormal entry count found on day 2016-12-17: -3547
WARNING. Abnormal entry count found on day 2016-12-24: -2772
WARNING. Abnormal entry count found on day 2016-12-24: -2772
Processing turnstile ('B021', 'R228', '00-04-00', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('B021', 'R228', '00-00-04', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -4346
WARNING. Abnormal entry count found on day 2016-12-03: -4346
WARNING. Abnormal entry count found on day 2016-12-10: -4258
WARNING. Abnormal entry count found on day 2016-12-10: -4258
WARNING. Abnormal entry count found on day 2016-12-17: -3764
WARNING. Abnormal entry count found on day 2016-12-17: -3764
WARNING. Abnormal entry count found on day 2016-12-24: -3476
WARNING. Abnormal entry count found on day 2016-12-24: -3476
Processing turnstile ('N519', 'R461', '00-03-02', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -6686
WARNING. Abnormal entry count found on day 2016-12-03: -6686
WARNING. Abnormal entry count found on day 2016-12-10: -7090
WARNING. Abnormal entry count found on day 2016-12-10: -7090
WARNING. Abnormal entry count found on day 2016-12-17: -7649
WARNING. Abnormal entry count found on day 2016-12-17: -7649
WARNING. Abnormal entry count found on day 2016-12-24: -5783
WARNING. Abnormal entry count found on day 2016-12-24: -5783
Processing turnstile ('R413', 'R325', '00-03-01', 'WHITLOCK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5224
WARNING. Abnormal entry count found on day 2016-12-03: -5224
WARNING. Abnormal entry count found on day 2016-12-10: -5042
WARNING. Abnormal entry count found on day 2016-12-10: -5042
WARNING. Abnormal entry count found on day 2016-12-17: -4441
WARNING. Abnormal entry count found on day 2016-12-17: -4441
WARNING. Abnormal entry count found on day 2016-12-24: -3637
WARNING. Abnormal entry count found on day 2016-12-24: -3637
Processing turnstile ('N512', 'R163', '00-00-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8032
WARNING. Abnormal entry count found on day 2016-12-03: -8032
WARNING. Abnormal entry count found on day 2016-12-10: -7998
WARNING. Abnormal entry count found on day 2016-12-10: -7998
WARNING. Abnormal entry count found on day 2016-12-17: -7426
WARNING. Abnormal entry count found on day 2016-12-17: -7426
WARNING. Abnormal entry count found on day 2016-12-24: -5341
WARNING. Abnormal entry count found on day 2016-12-24: -5341
Processing turnstile ('R509', 'R121', '00-00-02', 'QUEENSBORO PLZ')
WARNING. Abnormal entry count found on day 2016-12-03: -15125
WARNING. Abnormal entry count found on day 2016-12-03: -15125
WARNING. Abnormal entry count found on day 2016-12-10: -14573
WARNING. Abnormal entry count found on day 2016-12-10: -14573
WARNING. Abnormal entry count found on day 2016-12-17: -13443
WARNING. Abnormal entry count found on day 2016-12-17: -13443
WARNING. Abnormal entry count found on day 2016-12-24: -9814
WARNING. Abnormal entry count found on day 2016-12-24: -9814
Processing turnstile ('R237', 'R046', '01-00-04', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8233
WARNING. Abnormal entry count found on day 2016-12-03: -8233
WARNING. Abnormal entry count found on day 2016-12-10: -8080
WARNING. Abnormal entry count found on day 2016-12-10: -8080
WARNING. Abnormal entry count found on day 2016-12-17: -7110
WARNING. Abnormal entry count found on day 2016-12-17: -7110
WARNING. Abnormal entry count found on day 2016-12-24: -4356
WARNING. Abnormal entry count found on day 2016-12-24: -4356
Processing turnstile ('N057', 'R188', '00-06-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5896
WARNING. Abnormal entry count found on day 2016-12-03: -5896
WARNING. Abnormal entry count found on day 2016-12-10: -5764
WARNING. Abnormal entry count found on day 2016-12-10: -5764
WARNING. Abnormal entry count found on day 2016-12-17: -5386
WARNING. Abnormal entry count found on day 2016-12-17: -5386
WARNING. Abnormal entry count found on day 2016-12-24: -5392
WARNING. Abnormal entry count found on day 2016-12-24: -5392
Processing turnstile ('R247', 'R178', '01-03-02', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4228
WARNING. Abnormal entry count found on day 2016-12-03: -4228
WARNING. Abnormal entry count found on day 2016-12-10: -3828
WARNING. Abnormal entry count found on day 2016-12-10: -3828
WARNING. Abnormal entry count found on day 2016-12-17: -3664
WARNING. Abnormal entry count found on day 2016-12-17: -3664
WARNING. Abnormal entry count found on day 2016-12-24: -2821
WARNING. Abnormal entry count found on day 2016-12-24: -2821
Processing turnstile ('R260', 'R205', '01-06-00', '149/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-12-03: -20331
WARNING. Abnormal entry count found on day 2016-12-03: -20331
WARNING. Abnormal entry count found on day 2016-12-10: -18962
WARNING. Abnormal entry count found on day 2016-12-10: -18962
WARNING. Abnormal entry count found on day 2016-12-17: -18145
WARNING. Abnormal entry count found on day 2016-12-17: -18145
WARNING. Abnormal entry count found on day 2016-12-24: -11264
WARNING. Abnormal entry count found on day 2016-12-24: -11264
Processing turnstile ('R610', 'R057', '00-06-02', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -1225
WARNING. Abnormal entry count found on day 2016-12-03: -1225
WARNING. Abnormal entry count found on day 2016-12-10: -1181
WARNING. Abnormal entry count found on day 2016-12-10: -1181
WARNING. Abnormal entry count found on day 2016-12-17: -942
WARNING. Abnormal entry count found on day 2016-12-17: -942
WARNING. Abnormal entry count found on day 2016-12-24: -548
WARNING. Abnormal entry count found on day 2016-12-24: -548
Processing turnstile ('PTH19', 'R549', '02-01-04', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1675
WARNING. Abnormal entry count found on day 2016-12-03: -1675
WARNING. Abnormal entry count found on day 2016-12-10: -1466
WARNING. Abnormal entry count found on day 2016-12-10: -1466
WARNING. Abnormal entry count found on day 2016-12-17: -1360
WARNING. Abnormal entry count found on day 2016-12-17: -1360
WARNING. Abnormal entry count found on day 2016-12-24: -846
WARNING. Abnormal entry count found on day 2016-12-24: -846
Processing turnstile ('H038', 'R350', '00-00-00', 'LIVONIA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2895
WARNING. Abnormal entry count found on day 2016-12-03: -2895
WARNING. Abnormal entry count found on day 2016-12-10: -3079
WARNING. Abnormal entry count found on day 2016-12-10: -3079
WARNING. Abnormal entry count found on day 2016-12-17: -2609
WARNING. Abnormal entry count found on day 2016-12-17: -2609
WARNING. Abnormal entry count found on day 2016-12-24: -2300
WARNING. Abnormal entry count found on day 2016-12-24: -2300
Processing turnstile ('N080', 'R138', '00-00-00', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12470
WARNING. Abnormal entry count found on day 2016-12-03: -12470
WARNING. Abnormal entry count found on day 2016-12-10: -11998
WARNING. Abnormal entry count found on day 2016-12-10: -11998
WARNING. Abnormal entry count found on day 2016-12-17: -11653
WARNING. Abnormal entry count found on day 2016-12-17: -11653
WARNING. Abnormal entry count found on day 2016-12-24: -8474
WARNING. Abnormal entry count found on day 2016-12-24: -8474
Processing turnstile ('B021', 'R228', '00-05-00', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -1475
WARNING. Abnormal entry count found on day 2016-12-03: -1475
WARNING. Abnormal entry count found on day 2016-12-10: -1357
WARNING. Abnormal entry count found on day 2016-12-10: -1357
WARNING. Abnormal entry count found on day 2016-12-17: -1383
WARNING. Abnormal entry count found on day 2016-12-17: -1383
WARNING. Abnormal entry count found on day 2016-12-24: -934
WARNING. Abnormal entry count found on day 2016-12-24: -934
Processing turnstile ('N207', 'R104', '00-00-03', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12938
WARNING. Abnormal entry count found on day 2016-12-03: -12938
WARNING. Abnormal entry count found on day 2016-12-10: -12895
WARNING. Abnormal entry count found on day 2016-12-10: -12895
WARNING. Abnormal entry count found on day 2016-12-17: -12095
WARNING. Abnormal entry count found on day 2016-12-17: -12095
WARNING. Abnormal entry count found on day 2016-12-24: -11025
WARNING. Abnormal entry count found on day 2016-12-24: -11025
Processing turnstile ('H035', 'R348', '00-00-00', 'ATLANTIC AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3791
WARNING. Abnormal entry count found on day 2016-12-03: -3791
WARNING. Abnormal entry count found on day 2016-12-10: -3647
WARNING. Abnormal entry count found on day 2016-12-10: -3647
WARNING. Abnormal entry count found on day 2016-12-17: -3562
WARNING. Abnormal entry count found on day 2016-12-17: -3562
WARNING. Abnormal entry count found on day 2016-12-24: -2638
WARNING. Abnormal entry count found on day 2016-12-24: -2638
Processing turnstile ('R127', 'R105', '00-03-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5360
WARNING. Abnormal entry count found on day 2016-12-03: -5360
WARNING. Abnormal entry count found on day 2016-12-10: -5477
WARNING. Abnormal entry count found on day 2016-12-10: -5477
WARNING. Abnormal entry count found on day 2016-12-17: -5120
WARNING. Abnormal entry count found on day 2016-12-17: -5120
WARNING. Abnormal entry count found on day 2016-12-24: -3957
WARNING. Abnormal entry count found on day 2016-12-24: -3957
Processing turnstile ('R236', 'R045', '00-03-02', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20555
WARNING. Abnormal entry count found on day 2016-12-03: -20555
WARNING. Abnormal entry count found on day 2016-12-10: -21187
WARNING. Abnormal entry count found on day 2016-12-10: -21187
WARNING. Abnormal entry count found on day 2016-12-17: -18325
WARNING. Abnormal entry count found on day 2016-12-17: -18325
WARNING. Abnormal entry count found on day 2016-12-24: -11387
WARNING. Abnormal entry count found on day 2016-12-24: -11387
Processing turnstile ('C017', 'R455', '00-00-02', '25 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -588
WARNING. Abnormal entry count found on day 2016-12-03: -588
WARNING. Abnormal entry count found on day 2016-12-10: -531
WARNING. Abnormal entry count found on day 2016-12-10: -531
WARNING. Abnormal entry count found on day 2016-12-17: -522
WARNING. Abnormal entry count found on day 2016-12-17: -522
WARNING. Abnormal entry count found on day 2016-12-24: -393
WARNING. Abnormal entry count found on day 2016-12-24: -393
Processing turnstile ('R729', 'R292', '00-00-00', 'BAYCHESTER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5082
WARNING. Abnormal entry count found on day 2016-12-03: -5082
WARNING. Abnormal entry count found on day 2016-12-10: -5158
WARNING. Abnormal entry count found on day 2016-12-10: -5158
WARNING. Abnormal entry count found on day 2016-12-17: -4758
WARNING. Abnormal entry count found on day 2016-12-17: -4758
WARNING. Abnormal entry count found on day 2016-12-24: -3331
WARNING. Abnormal entry count found on day 2016-12-24: -3331
Processing turnstile ('S101', 'R070', '00-03-02', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -4001
WARNING. Abnormal entry count found on day 2016-12-03: -4001
WARNING. Abnormal entry count found on day 2016-12-10: -3620
WARNING. Abnormal entry count found on day 2016-12-10: -3620
WARNING. Abnormal entry count found on day 2016-12-17: -3275
WARNING. Abnormal entry count found on day 2016-12-17: -3275
WARNING. Abnormal entry count found on day 2016-12-24: -2850
WARNING. Abnormal entry count found on day 2016-12-24: -2850
Processing turnstile ('N503', 'R021', '00-00-00', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-09: -12068385
WARNING. Abnormal entry count found on day 2016-12-03: 12066536
WARNING. Abnormal entry count found on day 2016-12-09: -12068385
WARNING. Abnormal entry count found on day 2016-12-03: 12066536
WARNING. Abnormal entry count found on day 2016-12-09: -12068385
WARNING. Abnormal entry count found on day 2016-12-13: -56
WARNING. Abnormal entry count found on day 2016-12-14: -530
WARNING. Abnormal entry count found on day 2016-12-13: -56
WARNING. Abnormal entry count found on day 2016-12-14: -530
WARNING. Abnormal entry count found on day 2016-12-13: -56
WARNING. Abnormal entry count found on day 2016-12-14: -530
WARNING. Abnormal entry count found on day 2016-12-17: -999
WARNING. Abnormal entry count found on day 2016-12-17: -999
WARNING. Abnormal entry count found on day 2016-12-24: -676
WARNING. Abnormal entry count found on day 2016-12-24: -676
Processing turnstile ('G015', 'R312', '01-05-01', 'W 8 ST-AQUARIUM')
Processing turnstile ('A084', 'R125', '01-06-01', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2499
WARNING. Abnormal entry count found on day 2016-12-03: -2499
WARNING. Abnormal entry count found on day 2016-12-10: -3047
WARNING. Abnormal entry count found on day 2016-12-10: -3047
WARNING. Abnormal entry count found on day 2016-12-17: -2166
WARNING. Abnormal entry count found on day 2016-12-17: -2166
WARNING. Abnormal entry count found on day 2016-12-24: -2264
WARNING. Abnormal entry count found on day 2016-12-24: -2264
Processing turnstile ('N110', 'R283', '00-05-01', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9041
WARNING. Abnormal entry count found on day 2016-12-03: -9041
WARNING. Abnormal entry count found on day 2016-12-10: -8943
WARNING. Abnormal entry count found on day 2016-12-10: -8943
WARNING. Abnormal entry count found on day 2016-12-17: -9292
WARNING. Abnormal entry count found on day 2016-12-17: -9292
WARNING. Abnormal entry count found on day 2016-12-24: -6104
WARNING. Abnormal entry count found on day 2016-12-24: -6104
Processing turnstile ('R411', 'R450', '01-00-02', 'LONGWOOD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1139
WARNING. Abnormal entry count found on day 2016-12-03: -1139
WARNING. Abnormal entry count found on day 2016-12-10: -1087
WARNING. Abnormal entry count found on day 2016-12-10: -1087
WARNING. Abnormal entry count found on day 2016-12-17: -1066
WARNING. Abnormal entry count found on day 2016-12-17: -1066
WARNING. Abnormal entry count found on day 2016-12-24: -656
WARNING. Abnormal entry count found on day 2016-12-24: -656
Processing turnstile ('R192', 'R039', '00-00-00', 'MARBLE HILL-225')
WARNING. Abnormal entry count found on day 2016-12-03: -16376
WARNING. Abnormal entry count found on day 2016-12-03: -16376
WARNING. Abnormal entry count found on day 2016-12-10: -16384
WARNING. Abnormal entry count found on day 2016-12-10: -16384
WARNING. Abnormal entry count found on day 2016-12-17: -16242
WARNING. Abnormal entry count found on day 2016-12-17: -16242
WARNING. Abnormal entry count found on day 2016-12-24: -12459
WARNING. Abnormal entry count found on day 2016-12-24: -12459
Processing turnstile ('J028', 'R004', '00-00-03', '75 ST-ELDERTS')
WARNING. Abnormal entry count found on day 2016-12-03: -3035
WARNING. Abnormal entry count found on day 2016-12-03: -3035
WARNING. Abnormal entry count found on day 2016-12-10: -2876
WARNING. Abnormal entry count found on day 2016-12-10: -2876
WARNING. Abnormal entry count found on day 2016-12-17: -2855
WARNING. Abnormal entry count found on day 2016-12-17: -2855
WARNING. Abnormal entry count found on day 2016-12-24: -1882
WARNING. Abnormal entry count found on day 2016-12-24: -1882
Processing turnstile ('A082', 'R028', '05-05-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
Processing turnstile ('R612', 'R057', '01-03-02', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -5576
WARNING. Abnormal entry count found on day 2016-12-03: -5576
WARNING. Abnormal entry count found on day 2016-12-10: -4702
WARNING. Abnormal entry count found on day 2016-12-10: -4702
WARNING. Abnormal entry count found on day 2016-12-17: -5288
WARNING. Abnormal entry count found on day 2016-12-17: -5288
WARNING. Abnormal entry count found on day 2016-12-24: -3927
WARNING. Abnormal entry count found on day 2016-12-24: -3927
Processing turnstile ('N523', 'R300', '00-00-00', '2 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -15565
WARNING. Abnormal entry count found on day 2016-12-03: -15565
WARNING. Abnormal entry count found on day 2016-12-10: -14837
WARNING. Abnormal entry count found on day 2016-12-10: -14837
WARNING. Abnormal entry count found on day 2016-12-17: -13260
WARNING. Abnormal entry count found on day 2016-12-17: -13260
WARNING. Abnormal entry count found on day 2016-12-24: -11115
WARNING. Abnormal entry count found on day 2016-12-24: -11115
Processing turnstile ('N062A', 'R010', '00-00-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -23050
WARNING. Abnormal entry count found on day 2016-12-03: -23050
WARNING. Abnormal entry count found on day 2016-12-10: -24023
WARNING. Abnormal entry count found on day 2016-12-10: -24023
WARNING. Abnormal entry count found on day 2016-12-17: -24950
WARNING. Abnormal entry count found on day 2016-12-17: -24950
WARNING. Abnormal entry count found on day 2016-12-24: -28960
WARNING. Abnormal entry count found on day 2016-12-24: -28960
Processing turnstile ('R529', 'R208', '00-05-01', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-12-03: -14453
WARNING. Abnormal entry count found on day 2016-12-03: -14453
WARNING. Abnormal entry count found on day 2016-12-10: -13762
WARNING. Abnormal entry count found on day 2016-12-10: -13762
WARNING. Abnormal entry count found on day 2016-12-17: -13548
WARNING. Abnormal entry count found on day 2016-12-17: -13548
WARNING. Abnormal entry count found on day 2016-12-24: -11582
WARNING. Abnormal entry count found on day 2016-12-24: -11582
Processing turnstile ('R413', 'R325', '00-03-00', 'WHITLOCK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3589
WARNING. Abnormal entry count found on day 2016-12-03: -3589
WARNING. Abnormal entry count found on day 2016-12-10: -3402
WARNING. Abnormal entry count found on day 2016-12-10: -3402
WARNING. Abnormal entry count found on day 2016-12-17: -3501
WARNING. Abnormal entry count found on day 2016-12-17: -3501
WARNING. Abnormal entry count found on day 2016-12-24: -2532
WARNING. Abnormal entry count found on day 2016-12-24: -2532
Processing turnstile ('N203', 'R195', '00-03-05', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -547
WARNING. Abnormal entry count found on day 2016-12-24: -547
Processing turnstile ('R249', 'R179', '01-00-06', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6986
WARNING. Abnormal entry count found on day 2016-12-03: -6986
WARNING. Abnormal entry count found on day 2016-12-10: -7125
WARNING. Abnormal entry count found on day 2016-12-10: -7125
WARNING. Abnormal entry count found on day 2016-12-17: -7147
WARNING. Abnormal entry count found on day 2016-12-17: -7147
WARNING. Abnormal entry count found on day 2016-12-24: -5588
WARNING. Abnormal entry count found on day 2016-12-24: -5588
Processing turnstile ('N075', 'R111', '01-05-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-03: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
Processing turnstile ('R117', 'R343', '00-00-01', 'FRANKLIN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8073
WARNING. Abnormal entry count found on day 2016-12-03: -8073
WARNING. Abnormal entry count found on day 2016-12-10: -8125
WARNING. Abnormal entry count found on day 2016-12-10: -8125
WARNING. Abnormal entry count found on day 2016-12-17: -6782
WARNING. Abnormal entry count found on day 2016-12-17: -6782
WARNING. Abnormal entry count found on day 2016-12-24: -4453
WARNING. Abnormal entry count found on day 2016-12-24: -4453
Processing turnstile ('A047', 'R087', '00-00-02', 'CITY HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -3921
WARNING. Abnormal entry count found on day 2016-12-03: -3921
WARNING. Abnormal entry count found on day 2016-12-10: -3887
WARNING. Abnormal entry count found on day 2016-12-10: -3887
WARNING. Abnormal entry count found on day 2016-12-17: -3391
WARNING. Abnormal entry count found on day 2016-12-17: -3391
WARNING. Abnormal entry count found on day 2016-12-24: -2449
WARNING. Abnormal entry count found on day 2016-12-24: -2449
Processing turnstile ('N063A', 'R011', '00-00-03', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -26619
WARNING. Abnormal entry count found on day 2016-12-03: -26619
WARNING. Abnormal entry count found on day 2016-12-10: -26954
WARNING. Abnormal entry count found on day 2016-12-10: -26954
WARNING. Abnormal entry count found on day 2016-12-17: -25169
WARNING. Abnormal entry count found on day 2016-12-17: -25169
WARNING. Abnormal entry count found on day 2016-12-24: -21291
WARNING. Abnormal entry count found on day 2016-12-24: -21291
Processing turnstile ('A002', 'R051', '02-03-03', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9224
WARNING. Abnormal entry count found on day 2016-12-03: -9224
WARNING. Abnormal entry count found on day 2016-12-10: -9626
WARNING. Abnormal entry count found on day 2016-12-10: -9626
WARNING. Abnormal entry count found on day 2016-12-17: -9591
WARNING. Abnormal entry count found on day 2016-12-17: -9591
WARNING. Abnormal entry count found on day 2016-12-24: -7103
WARNING. Abnormal entry count found on day 2016-12-24: -7103
Processing turnstile ('C021', 'R212', '00-00-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10076
WARNING. Abnormal entry count found on day 2016-12-03: -10076
WARNING. Abnormal entry count found on day 2016-12-10: -9675
WARNING. Abnormal entry count found on day 2016-12-10: -9675
WARNING. Abnormal entry count found on day 2016-12-17: -10089
WARNING. Abnormal entry count found on day 2016-12-17: -10089
WARNING. Abnormal entry count found on day 2016-12-24: -7884
WARNING. Abnormal entry count found on day 2016-12-24: -7884
Processing turnstile ('N076', 'R111', '00-06-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17478
WARNING. Abnormal entry count found on day 2016-12-03: -17478
WARNING. Abnormal entry count found on day 2016-12-10: -17307
WARNING. Abnormal entry count found on day 2016-12-10: -17307
WARNING. Abnormal entry count found on day 2016-12-17: -15106
WARNING. Abnormal entry count found on day 2016-12-17: -15106
WARNING. Abnormal entry count found on day 2016-12-24: -9808
WARNING. Abnormal entry count found on day 2016-12-24: -9808
Processing turnstile ('B031', 'R172', '01-00-01', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -4235
WARNING. Abnormal entry count found on day 2016-12-03: -4235
WARNING. Abnormal entry count found on day 2016-12-10: -3987
WARNING. Abnormal entry count found on day 2016-12-10: -3987
WARNING. Abnormal entry count found on day 2016-12-17: -4093
WARNING. Abnormal entry count found on day 2016-12-17: -4093
WARNING. Abnormal entry count found on day 2016-12-24: -3496
WARNING. Abnormal entry count found on day 2016-12-24: -3496
Processing turnstile ('N049', 'R084', '01-02-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -13061
WARNING. Abnormal entry count found on day 2016-12-03: -13061
WARNING. Abnormal entry count found on day 2016-12-10: -12224
WARNING. Abnormal entry count found on day 2016-12-10: -12224
WARNING. Abnormal entry count found on day 2016-12-17: -11268
WARNING. Abnormal entry count found on day 2016-12-17: -11268
WARNING. Abnormal entry count found on day 2016-12-24: -8542
WARNING. Abnormal entry count found on day 2016-12-24: -8542
Processing turnstile ('N506', 'R022', '00-00-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -21759
WARNING. Abnormal entry count found on day 2016-12-03: -21759
WARNING. Abnormal entry count found on day 2016-12-10: -21911
WARNING. Abnormal entry count found on day 2016-12-10: -21911
WARNING. Abnormal entry count found on day 2016-12-17: -25177
WARNING. Abnormal entry count found on day 2016-12-17: -25177
WARNING. Abnormal entry count found on day 2016-12-24: -19935
WARNING. Abnormal entry count found on day 2016-12-24: -19935
Processing turnstile ('N305A', 'R016', '00-00-02', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -3877
WARNING. Abnormal entry count found on day 2016-12-03: -3877
WARNING. Abnormal entry count found on day 2016-12-10: -3696
WARNING. Abnormal entry count found on day 2016-12-10: -3696
WARNING. Abnormal entry count found on day 2016-12-17: -2896
WARNING. Abnormal entry count found on day 2016-12-17: -2896
WARNING. Abnormal entry count found on day 2016-12-24: -1734
WARNING. Abnormal entry count found on day 2016-12-24: -1734
Processing turnstile ('R143', 'R032', '02-00-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7791
WARNING. Abnormal entry count found on day 2016-12-03: -7791
WARNING. Abnormal entry count found on day 2016-12-10: -7654
WARNING. Abnormal entry count found on day 2016-12-10: -7654
WARNING. Abnormal entry count found on day 2016-12-17: -6528
WARNING. Abnormal entry count found on day 2016-12-17: -6528
WARNING. Abnormal entry count found on day 2016-12-24: -4341
WARNING. Abnormal entry count found on day 2016-12-24: -4341
Processing turnstile ('J031', 'R006', '00-00-03', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -8244
WARNING. Abnormal entry count found on day 2016-12-03: -8244
WARNING. Abnormal entry count found on day 2016-12-10: -7759
WARNING. Abnormal entry count found on day 2016-12-10: -7759
WARNING. Abnormal entry count found on day 2016-12-17: -7917
WARNING. Abnormal entry count found on day 2016-12-17: -7917
WARNING. Abnormal entry count found on day 2016-12-24: -5838
WARNING. Abnormal entry count found on day 2016-12-24: -5838
Processing turnstile ('N067', 'R012', '00-03-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -17908
WARNING. Abnormal entry count found on day 2016-12-03: -17908
WARNING. Abnormal entry count found on day 2016-12-10: -13234
WARNING. Abnormal entry count found on day 2016-12-10: -13234
WARNING. Abnormal entry count found on day 2016-12-17: -12454
WARNING. Abnormal entry count found on day 2016-12-17: -12454
WARNING. Abnormal entry count found on day 2016-12-24: -12642
WARNING. Abnormal entry count found on day 2016-12-24: -12642
Processing turnstile ('N108', 'R217', '00-00-00', 'HOYT-SCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -17815
WARNING. Abnormal entry count found on day 2016-12-03: -17815
WARNING. Abnormal entry count found on day 2016-12-10: -17150
WARNING. Abnormal entry count found on day 2016-12-10: -17150
WARNING. Abnormal entry count found on day 2016-12-17: -16454
WARNING. Abnormal entry count found on day 2016-12-17: -16454
WARNING. Abnormal entry count found on day 2016-12-24: -12397
WARNING. Abnormal entry count found on day 2016-12-24: -12397
Processing turnstile ('N071', 'R013', '00-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -6149
WARNING. Abnormal entry count found on day 2016-12-03: -6149
WARNING. Abnormal entry count found on day 2016-12-10: -5970
WARNING. Abnormal entry count found on day 2016-12-10: -5970
WARNING. Abnormal entry count found on day 2016-12-17: -5989
WARNING. Abnormal entry count found on day 2016-12-17: -5989
WARNING. Abnormal entry count found on day 2016-12-24: -5608
WARNING. Abnormal entry count found on day 2016-12-24: -5608
Processing turnstile ('A037', 'R170', '05-00-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -28123
WARNING. Abnormal entry count found on day 2016-12-03: -28123
WARNING. Abnormal entry count found on day 2016-12-10: -31851
WARNING. Abnormal entry count found on day 2016-12-10: -31851
WARNING. Abnormal entry count found on day 2016-12-17: -30236
WARNING. Abnormal entry count found on day 2016-12-17: -30236
WARNING. Abnormal entry count found on day 2016-12-24: -19702
WARNING. Abnormal entry count found on day 2016-12-24: -19702
Processing turnstile ('R532H', 'R328', '02-00-04', 'METS-WILLETS PT')
Processing turnstile ('N091', 'R029', '02-00-05', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10621
WARNING. Abnormal entry count found on day 2016-12-03: -10621
WARNING. Abnormal entry count found on day 2016-12-10: -9392
WARNING. Abnormal entry count found on day 2016-12-10: -9392
WARNING. Abnormal entry count found on day 2016-12-17: -7127
WARNING. Abnormal entry count found on day 2016-12-17: -7127
WARNING. Abnormal entry count found on day 2016-12-24: -4006
WARNING. Abnormal entry count found on day 2016-12-24: -4006
Processing turnstile ('R137', 'R031', '02-03-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -8273
WARNING. Abnormal entry count found on day 2016-12-03: -8273
WARNING. Abnormal entry count found on day 2016-12-10: -9475
WARNING. Abnormal entry count found on day 2016-12-10: -9475
WARNING. Abnormal entry count found on day 2016-12-17: -7275
WARNING. Abnormal entry count found on day 2016-12-17: -7275
WARNING. Abnormal entry count found on day 2016-12-24: -3554
WARNING. Abnormal entry count found on day 2016-12-24: -3554
Processing turnstile ('R155', 'R116', '01-00-09', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9026
WARNING. Abnormal entry count found on day 2016-12-03: -9026
WARNING. Abnormal entry count found on day 2016-12-10: -9236
WARNING. Abnormal entry count found on day 2016-12-10: -9236
WARNING. Abnormal entry count found on day 2016-12-17: -8699
WARNING. Abnormal entry count found on day 2016-12-17: -8699
WARNING. Abnormal entry count found on day 2016-12-24: -7230
WARNING. Abnormal entry count found on day 2016-12-24: -7230
Processing turnstile ('A033', 'R170', '02-00-05', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -35169
WARNING. Abnormal entry count found on day 2016-12-03: -35169
WARNING. Abnormal entry count found on day 2016-12-10: -39552
WARNING. Abnormal entry count found on day 2016-12-10: -39552
WARNING. Abnormal entry count found on day 2016-12-17: -37120
WARNING. Abnormal entry count found on day 2016-12-17: -37120
WARNING. Abnormal entry count found on day 2016-12-24: -23865
WARNING. Abnormal entry count found on day 2016-12-24: -23865
Processing turnstile ('N009', 'R174', '01-00-01', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7385
WARNING. Abnormal entry count found on day 2016-12-03: -7385
WARNING. Abnormal entry count found on day 2016-12-10: -7415
WARNING. Abnormal entry count found on day 2016-12-10: -7415
WARNING. Abnormal entry count found on day 2016-12-17: -7094
WARNING. Abnormal entry count found on day 2016-12-17: -7094
WARNING. Abnormal entry count found on day 2016-12-24: -5386
WARNING. Abnormal entry count found on day 2016-12-24: -5386
Processing turnstile ('N603', 'R303', '00-05-01', '21 ST-QNSBRIDGE')
Processing turnstile ('A046', 'R463', '00-00-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5048
WARNING. Abnormal entry count found on day 2016-12-03: -5048
WARNING. Abnormal entry count found on day 2016-12-10: -5014
WARNING. Abnormal entry count found on day 2016-12-10: -5014
WARNING. Abnormal entry count found on day 2016-12-17: -4855
WARNING. Abnormal entry count found on day 2016-12-17: -4855
WARNING. Abnormal entry count found on day 2016-12-24: -3977
WARNING. Abnormal entry count found on day 2016-12-24: -3977
Processing turnstile ('N519A', 'R461', '01-06-00', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -9035
WARNING. Abnormal entry count found on day 2016-12-03: -9035
WARNING. Abnormal entry count found on day 2016-12-10: -9430
WARNING. Abnormal entry count found on day 2016-12-10: -9430
WARNING. Abnormal entry count found on day 2016-12-17: -8552
WARNING. Abnormal entry count found on day 2016-12-17: -8552
WARNING. Abnormal entry count found on day 2016-12-24: -4945
WARNING. Abnormal entry count found on day 2016-12-24: -4945
Processing turnstile ('N124', 'R103', '00-00-02', 'BROADWAY JCT')
WARNING. Abnormal entry count found on day 2016-12-03: -3095
WARNING. Abnormal entry count found on day 2016-12-03: -3095
WARNING. Abnormal entry count found on day 2016-12-10: -2966
WARNING. Abnormal entry count found on day 2016-12-10: -2966
WARNING. Abnormal entry count found on day 2016-12-17: -2929
WARNING. Abnormal entry count found on day 2016-12-17: -2929
WARNING. Abnormal entry count found on day 2016-12-24: -2340
WARNING. Abnormal entry count found on day 2016-12-24: -2340
Processing turnstile ('A010', 'R080', '00-00-01', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14497
WARNING. Abnormal entry count found on day 2016-12-03: -14497
WARNING. Abnormal entry count found on day 2016-12-10: -14387
WARNING. Abnormal entry count found on day 2016-12-10: -14387
WARNING. Abnormal entry count found on day 2016-12-17: -15557
WARNING. Abnormal entry count found on day 2016-12-17: -15557
WARNING. Abnormal entry count found on day 2016-12-24: -10577
WARNING. Abnormal entry count found on day 2016-12-24: -10577
Processing turnstile ('A042', 'R086', '01-00-01', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4773
WARNING. Abnormal entry count found on day 2016-12-03: -4773
WARNING. Abnormal entry count found on day 2016-12-10: -4716
WARNING. Abnormal entry count found on day 2016-12-10: -4716
WARNING. Abnormal entry count found on day 2016-12-17: -5000
WARNING. Abnormal entry count found on day 2016-12-17: -5000
WARNING. Abnormal entry count found on day 2016-12-24: -4482
WARNING. Abnormal entry count found on day 2016-12-24: -4482
Processing turnstile ('R244', 'R050', '00-00-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7516
WARNING. Abnormal entry count found on day 2016-12-03: -7516
WARNING. Abnormal entry count found on day 2016-12-10: -7280
WARNING. Abnormal entry count found on day 2016-12-10: -7280
WARNING. Abnormal entry count found on day 2016-12-17: -6607
WARNING. Abnormal entry count found on day 2016-12-17: -6607
WARNING. Abnormal entry count found on day 2016-12-24: -5549
WARNING. Abnormal entry count found on day 2016-12-24: -5549
Processing turnstile ('N063', 'R011', '02-00-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -5259
WARNING. Abnormal entry count found on day 2016-12-03: -5259
WARNING. Abnormal entry count found on day 2016-12-10: -5467
WARNING. Abnormal entry count found on day 2016-12-10: -5467
WARNING. Abnormal entry count found on day 2016-12-17: -5000
WARNING. Abnormal entry count found on day 2016-12-17: -5000
WARNING. Abnormal entry count found on day 2016-12-24: -4463
WARNING. Abnormal entry count found on day 2016-12-24: -4463
Processing turnstile ('N203', 'R195', '00-03-01', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -372
WARNING. Abnormal entry count found on day 2016-12-24: -372
Processing turnstile ('R521', 'R327', '00-00-02', '52 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3715
WARNING. Abnormal entry count found on day 2016-12-03: -3715
WARNING. Abnormal entry count found on day 2016-12-10: -3839
WARNING. Abnormal entry count found on day 2016-12-10: -3839
WARNING. Abnormal entry count found on day 2016-12-17: -3667
WARNING. Abnormal entry count found on day 2016-12-17: -3667
WARNING. Abnormal entry count found on day 2016-12-24: -3018
WARNING. Abnormal entry count found on day 2016-12-24: -3018
Processing turnstile ('N539A', 'R288', '00-03-01', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4245
WARNING. Abnormal entry count found on day 2016-12-03: -4245
WARNING. Abnormal entry count found on day 2016-12-10: -4427
WARNING. Abnormal entry count found on day 2016-12-10: -4427
WARNING. Abnormal entry count found on day 2016-12-17: -3836
WARNING. Abnormal entry count found on day 2016-12-17: -3836
WARNING. Abnormal entry count found on day 2016-12-24: -2195
WARNING. Abnormal entry count found on day 2016-12-24: -2195
Processing turnstile ('N070', 'R012', '04-05-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -27
WARNING. Abnormal entry count found on day 2016-12-03: -27
WARNING. Abnormal entry count found on day 2016-12-13: 67107851
WARNING. Abnormal entry count found on day 2016-12-10: -67107873
WARNING. Abnormal entry count found on day 2016-12-13: 67107851
WARNING. Abnormal entry count found on day 2016-12-10: -67107873
WARNING. Abnormal entry count found on day 2016-12-13: 67107851
WARNING. Abnormal entry count found on day 2016-12-17: -14
WARNING. Abnormal entry count found on day 2016-12-17: -14
WARNING. Abnormal entry count found on day 2016-12-24: -11
WARNING. Abnormal entry count found on day 2016-12-24: -11
Processing turnstile ('N063A', 'R011', '00-05-01', '42 ST-PORT AUTH')
Processing turnstile ('J032', 'R006', '01-05-01', 'WOODHAVEN BLVD')
Processing turnstile ('N307', 'R359', '00-00-02', 'COURT SQ-23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9766
WARNING. Abnormal entry count found on day 2016-12-03: -9766
WARNING. Abnormal entry count found on day 2016-12-10: -9174
WARNING. Abnormal entry count found on day 2016-12-10: -9174
WARNING. Abnormal entry count found on day 2016-12-17: -8472
WARNING. Abnormal entry count found on day 2016-12-17: -8472
WARNING. Abnormal entry count found on day 2016-12-24: -5814
WARNING. Abnormal entry count found on day 2016-12-24: -5814
Processing turnstile ('R228', 'R143', '00-00-05', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11609
WARNING. Abnormal entry count found on day 2016-12-03: -11609
WARNING. Abnormal entry count found on day 2016-12-10: -11145
WARNING. Abnormal entry count found on day 2016-12-10: -11145
WARNING. Abnormal entry count found on day 2016-12-17: -9976
WARNING. Abnormal entry count found on day 2016-12-17: -9976
WARNING. Abnormal entry count found on day 2016-12-24: -6607
WARNING. Abnormal entry count found on day 2016-12-24: -6607
Processing turnstile ('N519', 'R461', '00-03-03', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -4216
WARNING. Abnormal entry count found on day 2016-12-03: -4216
WARNING. Abnormal entry count found on day 2016-12-10: -4553
WARNING. Abnormal entry count found on day 2016-12-10: -4553
WARNING. Abnormal entry count found on day 2016-12-17: -4911
WARNING. Abnormal entry count found on day 2016-12-17: -4911
WARNING. Abnormal entry count found on day 2016-12-24: -3913
WARNING. Abnormal entry count found on day 2016-12-24: -3913
Processing turnstile ('R514', 'R094', '00-00-00', 'ASTORIA BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -8455
WARNING. Abnormal entry count found on day 2016-12-03: -8455
WARNING. Abnormal entry count found on day 2016-12-10: -8237
WARNING. Abnormal entry count found on day 2016-12-10: -8237
WARNING. Abnormal entry count found on day 2016-12-17: -7742
WARNING. Abnormal entry count found on day 2016-12-17: -7742
WARNING. Abnormal entry count found on day 2016-12-24: -5600
WARNING. Abnormal entry count found on day 2016-12-24: -5600
Processing turnstile ('PTH12', 'R542', '00-00-01', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5628
WARNING. Abnormal entry count found on day 2016-12-03: -5628
WARNING. Abnormal entry count found on day 2016-12-10: -5333
WARNING. Abnormal entry count found on day 2016-12-10: -5333
WARNING. Abnormal entry count found on day 2016-12-17: -5824
WARNING. Abnormal entry count found on day 2016-12-17: -5824
WARNING. Abnormal entry count found on day 2016-12-24: -4425
WARNING. Abnormal entry count found on day 2016-12-24: -4425
Processing turnstile ('K026', 'R100', '00-05-01', 'METROPOLITAN AV')
Processing turnstile ('R129', 'R321', '00-00-00', '18 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17141
WARNING. Abnormal entry count found on day 2016-12-03: -17141
WARNING. Abnormal entry count found on day 2016-12-10: -15248
WARNING. Abnormal entry count found on day 2016-12-10: -15248
WARNING. Abnormal entry count found on day 2016-12-17: -12969
WARNING. Abnormal entry count found on day 2016-12-17: -12969
WARNING. Abnormal entry count found on day 2016-12-24: -8051
WARNING. Abnormal entry count found on day 2016-12-24: -8051
Processing turnstile ('R293', 'R133', '00-00-03', 'MOSHOLU PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -5575
WARNING. Abnormal entry count found on day 2016-12-03: -5575
WARNING. Abnormal entry count found on day 2016-12-10: -5155
WARNING. Abnormal entry count found on day 2016-12-10: -5155
WARNING. Abnormal entry count found on day 2016-12-17: -5036
WARNING. Abnormal entry count found on day 2016-12-17: -5036
WARNING. Abnormal entry count found on day 2016-12-24: -3864
WARNING. Abnormal entry count found on day 2016-12-24: -3864
Processing turnstile ('R532', 'R328', '00-05-02', 'METS-WILLETS PT')
Processing turnstile ('PTH06', 'R546', '00-00-08', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -9163
WARNING. Abnormal entry count found on day 2016-12-03: -9163
WARNING. Abnormal entry count found on day 2016-12-10: -10712
WARNING. Abnormal entry count found on day 2016-12-10: -10712
WARNING. Abnormal entry count found on day 2016-12-17: -9248
WARNING. Abnormal entry count found on day 2016-12-17: -9248
WARNING. Abnormal entry count found on day 2016-12-24: -7909
WARNING. Abnormal entry count found on day 2016-12-24: -7909
Processing turnstile ('B027', 'R136', '00-00-03', 'SHEEPSHEAD BAY')
WARNING. Abnormal entry count found on day 2016-12-03: -11795
WARNING. Abnormal entry count found on day 2016-12-03: -11795
WARNING. Abnormal entry count found on day 2016-12-10: -11327
WARNING. Abnormal entry count found on day 2016-12-10: -11327
WARNING. Abnormal entry count found on day 2016-12-17: -11426
WARNING. Abnormal entry count found on day 2016-12-17: -11426
WARNING. Abnormal entry count found on day 2016-12-24: -9010
WARNING. Abnormal entry count found on day 2016-12-24: -9010
Processing turnstile ('R258', 'R132', '00-00-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10877
WARNING. Abnormal entry count found on day 2016-12-03: -10877
WARNING. Abnormal entry count found on day 2016-12-10: -10960
WARNING. Abnormal entry count found on day 2016-12-10: -10960
WARNING. Abnormal entry count found on day 2016-12-17: -10754
WARNING. Abnormal entry count found on day 2016-12-17: -10754
WARNING. Abnormal entry count found on day 2016-12-24: -8346
WARNING. Abnormal entry count found on day 2016-12-24: -8346
Processing turnstile ('N114', 'R297', '01-05-01', 'FRANKLIN AV')
Processing turnstile ('R113', 'R028', '01-01-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3705
WARNING. Abnormal entry count found on day 2016-12-03: -3705
WARNING. Abnormal entry count found on day 2016-12-10: -3595
WARNING. Abnormal entry count found on day 2016-12-10: -3595
WARNING. Abnormal entry count found on day 2016-12-17: -3001
WARNING. Abnormal entry count found on day 2016-12-17: -3001
WARNING. Abnormal entry count found on day 2016-12-24: -1967
WARNING. Abnormal entry count found on day 2016-12-24: -1967
Processing turnstile ('R645', 'R110', '00-03-01', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -1865
WARNING. Abnormal entry count found on day 2016-12-03: -1865
WARNING. Abnormal entry count found on day 2016-12-10: -1785
WARNING. Abnormal entry count found on day 2016-12-10: -1785
WARNING. Abnormal entry count found on day 2016-12-17: -1754
WARNING. Abnormal entry count found on day 2016-12-17: -1754
WARNING. Abnormal entry count found on day 2016-12-24: -1406
WARNING. Abnormal entry count found on day 2016-12-24: -1406
Processing turnstile ('N340', 'R115', '00-00-01', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3629
WARNING. Abnormal entry count found on day 2016-12-03: -3629
WARNING. Abnormal entry count found on day 2016-12-10: -3529
WARNING. Abnormal entry count found on day 2016-12-10: -3529
WARNING. Abnormal entry count found on day 2016-12-17: -3580
WARNING. Abnormal entry count found on day 2016-12-17: -3580
WARNING. Abnormal entry count found on day 2016-12-24: -2472
WARNING. Abnormal entry count found on day 2016-12-24: -2472
Processing turnstile ('N500', 'R020', '00-00-00', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -13764
WARNING. Abnormal entry count found on day 2016-12-03: -13764
WARNING. Abnormal entry count found on day 2016-12-10: -13344
WARNING. Abnormal entry count found on day 2016-12-10: -13344
WARNING. Abnormal entry count found on day 2016-12-17: -14321
WARNING. Abnormal entry count found on day 2016-12-17: -14321
WARNING. Abnormal entry count found on day 2016-12-24: -15714
WARNING. Abnormal entry count found on day 2016-12-24: -15714
Processing turnstile ('R161B', 'R452', '00-05-00', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -12
WARNING. Abnormal entry count found on day 2016-12-17: -12
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('N141', 'R356', '00-03-01', 'OZONE PK LEFFRT')
WARNING. Abnormal entry count found on day 2016-12-03: -2364
WARNING. Abnormal entry count found on day 2016-12-03: -2364
WARNING. Abnormal entry count found on day 2016-12-10: -3038
WARNING. Abnormal entry count found on day 2016-12-10: -3038
WARNING. Abnormal entry count found on day 2016-12-17: -596
WARNING. Abnormal entry count found on day 2016-12-17: -596
WARNING. Abnormal entry count found on day 2016-12-24: -1365
WARNING. Abnormal entry count found on day 2016-12-24: -1365
Processing turnstile ('N401', 'R360', '00-00-01', '21 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2347
WARNING. Abnormal entry count found on day 2016-12-03: -2347
WARNING. Abnormal entry count found on day 2016-12-10: -2276
WARNING. Abnormal entry count found on day 2016-12-10: -2276
WARNING. Abnormal entry count found on day 2016-12-17: -2033
WARNING. Abnormal entry count found on day 2016-12-17: -2033
WARNING. Abnormal entry count found on day 2016-12-24: -1511
WARNING. Abnormal entry count found on day 2016-12-24: -1511
Processing turnstile ('N103', 'R127', '00-02-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -8767
WARNING. Abnormal entry count found on day 2016-12-03: -8767
WARNING. Abnormal entry count found on day 2016-12-10: -8404
WARNING. Abnormal entry count found on day 2016-12-10: -8404
WARNING. Abnormal entry count found on day 2016-12-17: -8865
WARNING. Abnormal entry count found on day 2016-12-17: -8865
WARNING. Abnormal entry count found on day 2016-12-24: -4560
WARNING. Abnormal entry count found on day 2016-12-24: -4560
Processing turnstile ('N073', 'R013', '02-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -6650
WARNING. Abnormal entry count found on day 2016-12-03: -6650
WARNING. Abnormal entry count found on day 2016-12-10: -6536
WARNING. Abnormal entry count found on day 2016-12-10: -6536
WARNING. Abnormal entry count found on day 2016-12-17: -5886
WARNING. Abnormal entry count found on day 2016-12-17: -5886
WARNING. Abnormal entry count found on day 2016-12-24: -3794
WARNING. Abnormal entry count found on day 2016-12-24: -3794
Processing turnstile ('R423', 'R429', '00-03-01', 'PELHAM BAY PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -15857
WARNING. Abnormal entry count found on day 2016-12-03: -15857
WARNING. Abnormal entry count found on day 2016-12-10: -17482
WARNING. Abnormal entry count found on day 2016-12-10: -17482
WARNING. Abnormal entry count found on day 2016-12-17: -17489
WARNING. Abnormal entry count found on day 2016-12-17: -17489
WARNING. Abnormal entry count found on day 2016-12-24: -14445
WARNING. Abnormal entry count found on day 2016-12-24: -14445
Processing turnstile ('N324', 'R018', '00-06-02', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -22713
WARNING. Abnormal entry count found on day 2016-12-03: -22713
WARNING. Abnormal entry count found on day 2016-12-10: -21517
WARNING. Abnormal entry count found on day 2016-12-10: -21517
WARNING. Abnormal entry count found on day 2016-12-17: -19453
WARNING. Abnormal entry count found on day 2016-12-17: -19453
WARNING. Abnormal entry count found on day 2016-12-24: -16658
WARNING. Abnormal entry count found on day 2016-12-24: -16658
Processing turnstile ('R159', 'R164', '01-00-04', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -10620
WARNING. Abnormal entry count found on day 2016-12-03: -10620
WARNING. Abnormal entry count found on day 2016-12-10: -10224
WARNING. Abnormal entry count found on day 2016-12-10: -10224
WARNING. Abnormal entry count found on day 2016-12-17: -10915
WARNING. Abnormal entry count found on day 2016-12-17: -10915
WARNING. Abnormal entry count found on day 2016-12-24: -7228
WARNING. Abnormal entry count found on day 2016-12-24: -7228
Processing turnstile ('N103', 'R127', '00-06-03', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -21097
WARNING. Abnormal entry count found on day 2016-12-03: -21097
WARNING. Abnormal entry count found on day 2016-12-10: -21002
WARNING. Abnormal entry count found on day 2016-12-10: -21002
WARNING. Abnormal entry count found on day 2016-12-17: -21177
WARNING. Abnormal entry count found on day 2016-12-17: -21177
WARNING. Abnormal entry count found on day 2016-12-24: -16319
WARNING. Abnormal entry count found on day 2016-12-24: -16319
Processing turnstile ('R315', 'R406', '01-00-01', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4079
WARNING. Abnormal entry count found on day 2016-12-03: -4079
WARNING. Abnormal entry count found on day 2016-12-10: -3361
WARNING. Abnormal entry count found on day 2016-12-10: -3361
WARNING. Abnormal entry count found on day 2016-12-17: -3439
WARNING. Abnormal entry count found on day 2016-12-17: -3439
WARNING. Abnormal entry count found on day 2016-12-24: -2610
WARNING. Abnormal entry count found on day 2016-12-24: -2610
Processing turnstile ('N544', 'R289', '01-06-00', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -6488
WARNING. Abnormal entry count found on day 2016-12-03: -6488
WARNING. Abnormal entry count found on day 2016-12-10: -6394
WARNING. Abnormal entry count found on day 2016-12-10: -6394
WARNING. Abnormal entry count found on day 2016-12-17: -6456
WARNING. Abnormal entry count found on day 2016-12-17: -6456
WARNING. Abnormal entry count found on day 2016-12-24: -2865
WARNING. Abnormal entry count found on day 2016-12-24: -2865
Processing turnstile ('R151', 'R033', '00-00-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -27582
WARNING. Abnormal entry count found on day 2016-12-03: -27582
WARNING. Abnormal entry count found on day 2016-12-10: -26657
WARNING. Abnormal entry count found on day 2016-12-10: -26657
WARNING. Abnormal entry count found on day 2016-12-17: -31858
WARNING. Abnormal entry count found on day 2016-12-17: -31858
WARNING. Abnormal entry count found on day 2016-12-24: -29907
WARNING. Abnormal entry count found on day 2016-12-24: -29907
Processing turnstile ('N212', 'R253', '01-00-00', '174-175 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -3237
WARNING. Abnormal entry count found on day 2016-12-03: -3237
WARNING. Abnormal entry count found on day 2016-12-10: -3084
WARNING. Abnormal entry count found on day 2016-12-10: -3084
WARNING. Abnormal entry count found on day 2016-12-17: -3166
WARNING. Abnormal entry count found on day 2016-12-17: -3166
WARNING. Abnormal entry count found on day 2016-12-24: -2472
WARNING. Abnormal entry count found on day 2016-12-24: -2472
Processing turnstile ('R151', 'R033', '00-00-04', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13205
WARNING. Abnormal entry count found on day 2016-12-03: -13205
WARNING. Abnormal entry count found on day 2016-12-10: -13919
WARNING. Abnormal entry count found on day 2016-12-10: -13919
WARNING. Abnormal entry count found on day 2016-12-17: -15175
WARNING. Abnormal entry count found on day 2016-12-17: -15175
WARNING. Abnormal entry count found on day 2016-12-24: -16795
WARNING. Abnormal entry count found on day 2016-12-24: -16795
Processing turnstile ('R523', 'R147', '00-00-01', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -3206
WARNING. Abnormal entry count found on day 2016-12-03: -3206
WARNING. Abnormal entry count found on day 2016-12-10: -10453
WARNING. Abnormal entry count found on day 2016-12-10: -10453
WARNING. Abnormal entry count found on day 2016-12-17: -10093
WARNING. Abnormal entry count found on day 2016-12-17: -10093
WARNING. Abnormal entry count found on day 2016-12-24: -8778
WARNING. Abnormal entry count found on day 2016-12-24: -8778
Processing turnstile ('N340A', 'R115', '01-03-00', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9495
WARNING. Abnormal entry count found on day 2016-12-03: -9495
WARNING. Abnormal entry count found on day 2016-12-10: -8964
WARNING. Abnormal entry count found on day 2016-12-10: -8964
WARNING. Abnormal entry count found on day 2016-12-17: -8876
WARNING. Abnormal entry count found on day 2016-12-17: -8876
WARNING. Abnormal entry count found on day 2016-12-24: -7214
WARNING. Abnormal entry count found on day 2016-12-24: -7214
Processing turnstile ('R250', 'R179', '00-00-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -32075
WARNING. Abnormal entry count found on day 2016-12-03: -32075
WARNING. Abnormal entry count found on day 2016-12-10: -28485
WARNING. Abnormal entry count found on day 2016-12-10: -28485
WARNING. Abnormal entry count found on day 2016-12-17: -26819
WARNING. Abnormal entry count found on day 2016-12-17: -26819
WARNING. Abnormal entry count found on day 2016-12-24: -19122
WARNING. Abnormal entry count found on day 2016-12-24: -19122
Processing turnstile ('N519A', 'R461', '01-00-01', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -5258
WARNING. Abnormal entry count found on day 2016-12-03: -5258
WARNING. Abnormal entry count found on day 2016-12-10: -5081
WARNING. Abnormal entry count found on day 2016-12-10: -5081
WARNING. Abnormal entry count found on day 2016-12-17: -5627
WARNING. Abnormal entry count found on day 2016-12-17: -5627
WARNING. Abnormal entry count found on day 2016-12-24: -4141
WARNING. Abnormal entry count found on day 2016-12-24: -4141
Processing turnstile ('R530', 'R310', '00-00-01', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14478
WARNING. Abnormal entry count found on day 2016-12-03: -14478
WARNING. Abnormal entry count found on day 2016-12-10: -13891
WARNING. Abnormal entry count found on day 2016-12-10: -13891
WARNING. Abnormal entry count found on day 2016-12-17: -14204
WARNING. Abnormal entry count found on day 2016-12-17: -14204
WARNING. Abnormal entry count found on day 2016-12-24: -12057
WARNING. Abnormal entry count found on day 2016-12-24: -12057
Processing turnstile ('R244', 'R050', '00-03-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3058
WARNING. Abnormal entry count found on day 2016-12-03: -3058
WARNING. Abnormal entry count found on day 2016-12-10: -3072
WARNING. Abnormal entry count found on day 2016-12-10: -3072
WARNING. Abnormal entry count found on day 2016-12-17: -3033
WARNING. Abnormal entry count found on day 2016-12-17: -3033
WARNING. Abnormal entry count found on day 2016-12-24: -2254
WARNING. Abnormal entry count found on day 2016-12-24: -2254
Processing turnstile ('N300', 'R113', '01-00-01', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7055
WARNING. Abnormal entry count found on day 2016-12-03: -7055
WARNING. Abnormal entry count found on day 2016-12-10: -7413
WARNING. Abnormal entry count found on day 2016-12-10: -7413
WARNING. Abnormal entry count found on day 2016-12-17: -6293
WARNING. Abnormal entry count found on day 2016-12-17: -6293
WARNING. Abnormal entry count found on day 2016-12-24: -4234
WARNING. Abnormal entry count found on day 2016-12-24: -4234
Processing turnstile ('J003', 'R352', '00-00-00', 'HEWES ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6884
WARNING. Abnormal entry count found on day 2016-12-03: -6884
WARNING. Abnormal entry count found on day 2016-12-10: -6745
WARNING. Abnormal entry count found on day 2016-12-10: -6745
WARNING. Abnormal entry count found on day 2016-12-17: -7150
WARNING. Abnormal entry count found on day 2016-12-17: -7150
WARNING. Abnormal entry count found on day 2016-12-24: -4877
WARNING. Abnormal entry count found on day 2016-12-24: -4877
Processing turnstile ('A016', 'R081', '03-06-01', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -459
WARNING. Abnormal entry count found on day 2016-12-03: -459
WARNING. Abnormal entry count found on day 2016-12-10: -457
WARNING. Abnormal entry count found on day 2016-12-10: -457
WARNING. Abnormal entry count found on day 2016-12-17: -1032
WARNING. Abnormal entry count found on day 2016-12-17: -1032
WARNING. Abnormal entry count found on day 2016-12-24: -926
WARNING. Abnormal entry count found on day 2016-12-24: -926
Processing turnstile ('H009', 'R235', '00-06-00', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6564
WARNING. Abnormal entry count found on day 2016-12-03: -6564
WARNING. Abnormal entry count found on day 2016-12-10: -6196
WARNING. Abnormal entry count found on day 2016-12-10: -6196
WARNING. Abnormal entry count found on day 2016-12-17: -5682
WARNING. Abnormal entry count found on day 2016-12-17: -5682
WARNING. Abnormal entry count found on day 2016-12-24: -2686
WARNING. Abnormal entry count found on day 2016-12-24: -2686
Processing turnstile ('R231', 'R176', '00-00-01', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11591
WARNING. Abnormal entry count found on day 2016-12-03: -11591
WARNING. Abnormal entry count found on day 2016-12-10: -11628
WARNING. Abnormal entry count found on day 2016-12-10: -11628
WARNING. Abnormal entry count found on day 2016-12-17: -10468
WARNING. Abnormal entry count found on day 2016-12-17: -10468
WARNING. Abnormal entry count found on day 2016-12-24: -7873
WARNING. Abnormal entry count found on day 2016-12-24: -7873
Processing turnstile ('N547', 'R420', '01-06-00', 'DITMAS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3749
WARNING. Abnormal entry count found on day 2016-12-03: -3749
WARNING. Abnormal entry count found on day 2016-12-10: -2820
WARNING. Abnormal entry count found on day 2016-12-10: -2820
WARNING. Abnormal entry count found on day 2016-12-18: 65761790
WARNING. Abnormal entry count found on day 2016-12-17: -65764601
WARNING. Abnormal entry count found on day 2016-12-18: 65761790
WARNING. Abnormal entry count found on day 2016-12-17: -65764601
WARNING. Abnormal entry count found on day 2016-12-18: 65761790
WARNING. Abnormal entry count found on day 2016-12-24: -2137
WARNING. Abnormal entry count found on day 2016-12-24: -2137
Processing turnstile ('R610', 'R057', '00-06-01', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -573
WARNING. Abnormal entry count found on day 2016-12-03: -573
WARNING. Abnormal entry count found on day 2016-12-10: -1002
WARNING. Abnormal entry count found on day 2016-12-10: -1002
WARNING. Abnormal entry count found on day 2016-12-17: -845
WARNING. Abnormal entry count found on day 2016-12-17: -845
WARNING. Abnormal entry count found on day 2016-12-24: -497
WARNING. Abnormal entry count found on day 2016-12-24: -497
Processing turnstile ('R151', 'R033', '00-00-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12958
WARNING. Abnormal entry count found on day 2016-12-03: -12958
WARNING. Abnormal entry count found on day 2016-12-10: -8775
WARNING. Abnormal entry count found on day 2016-12-10: -8775
WARNING. Abnormal entry count found on day 2016-12-17: -3797
WARNING. Abnormal entry count found on day 2016-12-17: -3797
WARNING. Abnormal entry count found on day 2016-12-24: -6608
WARNING. Abnormal entry count found on day 2016-12-24: -6608
Processing turnstile ('B020', 'R263', '00-03-01', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -290
WARNING. Abnormal entry count found on day 2016-12-03: -290
WARNING. Abnormal entry count found on day 2016-12-10: -267
WARNING. Abnormal entry count found on day 2016-12-10: -267
WARNING. Abnormal entry count found on day 2016-12-17: -265
WARNING. Abnormal entry count found on day 2016-12-17: -265
WARNING. Abnormal entry count found on day 2016-12-24: -261
WARNING. Abnormal entry count found on day 2016-12-24: -261
Processing turnstile ('R307', 'R207', '01-00-01', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7442
WARNING. Abnormal entry count found on day 2016-12-03: -7442
WARNING. Abnormal entry count found on day 2016-12-10: -7576
WARNING. Abnormal entry count found on day 2016-12-10: -7576
WARNING. Abnormal entry count found on day 2016-12-17: -7440
WARNING. Abnormal entry count found on day 2016-12-17: -7440
WARNING. Abnormal entry count found on day 2016-12-24: -5156
WARNING. Abnormal entry count found on day 2016-12-24: -5156
Processing turnstile ('E015', 'R399', '00-00-02', '25 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -14685
WARNING. Abnormal entry count found on day 2016-12-03: -14685
WARNING. Abnormal entry count found on day 2016-12-10: -14302
WARNING. Abnormal entry count found on day 2016-12-10: -14302
WARNING. Abnormal entry count found on day 2016-12-17: -12832
WARNING. Abnormal entry count found on day 2016-12-17: -12832
WARNING. Abnormal entry count found on day 2016-12-24: -11475
WARNING. Abnormal entry count found on day 2016-12-24: -11475
Processing turnstile ('R122', 'R290', '02-06-00', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2182
WARNING. Abnormal entry count found on day 2016-12-03: -2182
WARNING. Abnormal entry count found on day 2016-12-10: -2936
WARNING. Abnormal entry count found on day 2016-12-10: -2936
WARNING. Abnormal entry count found on day 2016-12-17: -1826
WARNING. Abnormal entry count found on day 2016-12-17: -1826
WARNING. Abnormal entry count found on day 2016-12-24: -999
WARNING. Abnormal entry count found on day 2016-12-24: -999
Processing turnstile ('H035', 'R348', '00-00-02', 'ATLANTIC AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4300
WARNING. Abnormal entry count found on day 2016-12-03: -4300
WARNING. Abnormal entry count found on day 2016-12-10: -4162
WARNING. Abnormal entry count found on day 2016-12-10: -4162
WARNING. Abnormal entry count found on day 2016-12-17: -3930
WARNING. Abnormal entry count found on day 2016-12-17: -3930
WARNING. Abnormal entry count found on day 2016-12-24: -3045
WARNING. Abnormal entry count found on day 2016-12-24: -3045
Processing turnstile ('J016', 'R381', '00-00-01', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10143
WARNING. Abnormal entry count found on day 2016-12-03: -10143
WARNING. Abnormal entry count found on day 2016-12-10: -10421
WARNING. Abnormal entry count found on day 2016-12-10: -10421
WARNING. Abnormal entry count found on day 2016-12-17: -9305
WARNING. Abnormal entry count found on day 2016-12-17: -9305
WARNING. Abnormal entry count found on day 2016-12-24: -9831
WARNING. Abnormal entry count found on day 2016-12-24: -9831
Processing turnstile ('N343', 'R019', '00-00-09', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11313
WARNING. Abnormal entry count found on day 2016-12-03: -11313
WARNING. Abnormal entry count found on day 2016-12-10: -10307
WARNING. Abnormal entry count found on day 2016-12-10: -10307
WARNING. Abnormal entry count found on day 2016-12-17: -10890
WARNING. Abnormal entry count found on day 2016-12-17: -10890
WARNING. Abnormal entry count found on day 2016-12-24: -7703
WARNING. Abnormal entry count found on day 2016-12-24: -7703
Processing turnstile ('N546', 'R204', '00-00-01', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3792
WARNING. Abnormal entry count found on day 2016-12-03: -3792
WARNING. Abnormal entry count found on day 2016-12-10: -4037
WARNING. Abnormal entry count found on day 2016-12-10: -4037
WARNING. Abnormal entry count found on day 2016-12-17: -3585
WARNING. Abnormal entry count found on day 2016-12-17: -3585
WARNING. Abnormal entry count found on day 2016-12-24: -3041
WARNING. Abnormal entry count found on day 2016-12-24: -3041
Processing turnstile ('N124', 'R103', '00-00-00', 'BROADWAY JCT')
WARNING. Abnormal entry count found on day 2016-12-03: -1897
WARNING. Abnormal entry count found on day 2016-12-03: -1897
WARNING. Abnormal entry count found on day 2016-12-10: -1769
WARNING. Abnormal entry count found on day 2016-12-10: -1769
WARNING. Abnormal entry count found on day 2016-12-17: -1762
WARNING. Abnormal entry count found on day 2016-12-17: -1762
WARNING. Abnormal entry count found on day 2016-12-24: -1665
WARNING. Abnormal entry count found on day 2016-12-24: -1665
Processing turnstile ('R601A', 'R108', '02-00-01', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -9634
WARNING. Abnormal entry count found on day 2016-12-03: -9634
WARNING. Abnormal entry count found on day 2016-12-10: -9347
WARNING. Abnormal entry count found on day 2016-12-10: -9347
WARNING. Abnormal entry count found on day 2016-12-17: -8008
WARNING. Abnormal entry count found on day 2016-12-17: -8008
WARNING. Abnormal entry count found on day 2016-12-24: -5387
WARNING. Abnormal entry count found on day 2016-12-24: -5387
Processing turnstile ('A050', 'R088', '00-02-01', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1532
WARNING. Abnormal entry count found on day 2016-12-03: -1532
WARNING. Abnormal entry count found on day 2016-12-10: -1450
WARNING. Abnormal entry count found on day 2016-12-10: -1450
WARNING. Abnormal entry count found on day 2016-12-17: -1773
WARNING. Abnormal entry count found on day 2016-12-17: -1773
WARNING. Abnormal entry count found on day 2016-12-24: -2919
WARNING. Abnormal entry count found on day 2016-12-24: -2919
Processing turnstile ('N303', 'R015', '00-00-03', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9008
WARNING. Abnormal entry count found on day 2016-12-03: -9008
WARNING. Abnormal entry count found on day 2016-12-10: -8745
WARNING. Abnormal entry count found on day 2016-12-10: -8745
WARNING. Abnormal entry count found on day 2016-12-17: -9064
WARNING. Abnormal entry count found on day 2016-12-17: -9064
WARNING. Abnormal entry count found on day 2016-12-24: -7989
WARNING. Abnormal entry count found on day 2016-12-24: -7989
Processing turnstile ('A002', 'R051', '02-06-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12747
WARNING. Abnormal entry count found on day 2016-12-03: -12747
WARNING. Abnormal entry count found on day 2016-12-10: -11165
WARNING. Abnormal entry count found on day 2016-12-10: -11165
WARNING. Abnormal entry count found on day 2016-12-17: -12557
WARNING. Abnormal entry count found on day 2016-12-17: -12557
WARNING. Abnormal entry count found on day 2016-12-24: -9155
WARNING. Abnormal entry count found on day 2016-12-24: -9155
Processing turnstile ('N073', 'R013', '02-00-06', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -4667
WARNING. Abnormal entry count found on day 2016-12-03: -4667
WARNING. Abnormal entry count found on day 2016-12-10: -4684
WARNING. Abnormal entry count found on day 2016-12-10: -4684
WARNING. Abnormal entry count found on day 2016-12-17: -4602
WARNING. Abnormal entry count found on day 2016-12-17: -4602
WARNING. Abnormal entry count found on day 2016-12-24: -3095
WARNING. Abnormal entry count found on day 2016-12-24: -3095
Processing turnstile ('N420B', 'R317', '00-06-00', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12681
WARNING. Abnormal entry count found on day 2016-12-03: -12681
WARNING. Abnormal entry count found on day 2016-12-10: -12474
WARNING. Abnormal entry count found on day 2016-12-10: -12474
WARNING. Abnormal entry count found on day 2016-12-17: -10763
WARNING. Abnormal entry count found on day 2016-12-17: -10763
WARNING. Abnormal entry count found on day 2016-12-24: -5840
WARNING. Abnormal entry count found on day 2016-12-24: -5840
Processing turnstile ('PTH05', 'R543', '00-00-04', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -4535
WARNING. Abnormal entry count found on day 2016-12-03: -4535
WARNING. Abnormal entry count found on day 2016-12-10: -4507
WARNING. Abnormal entry count found on day 2016-12-10: -4507
WARNING. Abnormal entry count found on day 2016-12-17: -4056
WARNING. Abnormal entry count found on day 2016-12-17: -4056
WARNING. Abnormal entry count found on day 2016-12-24: -2841
WARNING. Abnormal entry count found on day 2016-12-24: -2841
Processing turnstile ('R162', 'R166', '00-00-01', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13706
WARNING. Abnormal entry count found on day 2016-12-03: -13706
WARNING. Abnormal entry count found on day 2016-12-10: -13989
WARNING. Abnormal entry count found on day 2016-12-10: -13989
WARNING. Abnormal entry count found on day 2016-12-17: -12852
WARNING. Abnormal entry count found on day 2016-12-17: -12852
WARNING. Abnormal entry count found on day 2016-12-24: -9900
WARNING. Abnormal entry count found on day 2016-12-24: -9900
Processing turnstile ('B029', 'R172', '00-00-02', 'BRIGHTON BEACH')
WARNING. Abnormal entry count found on day 2016-12-03: -7670
WARNING. Abnormal entry count found on day 2016-12-03: -7670
WARNING. Abnormal entry count found on day 2016-12-10: -7717
WARNING. Abnormal entry count found on day 2016-12-10: -7717
WARNING. Abnormal entry count found on day 2016-12-17: -6507
WARNING. Abnormal entry count found on day 2016-12-17: -6507
WARNING. Abnormal entry count found on day 2016-12-24: -4764
WARNING. Abnormal entry count found on day 2016-12-24: -4764
Processing turnstile ('R501', 'R054', '00-00-04', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -5919
WARNING. Abnormal entry count found on day 2016-12-03: -5919
WARNING. Abnormal entry count found on day 2016-12-10: -6120
WARNING. Abnormal entry count found on day 2016-12-10: -6120
WARNING. Abnormal entry count found on day 2016-12-17: -6029
WARNING. Abnormal entry count found on day 2016-12-17: -6029
WARNING. Abnormal entry count found on day 2016-12-24: -4856
WARNING. Abnormal entry count found on day 2016-12-24: -4856
Processing turnstile ('N414A', 'R316', '01-06-00', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1355
WARNING. Abnormal entry count found on day 2016-12-03: -1355
WARNING. Abnormal entry count found on day 2016-12-10: -1271
WARNING. Abnormal entry count found on day 2016-12-10: -1271
WARNING. Abnormal entry count found on day 2016-12-17: -1240
WARNING. Abnormal entry count found on day 2016-12-17: -1240
WARNING. Abnormal entry count found on day 2016-12-24: -971
WARNING. Abnormal entry count found on day 2016-12-24: -971
Processing turnstile ('J032', 'R006', '01-06-01', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3665
WARNING. Abnormal entry count found on day 2016-12-03: -3665
WARNING. Abnormal entry count found on day 2016-12-10: -3403
WARNING. Abnormal entry count found on day 2016-12-10: -3403
WARNING. Abnormal entry count found on day 2016-12-17: -3309
WARNING. Abnormal entry count found on day 2016-12-17: -3309
WARNING. Abnormal entry count found on day 2016-12-24: -2420
WARNING. Abnormal entry count found on day 2016-12-24: -2420
Processing turnstile ('G009', 'R151', '02-00-01', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -3381
WARNING. Abnormal entry count found on day 2016-12-03: -3381
WARNING. Abnormal entry count found on day 2016-12-10: -3356
WARNING. Abnormal entry count found on day 2016-12-10: -3356
WARNING. Abnormal entry count found on day 2016-12-17: -3343
WARNING. Abnormal entry count found on day 2016-12-17: -3343
WARNING. Abnormal entry count found on day 2016-12-24: -2566
WARNING. Abnormal entry count found on day 2016-12-24: -2566
Processing turnstile ('N223', 'R156', '01-06-00', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -7466
WARNING. Abnormal entry count found on day 2016-12-03: -7466
WARNING. Abnormal entry count found on day 2016-12-10: -7312
WARNING. Abnormal entry count found on day 2016-12-10: -7312
WARNING. Abnormal entry count found on day 2016-12-17: -6823
WARNING. Abnormal entry count found on day 2016-12-17: -6823
WARNING. Abnormal entry count found on day 2016-12-24: -6018
WARNING. Abnormal entry count found on day 2016-12-24: -6018
Processing turnstile ('B009', 'R411', '00-00-02', 'PARK PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -3833
WARNING. Abnormal entry count found on day 2016-12-03: -3833
WARNING. Abnormal entry count found on day 2016-12-10: -3612
WARNING. Abnormal entry count found on day 2016-12-10: -3612
WARNING. Abnormal entry count found on day 2016-12-17: -3395
WARNING. Abnormal entry count found on day 2016-12-17: -3395
WARNING. Abnormal entry count found on day 2016-12-24: -2427
WARNING. Abnormal entry count found on day 2016-12-24: -2427
Processing turnstile ('H027', 'R137', '01-00-01', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -5827
WARNING. Abnormal entry count found on day 2016-12-03: -5827
WARNING. Abnormal entry count found on day 2016-12-10: -5819
WARNING. Abnormal entry count found on day 2016-12-10: -5819
WARNING. Abnormal entry count found on day 2016-12-17: -5652
WARNING. Abnormal entry count found on day 2016-12-17: -5652
WARNING. Abnormal entry count found on day 2016-12-24: -4335
WARNING. Abnormal entry count found on day 2016-12-24: -4335
Processing turnstile ('R606', 'R225', '00-00-00', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9998
WARNING. Abnormal entry count found on day 2016-12-03: -9998
WARNING. Abnormal entry count found on day 2016-12-10: -10137
WARNING. Abnormal entry count found on day 2016-12-10: -10137
WARNING. Abnormal entry count found on day 2016-12-17: -10395
WARNING. Abnormal entry count found on day 2016-12-17: -10395
WARNING. Abnormal entry count found on day 2016-12-24: -6892
WARNING. Abnormal entry count found on day 2016-12-24: -6892
Processing turnstile ('R525', 'R018', '02-06-00', '74 ST-BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -369
WARNING. Abnormal entry count found on day 2016-12-03: -369
WARNING. Abnormal entry count found on day 2016-12-10: -349
WARNING. Abnormal entry count found on day 2016-12-10: -349
WARNING. Abnormal entry count found on day 2016-12-17: -395
WARNING. Abnormal entry count found on day 2016-12-17: -395
WARNING. Abnormal entry count found on day 2016-12-24: -388
WARNING. Abnormal entry count found on day 2016-12-24: -388
Processing turnstile ('N075', 'R111', '01-06-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17339
WARNING. Abnormal entry count found on day 2016-12-03: -17339
WARNING. Abnormal entry count found on day 2016-12-10: -19248
WARNING. Abnormal entry count found on day 2016-12-10: -19248
WARNING. Abnormal entry count found on day 2016-12-17: -12296
WARNING. Abnormal entry count found on day 2016-12-17: -12296
WARNING. Abnormal entry count found on day 2016-12-24: -9027
WARNING. Abnormal entry count found on day 2016-12-24: -9027
Processing turnstile ('R419', 'R326', '00-03-00', 'ZEREGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4254
WARNING. Abnormal entry count found on day 2016-12-03: -4254
WARNING. Abnormal entry count found on day 2016-12-10: -4187
WARNING. Abnormal entry count found on day 2016-12-10: -4187
WARNING. Abnormal entry count found on day 2016-12-17: -4155
WARNING. Abnormal entry count found on day 2016-12-17: -4155
WARNING. Abnormal entry count found on day 2016-12-24: -3127
WARNING. Abnormal entry count found on day 2016-12-24: -3127
Processing turnstile ('R421', 'R427', '00-06-01', 'MIDDLETOWN RD')
Processing turnstile ('R161B', 'R452', '00-00-00', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10220
WARNING. Abnormal entry count found on day 2016-12-03: -10220
WARNING. Abnormal entry count found on day 2016-12-10: -11048
WARNING. Abnormal entry count found on day 2016-12-10: -11048
WARNING. Abnormal entry count found on day 2016-12-17: -10872
WARNING. Abnormal entry count found on day 2016-12-17: -10872
WARNING. Abnormal entry count found on day 2016-12-24: -8729
WARNING. Abnormal entry count found on day 2016-12-24: -8729
Processing turnstile ('R165', 'R167', '01-00-02', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6466
WARNING. Abnormal entry count found on day 2016-12-03: -6466
WARNING. Abnormal entry count found on day 2016-12-10: -6769
WARNING. Abnormal entry count found on day 2016-12-10: -6769
WARNING. Abnormal entry count found on day 2016-12-17: -6481
WARNING. Abnormal entry count found on day 2016-12-17: -6481
WARNING. Abnormal entry count found on day 2016-12-24: -4433
WARNING. Abnormal entry count found on day 2016-12-24: -4433
Processing turnstile ('N503', 'R021', '00-00-04', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -8729
WARNING. Abnormal entry count found on day 2016-12-03: -8729
WARNING. Abnormal entry count found on day 2016-12-10: -8436
WARNING. Abnormal entry count found on day 2016-12-10: -8436
WARNING. Abnormal entry count found on day 2016-12-17: -9006
WARNING. Abnormal entry count found on day 2016-12-17: -9006
WARNING. Abnormal entry count found on day 2016-12-24: -7678
WARNING. Abnormal entry count found on day 2016-12-24: -7678
Processing turnstile ('N057', 'R188', '00-00-01', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13263
WARNING. Abnormal entry count found on day 2016-12-03: -13263
WARNING. Abnormal entry count found on day 2016-12-10: -13012
WARNING. Abnormal entry count found on day 2016-12-10: -13012
WARNING. Abnormal entry count found on day 2016-12-17: -12133
WARNING. Abnormal entry count found on day 2016-12-17: -12133
WARNING. Abnormal entry count found on day 2016-12-24: -10393
WARNING. Abnormal entry count found on day 2016-12-24: -10393
Processing turnstile ('R204', 'R043', '02-03-02', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2225
WARNING. Abnormal entry count found on day 2016-12-03: -2225
WARNING. Abnormal entry count found on day 2016-12-10: -2214
WARNING. Abnormal entry count found on day 2016-12-10: -2214
WARNING. Abnormal entry count found on day 2016-12-17: -1936
WARNING. Abnormal entry count found on day 2016-12-17: -1936
WARNING. Abnormal entry count found on day 2016-12-24: -1409
WARNING. Abnormal entry count found on day 2016-12-24: -1409
Processing turnstile ('R534', 'R055', '01-03-04', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -18238
WARNING. Abnormal entry count found on day 2016-12-03: -18238
WARNING. Abnormal entry count found on day 2016-12-10: -18285
WARNING. Abnormal entry count found on day 2016-12-10: -18285
WARNING. Abnormal entry count found on day 2016-12-17: -18751
WARNING. Abnormal entry count found on day 2016-12-17: -18751
WARNING. Abnormal entry count found on day 2016-12-24: -15389
WARNING. Abnormal entry count found on day 2016-12-24: -15389
Processing turnstile ('H030', 'R266', '01-00-00', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1437
WARNING. Abnormal entry count found on day 2016-12-03: -1437
WARNING. Abnormal entry count found on day 2016-12-10: -1337
WARNING. Abnormal entry count found on day 2016-12-10: -1337
WARNING. Abnormal entry count found on day 2016-12-17: -1465
WARNING. Abnormal entry count found on day 2016-12-17: -1465
WARNING. Abnormal entry count found on day 2016-12-24: -1038
WARNING. Abnormal entry count found on day 2016-12-24: -1038
Processing turnstile ('J005', 'R353', '00-00-01', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5454
WARNING. Abnormal entry count found on day 2016-12-03: -5454
WARNING. Abnormal entry count found on day 2016-12-10: -5280
WARNING. Abnormal entry count found on day 2016-12-10: -5280
WARNING. Abnormal entry count found on day 2016-12-17: -5689
WARNING. Abnormal entry count found on day 2016-12-17: -5689
WARNING. Abnormal entry count found on day 2016-12-24: -3972
WARNING. Abnormal entry count found on day 2016-12-24: -3972
Processing turnstile ('R418', 'R106', '00-00-00', 'CASTLE HILL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6985
WARNING. Abnormal entry count found on day 2016-12-03: -6985
WARNING. Abnormal entry count found on day 2016-12-10: -6802
WARNING. Abnormal entry count found on day 2016-12-10: -6802
WARNING. Abnormal entry count found on day 2016-12-17: -6771
WARNING. Abnormal entry count found on day 2016-12-17: -6771
WARNING. Abnormal entry count found on day 2016-12-24: -5246
WARNING. Abnormal entry count found on day 2016-12-24: -5246
Processing turnstile ('J037', 'R009', '00-00-00', '121 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2592
WARNING. Abnormal entry count found on day 2016-12-03: -2592
WARNING. Abnormal entry count found on day 2016-12-10: -2521
WARNING. Abnormal entry count found on day 2016-12-10: -2521
WARNING. Abnormal entry count found on day 2016-12-17: -2601
WARNING. Abnormal entry count found on day 2016-12-17: -2601
WARNING. Abnormal entry count found on day 2016-12-24: -2012
WARNING. Abnormal entry count found on day 2016-12-24: -2012
Processing turnstile ('N007A', 'R174', '00-00-02', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10230
WARNING. Abnormal entry count found on day 2016-12-03: -10230
WARNING. Abnormal entry count found on day 2016-12-10: -10443
WARNING. Abnormal entry count found on day 2016-12-10: -10443
WARNING. Abnormal entry count found on day 2016-12-17: -10139
WARNING. Abnormal entry count found on day 2016-12-17: -10139
WARNING. Abnormal entry count found on day 2016-12-24: -6425
WARNING. Abnormal entry count found on day 2016-12-24: -6425
Processing turnstile ('N536', 'R270', '00-05-00', 'SMITH-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
Processing turnstile ('N324', 'R018', '00-00-04', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -23291
WARNING. Abnormal entry count found on day 2016-12-03: -23291
WARNING. Abnormal entry count found on day 2016-12-10: -22745
WARNING. Abnormal entry count found on day 2016-12-10: -22745
WARNING. Abnormal entry count found on day 2016-12-17: -22934
WARNING. Abnormal entry count found on day 2016-12-17: -22934
WARNING. Abnormal entry count found on day 2016-12-24: -19724
WARNING. Abnormal entry count found on day 2016-12-24: -19724
Processing turnstile ('PTH05', 'R543', '00-01-03', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -4217
WARNING. Abnormal entry count found on day 2016-12-03: -4217
WARNING. Abnormal entry count found on day 2016-12-10: -3743
WARNING. Abnormal entry count found on day 2016-12-10: -3743
WARNING. Abnormal entry count found on day 2016-12-17: -3631
WARNING. Abnormal entry count found on day 2016-12-17: -3631
WARNING. Abnormal entry count found on day 2016-12-24: -2737
WARNING. Abnormal entry count found on day 2016-12-24: -2737
Processing turnstile ('N062', 'R011', '01-00-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -9962
WARNING. Abnormal entry count found on day 2016-12-03: -9962
WARNING. Abnormal entry count found on day 2016-12-10: -10685
WARNING. Abnormal entry count found on day 2016-12-10: -10685
WARNING. Abnormal entry count found on day 2016-12-17: -10377
WARNING. Abnormal entry count found on day 2016-12-17: -10377
WARNING. Abnormal entry count found on day 2016-12-24: -9126
WARNING. Abnormal entry count found on day 2016-12-24: -9126
Processing turnstile ('N307', 'R359', '00-06-00', 'COURT SQ-23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15236
WARNING. Abnormal entry count found on day 2016-12-03: -15236
WARNING. Abnormal entry count found on day 2016-12-10: -13326
WARNING. Abnormal entry count found on day 2016-12-10: -13326
WARNING. Abnormal entry count found on day 2016-12-17: -13096
WARNING. Abnormal entry count found on day 2016-12-17: -13096
WARNING. Abnormal entry count found on day 2016-12-24: -8367
WARNING. Abnormal entry count found on day 2016-12-24: -8367
Processing turnstile ('N536', 'R270', '00-05-01', 'SMITH-9 ST')
Processing turnstile ('N134', 'R385', '00-03-01', 'ROCKAWAY BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -6130
WARNING. Abnormal entry count found on day 2016-12-03: -6130
WARNING. Abnormal entry count found on day 2016-12-10: -5850
WARNING. Abnormal entry count found on day 2016-12-10: -5850
WARNING. Abnormal entry count found on day 2016-12-17: -5797
WARNING. Abnormal entry count found on day 2016-12-17: -5797
WARNING. Abnormal entry count found on day 2016-12-24: -4563
WARNING. Abnormal entry count found on day 2016-12-24: -4563
Processing turnstile ('R194', 'R040', '00-05-00', '231 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-17: -20
WARNING. Abnormal entry count found on day 2016-12-17: -20
WARNING. Abnormal entry count found on day 2016-12-24: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
Processing turnstile ('H009', 'R235', '00-06-03', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9493
WARNING. Abnormal entry count found on day 2016-12-03: -9493
WARNING. Abnormal entry count found on day 2016-12-10: -9290
WARNING. Abnormal entry count found on day 2016-12-10: -9290
WARNING. Abnormal entry count found on day 2016-12-17: -6918
WARNING. Abnormal entry count found on day 2016-12-17: -6918
WARNING. Abnormal entry count found on day 2016-12-24: -5007
WARNING. Abnormal entry count found on day 2016-12-24: -5007
Processing turnstile ('PTH19', 'R549', '02-02-04', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1592
WARNING. Abnormal entry count found on day 2016-12-03: -1592
WARNING. Abnormal entry count found on day 2016-12-10: -1620
WARNING. Abnormal entry count found on day 2016-12-10: -1620
WARNING. Abnormal entry count found on day 2016-12-17: -1245
WARNING. Abnormal entry count found on day 2016-12-17: -1245
WARNING. Abnormal entry count found on day 2016-12-24: -628
WARNING. Abnormal entry count found on day 2016-12-24: -628
Processing turnstile ('A061', 'R142', '00-00-01', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -12896
WARNING. Abnormal entry count found on day 2016-12-03: -12896
WARNING. Abnormal entry count found on day 2016-12-10: -12528
WARNING. Abnormal entry count found on day 2016-12-10: -12528
WARNING. Abnormal entry count found on day 2016-12-17: -12138
WARNING. Abnormal entry count found on day 2016-12-17: -12138
WARNING. Abnormal entry count found on day 2016-12-24: -8705
WARNING. Abnormal entry count found on day 2016-12-24: -8705
Processing turnstile ('N078', 'R175', '01-00-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8563
WARNING. Abnormal entry count found on day 2016-12-03: -8563
WARNING. Abnormal entry count found on day 2016-12-10: -8710
WARNING. Abnormal entry count found on day 2016-12-10: -8710
WARNING. Abnormal entry count found on day 2016-12-17: -7836
WARNING. Abnormal entry count found on day 2016-12-17: -7836
WARNING. Abnormal entry count found on day 2016-12-24: -4846
WARNING. Abnormal entry count found on day 2016-12-24: -4846
Processing turnstile ('H008', 'R248', '01-00-04', '1 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -26439
WARNING. Abnormal entry count found on day 2016-12-03: -26439
WARNING. Abnormal entry count found on day 2016-12-10: -18811
WARNING. Abnormal entry count found on day 2016-12-10: -18811
WARNING. Abnormal entry count found on day 2016-12-17: -23012
WARNING. Abnormal entry count found on day 2016-12-17: -23012
WARNING. Abnormal entry count found on day 2016-12-24: -17070
WARNING. Abnormal entry count found on day 2016-12-24: -17070
Processing turnstile ('R249', 'R179', '01-00-09', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6614
WARNING. Abnormal entry count found on day 2016-12-03: -6614
WARNING. Abnormal entry count found on day 2016-12-10: -6205
WARNING. Abnormal entry count found on day 2016-12-10: -6205
WARNING. Abnormal entry count found on day 2016-12-17: -6374
WARNING. Abnormal entry count found on day 2016-12-17: -6374
WARNING. Abnormal entry count found on day 2016-12-24: -4756
WARNING. Abnormal entry count found on day 2016-12-24: -4756
Processing turnstile ('J034', 'R007', '00-00-00', '104 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5975
WARNING. Abnormal entry count found on day 2016-12-03: -5975
WARNING. Abnormal entry count found on day 2016-12-10: -5466
WARNING. Abnormal entry count found on day 2016-12-10: -5466
WARNING. Abnormal entry count found on day 2016-12-17: -5389
WARNING. Abnormal entry count found on day 2016-12-17: -5389
WARNING. Abnormal entry count found on day 2016-12-24: -4264
WARNING. Abnormal entry count found on day 2016-12-24: -4264
Processing turnstile ('N129', 'R382', '00-03-00', 'GRANT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9211
WARNING. Abnormal entry count found on day 2016-12-03: -9211
WARNING. Abnormal entry count found on day 2016-12-10: -9026
WARNING. Abnormal entry count found on day 2016-12-10: -9026
WARNING. Abnormal entry count found on day 2016-12-17: -9791
WARNING. Abnormal entry count found on day 2016-12-17: -9791
WARNING. Abnormal entry count found on day 2016-12-24: -8136
WARNING. Abnormal entry count found on day 2016-12-24: -8136
Processing turnstile ('R256', 'R182', '00-00-01', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14796
WARNING. Abnormal entry count found on day 2016-12-03: -14796
WARNING. Abnormal entry count found on day 2016-12-10: -14349
WARNING. Abnormal entry count found on day 2016-12-10: -14349
WARNING. Abnormal entry count found on day 2016-12-17: -14106
WARNING. Abnormal entry count found on day 2016-12-17: -14106
WARNING. Abnormal entry count found on day 2016-12-24: -10568
WARNING. Abnormal entry count found on day 2016-12-24: -10568
Processing turnstile ('N057', 'R188', '00-05-01', '50 ST')
Processing turnstile ('R238', 'R046', '00-03-03', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -30345
WARNING. Abnormal entry count found on day 2016-12-03: -30345
WARNING. Abnormal entry count found on day 2016-12-10: -26451
WARNING. Abnormal entry count found on day 2016-12-10: -26451
WARNING. Abnormal entry count found on day 2016-12-17: -26568
WARNING. Abnormal entry count found on day 2016-12-17: -26568
WARNING. Abnormal entry count found on day 2016-12-24: -20379
WARNING. Abnormal entry count found on day 2016-12-24: -20379
Processing turnstile ('N051', 'R084', '02-03-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -16921
WARNING. Abnormal entry count found on day 2016-12-03: -16921
WARNING. Abnormal entry count found on day 2016-12-10: -17028
WARNING. Abnormal entry count found on day 2016-12-10: -17028
WARNING. Abnormal entry count found on day 2016-12-17: -15513
WARNING. Abnormal entry count found on day 2016-12-17: -15513
WARNING. Abnormal entry count found on day 2016-12-24: -11221
WARNING. Abnormal entry count found on day 2016-12-24: -11221
Processing turnstile ('N092', 'R029', '03-03-02', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8750
WARNING. Abnormal entry count found on day 2016-12-03: -8750
WARNING. Abnormal entry count found on day 2016-12-10: -14204
WARNING. Abnormal entry count found on day 2016-12-10: -14204
WARNING. Abnormal entry count found on day 2016-12-17: -7691
WARNING. Abnormal entry count found on day 2016-12-17: -7691
WARNING. Abnormal entry count found on day 2016-12-24: -4895
WARNING. Abnormal entry count found on day 2016-12-24: -4895
Processing turnstile ('D016', 'R397', '00-00-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1354
WARNING. Abnormal entry count found on day 2016-12-03: -1354
WARNING. Abnormal entry count found on day 2016-12-10: -1235
WARNING. Abnormal entry count found on day 2016-12-10: -1235
WARNING. Abnormal entry count found on day 2016-12-17: -1309
WARNING. Abnormal entry count found on day 2016-12-17: -1309
WARNING. Abnormal entry count found on day 2016-12-24: -1088
WARNING. Abnormal entry count found on day 2016-12-24: -1088
Processing turnstile ('R258', 'R132', '00-00-01', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13686
WARNING. Abnormal entry count found on day 2016-12-03: -13686
WARNING. Abnormal entry count found on day 2016-12-10: -13708
WARNING. Abnormal entry count found on day 2016-12-10: -13708
WARNING. Abnormal entry count found on day 2016-12-17: -13114
WARNING. Abnormal entry count found on day 2016-12-17: -13114
WARNING. Abnormal entry count found on day 2016-12-24: -9935
WARNING. Abnormal entry count found on day 2016-12-24: -9935
Processing turnstile ('PTH12', 'R542', '00-04-00', 'TWENTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1255
WARNING. Abnormal entry count found on day 2016-12-03: -1255
WARNING. Abnormal entry count found on day 2016-12-10: -747
WARNING. Abnormal entry count found on day 2016-12-10: -747
WARNING. Abnormal entry count found on day 2016-12-17: -1036
WARNING. Abnormal entry count found on day 2016-12-17: -1036
WARNING. Abnormal entry count found on day 2016-12-24: -796
WARNING. Abnormal entry count found on day 2016-12-24: -796
Processing turnstile ('N182', 'R414', '00-05-01', 'HOWARD BCH JFK')
Processing turnstile ('R419', 'R326', '00-00-01', 'ZEREGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2366
WARNING. Abnormal entry count found on day 2016-12-03: -2366
WARNING. Abnormal entry count found on day 2016-12-10: -2046
WARNING. Abnormal entry count found on day 2016-12-10: -2046
WARNING. Abnormal entry count found on day 2016-12-17: -2183
WARNING. Abnormal entry count found on day 2016-12-17: -2183
WARNING. Abnormal entry count found on day 2016-12-24: -1410
WARNING. Abnormal entry count found on day 2016-12-24: -1410
Processing turnstile ('R637', 'R451', '00-00-01', 'WINTHROP ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11471
WARNING. Abnormal entry count found on day 2016-12-03: -11471
WARNING. Abnormal entry count found on day 2016-12-10: -11547
WARNING. Abnormal entry count found on day 2016-12-10: -11547
WARNING. Abnormal entry count found on day 2016-12-17: -10460
WARNING. Abnormal entry count found on day 2016-12-17: -10460
WARNING. Abnormal entry count found on day 2016-12-24: -7313
WARNING. Abnormal entry count found on day 2016-12-24: -7313
Processing turnstile ('N006A', 'R280', '00-00-02', '190 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8353
WARNING. Abnormal entry count found on day 2016-12-03: -8353
WARNING. Abnormal entry count found on day 2016-12-10: -8234
WARNING. Abnormal entry count found on day 2016-12-10: -8234
WARNING. Abnormal entry count found on day 2016-12-17: -7476
WARNING. Abnormal entry count found on day 2016-12-17: -7476
WARNING. Abnormal entry count found on day 2016-12-24: -5373
WARNING. Abnormal entry count found on day 2016-12-24: -5373
Processing turnstile ('PTH19', 'R549', '02-00-04', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1828
WARNING. Abnormal entry count found on day 2016-12-03: -1828
WARNING. Abnormal entry count found on day 2016-12-10: -1944
WARNING. Abnormal entry count found on day 2016-12-10: -1944
WARNING. Abnormal entry count found on day 2016-12-17: -1437
WARNING. Abnormal entry count found on day 2016-12-17: -1437
WARNING. Abnormal entry count found on day 2016-12-24: -773
WARNING. Abnormal entry count found on day 2016-12-24: -773
Processing turnstile ('A027', 'R082', '01-03-01', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9091
WARNING. Abnormal entry count found on day 2016-12-03: -9091
WARNING. Abnormal entry count found on day 2016-12-10: -9331
WARNING. Abnormal entry count found on day 2016-12-10: -9331
WARNING. Abnormal entry count found on day 2016-12-17: -8458
WARNING. Abnormal entry count found on day 2016-12-17: -8458
WARNING. Abnormal entry count found on day 2016-12-24: -6165
WARNING. Abnormal entry count found on day 2016-12-24: -6165
Processing turnstile ('PTH07', 'R550', '00-01-03', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -911
WARNING. Abnormal entry count found on day 2016-12-03: -911
WARNING. Abnormal entry count found on day 2016-12-10: -976
WARNING. Abnormal entry count found on day 2016-12-10: -976
WARNING. Abnormal entry count found on day 2016-12-17: -836
WARNING. Abnormal entry count found on day 2016-12-17: -836
WARNING. Abnormal entry count found on day 2016-12-24: -486
WARNING. Abnormal entry count found on day 2016-12-24: -486
Processing turnstile ('N094', 'R029', '01-00-02', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -4894
WARNING. Abnormal entry count found on day 2016-12-03: -4894
WARNING. Abnormal entry count found on day 2016-12-10: -4722
WARNING. Abnormal entry count found on day 2016-12-10: -4722
WARNING. Abnormal entry count found on day 2016-12-17: -8009
WARNING. Abnormal entry count found on day 2016-12-17: -8009
WARNING. Abnormal entry count found on day 2016-12-24: -9306
WARNING. Abnormal entry count found on day 2016-12-24: -9306
Processing turnstile ('S101A', 'R070', '01-05-01', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -5
WARNING. Abnormal entry count found on day 2016-12-17: -5
Processing turnstile ('R237', 'R046', '01-00-05', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8796
WARNING. Abnormal entry count found on day 2016-12-03: -8796
WARNING. Abnormal entry count found on day 2016-12-10: -9032
WARNING. Abnormal entry count found on day 2016-12-10: -9032
WARNING. Abnormal entry count found on day 2016-12-17: -8012
WARNING. Abnormal entry count found on day 2016-12-17: -8012
WARNING. Abnormal entry count found on day 2016-12-24: -4901
WARNING. Abnormal entry count found on day 2016-12-24: -4901
Processing turnstile ('R138', 'R293', '00-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -29444
WARNING. Abnormal entry count found on day 2016-12-03: -29444
WARNING. Abnormal entry count found on day 2016-12-10: -29844
WARNING. Abnormal entry count found on day 2016-12-10: -29844
WARNING. Abnormal entry count found on day 2016-12-17: -27720
WARNING. Abnormal entry count found on day 2016-12-17: -27720
WARNING. Abnormal entry count found on day 2016-12-24: -22900
WARNING. Abnormal entry count found on day 2016-12-24: -22900
Processing turnstile ('R524', 'R347', '00-00-00', '69 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4520
WARNING. Abnormal entry count found on day 2016-12-03: -4520
WARNING. Abnormal entry count found on day 2016-12-10: -4265
WARNING. Abnormal entry count found on day 2016-12-10: -4265
WARNING. Abnormal entry count found on day 2016-12-17: -4381
WARNING. Abnormal entry count found on day 2016-12-17: -4381
WARNING. Abnormal entry count found on day 2016-12-24: -3532
WARNING. Abnormal entry count found on day 2016-12-24: -3532
Processing turnstile ('N103', 'R127', '00-06-02', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -16475
WARNING. Abnormal entry count found on day 2016-12-03: -16475
WARNING. Abnormal entry count found on day 2016-12-10: -15584
WARNING. Abnormal entry count found on day 2016-12-10: -15584
WARNING. Abnormal entry count found on day 2016-12-17: -16861
WARNING. Abnormal entry count found on day 2016-12-17: -16861
WARNING. Abnormal entry count found on day 2016-12-24: -11685
WARNING. Abnormal entry count found on day 2016-12-24: -11685
Processing turnstile ('R312', 'R405', '00-00-02', 'JACKSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5811
WARNING. Abnormal entry count found on day 2016-12-03: -5811
WARNING. Abnormal entry count found on day 2016-12-10: -6844
WARNING. Abnormal entry count found on day 2016-12-10: -6844
WARNING. Abnormal entry count found on day 2016-12-17: -6891
WARNING. Abnormal entry count found on day 2016-12-17: -6891
WARNING. Abnormal entry count found on day 2016-12-24: -5087
WARNING. Abnormal entry count found on day 2016-12-24: -5087
Processing turnstile ('R420', 'R107', '00-00-01', 'WESTCHESTER SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -11786
WARNING. Abnormal entry count found on day 2016-12-03: -11786
WARNING. Abnormal entry count found on day 2016-12-10: -11377
WARNING. Abnormal entry count found on day 2016-12-10: -11377
WARNING. Abnormal entry count found on day 2016-12-17: -10867
WARNING. Abnormal entry count found on day 2016-12-17: -10867
WARNING. Abnormal entry count found on day 2016-12-24: -7581
WARNING. Abnormal entry count found on day 2016-12-24: -7581
Processing turnstile ('R249', 'R179', '01-00-04', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7148
WARNING. Abnormal entry count found on day 2016-12-03: -7148
WARNING. Abnormal entry count found on day 2016-12-10: -7209
WARNING. Abnormal entry count found on day 2016-12-10: -7209
WARNING. Abnormal entry count found on day 2016-12-17: -6901
WARNING. Abnormal entry count found on day 2016-12-17: -6901
WARNING. Abnormal entry count found on day 2016-12-24: -5278
WARNING. Abnormal entry count found on day 2016-12-24: -5278
Processing turnstile ('N422', 'R318', '00-06-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3946
WARNING. Abnormal entry count found on day 2016-12-03: -3946
WARNING. Abnormal entry count found on day 2016-12-10: -3710
WARNING. Abnormal entry count found on day 2016-12-10: -3710
WARNING. Abnormal entry count found on day 2016-12-17: -3433
WARNING. Abnormal entry count found on day 2016-12-17: -3433
WARNING. Abnormal entry count found on day 2016-12-24: -2322
WARNING. Abnormal entry count found on day 2016-12-24: -2322
Processing turnstile ('R289', 'R119', '00-00-00', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -18902
WARNING. Abnormal entry count found on day 2016-12-03: -18902
WARNING. Abnormal entry count found on day 2016-12-10: -17841
WARNING. Abnormal entry count found on day 2016-12-10: -17841
WARNING. Abnormal entry count found on day 2016-12-17: -17774
WARNING. Abnormal entry count found on day 2016-12-17: -17774
WARNING. Abnormal entry count found on day 2016-12-24: -15106
WARNING. Abnormal entry count found on day 2016-12-24: -15106
Processing turnstile ('N113', 'R297', '00-00-01', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7202
WARNING. Abnormal entry count found on day 2016-12-03: -7202
WARNING. Abnormal entry count found on day 2016-12-10: -7441
WARNING. Abnormal entry count found on day 2016-12-10: -7441
WARNING. Abnormal entry count found on day 2016-12-17: -6913
WARNING. Abnormal entry count found on day 2016-12-17: -6913
WARNING. Abnormal entry count found on day 2016-12-24: -4607
WARNING. Abnormal entry count found on day 2016-12-24: -4607
Processing turnstile ('N551', 'R421', '00-00-00', 'AVENUE I')
WARNING. Abnormal entry count found on day 2016-12-03: -6383
WARNING. Abnormal entry count found on day 2016-12-03: -6383
WARNING. Abnormal entry count found on day 2016-12-10: -5457
WARNING. Abnormal entry count found on day 2016-12-10: -5457
WARNING. Abnormal entry count found on day 2016-12-17: -6147
WARNING. Abnormal entry count found on day 2016-12-17: -6147
WARNING. Abnormal entry count found on day 2016-12-24: -4399
WARNING. Abnormal entry count found on day 2016-12-24: -4399
Processing turnstile ('N191', 'R335', '00-05-00', 'BEACH 67 ST')
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R169', 'R168', '01-00-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3660
WARNING. Abnormal entry count found on day 2016-12-03: -3660
WARNING. Abnormal entry count found on day 2016-12-10: -3273
WARNING. Abnormal entry count found on day 2016-12-10: -3273
WARNING. Abnormal entry count found on day 2016-12-17: -3010
WARNING. Abnormal entry count found on day 2016-12-17: -3010
WARNING. Abnormal entry count found on day 2016-12-24: -2368
WARNING. Abnormal entry count found on day 2016-12-24: -2368
Processing turnstile ('C025', 'R215', '00-03-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7645
WARNING. Abnormal entry count found on day 2016-12-03: -7645
WARNING. Abnormal entry count found on day 2016-12-10: -7437
WARNING. Abnormal entry count found on day 2016-12-10: -7437
WARNING. Abnormal entry count found on day 2016-12-17: -8152
WARNING. Abnormal entry count found on day 2016-12-17: -8152
WARNING. Abnormal entry count found on day 2016-12-24: -6059
WARNING. Abnormal entry count found on day 2016-12-24: -6059
Processing turnstile ('A069', 'R044', '01-00-03', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8917
WARNING. Abnormal entry count found on day 2016-12-03: -8917
WARNING. Abnormal entry count found on day 2016-12-10: -8667
WARNING. Abnormal entry count found on day 2016-12-10: -8667
WARNING. Abnormal entry count found on day 2016-12-17: -7964
WARNING. Abnormal entry count found on day 2016-12-17: -7964
WARNING. Abnormal entry count found on day 2016-12-24: -6100
WARNING. Abnormal entry count found on day 2016-12-24: -6100
Processing turnstile ('PTH16', 'R550', '01-01-04', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -3889
WARNING. Abnormal entry count found on day 2016-12-03: -3889
WARNING. Abnormal entry count found on day 2016-12-10: -4104
WARNING. Abnormal entry count found on day 2016-12-10: -4104
WARNING. Abnormal entry count found on day 2016-12-17: -3205
WARNING. Abnormal entry count found on day 2016-12-17: -3205
WARNING. Abnormal entry count found on day 2016-12-24: -2441
WARNING. Abnormal entry count found on day 2016-12-24: -2441
Processing turnstile ('N343', 'R019', '00-00-05', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2257
WARNING. Abnormal entry count found on day 2016-12-03: -2257
WARNING. Abnormal entry count found on day 2016-12-10: -2263
WARNING. Abnormal entry count found on day 2016-12-10: -2263
WARNING. Abnormal entry count found on day 2016-12-17: -2136
WARNING. Abnormal entry count found on day 2016-12-17: -2136
WARNING. Abnormal entry count found on day 2016-12-24: -1487
WARNING. Abnormal entry count found on day 2016-12-24: -1487
Processing turnstile ('H040', 'R376', '00-00-00', 'EAST 105 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8824
WARNING. Abnormal entry count found on day 2016-12-03: -8824
WARNING. Abnormal entry count found on day 2016-12-10: -8575
WARNING. Abnormal entry count found on day 2016-12-10: -8575
WARNING. Abnormal entry count found on day 2016-12-17: -7985
WARNING. Abnormal entry count found on day 2016-12-17: -7985
WARNING. Abnormal entry count found on day 2016-12-24: -6475
WARNING. Abnormal entry count found on day 2016-12-24: -6475
Processing turnstile ('N013', 'R035', '02-05-00', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-17: -9
WARNING. Abnormal entry count found on day 2016-12-17: -9
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('R143', 'R032', '02-03-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13372
WARNING. Abnormal entry count found on day 2016-12-03: -13372
WARNING. Abnormal entry count found on day 2016-12-10: -12394
WARNING. Abnormal entry count found on day 2016-12-10: -12394
WARNING. Abnormal entry count found on day 2016-12-17: -10873
WARNING. Abnormal entry count found on day 2016-12-17: -10873
WARNING. Abnormal entry count found on day 2016-12-24: -7670
WARNING. Abnormal entry count found on day 2016-12-24: -7670
Processing turnstile ('D016', 'R397', '00-00-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4831
WARNING. Abnormal entry count found on day 2016-12-03: -4831
WARNING. Abnormal entry count found on day 2016-12-10: -4784
WARNING. Abnormal entry count found on day 2016-12-10: -4784
WARNING. Abnormal entry count found on day 2016-12-17: -4762
WARNING. Abnormal entry count found on day 2016-12-17: -4762
WARNING. Abnormal entry count found on day 2016-12-24: -4383
WARNING. Abnormal entry count found on day 2016-12-24: -4383
Processing turnstile ('R202', 'R042', '00-00-00', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -1838
WARNING. Abnormal entry count found on day 2016-12-03: -1838
WARNING. Abnormal entry count found on day 2016-12-10: -1894
WARNING. Abnormal entry count found on day 2016-12-10: -1894
WARNING. Abnormal entry count found on day 2016-12-17: -1617
WARNING. Abnormal entry count found on day 2016-12-17: -1617
WARNING. Abnormal entry count found on day 2016-12-24: -2003
WARNING. Abnormal entry count found on day 2016-12-24: -2003
Processing turnstile ('R262B', 'R195', '05-00-05', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -179
WARNING. Abnormal entry count found on day 2016-12-24: -179
Processing turnstile ('R154', 'R116', '00-00-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10995
WARNING. Abnormal entry count found on day 2016-12-03: -10995
WARNING. Abnormal entry count found on day 2016-12-10: -11308
WARNING. Abnormal entry count found on day 2016-12-10: -11308
WARNING. Abnormal entry count found on day 2016-12-17: -9579
WARNING. Abnormal entry count found on day 2016-12-17: -9579
WARNING. Abnormal entry count found on day 2016-12-24: -6920
WARNING. Abnormal entry count found on day 2016-12-24: -6920
Processing turnstile ('N017', 'R331', '00-00-04', '155 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6446
WARNING. Abnormal entry count found on day 2016-12-03: -6446
WARNING. Abnormal entry count found on day 2016-12-10: -6378
WARNING. Abnormal entry count found on day 2016-12-10: -6378
WARNING. Abnormal entry count found on day 2016-12-17: -5962
WARNING. Abnormal entry count found on day 2016-12-17: -5962
WARNING. Abnormal entry count found on day 2016-12-24: -4344
WARNING. Abnormal entry count found on day 2016-12-24: -4344
Processing turnstile ('A050', 'R088', '00-02-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2076
WARNING. Abnormal entry count found on day 2016-12-03: -2076
WARNING. Abnormal entry count found on day 2016-12-10: -1990
WARNING. Abnormal entry count found on day 2016-12-10: -1990
WARNING. Abnormal entry count found on day 2016-12-17: -2423
WARNING. Abnormal entry count found on day 2016-12-17: -2423
WARNING. Abnormal entry count found on day 2016-12-24: -3452
WARNING. Abnormal entry count found on day 2016-12-24: -3452
Processing turnstile ('N125', 'R440', '00-00-02', 'LIBERTY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9614
WARNING. Abnormal entry count found on day 2016-12-03: -9614
WARNING. Abnormal entry count found on day 2016-12-10: -9328
WARNING. Abnormal entry count found on day 2016-12-10: -9328
WARNING. Abnormal entry count found on day 2016-12-17: -9175
WARNING. Abnormal entry count found on day 2016-12-17: -9175
WARNING. Abnormal entry count found on day 2016-12-24: -6520
WARNING. Abnormal entry count found on day 2016-12-24: -6520
Processing turnstile ('N324', 'R018', '00-06-01', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -9340
WARNING. Abnormal entry count found on day 2016-12-03: -9340
WARNING. Abnormal entry count found on day 2016-12-10: -11369
WARNING. Abnormal entry count found on day 2016-12-10: -11369
WARNING. Abnormal entry count found on day 2016-12-17: -9716
WARNING. Abnormal entry count found on day 2016-12-17: -9716
WARNING. Abnormal entry count found on day 2016-12-24: -7715
WARNING. Abnormal entry count found on day 2016-12-24: -7715
Processing turnstile ('R619', 'R059', '00-03-01', 'GRAND ARMY PLAZ')
WARNING. Abnormal entry count found on day 2016-12-03: -12939
WARNING. Abnormal entry count found on day 2016-12-03: -12939
WARNING. Abnormal entry count found on day 2016-12-10: -12798
WARNING. Abnormal entry count found on day 2016-12-10: -12798
WARNING. Abnormal entry count found on day 2016-12-17: -11609
WARNING. Abnormal entry count found on day 2016-12-17: -11609
WARNING. Abnormal entry count found on day 2016-12-24: -7532
WARNING. Abnormal entry count found on day 2016-12-24: -7532
Processing turnstile ('N331', 'R219', '00-00-03', '67 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11222
WARNING. Abnormal entry count found on day 2016-12-03: -11222
WARNING. Abnormal entry count found on day 2016-12-10: -10852
WARNING. Abnormal entry count found on day 2016-12-10: -10852
WARNING. Abnormal entry count found on day 2016-12-17: -10673
WARNING. Abnormal entry count found on day 2016-12-17: -10673
WARNING. Abnormal entry count found on day 2016-12-24: -8253
WARNING. Abnormal entry count found on day 2016-12-24: -8253
Processing turnstile ('N135', 'R385', '01-05-01', 'ROCKAWAY BLVD')
Processing turnstile ('R260', 'R205', '01-06-01', '149/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-12-03: -6811
WARNING. Abnormal entry count found on day 2016-12-03: -6811
WARNING. Abnormal entry count found on day 2016-12-10: -6828
WARNING. Abnormal entry count found on day 2016-12-10: -6828
WARNING. Abnormal entry count found on day 2016-12-17: -5522
WARNING. Abnormal entry count found on day 2016-12-17: -5522
WARNING. Abnormal entry count found on day 2016-12-24: -2749
WARNING. Abnormal entry count found on day 2016-12-24: -2749
Processing turnstile ('H012', 'R268', '01-00-01', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14308
WARNING. Abnormal entry count found on day 2016-12-03: -14308
WARNING. Abnormal entry count found on day 2016-12-10: -13960
WARNING. Abnormal entry count found on day 2016-12-10: -13960
WARNING. Abnormal entry count found on day 2016-12-17: -11126
WARNING. Abnormal entry count found on day 2016-12-17: -11126
WARNING. Abnormal entry count found on day 2016-12-24: -7563
WARNING. Abnormal entry count found on day 2016-12-24: -7563
Processing turnstile ('A077', 'R028', '03-03-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4975
WARNING. Abnormal entry count found on day 2016-12-03: -4975
WARNING. Abnormal entry count found on day 2016-12-10: -5039
WARNING. Abnormal entry count found on day 2016-12-10: -5039
WARNING. Abnormal entry count found on day 2016-12-17: -4417
WARNING. Abnormal entry count found on day 2016-12-17: -4417
WARNING. Abnormal entry count found on day 2016-12-24: -3188
WARNING. Abnormal entry count found on day 2016-12-24: -3188
Processing turnstile ('PTH18', 'R549', '01-00-05', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -6057
WARNING. Abnormal entry count found on day 2016-12-03: -6057
WARNING. Abnormal entry count found on day 2016-12-10: -5737
WARNING. Abnormal entry count found on day 2016-12-10: -5737
WARNING. Abnormal entry count found on day 2016-12-17: -3796
WARNING. Abnormal entry count found on day 2016-12-17: -3796
WARNING. Abnormal entry count found on day 2016-12-24: -3322
WARNING. Abnormal entry count found on day 2016-12-24: -3322
Processing turnstile ('R160', 'R164', '02-05-00', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('N335', 'R158', '01-06-01', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -10995
WARNING. Abnormal entry count found on day 2016-12-03: -10995
WARNING. Abnormal entry count found on day 2016-12-10: -10457
WARNING. Abnormal entry count found on day 2016-12-10: -10457
WARNING. Abnormal entry count found on day 2016-12-17: -9576
WARNING. Abnormal entry count found on day 2016-12-17: -9576
WARNING. Abnormal entry count found on day 2016-12-24: -6626
WARNING. Abnormal entry count found on day 2016-12-24: -6626
Processing turnstile ('R205A', 'R014', '04-03-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3884
WARNING. Abnormal entry count found on day 2016-12-03: -3884
WARNING. Abnormal entry count found on day 2016-12-10: -3887
WARNING. Abnormal entry count found on day 2016-12-10: -3887
WARNING. Abnormal entry count found on day 2016-12-17: -3654
WARNING. Abnormal entry count found on day 2016-12-17: -3654
WARNING. Abnormal entry count found on day 2016-12-24: -3198
WARNING. Abnormal entry count found on day 2016-12-24: -3198
Processing turnstile ('N011', 'R126', '01-05-01', '175 ST')
Processing turnstile ('R309', 'R345', '00-00-01', 'HARLEM 148 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8092
WARNING. Abnormal entry count found on day 2016-12-03: -8092
WARNING. Abnormal entry count found on day 2016-12-10: -7985
WARNING. Abnormal entry count found on day 2016-12-10: -7985
WARNING. Abnormal entry count found on day 2016-12-17: -7755
WARNING. Abnormal entry count found on day 2016-12-17: -7755
WARNING. Abnormal entry count found on day 2016-12-24: -5425
WARNING. Abnormal entry count found on day 2016-12-24: -5425
Processing turnstile ('R226', 'R131', '02-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16243
WARNING. Abnormal entry count found on day 2016-12-03: -16243
WARNING. Abnormal entry count found on day 2016-12-10: -13576
WARNING. Abnormal entry count found on day 2016-12-10: -13576
WARNING. Abnormal entry count found on day 2016-12-17: -11869
WARNING. Abnormal entry count found on day 2016-12-17: -11869
WARNING. Abnormal entry count found on day 2016-12-24: -6139
WARNING. Abnormal entry count found on day 2016-12-24: -6139
Processing turnstile ('N208', 'R443', '01-00-02', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6501
WARNING. Abnormal entry count found on day 2016-12-03: -6501
WARNING. Abnormal entry count found on day 2016-12-10: -6140
WARNING. Abnormal entry count found on day 2016-12-10: -6140
WARNING. Abnormal entry count found on day 2016-12-17: -6140
WARNING. Abnormal entry count found on day 2016-12-17: -6140
WARNING. Abnormal entry count found on day 2016-12-24: -4880
WARNING. Abnormal entry count found on day 2016-12-24: -4880
Processing turnstile ('R238', 'R046', '00-03-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -36895
WARNING. Abnormal entry count found on day 2016-12-03: -36895
WARNING. Abnormal entry count found on day 2016-12-10: -28002
WARNING. Abnormal entry count found on day 2016-12-10: -28002
WARNING. Abnormal entry count found on day 2016-12-17: -31120
WARNING. Abnormal entry count found on day 2016-12-17: -31120
WARNING. Abnormal entry count found on day 2016-12-24: -20353
WARNING. Abnormal entry count found on day 2016-12-24: -20353
Processing turnstile ('N324', 'R018', '00-03-03', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -17414
WARNING. Abnormal entry count found on day 2016-12-03: -17414
WARNING. Abnormal entry count found on day 2016-12-10: -16916
WARNING. Abnormal entry count found on day 2016-12-10: -16916
WARNING. Abnormal entry count found on day 2016-12-17: -17196
WARNING. Abnormal entry count found on day 2016-12-17: -17196
WARNING. Abnormal entry count found on day 2016-12-24: -14260
WARNING. Abnormal entry count found on day 2016-12-24: -14260
Processing turnstile ('R128', 'R105', '01-03-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9146
WARNING. Abnormal entry count found on day 2016-12-03: -9146
WARNING. Abnormal entry count found on day 2016-12-10: -9401
WARNING. Abnormal entry count found on day 2016-12-10: -9401
WARNING. Abnormal entry count found on day 2016-12-17: -7483
WARNING. Abnormal entry count found on day 2016-12-17: -7483
WARNING. Abnormal entry count found on day 2016-12-24: -4889
WARNING. Abnormal entry count found on day 2016-12-24: -4889
Processing turnstile ('N182', 'R414', '00-00-01', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -3086
WARNING. Abnormal entry count found on day 2016-12-03: -3086
WARNING. Abnormal entry count found on day 2016-12-10: -3016
WARNING. Abnormal entry count found on day 2016-12-10: -3016
WARNING. Abnormal entry count found on day 2016-12-17: -3173
WARNING. Abnormal entry count found on day 2016-12-17: -3173
WARNING. Abnormal entry count found on day 2016-12-24: -3301
WARNING. Abnormal entry count found on day 2016-12-24: -3301
Processing turnstile ('N306', 'R017', '00-00-03', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -19072
WARNING. Abnormal entry count found on day 2016-12-03: -19072
WARNING. Abnormal entry count found on day 2016-12-10: -18282
WARNING. Abnormal entry count found on day 2016-12-10: -18282
WARNING. Abnormal entry count found on day 2016-12-17: -17546
WARNING. Abnormal entry count found on day 2016-12-17: -17546
WARNING. Abnormal entry count found on day 2016-12-24: -12402
WARNING. Abnormal entry count found on day 2016-12-24: -12402
Processing turnstile ('R511', 'R091', '00-00-02', '36 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8663
WARNING. Abnormal entry count found on day 2016-12-03: -8663
WARNING. Abnormal entry count found on day 2016-12-10: -8386
WARNING. Abnormal entry count found on day 2016-12-10: -8386
WARNING. Abnormal entry count found on day 2016-12-17: -7882
WARNING. Abnormal entry count found on day 2016-12-17: -7882
WARNING. Abnormal entry count found on day 2016-12-24: -5986
WARNING. Abnormal entry count found on day 2016-12-24: -5986
Processing turnstile ('R403', 'R446', '01-00-00', 'BROOK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2141
WARNING. Abnormal entry count found on day 2016-12-03: -2141
WARNING. Abnormal entry count found on day 2016-12-10: -2069
WARNING. Abnormal entry count found on day 2016-12-10: -2069
WARNING. Abnormal entry count found on day 2016-12-17: -2021
WARNING. Abnormal entry count found on day 2016-12-17: -2021
WARNING. Abnormal entry count found on day 2016-12-24: -1658
WARNING. Abnormal entry count found on day 2016-12-24: -1658
Processing turnstile ('R423', 'R429', '00-00-01', 'PELHAM BAY PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -2719
WARNING. Abnormal entry count found on day 2016-12-03: -2719
WARNING. Abnormal entry count found on day 2016-12-10: -2857
WARNING. Abnormal entry count found on day 2016-12-10: -2857
WARNING. Abnormal entry count found on day 2016-12-17: -2798
WARNING. Abnormal entry count found on day 2016-12-17: -2798
WARNING. Abnormal entry count found on day 2016-12-24: -1895
WARNING. Abnormal entry count found on day 2016-12-24: -1895
Processing turnstile ('N539A', 'R288', '00-00-00', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -113
WARNING. Abnormal entry count found on day 2016-12-03: -113
WARNING. Abnormal entry count found on day 2016-12-10: -116
WARNING. Abnormal entry count found on day 2016-12-10: -116
WARNING. Abnormal entry count found on day 2016-12-17: -108
WARNING. Abnormal entry count found on day 2016-12-17: -108
WARNING. Abnormal entry count found on day 2016-12-24: -42
WARNING. Abnormal entry count found on day 2016-12-24: -42
Processing turnstile ('PTH17', 'R541', '01-00-0A', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6418
WARNING. Abnormal entry count found on day 2016-12-03: -6418
WARNING. Abnormal entry count found on day 2016-12-10: -6556
WARNING. Abnormal entry count found on day 2016-12-10: -6556
WARNING. Abnormal entry count found on day 2016-12-17: -6450
WARNING. Abnormal entry count found on day 2016-12-17: -6450
WARNING. Abnormal entry count found on day 2016-12-24: -5754
WARNING. Abnormal entry count found on day 2016-12-24: -5754
Processing turnstile ('PTH02', 'R544', '00-04-01', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -259
WARNING. Abnormal entry count found on day 2016-12-03: -259
WARNING. Abnormal entry count found on day 2016-12-10: -316
WARNING. Abnormal entry count found on day 2016-12-10: -316
WARNING. Abnormal entry count found on day 2016-12-17: -379
WARNING. Abnormal entry count found on day 2016-12-17: -379
WARNING. Abnormal entry count found on day 2016-12-24: -307
WARNING. Abnormal entry count found on day 2016-12-24: -307
Processing turnstile ('R316', 'R407', '00-00-00', 'INTERVALE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4422
WARNING. Abnormal entry count found on day 2016-12-03: -4422
WARNING. Abnormal entry count found on day 2016-12-10: -4392
WARNING. Abnormal entry count found on day 2016-12-10: -4392
WARNING. Abnormal entry count found on day 2016-12-17: -5070
WARNING. Abnormal entry count found on day 2016-12-17: -5070
WARNING. Abnormal entry count found on day 2016-12-24: -3125
WARNING. Abnormal entry count found on day 2016-12-24: -3125
Processing turnstile ('N184', 'R416', '00-00-02', 'BEACH 90 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1452
WARNING. Abnormal entry count found on day 2016-12-03: -1452
WARNING. Abnormal entry count found on day 2016-12-10: -1542
WARNING. Abnormal entry count found on day 2016-12-10: -1542
WARNING. Abnormal entry count found on day 2016-12-17: -1470
WARNING. Abnormal entry count found on day 2016-12-17: -1470
WARNING. Abnormal entry count found on day 2016-12-24: -1165
WARNING. Abnormal entry count found on day 2016-12-24: -1165
Processing turnstile ('N020', 'R101', '00-00-03', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12679
WARNING. Abnormal entry count found on day 2016-12-03: -12679
WARNING. Abnormal entry count found on day 2016-12-10: -12070
WARNING. Abnormal entry count found on day 2016-12-10: -12070
WARNING. Abnormal entry count found on day 2016-12-17: -11117
WARNING. Abnormal entry count found on day 2016-12-17: -11117
WARNING. Abnormal entry count found on day 2016-12-24: -8696
WARNING. Abnormal entry count found on day 2016-12-24: -8696
Processing turnstile ('H032', 'R295', '00-00-00', 'WILSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6923
WARNING. Abnormal entry count found on day 2016-12-03: -6923
WARNING. Abnormal entry count found on day 2016-12-10: -6805
WARNING. Abnormal entry count found on day 2016-12-10: -6805
WARNING. Abnormal entry count found on day 2016-12-17: -6199
WARNING. Abnormal entry count found on day 2016-12-17: -6199
WARNING. Abnormal entry count found on day 2016-12-24: -4710
WARNING. Abnormal entry count found on day 2016-12-24: -4710
Processing turnstile ('A083', 'R125', '00-00-01', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3086
WARNING. Abnormal entry count found on day 2016-12-03: -3086
WARNING. Abnormal entry count found on day 2016-12-10: -3122
WARNING. Abnormal entry count found on day 2016-12-10: -3122
WARNING. Abnormal entry count found on day 2016-12-17: -2943
WARNING. Abnormal entry count found on day 2016-12-17: -2943
WARNING. Abnormal entry count found on day 2016-12-24: -2334
WARNING. Abnormal entry count found on day 2016-12-24: -2334
Processing turnstile ('R420', 'R107', '00-00-00', 'WESTCHESTER SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -13918
WARNING. Abnormal entry count found on day 2016-12-03: -13918
WARNING. Abnormal entry count found on day 2016-12-10: -13734
WARNING. Abnormal entry count found on day 2016-12-10: -13734
WARNING. Abnormal entry count found on day 2016-12-17: -13149
WARNING. Abnormal entry count found on day 2016-12-17: -13149
WARNING. Abnormal entry count found on day 2016-12-24: -9253
WARNING. Abnormal entry count found on day 2016-12-24: -9253
Processing turnstile ('N114', 'R297', '01-05-00', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N102', 'R127', '01-05-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-03: -3
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('N035', 'R334', '00-00-00', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -11610
WARNING. Abnormal entry count found on day 2016-12-03: -11610
WARNING. Abnormal entry count found on day 2016-12-10: -11192
WARNING. Abnormal entry count found on day 2016-12-10: -11192
WARNING. Abnormal entry count found on day 2016-12-17: -10653
WARNING. Abnormal entry count found on day 2016-12-17: -10653
WARNING. Abnormal entry count found on day 2016-12-24: -8088
WARNING. Abnormal entry count found on day 2016-12-24: -8088
Processing turnstile ('N600', 'R302', '00-00-00', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5596
WARNING. Abnormal entry count found on day 2016-12-03: -5596
WARNING. Abnormal entry count found on day 2016-12-10: -5242
WARNING. Abnormal entry count found on day 2016-12-10: -5242
WARNING. Abnormal entry count found on day 2016-12-17: -5209
WARNING. Abnormal entry count found on day 2016-12-17: -5209
WARNING. Abnormal entry count found on day 2016-12-24: -4046
WARNING. Abnormal entry count found on day 2016-12-24: -4046
Processing turnstile ('R514', 'R094', '00-00-01', 'ASTORIA BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -7546
WARNING. Abnormal entry count found on day 2016-12-03: -7546
WARNING. Abnormal entry count found on day 2016-12-10: -7225
WARNING. Abnormal entry count found on day 2016-12-10: -7225
WARNING. Abnormal entry count found on day 2016-12-17: -6799
WARNING. Abnormal entry count found on day 2016-12-17: -6799
WARNING. Abnormal entry count found on day 2016-12-24: -4860
WARNING. Abnormal entry count found on day 2016-12-24: -4860
Processing turnstile ('N333', 'R141', '01-00-01', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -5775
WARNING. Abnormal entry count found on day 2016-12-03: -5775
WARNING. Abnormal entry count found on day 2016-12-10: -5623
WARNING. Abnormal entry count found on day 2016-12-10: -5623
WARNING. Abnormal entry count found on day 2016-12-17: -5335
WARNING. Abnormal entry count found on day 2016-12-17: -5335
WARNING. Abnormal entry count found on day 2016-12-24: -3788
WARNING. Abnormal entry count found on day 2016-12-24: -3788
Processing turnstile ('N604', 'R342', '00-05-01', 'JAMAICA VAN WK')
Processing turnstile ('A038', 'R085', '00-00-01', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -12557
WARNING. Abnormal entry count found on day 2016-12-03: -12557
WARNING. Abnormal entry count found on day 2016-12-10: -12874
WARNING. Abnormal entry count found on day 2016-12-10: -12874
WARNING. Abnormal entry count found on day 2016-12-17: -11838
WARNING. Abnormal entry count found on day 2016-12-17: -11838
WARNING. Abnormal entry count found on day 2016-12-24: -8663
WARNING. Abnormal entry count found on day 2016-12-24: -8663
Processing turnstile ('N076', 'R111', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19328
WARNING. Abnormal entry count found on day 2016-12-03: -19328
WARNING. Abnormal entry count found on day 2016-12-10: -19111
WARNING. Abnormal entry count found on day 2016-12-10: -19111
WARNING. Abnormal entry count found on day 2016-12-17: -17083
WARNING. Abnormal entry count found on day 2016-12-17: -17083
WARNING. Abnormal entry count found on day 2016-12-24: -13311
WARNING. Abnormal entry count found on day 2016-12-24: -13311
Processing turnstile ('R155', 'R116', '01-00-03', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5680
WARNING. Abnormal entry count found on day 2016-12-03: -5680
WARNING. Abnormal entry count found on day 2016-12-10: -7313
WARNING. Abnormal entry count found on day 2016-12-10: -7313
WARNING. Abnormal entry count found on day 2016-12-17: -7171
WARNING. Abnormal entry count found on day 2016-12-17: -7171
WARNING. Abnormal entry count found on day 2016-12-24: -6438
WARNING. Abnormal entry count found on day 2016-12-24: -6438
Processing turnstile ('A039', 'R085', '01-03-01', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -2596
WARNING. Abnormal entry count found on day 2016-12-03: -2596
WARNING. Abnormal entry count found on day 2016-12-10: -2699
WARNING. Abnormal entry count found on day 2016-12-10: -2699
WARNING. Abnormal entry count found on day 2016-12-17: -2475
WARNING. Abnormal entry count found on day 2016-12-17: -2475
WARNING. Abnormal entry count found on day 2016-12-24: -1691
WARNING. Abnormal entry count found on day 2016-12-24: -1691
Processing turnstile ('N335', 'R158', '01-00-00', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -15385
WARNING. Abnormal entry count found on day 2016-12-03: -15385
WARNING. Abnormal entry count found on day 2016-12-10: -14293
WARNING. Abnormal entry count found on day 2016-12-10: -14293
WARNING. Abnormal entry count found on day 2016-12-17: -13626
WARNING. Abnormal entry count found on day 2016-12-17: -13626
WARNING. Abnormal entry count found on day 2016-12-24: -11139
WARNING. Abnormal entry count found on day 2016-12-24: -11139
Processing turnstile ('R417', 'R222', '00-00-04', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -10124
WARNING. Abnormal entry count found on day 2016-12-03: -10124
WARNING. Abnormal entry count found on day 2016-12-10: -10040
WARNING. Abnormal entry count found on day 2016-12-10: -10040
WARNING. Abnormal entry count found on day 2016-12-17: -9598
WARNING. Abnormal entry count found on day 2016-12-17: -9598
WARNING. Abnormal entry count found on day 2016-12-24: -7342
WARNING. Abnormal entry count found on day 2016-12-24: -7342
Processing turnstile ('PTH05', 'R543', '00-00-03', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -7221
WARNING. Abnormal entry count found on day 2016-12-03: -7221
WARNING. Abnormal entry count found on day 2016-12-10: -6842
WARNING. Abnormal entry count found on day 2016-12-10: -6842
WARNING. Abnormal entry count found on day 2016-12-17: -6127
WARNING. Abnormal entry count found on day 2016-12-17: -6127
WARNING. Abnormal entry count found on day 2016-12-24: -4301
WARNING. Abnormal entry count found on day 2016-12-24: -4301
Processing turnstile ('R110', 'R027', '01-03-00', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4373
WARNING. Abnormal entry count found on day 2016-12-03: -4373
WARNING. Abnormal entry count found on day 2016-12-10: -4607
WARNING. Abnormal entry count found on day 2016-12-10: -4607
WARNING. Abnormal entry count found on day 2016-12-17: -3937
WARNING. Abnormal entry count found on day 2016-12-17: -3937
WARNING. Abnormal entry count found on day 2016-12-24: -2760
WARNING. Abnormal entry count found on day 2016-12-24: -2760
Processing turnstile ('PTH20', 'R549', '03-00-07', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -159
WARNING. Abnormal entry count found on day 2016-12-03: -159
WARNING. Abnormal entry count found on day 2016-12-10: -248
WARNING. Abnormal entry count found on day 2016-12-10: -248
WARNING. Abnormal entry count found on day 2016-12-17: -274
WARNING. Abnormal entry count found on day 2016-12-17: -274
WARNING. Abnormal entry count found on day 2016-12-24: -232
WARNING. Abnormal entry count found on day 2016-12-24: -232
Processing turnstile ('N400A', 'R359', '02-00-01', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -2173
WARNING. Abnormal entry count found on day 2016-12-03: -2173
WARNING. Abnormal entry count found on day 2016-12-10: -2261
WARNING. Abnormal entry count found on day 2016-12-10: -2261
WARNING. Abnormal entry count found on day 2016-12-17: -1823
WARNING. Abnormal entry count found on day 2016-12-17: -1823
WARNING. Abnormal entry count found on day 2016-12-24: -1048
WARNING. Abnormal entry count found on day 2016-12-24: -1048
Processing turnstile ('A060', 'R001', '00-00-07', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -11065
WARNING. Abnormal entry count found on day 2016-12-03: -11065
WARNING. Abnormal entry count found on day 2016-12-10: -9785
WARNING. Abnormal entry count found on day 2016-12-10: -9785
WARNING. Abnormal entry count found on day 2016-12-17: -8204
WARNING. Abnormal entry count found on day 2016-12-17: -8204
WARNING. Abnormal entry count found on day 2016-12-24: -7162
WARNING. Abnormal entry count found on day 2016-12-24: -7162
Processing turnstile ('N304', 'R015', '01-06-00', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7246
WARNING. Abnormal entry count found on day 2016-12-03: -7246
WARNING. Abnormal entry count found on day 2016-12-10: -7050
WARNING. Abnormal entry count found on day 2016-12-10: -7050
WARNING. Abnormal entry count found on day 2016-12-17: -7391
WARNING. Abnormal entry count found on day 2016-12-17: -7391
WARNING. Abnormal entry count found on day 2016-12-24: -3206
WARNING. Abnormal entry count found on day 2016-12-24: -3206
Processing turnstile ('A034', 'R170', '03-03-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -30099
WARNING. Abnormal entry count found on day 2016-12-03: -30099
WARNING. Abnormal entry count found on day 2016-12-10: -29544
WARNING. Abnormal entry count found on day 2016-12-10: -29544
WARNING. Abnormal entry count found on day 2016-12-17: -29045
WARNING. Abnormal entry count found on day 2016-12-17: -29045
WARNING. Abnormal entry count found on day 2016-12-24: -17864
WARNING. Abnormal entry count found on day 2016-12-24: -17864
Processing turnstile ('PTH18', 'R549', '01-02-03', 'NEWARK BM BW')
WARNING. Abnormal entry count found on day 2016-12-03: -4139
WARNING. Abnormal entry count found on day 2016-12-03: -4139
WARNING. Abnormal entry count found on day 2016-12-10: -3783
WARNING. Abnormal entry count found on day 2016-12-10: -3783
WARNING. Abnormal entry count found on day 2016-12-17: -2402
WARNING. Abnormal entry count found on day 2016-12-17: -2402
WARNING. Abnormal entry count found on day 2016-12-27: -1642
WARNING. Abnormal entry count found on day 2016-12-27: -1642
Processing turnstile ('N060', 'R010', '01-05-01', '42 ST-PORT AUTH')
Processing turnstile ('R151', 'R033', '00-00-08', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19577
WARNING. Abnormal entry count found on day 2016-12-03: -19577
WARNING. Abnormal entry count found on day 2016-12-10: -17717
WARNING. Abnormal entry count found on day 2016-12-10: -17717
WARNING. Abnormal entry count found on day 2016-12-17: -9519
WARNING. Abnormal entry count found on day 2016-12-17: -9519
WARNING. Abnormal entry count found on day 2016-12-24: -20506
WARNING. Abnormal entry count found on day 2016-12-24: -20506
Processing turnstile ('R258', 'R132', '00-00-02', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18183
WARNING. Abnormal entry count found on day 2016-12-03: -18183
WARNING. Abnormal entry count found on day 2016-12-10: -18836
WARNING. Abnormal entry count found on day 2016-12-10: -18836
WARNING. Abnormal entry count found on day 2016-12-17: -17134
WARNING. Abnormal entry count found on day 2016-12-17: -17134
WARNING. Abnormal entry count found on day 2016-12-24: -13074
WARNING. Abnormal entry count found on day 2016-12-24: -13074
Processing turnstile ('R412', 'R146', '00-03-02', 'HUNTS POINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7666
WARNING. Abnormal entry count found on day 2016-12-03: -7666
WARNING. Abnormal entry count found on day 2016-12-10: -7561
WARNING. Abnormal entry count found on day 2016-12-10: -7561
WARNING. Abnormal entry count found on day 2016-12-17: -7391
WARNING. Abnormal entry count found on day 2016-12-17: -7391
WARNING. Abnormal entry count found on day 2016-12-24: -5839
WARNING. Abnormal entry count found on day 2016-12-24: -5839
Processing turnstile ('R179', 'R193', '01-00-01', '157 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4808
WARNING. Abnormal entry count found on day 2016-12-03: -4808
WARNING. Abnormal entry count found on day 2016-12-10: -5117
WARNING. Abnormal entry count found on day 2016-12-10: -5117
WARNING. Abnormal entry count found on day 2016-12-17: -4838
WARNING. Abnormal entry count found on day 2016-12-17: -4838
WARNING. Abnormal entry count found on day 2016-12-24: -3991
WARNING. Abnormal entry count found on day 2016-12-24: -3991
Processing turnstile ('N070', 'R012', '04-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -7193
WARNING. Abnormal entry count found on day 2016-12-03: -7193
WARNING. Abnormal entry count found on day 2016-12-10: -7118
WARNING. Abnormal entry count found on day 2016-12-10: -7118
WARNING. Abnormal entry count found on day 2016-12-17: -7642
WARNING. Abnormal entry count found on day 2016-12-17: -7642
WARNING. Abnormal entry count found on day 2016-12-24: -6325
WARNING. Abnormal entry count found on day 2016-12-24: -6325
Processing turnstile ('C020', 'R233', '00-00-03', '53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12181
WARNING. Abnormal entry count found on day 2016-12-03: -12181
WARNING. Abnormal entry count found on day 2016-12-10: -12107
WARNING. Abnormal entry count found on day 2016-12-10: -12107
WARNING. Abnormal entry count found on day 2016-12-17: -11486
WARNING. Abnormal entry count found on day 2016-12-17: -11486
WARNING. Abnormal entry count found on day 2016-12-24: -9714
WARNING. Abnormal entry count found on day 2016-12-24: -9714
Processing turnstile ('B020', 'R263', '00-06-01', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -116
WARNING. Abnormal entry count found on day 2016-12-03: -116
WARNING. Abnormal entry count found on day 2016-12-10: -127
WARNING. Abnormal entry count found on day 2016-12-10: -127
WARNING. Abnormal entry count found on day 2016-12-17: -112
WARNING. Abnormal entry count found on day 2016-12-17: -112
WARNING. Abnormal entry count found on day 2016-12-24: -101
WARNING. Abnormal entry count found on day 2016-12-24: -101
Processing turnstile ('R226', 'R131', '02-03-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9705
WARNING. Abnormal entry count found on day 2016-12-03: -9705
WARNING. Abnormal entry count found on day 2016-12-10: -9719
WARNING. Abnormal entry count found on day 2016-12-10: -9719
WARNING. Abnormal entry count found on day 2016-12-17: -7327
WARNING. Abnormal entry count found on day 2016-12-17: -7327
WARNING. Abnormal entry count found on day 2016-12-24: -3767
WARNING. Abnormal entry count found on day 2016-12-24: -3767
Processing turnstile ('N504', 'R021', '02-00-00', '42 ST-BRYANT PK')
WARNING. Abnormal entry count found on day 2016-12-03: -11096
WARNING. Abnormal entry count found on day 2016-12-03: -11096
WARNING. Abnormal entry count found on day 2016-12-10: -10799
WARNING. Abnormal entry count found on day 2016-12-10: -10799
WARNING. Abnormal entry count found on day 2016-12-17: -10354
WARNING. Abnormal entry count found on day 2016-12-17: -10354
WARNING. Abnormal entry count found on day 2016-12-24: -7284
WARNING. Abnormal entry count found on day 2016-12-24: -7284
Processing turnstile ('N017', 'R331', '00-00-03', '155 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3817
WARNING. Abnormal entry count found on day 2016-12-03: -3817
WARNING. Abnormal entry count found on day 2016-12-10: -3704
WARNING. Abnormal entry count found on day 2016-12-10: -3704
WARNING. Abnormal entry count found on day 2016-12-17: -3488
WARNING. Abnormal entry count found on day 2016-12-17: -3488
WARNING. Abnormal entry count found on day 2016-12-24: -2875
WARNING. Abnormal entry count found on day 2016-12-24: -2875
Processing turnstile ('N196', 'R285', '00-05-00', 'FAR ROCKAWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('N062A', 'R010', '00-00-03', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -11097
WARNING. Abnormal entry count found on day 2016-12-03: -11097
WARNING. Abnormal entry count found on day 2016-12-10: -11312
WARNING. Abnormal entry count found on day 2016-12-10: -11312
WARNING. Abnormal entry count found on day 2016-12-17: -11894
WARNING. Abnormal entry count found on day 2016-12-17: -11894
WARNING. Abnormal entry count found on day 2016-12-24: -15467
WARNING. Abnormal entry count found on day 2016-12-24: -15467
Processing turnstile ('R528', 'R097', '00-00-00', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -9864
WARNING. Abnormal entry count found on day 2016-12-03: -9864
WARNING. Abnormal entry count found on day 2016-12-10: -9502
WARNING. Abnormal entry count found on day 2016-12-10: -9502
WARNING. Abnormal entry count found on day 2016-12-17: -10383
WARNING. Abnormal entry count found on day 2016-12-17: -10383
WARNING. Abnormal entry count found on day 2016-12-24: -7843
WARNING. Abnormal entry count found on day 2016-12-24: -7843
Processing turnstile ('N039', 'R251', '01-06-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3342
WARNING. Abnormal entry count found on day 2016-12-03: -3342
WARNING. Abnormal entry count found on day 2016-12-10: -2916
WARNING. Abnormal entry count found on day 2016-12-10: -2916
WARNING. Abnormal entry count found on day 2016-12-17: -2153
WARNING. Abnormal entry count found on day 2016-12-17: -2153
WARNING. Abnormal entry count found on day 2016-12-24: -1587
WARNING. Abnormal entry count found on day 2016-12-24: -1587
Processing turnstile ('R507', 'R134', '00-00-01', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7986
WARNING. Abnormal entry count found on day 2016-12-03: -7986
WARNING. Abnormal entry count found on day 2016-12-10: -7747
WARNING. Abnormal entry count found on day 2016-12-10: -7747
WARNING. Abnormal entry count found on day 2016-12-17: -6749
WARNING. Abnormal entry count found on day 2016-12-17: -6749
WARNING. Abnormal entry count found on day 2016-12-24: -4162
WARNING. Abnormal entry count found on day 2016-12-24: -4162
Processing turnstile ('R112', 'R027', '02-00-02', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6713
WARNING. Abnormal entry count found on day 2016-12-03: -6713
WARNING. Abnormal entry count found on day 2016-12-10: -6543
WARNING. Abnormal entry count found on day 2016-12-10: -6543
WARNING. Abnormal entry count found on day 2016-12-17: -5355
WARNING. Abnormal entry count found on day 2016-12-17: -5355
WARNING. Abnormal entry count found on day 2016-12-24: -3012
WARNING. Abnormal entry count found on day 2016-12-24: -3012
Processing turnstile ('R145', 'R032', '00-00-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7002
WARNING. Abnormal entry count found on day 2016-12-03: -7002
WARNING. Abnormal entry count found on day 2016-12-10: -6735
WARNING. Abnormal entry count found on day 2016-12-10: -6735
WARNING. Abnormal entry count found on day 2016-12-17: -6118
WARNING. Abnormal entry count found on day 2016-12-17: -6118
WARNING. Abnormal entry count found on day 2016-12-24: -4301
WARNING. Abnormal entry count found on day 2016-12-24: -4301
Processing turnstile ('R301', 'R323', '00-06-01', 'CENTRAL PK N110')
WARNING. Abnormal entry count found on day 2016-12-03: -5748
WARNING. Abnormal entry count found on day 2016-12-03: -5748
WARNING. Abnormal entry count found on day 2016-12-10: -6333
WARNING. Abnormal entry count found on day 2016-12-10: -6333
WARNING. Abnormal entry count found on day 2016-12-17: -5208
WARNING. Abnormal entry count found on day 2016-12-17: -5208
WARNING. Abnormal entry count found on day 2016-12-24: -3267
WARNING. Abnormal entry count found on day 2016-12-24: -3267
Processing turnstile ('N400A', 'R359', '02-06-03', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -1161
WARNING. Abnormal entry count found on day 2016-12-03: -1161
WARNING. Abnormal entry count found on day 2016-12-10: -1227
WARNING. Abnormal entry count found on day 2016-12-10: -1227
WARNING. Abnormal entry count found on day 2016-12-17: -1058
WARNING. Abnormal entry count found on day 2016-12-17: -1058
WARNING. Abnormal entry count found on day 2016-12-24: -963
WARNING. Abnormal entry count found on day 2016-12-24: -963
Processing turnstile ('R188', 'R037', '00-06-01', '207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1514
WARNING. Abnormal entry count found on day 2016-12-03: -1514
WARNING. Abnormal entry count found on day 2016-12-10: -1453
WARNING. Abnormal entry count found on day 2016-12-10: -1453
WARNING. Abnormal entry count found on day 2016-12-17: -1410
WARNING. Abnormal entry count found on day 2016-12-17: -1410
WARNING. Abnormal entry count found on day 2016-12-24: -918
WARNING. Abnormal entry count found on day 2016-12-24: -918
Processing turnstile ('R291', 'R183', '00-00-01', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -6289
WARNING. Abnormal entry count found on day 2016-12-03: -6289
WARNING. Abnormal entry count found on day 2016-12-10: -6132
WARNING. Abnormal entry count found on day 2016-12-10: -6132
WARNING. Abnormal entry count found on day 2016-12-17: -5672
WARNING. Abnormal entry count found on day 2016-12-17: -5672
WARNING. Abnormal entry count found on day 2016-12-24: -3213
WARNING. Abnormal entry count found on day 2016-12-24: -3213
Processing turnstile ('R294', 'R052', '00-00-04', 'WOODLAWN')
WARNING. Abnormal entry count found on day 2016-12-03: -10499
WARNING. Abnormal entry count found on day 2016-12-03: -10499
WARNING. Abnormal entry count found on day 2016-12-10: -9451
WARNING. Abnormal entry count found on day 2016-12-10: -9451
WARNING. Abnormal entry count found on day 2016-12-17: -9744
WARNING. Abnormal entry count found on day 2016-12-17: -9744
WARNING. Abnormal entry count found on day 2016-12-24: -8429
WARNING. Abnormal entry count found on day 2016-12-24: -8429
Processing turnstile ('R507', 'R134', '00-00-00', 'HUNTERS PT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6290
WARNING. Abnormal entry count found on day 2016-12-03: -6290
WARNING. Abnormal entry count found on day 2016-12-10: -6097
WARNING. Abnormal entry count found on day 2016-12-10: -6097
WARNING. Abnormal entry count found on day 2016-12-17: -5319
WARNING. Abnormal entry count found on day 2016-12-17: -5319
WARNING. Abnormal entry count found on day 2016-12-24: -2821
WARNING. Abnormal entry count found on day 2016-12-24: -2821
Processing turnstile ('R626', 'R062', '00-03-00', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -11206
WARNING. Abnormal entry count found on day 2016-12-03: -11206
WARNING. Abnormal entry count found on day 2016-12-10: -10908
WARNING. Abnormal entry count found on day 2016-12-10: -10908
WARNING. Abnormal entry count found on day 2016-12-17: -10974
WARNING. Abnormal entry count found on day 2016-12-17: -10974
WARNING. Abnormal entry count found on day 2016-12-24: -8583
WARNING. Abnormal entry count found on day 2016-12-24: -8583
Processing turnstile ('R261', 'R205', '00-00-02', '149/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-12-03: -28912
WARNING. Abnormal entry count found on day 2016-12-03: -28912
WARNING. Abnormal entry count found on day 2016-12-10: -26636
WARNING. Abnormal entry count found on day 2016-12-10: -26636
WARNING. Abnormal entry count found on day 2016-12-17: -24917
WARNING. Abnormal entry count found on day 2016-12-17: -24917
WARNING. Abnormal entry count found on day 2016-12-24: -18974
WARNING. Abnormal entry count found on day 2016-12-24: -18974
Processing turnstile ('R131', 'R190', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -25011
WARNING. Abnormal entry count found on day 2016-12-03: -25011
WARNING. Abnormal entry count found on day 2016-12-10: -24584
WARNING. Abnormal entry count found on day 2016-12-10: -24584
WARNING. Abnormal entry count found on day 2016-12-17: -22908
WARNING. Abnormal entry count found on day 2016-12-17: -22908
WARNING. Abnormal entry count found on day 2016-12-24: -15692
WARNING. Abnormal entry count found on day 2016-12-24: -15692
Processing turnstile ('N010', 'R126', '00-03-01', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -526
WARNING. Abnormal entry count found on day 2016-12-03: -526
WARNING. Abnormal entry count found on day 2016-12-10: -1300
WARNING. Abnormal entry count found on day 2016-12-10: -1300
WARNING. Abnormal entry count found on day 2016-12-17: -1303
WARNING. Abnormal entry count found on day 2016-12-17: -1303
WARNING. Abnormal entry count found on day 2016-12-24: -1105
WARNING. Abnormal entry count found on day 2016-12-24: -1105
Processing turnstile ('PTH07', 'R550', '00-01-07', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -945
WARNING. Abnormal entry count found on day 2016-12-03: -945
WARNING. Abnormal entry count found on day 2016-12-10: -883
WARNING. Abnormal entry count found on day 2016-12-10: -883
WARNING. Abnormal entry count found on day 2016-12-17: -749
WARNING. Abnormal entry count found on day 2016-12-17: -749
WARNING. Abnormal entry count found on day 2016-12-24: -464
WARNING. Abnormal entry count found on day 2016-12-24: -464
Processing turnstile ('N024', 'R332', '00-00-02', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8690
WARNING. Abnormal entry count found on day 2016-12-03: -8690
WARNING. Abnormal entry count found on day 2016-12-10: -7968
WARNING. Abnormal entry count found on day 2016-12-10: -7968
WARNING. Abnormal entry count found on day 2016-12-17: -7179
WARNING. Abnormal entry count found on day 2016-12-17: -7179
WARNING. Abnormal entry count found on day 2016-12-24: -4768
WARNING. Abnormal entry count found on day 2016-12-24: -4768
Processing turnstile ('N605', 'R024', '00-06-01', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -5817
WARNING. Abnormal entry count found on day 2016-12-03: -5817
WARNING. Abnormal entry count found on day 2016-12-10: -10395
WARNING. Abnormal entry count found on day 2016-12-10: -10395
WARNING. Abnormal entry count found on day 2016-12-17: -10745
WARNING. Abnormal entry count found on day 2016-12-17: -10745
WARNING. Abnormal entry count found on day 2016-12-24: -8769
WARNING. Abnormal entry count found on day 2016-12-24: -8769
Processing turnstile ('A010', 'R080', '00-00-05', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8562
WARNING. Abnormal entry count found on day 2016-12-03: -8562
WARNING. Abnormal entry count found on day 2016-12-10: -9349
WARNING. Abnormal entry count found on day 2016-12-10: -9349
WARNING. Abnormal entry count found on day 2016-12-17: -8052
WARNING. Abnormal entry count found on day 2016-12-17: -8052
WARNING. Abnormal entry count found on day 2016-12-24: -6314
WARNING. Abnormal entry count found on day 2016-12-24: -6314
Processing turnstile ('E015', 'R399', '00-00-00', '25 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13748
WARNING. Abnormal entry count found on day 2016-12-03: -13748
WARNING. Abnormal entry count found on day 2016-12-10: -13161
WARNING. Abnormal entry count found on day 2016-12-10: -13161
WARNING. Abnormal entry count found on day 2016-12-17: -11303
WARNING. Abnormal entry count found on day 2016-12-17: -11303
WARNING. Abnormal entry count found on day 2016-12-24: -9663
WARNING. Abnormal entry count found on day 2016-12-24: -9663
Processing turnstile ('H016', 'R250', '00-00-02', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3180
WARNING. Abnormal entry count found on day 2016-12-03: -3180
WARNING. Abnormal entry count found on day 2016-12-10: -2999
WARNING. Abnormal entry count found on day 2016-12-10: -2999
WARNING. Abnormal entry count found on day 2016-12-17: -2252
WARNING. Abnormal entry count found on day 2016-12-17: -2252
WARNING. Abnormal entry count found on day 2016-12-24: -1688
WARNING. Abnormal entry count found on day 2016-12-24: -1688
Processing turnstile ('R244', 'R050', '00-00-04', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -361
WARNING. Abnormal entry count found on day 2016-12-03: -361
WARNING. Abnormal entry count found on day 2016-12-10: -381
WARNING. Abnormal entry count found on day 2016-12-10: -381
WARNING. Abnormal entry count found on day 2016-12-17: -424
WARNING. Abnormal entry count found on day 2016-12-17: -424
WARNING. Abnormal entry count found on day 2016-12-24: -323
WARNING. Abnormal entry count found on day 2016-12-24: -323
Processing turnstile ('A022', 'R022', '01-06-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -2885
WARNING. Abnormal entry count found on day 2016-12-03: -2885
WARNING. Abnormal entry count found on day 2016-12-10: -3534
WARNING. Abnormal entry count found on day 2016-12-10: -3534
WARNING. Abnormal entry count found on day 2016-12-17: -3221
WARNING. Abnormal entry count found on day 2016-12-17: -3221
WARNING. Abnormal entry count found on day 2016-12-24: -6476
WARNING. Abnormal entry count found on day 2016-12-24: -6476
Processing turnstile ('N545', 'R204', '01-06-02', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8572
WARNING. Abnormal entry count found on day 2016-12-03: -8572
WARNING. Abnormal entry count found on day 2016-12-10: -8259
WARNING. Abnormal entry count found on day 2016-12-10: -8259
WARNING. Abnormal entry count found on day 2016-12-17: -8148
WARNING. Abnormal entry count found on day 2016-12-17: -8148
WARNING. Abnormal entry count found on day 2016-12-24: -6065
WARNING. Abnormal entry count found on day 2016-12-24: -6065
Processing turnstile ('N601', 'R319', '00-00-01', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-04: -681
WARNING. Abnormal entry count found on day 2016-12-05: -579
WARNING. Abnormal entry count found on day 2016-12-06: -2737
WARNING. Abnormal entry count found on day 2016-12-07: -2650
WARNING. Abnormal entry count found on day 2016-12-08: -2790
WARNING. Abnormal entry count found on day 2016-12-09: -2734
WARNING. Abnormal entry count found on day 2016-12-03: 12171
WARNING. Abnormal entry count found on day 2016-12-04: -681
WARNING. Abnormal entry count found on day 2016-12-05: -579
WARNING. Abnormal entry count found on day 2016-12-06: -2737
WARNING. Abnormal entry count found on day 2016-12-07: -2650
WARNING. Abnormal entry count found on day 2016-12-08: -2790
WARNING. Abnormal entry count found on day 2016-12-09: -2734
WARNING. Abnormal entry count found on day 2016-12-03: 12171
WARNING. Abnormal entry count found on day 2016-12-04: -681
WARNING. Abnormal entry count found on day 2016-12-05: -579
WARNING. Abnormal entry count found on day 2016-12-06: -2737
WARNING. Abnormal entry count found on day 2016-12-07: -2650
WARNING. Abnormal entry count found on day 2016-12-08: -2790
WARNING. Abnormal entry count found on day 2016-12-09: -2734
WARNING. Abnormal entry count found on day 2016-12-10: -2717
WARNING. Abnormal entry count found on day 2016-12-11: -988
WARNING. Abnormal entry count found on day 2016-12-12: -534
WARNING. Abnormal entry count found on day 2016-12-13: -2634
WARNING. Abnormal entry count found on day 2016-12-14: -2434
WARNING. Abnormal entry count found on day 2016-12-15: -2658
WARNING. Abnormal entry count found on day 2016-12-16: -2628
WARNING. Abnormal entry count found on day 2016-12-10: 11876
WARNING. Abnormal entry count found on day 2016-12-11: -988
WARNING. Abnormal entry count found on day 2016-12-12: -534
WARNING. Abnormal entry count found on day 2016-12-13: -2634
WARNING. Abnormal entry count found on day 2016-12-14: -2434
WARNING. Abnormal entry count found on day 2016-12-15: -2658
WARNING. Abnormal entry count found on day 2016-12-16: -2628
WARNING. Abnormal entry count found on day 2016-12-10: 11876
WARNING. Abnormal entry count found on day 2016-12-11: -988
WARNING. Abnormal entry count found on day 2016-12-12: -534
WARNING. Abnormal entry count found on day 2016-12-13: -2634
WARNING. Abnormal entry count found on day 2016-12-14: -2434
WARNING. Abnormal entry count found on day 2016-12-15: -2658
WARNING. Abnormal entry count found on day 2016-12-16: -2628
WARNING. Abnormal entry count found on day 2016-12-17: -2648
WARNING. Abnormal entry count found on day 2016-12-18: -849
WARNING. Abnormal entry count found on day 2016-12-19: -546
WARNING. Abnormal entry count found on day 2016-12-20: -2360
WARNING. Abnormal entry count found on day 2016-12-21: -2458
WARNING. Abnormal entry count found on day 2016-12-22: -2357
WARNING. Abnormal entry count found on day 2016-12-23: -2169
WARNING. Abnormal entry count found on day 2016-12-17: 10739
WARNING. Abnormal entry count found on day 2016-12-18: -849
WARNING. Abnormal entry count found on day 2016-12-19: -546
WARNING. Abnormal entry count found on day 2016-12-20: -2360
WARNING. Abnormal entry count found on day 2016-12-21: -2458
WARNING. Abnormal entry count found on day 2016-12-22: -2357
WARNING. Abnormal entry count found on day 2016-12-23: -2169
WARNING. Abnormal entry count found on day 2016-12-17: 10739
WARNING. Abnormal entry count found on day 2016-12-18: -849
WARNING. Abnormal entry count found on day 2016-12-19: -546
WARNING. Abnormal entry count found on day 2016-12-20: -2360
WARNING. Abnormal entry count found on day 2016-12-21: -2458
WARNING. Abnormal entry count found on day 2016-12-22: -2357
WARNING. Abnormal entry count found on day 2016-12-23: -2169
WARNING. Abnormal entry count found on day 2016-12-24: -1884
WARNING. Abnormal entry count found on day 2016-12-25: -744
WARNING. Abnormal entry count found on day 2016-12-26: -529
WARNING. Abnormal entry count found on day 2016-12-27: -798
WARNING. Abnormal entry count found on day 2016-12-28: -1877
WARNING. Abnormal entry count found on day 2016-12-29: -2015
WARNING. Abnormal entry count found on day 2016-12-30: -1954
WARNING. Abnormal entry count found on day 2016-12-25: -744
WARNING. Abnormal entry count found on day 2016-12-26: -529
WARNING. Abnormal entry count found on day 2016-12-27: -798
WARNING. Abnormal entry count found on day 2016-12-28: -1877
WARNING. Abnormal entry count found on day 2016-12-29: -2015
WARNING. Abnormal entry count found on day 2016-12-30: -1954
WARNING. Abnormal entry count found on day 2016-12-25: -744
WARNING. Abnormal entry count found on day 2016-12-26: -529
WARNING. Abnormal entry count found on day 2016-12-27: -798
WARNING. Abnormal entry count found on day 2016-12-28: -1877
WARNING. Abnormal entry count found on day 2016-12-29: -2015
WARNING. Abnormal entry count found on day 2016-12-30: -1954
Processing turnstile ('R243', 'R049', '00-03-00', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6882
WARNING. Abnormal entry count found on day 2016-12-03: -6882
WARNING. Abnormal entry count found on day 2016-12-10: -6961
WARNING. Abnormal entry count found on day 2016-12-10: -6961
WARNING. Abnormal entry count found on day 2016-12-17: -6248
WARNING. Abnormal entry count found on day 2016-12-17: -6248
WARNING. Abnormal entry count found on day 2016-12-24: -5132
WARNING. Abnormal entry count found on day 2016-12-24: -5132
Processing turnstile ('N512', 'R163', '00-00-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3036
WARNING. Abnormal entry count found on day 2016-12-03: -3036
WARNING. Abnormal entry count found on day 2016-12-10: -3050
WARNING. Abnormal entry count found on day 2016-12-10: -3050
WARNING. Abnormal entry count found on day 2016-12-17: -2754
WARNING. Abnormal entry count found on day 2016-12-17: -2754
WARNING. Abnormal entry count found on day 2016-12-24: -2200
WARNING. Abnormal entry count found on day 2016-12-24: -2200
Processing turnstile ('N309A', 'R140', '00-06-02', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-03: -6
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -8
WARNING. Abnormal entry count found on day 2016-12-24: -8
Processing turnstile ('R414', 'R162', '00-03-00', 'ELDER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11065
WARNING. Abnormal entry count found on day 2016-12-03: -11065
WARNING. Abnormal entry count found on day 2016-12-10: -11410
WARNING. Abnormal entry count found on day 2016-12-10: -11410
WARNING. Abnormal entry count found on day 2016-12-17: -10924
WARNING. Abnormal entry count found on day 2016-12-17: -10924
WARNING. Abnormal entry count found on day 2016-12-24: -9210
WARNING. Abnormal entry count found on day 2016-12-24: -9210
Processing turnstile ('S101', 'R070', '00-00-02', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -2697
WARNING. Abnormal entry count found on day 2016-12-03: -2697
WARNING. Abnormal entry count found on day 2016-12-10: -2451
WARNING. Abnormal entry count found on day 2016-12-10: -2451
WARNING. Abnormal entry count found on day 2016-12-17: -2346
WARNING. Abnormal entry count found on day 2016-12-17: -2346
WARNING. Abnormal entry count found on day 2016-12-24: -1611
WARNING. Abnormal entry count found on day 2016-12-24: -1611
Processing turnstile ('B024A', 'R211', '02-00-04', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -13022
WARNING. Abnormal entry count found on day 2016-12-03: -13022
WARNING. Abnormal entry count found on day 2016-12-10: -12511
WARNING. Abnormal entry count found on day 2016-12-10: -12511
WARNING. Abnormal entry count found on day 2016-12-17: -12512
WARNING. Abnormal entry count found on day 2016-12-17: -12512
WARNING. Abnormal entry count found on day 2016-12-24: -8922
WARNING. Abnormal entry count found on day 2016-12-24: -8922
Processing turnstile ('R243', 'R049', '00-00-00', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4678
WARNING. Abnormal entry count found on day 2016-12-03: -4678
WARNING. Abnormal entry count found on day 2016-12-10: -4667
WARNING. Abnormal entry count found on day 2016-12-10: -4667
WARNING. Abnormal entry count found on day 2016-12-17: -4242
WARNING. Abnormal entry count found on day 2016-12-17: -4242
WARNING. Abnormal entry count found on day 2016-12-24: -3279
WARNING. Abnormal entry count found on day 2016-12-24: -3279
Processing turnstile ('R238', 'R046', '00-00-06', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -27038
WARNING. Abnormal entry count found on day 2016-12-03: -27038
WARNING. Abnormal entry count found on day 2016-12-10: -29437
WARNING. Abnormal entry count found on day 2016-12-10: -29437
WARNING. Abnormal entry count found on day 2016-12-17: -28150
WARNING. Abnormal entry count found on day 2016-12-17: -28150
WARNING. Abnormal entry count found on day 2016-12-24: -22670
WARNING. Abnormal entry count found on day 2016-12-24: -22670
Processing turnstile ('N505', 'R022', '02-00-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -5961
WARNING. Abnormal entry count found on day 2016-12-03: -5961
WARNING. Abnormal entry count found on day 2016-12-10: -6041
WARNING. Abnormal entry count found on day 2016-12-10: -6041
WARNING. Abnormal entry count found on day 2016-12-17: -5392
WARNING. Abnormal entry count found on day 2016-12-17: -5392
WARNING. Abnormal entry count found on day 2016-12-24: -4123
WARNING. Abnormal entry count found on day 2016-12-24: -4123
Processing turnstile ('R237B', 'R047', '01-00-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7703
WARNING. Abnormal entry count found on day 2016-12-03: -7703
WARNING. Abnormal entry count found on day 2016-12-10: -7697
WARNING. Abnormal entry count found on day 2016-12-10: -7697
WARNING. Abnormal entry count found on day 2016-12-17: -6563
WARNING. Abnormal entry count found on day 2016-12-17: -6563
WARNING. Abnormal entry count found on day 2016-12-24: -3818
WARNING. Abnormal entry count found on day 2016-12-24: -3818
Processing turnstile ('R128', 'R105', '01-00-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10563
WARNING. Abnormal entry count found on day 2016-12-03: -10563
WARNING. Abnormal entry count found on day 2016-12-10: -10708
WARNING. Abnormal entry count found on day 2016-12-10: -10708
WARNING. Abnormal entry count found on day 2016-12-17: -9309
WARNING. Abnormal entry count found on day 2016-12-17: -9309
WARNING. Abnormal entry count found on day 2016-12-24: -6560
WARNING. Abnormal entry count found on day 2016-12-24: -6560
Processing turnstile ('R115', 'R029', '00-00-02', 'PARK PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -11851
WARNING. Abnormal entry count found on day 2016-12-03: -11851
WARNING. Abnormal entry count found on day 2016-12-10: -11629
WARNING. Abnormal entry count found on day 2016-12-10: -11629
WARNING. Abnormal entry count found on day 2016-12-17: -10246
WARNING. Abnormal entry count found on day 2016-12-17: -10246
WARNING. Abnormal entry count found on day 2016-12-24: -7227
WARNING. Abnormal entry count found on day 2016-12-24: -7227
Processing turnstile ('R202', 'R042', '00-06-01', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -1845
WARNING. Abnormal entry count found on day 2016-12-03: -1845
WARNING. Abnormal entry count found on day 2016-12-10: -1606
WARNING. Abnormal entry count found on day 2016-12-10: -1606
WARNING. Abnormal entry count found on day 2016-12-17: -1940
WARNING. Abnormal entry count found on day 2016-12-17: -1940
WARNING. Abnormal entry count found on day 2016-12-24: -1962
WARNING. Abnormal entry count found on day 2016-12-24: -1962
Processing turnstile ('R216', 'R322', '01-00-01', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3083
WARNING. Abnormal entry count found on day 2016-12-03: -3083
WARNING. Abnormal entry count found on day 2016-12-10: -3019
WARNING. Abnormal entry count found on day 2016-12-10: -3019
WARNING. Abnormal entry count found on day 2016-12-17: -3240
WARNING. Abnormal entry count found on day 2016-12-17: -3240
WARNING. Abnormal entry count found on day 2016-12-24: -2637
WARNING. Abnormal entry count found on day 2016-12-24: -2637
Processing turnstile ('PTH20', 'R549', '03-01-07', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-22: -17797
WARNING. Abnormal entry count found on day 2016-12-17: 17797
WARNING. Abnormal entry count found on day 2016-12-22: -17797
WARNING. Abnormal entry count found on day 2016-12-17: 17797
WARNING. Abnormal entry count found on day 2016-12-22: -17797
WARNING. Abnormal entry count found on day 2016-12-24: -44
WARNING. Abnormal entry count found on day 2016-12-24: -44
Processing turnstile ('N223', 'R156', '01-05-01', 'BEDFORD PK BLVD')
Processing turnstile ('N519A', 'R461', '01-01-00', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -784
WARNING. Abnormal entry count found on day 2016-12-03: -784
WARNING. Abnormal entry count found on day 2016-12-10: -784
WARNING. Abnormal entry count found on day 2016-12-10: -784
WARNING. Abnormal entry count found on day 2016-12-17: -1111
WARNING. Abnormal entry count found on day 2016-12-17: -1111
WARNING. Abnormal entry count found on day 2016-12-24: -1168
WARNING. Abnormal entry count found on day 2016-12-24: -1168
Processing turnstile ('R160A', 'R164', '00-06-01', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -2218
WARNING. Abnormal entry count found on day 2016-12-03: -2218
WARNING. Abnormal entry count found on day 2016-12-10: -3082
WARNING. Abnormal entry count found on day 2016-12-10: -3082
WARNING. Abnormal entry count found on day 2016-12-17: -2782
WARNING. Abnormal entry count found on day 2016-12-17: -2782
WARNING. Abnormal entry count found on day 2016-12-24: -1380
WARNING. Abnormal entry count found on day 2016-12-24: -1380
Processing turnstile ('N020', 'R101', '00-00-04', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14532
WARNING. Abnormal entry count found on day 2016-12-03: -14532
WARNING. Abnormal entry count found on day 2016-12-10: -14158
WARNING. Abnormal entry count found on day 2016-12-10: -14158
WARNING. Abnormal entry count found on day 2016-12-17: -13366
WARNING. Abnormal entry count found on day 2016-12-17: -13366
WARNING. Abnormal entry count found on day 2016-12-24: -10513
WARNING. Abnormal entry count found on day 2016-12-24: -10513
Processing turnstile ('J001', 'R460', '01-05-01', 'MARCY AV')
Processing turnstile ('N505', 'R022', '02-00-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12044
WARNING. Abnormal entry count found on day 2016-12-03: -12044
WARNING. Abnormal entry count found on day 2016-12-10: -10314
WARNING. Abnormal entry count found on day 2016-12-10: -10314
WARNING. Abnormal entry count found on day 2016-12-17: -11270
WARNING. Abnormal entry count found on day 2016-12-17: -11270
WARNING. Abnormal entry count found on day 2016-12-24: -8442
WARNING. Abnormal entry count found on day 2016-12-24: -8442
Processing turnstile ('N222', 'R156', '00-00-02', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -6448
WARNING. Abnormal entry count found on day 2016-12-03: -6448
WARNING. Abnormal entry count found on day 2016-12-10: -6285
WARNING. Abnormal entry count found on day 2016-12-10: -6285
WARNING. Abnormal entry count found on day 2016-12-17: -6287
WARNING. Abnormal entry count found on day 2016-12-17: -6287
WARNING. Abnormal entry count found on day 2016-12-24: -4622
WARNING. Abnormal entry count found on day 2016-12-24: -4622
Processing turnstile ('R325', 'R388', '00-00-03', 'E 180 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11363
WARNING. Abnormal entry count found on day 2016-12-03: -11363
WARNING. Abnormal entry count found on day 2016-12-10: -12332
WARNING. Abnormal entry count found on day 2016-12-10: -12332
WARNING. Abnormal entry count found on day 2016-12-17: -11322
WARNING. Abnormal entry count found on day 2016-12-17: -11322
WARNING. Abnormal entry count found on day 2016-12-24: -8288
WARNING. Abnormal entry count found on day 2016-12-24: -8288
Processing turnstile ('A013', 'R081', '01-00-00', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4005
WARNING. Abnormal entry count found on day 2016-12-03: -4005
WARNING. Abnormal entry count found on day 2016-12-10: -4788
WARNING. Abnormal entry count found on day 2016-12-10: -4788
WARNING. Abnormal entry count found on day 2016-12-17: -3280
WARNING. Abnormal entry count found on day 2016-12-17: -3280
WARNING. Abnormal entry count found on day 2016-12-24: -3403
WARNING. Abnormal entry count found on day 2016-12-24: -3403
Processing turnstile ('A046', 'R463', '00-06-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13809
WARNING. Abnormal entry count found on day 2016-12-03: -13809
WARNING. Abnormal entry count found on day 2016-12-10: -13635
WARNING. Abnormal entry count found on day 2016-12-10: -13635
WARNING. Abnormal entry count found on day 2016-12-17: -15204
WARNING. Abnormal entry count found on day 2016-12-17: -15204
WARNING. Abnormal entry count found on day 2016-12-24: -15553
WARNING. Abnormal entry count found on day 2016-12-24: -15553
Processing turnstile ('R160A', 'R164', '00-05-01', '66 ST-LINCOLN')
Processing turnstile ('B020', 'R263', '00-06-00', 'AVENUE H')
WARNING. Abnormal entry count found on day 2016-12-03: -35
WARNING. Abnormal entry count found on day 2016-12-03: -35
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-10: -20
WARNING. Abnormal entry count found on day 2016-12-17: -35
WARNING. Abnormal entry count found on day 2016-12-17: -35
WARNING. Abnormal entry count found on day 2016-12-24: -26
WARNING. Abnormal entry count found on day 2016-12-24: -26
Processing turnstile ('N507', 'R023', '00-00-03', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -2766
WARNING. Abnormal entry count found on day 2016-12-03: -2766
WARNING. Abnormal entry count found on day 2016-12-10: -3094
WARNING. Abnormal entry count found on day 2016-12-10: -3094
WARNING. Abnormal entry count found on day 2016-12-17: -3036
WARNING. Abnormal entry count found on day 2016-12-17: -3036
WARNING. Abnormal entry count found on day 2016-12-24: -2210
WARNING. Abnormal entry count found on day 2016-12-24: -2210
Processing turnstile ('A058', 'R001', '01-00-02', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -4844
WARNING. Abnormal entry count found on day 2016-12-03: -4844
WARNING. Abnormal entry count found on day 2016-12-10: -4876
WARNING. Abnormal entry count found on day 2016-12-10: -4876
WARNING. Abnormal entry count found on day 2016-12-17: -4535
WARNING. Abnormal entry count found on day 2016-12-17: -4535
WARNING. Abnormal entry count found on day 2016-12-24: -3836
WARNING. Abnormal entry count found on day 2016-12-24: -3836
Processing turnstile ('N057', 'R188', '00-00-03', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4231
WARNING. Abnormal entry count found on day 2016-12-03: -4231
WARNING. Abnormal entry count found on day 2016-12-10: -4248
WARNING. Abnormal entry count found on day 2016-12-10: -4248
WARNING. Abnormal entry count found on day 2016-12-17: -4263
WARNING. Abnormal entry count found on day 2016-12-17: -4263
WARNING. Abnormal entry count found on day 2016-12-24: -4197
WARNING. Abnormal entry count found on day 2016-12-24: -4197
Processing turnstile ('D010', 'R394', '00-00-02', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -17595
WARNING. Abnormal entry count found on day 2016-12-03: -17595
WARNING. Abnormal entry count found on day 2016-12-10: -17018
WARNING. Abnormal entry count found on day 2016-12-10: -17018
WARNING. Abnormal entry count found on day 2016-12-17: -16142
WARNING. Abnormal entry count found on day 2016-12-17: -16142
WARNING. Abnormal entry count found on day 2016-12-24: -13331
WARNING. Abnormal entry count found on day 2016-12-24: -13331
Processing turnstile ('N311', 'R339', '01-00-02', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -457
WARNING. Abnormal entry count found on day 2016-12-03: -457
WARNING. Abnormal entry count found on day 2016-12-10: -636
WARNING. Abnormal entry count found on day 2016-12-10: -636
WARNING. Abnormal entry count found on day 2016-12-17: -698
WARNING. Abnormal entry count found on day 2016-12-17: -698
WARNING. Abnormal entry count found on day 2016-12-24: -374
WARNING. Abnormal entry count found on day 2016-12-24: -374
Processing turnstile ('N030', 'R333', '00-00-00', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10962
WARNING. Abnormal entry count found on day 2016-12-03: -10962
WARNING. Abnormal entry count found on day 2016-12-10: -10479
WARNING. Abnormal entry count found on day 2016-12-10: -10479
WARNING. Abnormal entry count found on day 2016-12-17: -9705
WARNING. Abnormal entry count found on day 2016-12-17: -9705
WARNING. Abnormal entry count found on day 2016-12-24: -7235
WARNING. Abnormal entry count found on day 2016-12-24: -7235
Processing turnstile ('H038', 'R350', '00-00-01', 'LIVONIA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3774
WARNING. Abnormal entry count found on day 2016-12-03: -3774
WARNING. Abnormal entry count found on day 2016-12-10: -4808
WARNING. Abnormal entry count found on day 2016-12-10: -4808
WARNING. Abnormal entry count found on day 2016-12-17: -3837
WARNING. Abnormal entry count found on day 2016-12-17: -3837
WARNING. Abnormal entry count found on day 2016-12-24: -2758
WARNING. Abnormal entry count found on day 2016-12-24: -2758
Processing turnstile ('N127', 'R442', '00-00-00', 'SHEPHERD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7627
WARNING. Abnormal entry count found on day 2016-12-03: -7627
WARNING. Abnormal entry count found on day 2016-12-10: -7150
WARNING. Abnormal entry count found on day 2016-12-10: -7150
WARNING. Abnormal entry count found on day 2016-12-17: -7082
WARNING. Abnormal entry count found on day 2016-12-17: -7082
WARNING. Abnormal entry count found on day 2016-12-24: -5455
WARNING. Abnormal entry count found on day 2016-12-24: -5455
Processing turnstile ('N606', 'R025', '00-00-08', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -42316
WARNING. Abnormal entry count found on day 2016-12-03: -42316
WARNING. Abnormal entry count found on day 2016-12-10: -40337
WARNING. Abnormal entry count found on day 2016-12-10: -40337
WARNING. Abnormal entry count found on day 2016-12-17: -38275
WARNING. Abnormal entry count found on day 2016-12-17: -38275
WARNING. Abnormal entry count found on day 2016-12-24: -31774
WARNING. Abnormal entry count found on day 2016-12-24: -31774
Processing turnstile ('R633', 'R068', '00-00-01', 'VAN SICLEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6017
WARNING. Abnormal entry count found on day 2016-12-03: -6017
WARNING. Abnormal entry count found on day 2016-12-10: -5644
WARNING. Abnormal entry count found on day 2016-12-10: -5644
WARNING. Abnormal entry count found on day 2016-12-17: -5813
WARNING. Abnormal entry count found on day 2016-12-17: -5813
WARNING. Abnormal entry count found on day 2016-12-24: -3929
WARNING. Abnormal entry count found on day 2016-12-24: -3929
Processing turnstile ('A060', 'R001', '00-00-04', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -5825
WARNING. Abnormal entry count found on day 2016-12-03: -5825
WARNING. Abnormal entry count found on day 2016-12-10: -6081
WARNING. Abnormal entry count found on day 2016-12-10: -6081
WARNING. Abnormal entry count found on day 2016-12-17: -4702
WARNING. Abnormal entry count found on day 2016-12-17: -4702
WARNING. Abnormal entry count found on day 2016-12-24: -4195
WARNING. Abnormal entry count found on day 2016-12-24: -4195
Processing turnstile ('PTH20', 'R549', '03-00-04', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -236
WARNING. Abnormal entry count found on day 2016-12-03: -236
WARNING. Abnormal entry count found on day 2016-12-10: -284
WARNING. Abnormal entry count found on day 2016-12-10: -284
WARNING. Abnormal entry count found on day 2016-12-17: -253
WARNING. Abnormal entry count found on day 2016-12-17: -253
WARNING. Abnormal entry count found on day 2016-12-24: -301
WARNING. Abnormal entry count found on day 2016-12-24: -301
Processing turnstile ('A058', 'R001', '01-00-03', 'WHITEHALL S-FRY')
WARNING. Abnormal entry count found on day 2016-12-03: -4342
WARNING. Abnormal entry count found on day 2016-12-03: -4342
WARNING. Abnormal entry count found on day 2016-12-10: -3827
WARNING. Abnormal entry count found on day 2016-12-10: -3827
WARNING. Abnormal entry count found on day 2016-12-17: -3756
WARNING. Abnormal entry count found on day 2016-12-17: -3756
WARNING. Abnormal entry count found on day 2016-12-24: -2940
WARNING. Abnormal entry count found on day 2016-12-24: -2940
Processing turnstile ('N338', 'R128', '01-06-01', 'SUTPHIN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3612
WARNING. Abnormal entry count found on day 2016-12-03: -3612
WARNING. Abnormal entry count found on day 2016-12-10: -3499
WARNING. Abnormal entry count found on day 2016-12-10: -3499
WARNING. Abnormal entry count found on day 2016-12-17: -3525
WARNING. Abnormal entry count found on day 2016-12-17: -3525
WARNING. Abnormal entry count found on day 2016-12-24: -3095
WARNING. Abnormal entry count found on day 2016-12-24: -3095
Processing turnstile ('J003', 'R352', '00-00-01', 'HEWES ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4125
WARNING. Abnormal entry count found on day 2016-12-03: -4125
WARNING. Abnormal entry count found on day 2016-12-10: -4205
WARNING. Abnormal entry count found on day 2016-12-10: -4205
WARNING. Abnormal entry count found on day 2016-12-17: -4327
WARNING. Abnormal entry count found on day 2016-12-17: -4327
WARNING. Abnormal entry count found on day 2016-12-24: -3266
WARNING. Abnormal entry count found on day 2016-12-24: -3266
Processing turnstile ('N534', 'R220', '01-00-02', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4893
WARNING. Abnormal entry count found on day 2016-12-03: -4893
WARNING. Abnormal entry count found on day 2016-12-10: -4872
WARNING. Abnormal entry count found on day 2016-12-10: -4872
WARNING. Abnormal entry count found on day 2016-12-17: -4550
WARNING. Abnormal entry count found on day 2016-12-17: -4550
WARNING. Abnormal entry count found on day 2016-12-24: -2356
WARNING. Abnormal entry count found on day 2016-12-24: -2356
Processing turnstile ('A071', 'R044', '02-00-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -597
WARNING. Abnormal entry count found on day 2016-12-03: -597
WARNING. Abnormal entry count found on day 2016-12-10: -529
WARNING. Abnormal entry count found on day 2016-12-10: -529
WARNING. Abnormal entry count found on day 2016-12-17: -488
WARNING. Abnormal entry count found on day 2016-12-17: -488
WARNING. Abnormal entry count found on day 2016-12-24: -301
WARNING. Abnormal entry count found on day 2016-12-24: -301
Processing turnstile ('R254', 'R181', '01-00-00', '110 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18652
WARNING. Abnormal entry count found on day 2016-12-03: -18652
WARNING. Abnormal entry count found on day 2016-12-10: -18564
WARNING. Abnormal entry count found on day 2016-12-10: -18564
WARNING. Abnormal entry count found on day 2016-12-17: -17886
WARNING. Abnormal entry count found on day 2016-12-17: -17886
WARNING. Abnormal entry count found on day 2016-12-24: -14013
WARNING. Abnormal entry count found on day 2016-12-24: -14013
Processing turnstile ('A035', 'R170', '00-00-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -2662
WARNING. Abnormal entry count found on day 2016-12-03: -2662
WARNING. Abnormal entry count found on day 2016-12-10: -3162
WARNING. Abnormal entry count found on day 2016-12-10: -3162
WARNING. Abnormal entry count found on day 2016-12-17: -2844
WARNING. Abnormal entry count found on day 2016-12-17: -2844
WARNING. Abnormal entry count found on day 2016-12-24: -1406
WARNING. Abnormal entry count found on day 2016-12-24: -1406
Processing turnstile ('N220', 'R155', '01-00-04', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -4689
WARNING. Abnormal entry count found on day 2016-12-03: -4689
WARNING. Abnormal entry count found on day 2016-12-10: -4459
WARNING. Abnormal entry count found on day 2016-12-10: -4459
WARNING. Abnormal entry count found on day 2016-12-17: -4373
WARNING. Abnormal entry count found on day 2016-12-17: -4373
WARNING. Abnormal entry count found on day 2016-12-24: -3344
WARNING. Abnormal entry count found on day 2016-12-24: -3344
Processing turnstile ('N342', 'R019', '01-00-00', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14714
WARNING. Abnormal entry count found on day 2016-12-03: -14714
WARNING. Abnormal entry count found on day 2016-12-10: -14006
WARNING. Abnormal entry count found on day 2016-12-10: -14006
WARNING. Abnormal entry count found on day 2016-12-17: -12246
WARNING. Abnormal entry count found on day 2016-12-17: -12246
WARNING. Abnormal entry count found on day 2016-12-24: -10647
WARNING. Abnormal entry count found on day 2016-12-24: -10647
Processing turnstile ('R114', 'R028', '02-00-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3183
WARNING. Abnormal entry count found on day 2016-12-03: -3183
WARNING. Abnormal entry count found on day 2016-12-10: -3040
WARNING. Abnormal entry count found on day 2016-12-10: -3040
WARNING. Abnormal entry count found on day 2016-12-17: -2910
WARNING. Abnormal entry count found on day 2016-12-17: -2910
WARNING. Abnormal entry count found on day 2016-12-24: -1955
WARNING. Abnormal entry count found on day 2016-12-24: -1955
Processing turnstile ('C027', 'R216', '00-00-00', 'BAY RIDGE-95 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4887
WARNING. Abnormal entry count found on day 2016-12-03: -4887
WARNING. Abnormal entry count found on day 2016-12-10: -4564
WARNING. Abnormal entry count found on day 2016-12-10: -4564
WARNING. Abnormal entry count found on day 2016-12-17: -4326
WARNING. Abnormal entry count found on day 2016-12-17: -4326
WARNING. Abnormal entry count found on day 2016-12-24: -3155
WARNING. Abnormal entry count found on day 2016-12-24: -3155
Processing turnstile ('A014', 'R081', '02-00-00', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12248
WARNING. Abnormal entry count found on day 2016-12-03: -12248
WARNING. Abnormal entry count found on day 2016-12-10: -11263
WARNING. Abnormal entry count found on day 2016-12-10: -11263
WARNING. Abnormal entry count found on day 2016-12-17: -11634
WARNING. Abnormal entry count found on day 2016-12-17: -11634
WARNING. Abnormal entry count found on day 2016-12-24: -10891
WARNING. Abnormal entry count found on day 2016-12-24: -10891
Processing turnstile ('PTH04', 'R551', '00-00-02', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -3632
WARNING. Abnormal entry count found on day 2016-12-03: -3632
WARNING. Abnormal entry count found on day 2016-12-10: -3695
WARNING. Abnormal entry count found on day 2016-12-10: -3695
WARNING. Abnormal entry count found on day 2016-12-17: -3739
WARNING. Abnormal entry count found on day 2016-12-17: -3739
WARNING. Abnormal entry count found on day 2016-12-24: -3048
WARNING. Abnormal entry count found on day 2016-12-24: -3048
Processing turnstile ('N607', 'R025', '01-00-03', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -3472
WARNING. Abnormal entry count found on day 2016-12-03: -3472
WARNING. Abnormal entry count found on day 2016-12-10: -3480
WARNING. Abnormal entry count found on day 2016-12-10: -3480
WARNING. Abnormal entry count found on day 2016-12-17: -3488
WARNING. Abnormal entry count found on day 2016-12-17: -3488
WARNING. Abnormal entry count found on day 2016-12-24: -1990
WARNING. Abnormal entry count found on day 2016-12-24: -1990
Processing turnstile ('E009', 'R370', '00-00-00', '71 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8495
WARNING. Abnormal entry count found on day 2016-12-03: -8495
WARNING. Abnormal entry count found on day 2016-12-10: -7941
WARNING. Abnormal entry count found on day 2016-12-10: -7941
WARNING. Abnormal entry count found on day 2016-12-17: -8360
WARNING. Abnormal entry count found on day 2016-12-17: -8360
WARNING. Abnormal entry count found on day 2016-12-24: -6986
WARNING. Abnormal entry count found on day 2016-12-24: -6986
Processing turnstile ('R219', 'R160', '00-00-00', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -6537
WARNING. Abnormal entry count found on day 2016-12-03: -6537
WARNING. Abnormal entry count found on day 2016-12-10: -6938
WARNING. Abnormal entry count found on day 2016-12-10: -6938
WARNING. Abnormal entry count found on day 2016-12-17: -6114
WARNING. Abnormal entry count found on day 2016-12-17: -6114
WARNING. Abnormal entry count found on day 2016-12-24: -4041
WARNING. Abnormal entry count found on day 2016-12-24: -4041
Processing turnstile ('R636', 'R209', '00-00-02', 'STERLING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11495
WARNING. Abnormal entry count found on day 2016-12-03: -11495
WARNING. Abnormal entry count found on day 2016-12-10: -11281
WARNING. Abnormal entry count found on day 2016-12-10: -11281
WARNING. Abnormal entry count found on day 2016-12-17: -10876
WARNING. Abnormal entry count found on day 2016-12-17: -10876
WARNING. Abnormal entry count found on day 2016-12-24: -8125
WARNING. Abnormal entry count found on day 2016-12-24: -8125
Processing turnstile ('N422', 'R318', '00-00-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12730
WARNING. Abnormal entry count found on day 2016-12-03: -12730
WARNING. Abnormal entry count found on day 2016-12-10: -12319
WARNING. Abnormal entry count found on day 2016-12-10: -12319
WARNING. Abnormal entry count found on day 2016-12-17: -11939
WARNING. Abnormal entry count found on day 2016-12-17: -11939
WARNING. Abnormal entry count found on day 2016-12-24: -7526
WARNING. Abnormal entry count found on day 2016-12-24: -7526
Processing turnstile ('N327', 'R254', '00-05-03', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -12664
WARNING. Abnormal entry count found on day 2016-12-03: -12664
WARNING. Abnormal entry count found on day 2016-12-10: -12375
WARNING. Abnormal entry count found on day 2016-12-10: -12375
WARNING. Abnormal entry count found on day 2016-12-17: -12135
WARNING. Abnormal entry count found on day 2016-12-17: -12135
WARNING. Abnormal entry count found on day 2016-12-24: -9349
WARNING. Abnormal entry count found on day 2016-12-24: -9349
Processing turnstile ('N336', 'R158', '00-03-00', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -17148
WARNING. Abnormal entry count found on day 2016-12-03: -17148
WARNING. Abnormal entry count found on day 2016-12-10: -887110
WARNING. Abnormal entry count found on day 2016-12-10: -19951
WARNING. Abnormal entry count found on day 2016-12-10: -19951
WARNING. Abnormal entry count found on day 2016-12-17: -19677
WARNING. Abnormal entry count found on day 2016-12-17: -19677
WARNING. Abnormal entry count found on day 2016-12-24: -15277
WARNING. Abnormal entry count found on day 2016-12-24: -15277
Processing turnstile ('N535', 'R220', '00-03-01', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4787
WARNING. Abnormal entry count found on day 2016-12-03: -4787
WARNING. Abnormal entry count found on day 2016-12-10: -4632
WARNING. Abnormal entry count found on day 2016-12-10: -4632
WARNING. Abnormal entry count found on day 2016-12-17: -3958
WARNING. Abnormal entry count found on day 2016-12-17: -3958
WARNING. Abnormal entry count found on day 2016-12-24: -2388
WARNING. Abnormal entry count found on day 2016-12-24: -2388
Processing turnstile ('N094', 'R029', '01-06-02', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -13062
WARNING. Abnormal entry count found on day 2016-12-03: -13062
WARNING. Abnormal entry count found on day 2016-12-10: -12323
WARNING. Abnormal entry count found on day 2016-12-10: -12323
WARNING. Abnormal entry count found on day 2016-12-19: -3578745
WARNING. Abnormal entry count found on day 2016-12-17: 3571537
WARNING. Abnormal entry count found on day 2016-12-19: -3578745
WARNING. Abnormal entry count found on day 2016-12-17: 3571537
WARNING. Abnormal entry count found on day 2016-12-19: -3578745
WARNING. Abnormal entry count found on day 2016-12-24: -7369
WARNING. Abnormal entry count found on day 2016-12-24: -7369
Processing turnstile ('N119', 'R199', '00-00-02', 'KINGSTON-THROOP')
WARNING. Abnormal entry count found on day 2016-12-03: -8860
WARNING. Abnormal entry count found on day 2016-12-03: -8860
WARNING. Abnormal entry count found on day 2016-12-10: -8985
WARNING. Abnormal entry count found on day 2016-12-10: -8985
WARNING. Abnormal entry count found on day 2016-12-17: -8063
WARNING. Abnormal entry count found on day 2016-12-17: -8063
WARNING. Abnormal entry count found on day 2016-12-24: -5982
WARNING. Abnormal entry count found on day 2016-12-24: -5982
Processing turnstile ('R621', 'R060', '00-00-01', 'EASTN PKWY-MUSM')
WARNING. Abnormal entry count found on day 2016-12-03: -4437
WARNING. Abnormal entry count found on day 2016-12-03: -4437
WARNING. Abnormal entry count found on day 2016-12-10: -4199
WARNING. Abnormal entry count found on day 2016-12-10: -4199
WARNING. Abnormal entry count found on day 2016-12-17: -4004
WARNING. Abnormal entry count found on day 2016-12-17: -4004
WARNING. Abnormal entry count found on day 2016-12-24: -3466
WARNING. Abnormal entry count found on day 2016-12-24: -3466
Processing turnstile ('R190', 'R038', '00-00-00', '215 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4380
WARNING. Abnormal entry count found on day 2016-12-03: -4380
WARNING. Abnormal entry count found on day 2016-12-10: -4155
WARNING. Abnormal entry count found on day 2016-12-10: -4155
WARNING. Abnormal entry count found on day 2016-12-17: -3801
WARNING. Abnormal entry count found on day 2016-12-17: -3801
WARNING. Abnormal entry count found on day 2016-12-24: -2793
WARNING. Abnormal entry count found on day 2016-12-24: -2793
Processing turnstile ('R240', 'R047', '00-03-08', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -42056
WARNING. Abnormal entry count found on day 2016-12-03: -42056
WARNING. Abnormal entry count found on day 2016-12-10: -42093
WARNING. Abnormal entry count found on day 2016-12-10: -42093
WARNING. Abnormal entry count found on day 2016-12-17: -38221
WARNING. Abnormal entry count found on day 2016-12-17: -38221
WARNING. Abnormal entry count found on day 2016-12-24: -23781
WARNING. Abnormal entry count found on day 2016-12-24: -23781
Processing turnstile ('PTH10', 'R547', '00-00-02', '9TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -6740
WARNING. Abnormal entry count found on day 2016-12-03: -6740
WARNING. Abnormal entry count found on day 2016-12-10: -5839
WARNING. Abnormal entry count found on day 2016-12-10: -5839
WARNING. Abnormal entry count found on day 2016-12-17: -6894
WARNING. Abnormal entry count found on day 2016-12-17: -6894
WARNING. Abnormal entry count found on day 2016-12-24: -4600
WARNING. Abnormal entry count found on day 2016-12-24: -4600
Processing turnstile ('R168A', 'R168', '00-02-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7220
WARNING. Abnormal entry count found on day 2016-12-03: -7220
WARNING. Abnormal entry count found on day 2016-12-10: -6691
WARNING. Abnormal entry count found on day 2016-12-10: -6691
WARNING. Abnormal entry count found on day 2016-12-17: -5633
WARNING. Abnormal entry count found on day 2016-12-17: -5633
WARNING. Abnormal entry count found on day 2016-12-24: -3919
WARNING. Abnormal entry count found on day 2016-12-24: -3919
Processing turnstile ('R262B', 'R195', '05-00-00', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -157
WARNING. Abnormal entry count found on day 2016-12-24: -157
Processing turnstile ('R203A', 'R043', '01-06-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1752
WARNING. Abnormal entry count found on day 2016-12-03: -1752
WARNING. Abnormal entry count found on day 2016-12-10: -1742
WARNING. Abnormal entry count found on day 2016-12-10: -1742
WARNING. Abnormal entry count found on day 2016-12-17: -1533
WARNING. Abnormal entry count found on day 2016-12-17: -1533
WARNING. Abnormal entry count found on day 2016-12-24: -807
WARNING. Abnormal entry count found on day 2016-12-24: -807
Processing turnstile ('R251', 'R144', '00-03-01', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -27076
WARNING. Abnormal entry count found on day 2016-12-03: -27076
WARNING. Abnormal entry count found on day 2016-12-10: -29248
WARNING. Abnormal entry count found on day 2016-12-10: -29248
WARNING. Abnormal entry count found on day 2016-12-17: -23705
WARNING. Abnormal entry count found on day 2016-12-17: -23705
WARNING. Abnormal entry count found on day 2016-12-24: -14471
WARNING. Abnormal entry count found on day 2016-12-24: -14471
Processing turnstile ('J025', 'R003', '00-00-01', 'CYPRESS HILLS')
WARNING. Abnormal entry count found on day 2016-12-03: -2102
WARNING. Abnormal entry count found on day 2016-12-03: -2102
WARNING. Abnormal entry count found on day 2016-12-10: -2167
WARNING. Abnormal entry count found on day 2016-12-10: -2167
WARNING. Abnormal entry count found on day 2016-12-17: -2089
WARNING. Abnormal entry count found on day 2016-12-17: -2089
WARNING. Abnormal entry count found on day 2016-12-24: -1529
WARNING. Abnormal entry count found on day 2016-12-24: -1529
Processing turnstile ('N206', 'R104', '01-05-00', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('N418', 'R269', '01-06-01', 'BEDFORD-NOSTRAN')
WARNING. Abnormal entry count found on day 2016-12-03: -11998
WARNING. Abnormal entry count found on day 2016-12-03: -11998
WARNING. Abnormal entry count found on day 2016-12-10: -12058
WARNING. Abnormal entry count found on day 2016-12-10: -12058
WARNING. Abnormal entry count found on day 2016-12-17: -10688
WARNING. Abnormal entry count found on day 2016-12-17: -10688
WARNING. Abnormal entry count found on day 2016-12-24: -8175
WARNING. Abnormal entry count found on day 2016-12-24: -8175
Processing turnstile ('C008', 'R099', '00-03-04', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -17002
WARNING. Abnormal entry count found on day 2016-12-03: -17002
WARNING. Abnormal entry count found on day 2016-12-10: -16010
WARNING. Abnormal entry count found on day 2016-12-10: -16010
WARNING. Abnormal entry count found on day 2016-12-17: -14679
WARNING. Abnormal entry count found on day 2016-12-17: -14679
WARNING. Abnormal entry count found on day 2016-12-24: -7810
WARNING. Abnormal entry count found on day 2016-12-24: -7810
Processing turnstile ('R171', 'R192', '01-00-02', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -5460
WARNING. Abnormal entry count found on day 2016-12-03: -5460
WARNING. Abnormal entry count found on day 2016-12-10: -4639
WARNING. Abnormal entry count found on day 2016-12-10: -4639
WARNING. Abnormal entry count found on day 2016-12-17: -4443
WARNING. Abnormal entry count found on day 2016-12-17: -4443
WARNING. Abnormal entry count found on day 2016-12-24: -3507
WARNING. Abnormal entry count found on day 2016-12-24: -3507
Processing turnstile ('N194', 'R338', '00-00-00', 'BEACH 36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1964
WARNING. Abnormal entry count found on day 2016-12-03: -1964
WARNING. Abnormal entry count found on day 2016-12-10: -1876
WARNING. Abnormal entry count found on day 2016-12-10: -1876
WARNING. Abnormal entry count found on day 2016-12-17: -1918
WARNING. Abnormal entry count found on day 2016-12-17: -1918
WARNING. Abnormal entry count found on day 2016-12-24: -1581
WARNING. Abnormal entry count found on day 2016-12-24: -1581
Processing turnstile ('R402', 'R446', '00-00-02', 'BROOK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5657
WARNING. Abnormal entry count found on day 2016-12-03: -5657
WARNING. Abnormal entry count found on day 2016-12-10: -5740
WARNING. Abnormal entry count found on day 2016-12-10: -5740
WARNING. Abnormal entry count found on day 2016-12-17: -5614
WARNING. Abnormal entry count found on day 2016-12-17: -5614
WARNING. Abnormal entry count found on day 2016-12-24: -4351
WARNING. Abnormal entry count found on day 2016-12-24: -4351
Processing turnstile ('N558', 'R130', '01-06-00', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -7437
WARNING. Abnormal entry count found on day 2016-12-03: -7437
WARNING. Abnormal entry count found on day 2016-12-10: -6388
WARNING. Abnormal entry count found on day 2016-12-10: -6388
WARNING. Abnormal entry count found on day 2016-12-21: 113981072
WARNING. Abnormal entry count found on day 2016-12-17: -113986548
WARNING. Abnormal entry count found on day 2016-12-21: 113981072
WARNING. Abnormal entry count found on day 2016-12-17: -113986548
WARNING. Abnormal entry count found on day 2016-12-21: 113981072
WARNING. Abnormal entry count found on day 2016-12-24: -4944
WARNING. Abnormal entry count found on day 2016-12-24: -4944
Processing turnstile ('N213', 'R154', '00-00-03', 'TREMONT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3803
WARNING. Abnormal entry count found on day 2016-12-03: -3803
WARNING. Abnormal entry count found on day 2016-12-10: -3738
WARNING. Abnormal entry count found on day 2016-12-10: -3738
WARNING. Abnormal entry count found on day 2016-12-17: -3662
WARNING. Abnormal entry count found on day 2016-12-17: -3662
WARNING. Abnormal entry count found on day 2016-12-24: -2843
WARNING. Abnormal entry count found on day 2016-12-24: -2843
Processing turnstile ('N102', 'R127', '01-06-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -2464
WARNING. Abnormal entry count found on day 2016-12-03: -2464
WARNING. Abnormal entry count found on day 2016-12-10: -2662
WARNING. Abnormal entry count found on day 2016-12-10: -2662
WARNING. Abnormal entry count found on day 2016-12-17: -1956
WARNING. Abnormal entry count found on day 2016-12-17: -1956
WARNING. Abnormal entry count found on day 2016-12-24: -920
WARNING. Abnormal entry count found on day 2016-12-24: -920
Processing turnstile ('A035', 'R170', '00-00-04', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -27830
WARNING. Abnormal entry count found on day 2016-12-03: -27830
WARNING. Abnormal entry count found on day 2016-12-10: -24943
WARNING. Abnormal entry count found on day 2016-12-10: -24943
WARNING. Abnormal entry count found on day 2016-12-17: -22042
WARNING. Abnormal entry count found on day 2016-12-17: -22042
WARNING. Abnormal entry count found on day 2016-12-24: -13743
WARNING. Abnormal entry count found on day 2016-12-24: -13743
Processing turnstile ('K017', 'R401', '00-00-01', 'CENTRAL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3746
WARNING. Abnormal entry count found on day 2016-12-03: -3746
WARNING. Abnormal entry count found on day 2016-12-10: -3734
WARNING. Abnormal entry count found on day 2016-12-10: -3734
WARNING. Abnormal entry count found on day 2016-12-17: -3544
WARNING. Abnormal entry count found on day 2016-12-17: -3544
WARNING. Abnormal entry count found on day 2016-12-24: -2619
WARNING. Abnormal entry count found on day 2016-12-24: -2619
Processing turnstile ('R407', 'R448', '01-00-02', "E 143/ST MARY'S")
WARNING. Abnormal entry count found on day 2016-12-03: -578
WARNING. Abnormal entry count found on day 2016-12-03: -578
WARNING. Abnormal entry count found on day 2016-12-10: -537
WARNING. Abnormal entry count found on day 2016-12-10: -537
WARNING. Abnormal entry count found on day 2016-12-17: -493
WARNING. Abnormal entry count found on day 2016-12-17: -493
WARNING. Abnormal entry count found on day 2016-12-24: -276
WARNING. Abnormal entry count found on day 2016-12-24: -276
Processing turnstile ('R730', 'R431', '00-00-00', 'EASTCHSTER/DYRE')
WARNING. Abnormal entry count found on day 2016-12-03: -2147
WARNING. Abnormal entry count found on day 2016-12-03: -2147
WARNING. Abnormal entry count found on day 2016-12-10: -2076
WARNING. Abnormal entry count found on day 2016-12-10: -2076
WARNING. Abnormal entry count found on day 2016-12-17: -2108
WARNING. Abnormal entry count found on day 2016-12-17: -2108
WARNING. Abnormal entry count found on day 2016-12-24: -1409
WARNING. Abnormal entry count found on day 2016-12-24: -1409
Processing turnstile ('A010', 'R080', '00-00-00', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -21715
WARNING. Abnormal entry count found on day 2016-12-03: -21715
WARNING. Abnormal entry count found on day 2016-12-10: -20935
WARNING. Abnormal entry count found on day 2016-12-10: -20935
WARNING. Abnormal entry count found on day 2016-12-17: -14146
WARNING. Abnormal entry count found on day 2016-12-17: -14146
WARNING. Abnormal entry count found on day 2016-12-24: -14467
WARNING. Abnormal entry count found on day 2016-12-24: -14467
Processing turnstile ('N309A', 'R140', '00-02-02', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -5855
WARNING. Abnormal entry count found on day 2016-12-03: -5855
WARNING. Abnormal entry count found on day 2016-12-10: -4784
WARNING. Abnormal entry count found on day 2016-12-10: -4784
WARNING. Abnormal entry count found on day 2016-12-17: -3598
WARNING. Abnormal entry count found on day 2016-12-17: -3598
WARNING. Abnormal entry count found on day 2016-12-24: -2134
WARNING. Abnormal entry count found on day 2016-12-24: -2134
Processing turnstile ('R250', 'R179', '00-00-06', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16325
WARNING. Abnormal entry count found on day 2016-12-03: -16325
WARNING. Abnormal entry count found on day 2016-12-10: -17365
WARNING. Abnormal entry count found on day 2016-12-10: -17365
WARNING. Abnormal entry count found on day 2016-12-17: -14675
WARNING. Abnormal entry count found on day 2016-12-17: -14675
WARNING. Abnormal entry count found on day 2016-12-24: -9241
WARNING. Abnormal entry count found on day 2016-12-24: -9241
Processing turnstile ('N113', 'R297', '00-00-02', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6483
WARNING. Abnormal entry count found on day 2016-12-03: -6483
WARNING. Abnormal entry count found on day 2016-12-10: -6861
WARNING. Abnormal entry count found on day 2016-12-10: -6861
WARNING. Abnormal entry count found on day 2016-12-17: -5654
WARNING. Abnormal entry count found on day 2016-12-17: -5654
WARNING. Abnormal entry count found on day 2016-12-24: -3999
WARNING. Abnormal entry count found on day 2016-12-24: -3999
Processing turnstile ('R602', 'R108', '00-00-01', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -6624
WARNING. Abnormal entry count found on day 2016-12-03: -6624
WARNING. Abnormal entry count found on day 2016-12-10: -6714
WARNING. Abnormal entry count found on day 2016-12-10: -6714
WARNING. Abnormal entry count found on day 2016-12-17: -6139
WARNING. Abnormal entry count found on day 2016-12-17: -6139
WARNING. Abnormal entry count found on day 2016-12-24: -4260
WARNING. Abnormal entry count found on day 2016-12-24: -4260
Processing turnstile ('R512', 'R092', '00-03-00', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -30851
WARNING. Abnormal entry count found on day 2016-12-03: -30851
WARNING. Abnormal entry count found on day 2016-12-10: -28598
WARNING. Abnormal entry count found on day 2016-12-10: -28598
WARNING. Abnormal entry count found on day 2016-12-17: -25302
WARNING. Abnormal entry count found on day 2016-12-17: -25302
WARNING. Abnormal entry count found on day 2016-12-24: -22546
WARNING. Abnormal entry count found on day 2016-12-24: -22546
Processing turnstile ('R172', 'R192', '00-00-03', 'CATHEDRAL PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -15157
WARNING. Abnormal entry count found on day 2016-12-03: -15157
WARNING. Abnormal entry count found on day 2016-12-10: -15545
WARNING. Abnormal entry count found on day 2016-12-10: -15545
WARNING. Abnormal entry count found on day 2016-12-17: -14738
WARNING. Abnormal entry count found on day 2016-12-17: -14738
WARNING. Abnormal entry count found on day 2016-12-24: -10443
WARNING. Abnormal entry count found on day 2016-12-24: -10443
Processing turnstile ('R183', 'R260', '00-00-01', '181 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11423
WARNING. Abnormal entry count found on day 2016-12-03: -11423
WARNING. Abnormal entry count found on day 2016-12-10: -11192
WARNING. Abnormal entry count found on day 2016-12-10: -11192
WARNING. Abnormal entry count found on day 2016-12-17: -11226
WARNING. Abnormal entry count found on day 2016-12-17: -11226
WARNING. Abnormal entry count found on day 2016-12-24: -9217
WARNING. Abnormal entry count found on day 2016-12-24: -9217
Processing turnstile ('R165', 'R167', '01-00-03', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7400
WARNING. Abnormal entry count found on day 2016-12-03: -7400
WARNING. Abnormal entry count found on day 2016-12-10: -7419
WARNING. Abnormal entry count found on day 2016-12-10: -7419
WARNING. Abnormal entry count found on day 2016-12-17: -6700
WARNING. Abnormal entry count found on day 2016-12-17: -6700
WARNING. Abnormal entry count found on day 2016-12-24: -4807
WARNING. Abnormal entry count found on day 2016-12-24: -4807
Processing turnstile ('R532', 'R328', '00-06-06', 'METS-WILLETS PT')
Processing turnstile ('R145', 'R032', '00-00-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5322
WARNING. Abnormal entry count found on day 2016-12-03: -5322
WARNING. Abnormal entry count found on day 2016-12-10: -5266
WARNING. Abnormal entry count found on day 2016-12-10: -5266
WARNING. Abnormal entry count found on day 2016-12-17: -4738
WARNING. Abnormal entry count found on day 2016-12-17: -4738
WARNING. Abnormal entry count found on day 2016-12-24: -3657
WARNING. Abnormal entry count found on day 2016-12-24: -3657
Processing turnstile ('K019', 'R413', '00-00-01', 'KNICKERBOCKER')
WARNING. Abnormal entry count found on day 2016-12-03: -3206
WARNING. Abnormal entry count found on day 2016-12-03: -3206
WARNING. Abnormal entry count found on day 2016-12-10: -3174
WARNING. Abnormal entry count found on day 2016-12-10: -3174
WARNING. Abnormal entry count found on day 2016-12-17: -3001
WARNING. Abnormal entry count found on day 2016-12-17: -3001
WARNING. Abnormal entry count found on day 2016-12-24: -2050
WARNING. Abnormal entry count found on day 2016-12-24: -2050
Processing turnstile ('PTH13', 'R541', '00-00-06', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1729
WARNING. Abnormal entry count found on day 2016-12-03: -1729
WARNING. Abnormal entry count found on day 2016-12-10: -1918
WARNING. Abnormal entry count found on day 2016-12-10: -1918
WARNING. Abnormal entry count found on day 2016-12-17: -1424
WARNING. Abnormal entry count found on day 2016-12-17: -1424
WARNING. Abnormal entry count found on day 2016-12-24: -1169
WARNING. Abnormal entry count found on day 2016-12-24: -1169
Processing turnstile ('N316A', 'R267', '01-00-02', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1502
WARNING. Abnormal entry count found on day 2016-12-03: -1502
WARNING. Abnormal entry count found on day 2016-12-10: -1545
WARNING. Abnormal entry count found on day 2016-12-10: -1545
WARNING. Abnormal entry count found on day 2016-12-17: -1452
WARNING. Abnormal entry count found on day 2016-12-17: -1452
WARNING. Abnormal entry count found on day 2016-12-24: -861
WARNING. Abnormal entry count found on day 2016-12-24: -861
Processing turnstile ('N017', 'R331', '00-00-01', '155 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2208
WARNING. Abnormal entry count found on day 2016-12-03: -2208
WARNING. Abnormal entry count found on day 2016-12-10: -2148
WARNING. Abnormal entry count found on day 2016-12-10: -2148
WARNING. Abnormal entry count found on day 2016-12-17: -2125
WARNING. Abnormal entry count found on day 2016-12-17: -2125
WARNING. Abnormal entry count found on day 2016-12-24: -1522
WARNING. Abnormal entry count found on day 2016-12-24: -1522
Processing turnstile ('N338B', 'R128', '00-00-04', 'SUTPHIN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -2951
WARNING. Abnormal entry count found on day 2016-12-03: -2951
WARNING. Abnormal entry count found on day 2016-12-10: -2824
WARNING. Abnormal entry count found on day 2016-12-10: -2824
WARNING. Abnormal entry count found on day 2016-12-17: -2890
WARNING. Abnormal entry count found on day 2016-12-17: -2890
WARNING. Abnormal entry count found on day 2016-12-24: -2273
WARNING. Abnormal entry count found on day 2016-12-24: -2273
Processing turnstile ('N607', 'R025', '01-06-03', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -13958
WARNING. Abnormal entry count found on day 2016-12-03: -13958
WARNING. Abnormal entry count found on day 2016-12-10: -12974
WARNING. Abnormal entry count found on day 2016-12-10: -12974
WARNING. Abnormal entry count found on day 2016-12-17: -13106
WARNING. Abnormal entry count found on day 2016-12-17: -13106
WARNING. Abnormal entry count found on day 2016-12-24: -8248
WARNING. Abnormal entry count found on day 2016-12-24: -8248
Processing turnstile ('R294', 'R052', '00-00-03', 'WOODLAWN')
WARNING. Abnormal entry count found on day 2016-12-03: -6782
WARNING. Abnormal entry count found on day 2016-12-03: -6782
WARNING. Abnormal entry count found on day 2016-12-10: -6544
WARNING. Abnormal entry count found on day 2016-12-10: -6544
WARNING. Abnormal entry count found on day 2016-12-17: -6330
WARNING. Abnormal entry count found on day 2016-12-17: -6330
WARNING. Abnormal entry count found on day 2016-12-24: -4928
WARNING. Abnormal entry count found on day 2016-12-24: -4928
Processing turnstile ('N205', 'R195', '02-00-01', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -4990
WARNING. Abnormal entry count found on day 2016-12-03: -4990
WARNING. Abnormal entry count found on day 2016-12-10: -5488
WARNING. Abnormal entry count found on day 2016-12-10: -5488
WARNING. Abnormal entry count found on day 2016-12-17: -4739
WARNING. Abnormal entry count found on day 2016-12-17: -4739
WARNING. Abnormal entry count found on day 2016-12-24: -3421
WARNING. Abnormal entry count found on day 2016-12-24: -3421
Processing turnstile ('R128', 'R105', '01-00-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4791
WARNING. Abnormal entry count found on day 2016-12-03: -4791
WARNING. Abnormal entry count found on day 2016-12-10: -4254
WARNING. Abnormal entry count found on day 2016-12-10: -4254
WARNING. Abnormal entry count found on day 2016-12-17: -3866
WARNING. Abnormal entry count found on day 2016-12-17: -3866
WARNING. Abnormal entry count found on day 2016-12-24: -2635
WARNING. Abnormal entry count found on day 2016-12-24: -2635
Processing turnstile ('N547', 'R420', '01-06-01', 'DITMAS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2116
WARNING. Abnormal entry count found on day 2016-12-03: -2116
WARNING. Abnormal entry count found on day 2016-12-10: -2099
WARNING. Abnormal entry count found on day 2016-12-10: -2099
WARNING. Abnormal entry count found on day 2016-12-17: -2165
WARNING. Abnormal entry count found on day 2016-12-17: -2165
WARNING. Abnormal entry count found on day 2016-12-24: -1498
WARNING. Abnormal entry count found on day 2016-12-24: -1498
Processing turnstile ('N063', 'R011', '02-06-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -6458
WARNING. Abnormal entry count found on day 2016-12-03: -6458
WARNING. Abnormal entry count found on day 2016-12-10: -7515
WARNING. Abnormal entry count found on day 2016-12-10: -7515
WARNING. Abnormal entry count found on day 2016-12-17: -6716
WARNING. Abnormal entry count found on day 2016-12-17: -6716
WARNING. Abnormal entry count found on day 2016-12-24: -5382
WARNING. Abnormal entry count found on day 2016-12-24: -5382
Processing turnstile ('R645', 'R110', '00-03-02', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -3821
WARNING. Abnormal entry count found on day 2016-12-03: -3821
WARNING. Abnormal entry count found on day 2016-12-10: -3850
WARNING. Abnormal entry count found on day 2016-12-10: -3850
WARNING. Abnormal entry count found on day 2016-12-17: -3706
WARNING. Abnormal entry count found on day 2016-12-17: -3706
WARNING. Abnormal entry count found on day 2016-12-24: -2679
WARNING. Abnormal entry count found on day 2016-12-24: -2679
Processing turnstile ('R113', 'R028', '01-06-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3738
WARNING. Abnormal entry count found on day 2016-12-03: -3738
WARNING. Abnormal entry count found on day 2016-12-10: -3752
WARNING. Abnormal entry count found on day 2016-12-10: -3752
WARNING. Abnormal entry count found on day 2016-12-17: -3420
WARNING. Abnormal entry count found on day 2016-12-17: -3420
WARNING. Abnormal entry count found on day 2016-12-24: -2284
WARNING. Abnormal entry count found on day 2016-12-24: -2284
Processing turnstile ('H028', 'R266', '00-06-01', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2731
WARNING. Abnormal entry count found on day 2016-12-03: -2731
WARNING. Abnormal entry count found on day 2016-12-10: -2632
WARNING. Abnormal entry count found on day 2016-12-10: -2632
WARNING. Abnormal entry count found on day 2016-12-17: -2513
WARNING. Abnormal entry count found on day 2016-12-17: -2513
WARNING. Abnormal entry count found on day 2016-12-24: -1874
WARNING. Abnormal entry count found on day 2016-12-24: -1874
Processing turnstile ('N316', 'R267', '00-00-02', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11825
WARNING. Abnormal entry count found on day 2016-12-03: -11825
WARNING. Abnormal entry count found on day 2016-12-10: -11261
WARNING. Abnormal entry count found on day 2016-12-10: -11261
WARNING. Abnormal entry count found on day 2016-12-17: -10448
WARNING. Abnormal entry count found on day 2016-12-17: -10448
WARNING. Abnormal entry count found on day 2016-12-24: -7601
WARNING. Abnormal entry count found on day 2016-12-24: -7601
Processing turnstile ('N022', 'R332', '02-06-01', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5115
WARNING. Abnormal entry count found on day 2016-12-03: -5115
WARNING. Abnormal entry count found on day 2016-12-10: -5895
WARNING. Abnormal entry count found on day 2016-12-10: -5895
WARNING. Abnormal entry count found on day 2016-12-17: -4454
WARNING. Abnormal entry count found on day 2016-12-17: -4454
WARNING. Abnormal entry count found on day 2016-12-24: -3670
WARNING. Abnormal entry count found on day 2016-12-24: -3670
Processing turnstile ('D010', 'R394', '00-00-00', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -15134
WARNING. Abnormal entry count found on day 2016-12-03: -15134
WARNING. Abnormal entry count found on day 2016-12-10: -14954
WARNING. Abnormal entry count found on day 2016-12-10: -14954
WARNING. Abnormal entry count found on day 2016-12-17: -15525
WARNING. Abnormal entry count found on day 2016-12-17: -15525
WARNING. Abnormal entry count found on day 2016-12-24: -12588
WARNING. Abnormal entry count found on day 2016-12-24: -12588
Processing turnstile ('N337', 'R255', '00-00-02', 'BRIARWOOD')
WARNING. Abnormal entry count found on day 2016-12-03: -3447
WARNING. Abnormal entry count found on day 2016-12-03: -3447
WARNING. Abnormal entry count found on day 2016-12-10: -3108
WARNING. Abnormal entry count found on day 2016-12-10: -3108
WARNING. Abnormal entry count found on day 2016-12-17: -2850
WARNING. Abnormal entry count found on day 2016-12-17: -2850
WARNING. Abnormal entry count found on day 2016-12-24: -2027
WARNING. Abnormal entry count found on day 2016-12-24: -2027
Processing turnstile ('C008', 'R099', '00-04-01', 'DEKALB AV')
Processing turnstile ('N311', 'R339', '01-06-01', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3667
WARNING. Abnormal entry count found on day 2016-12-03: -3667
WARNING. Abnormal entry count found on day 2016-12-10: -3898
WARNING. Abnormal entry count found on day 2016-12-10: -3898
WARNING. Abnormal entry count found on day 2016-12-17: -4159
WARNING. Abnormal entry count found on day 2016-12-17: -4159
WARNING. Abnormal entry count found on day 2016-12-24: -2785
WARNING. Abnormal entry count found on day 2016-12-24: -2785
Processing turnstile ('R237B', 'R047', '01-00-01', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8326
WARNING. Abnormal entry count found on day 2016-12-03: -8326
WARNING. Abnormal entry count found on day 2016-12-10: -8302
WARNING. Abnormal entry count found on day 2016-12-10: -8302
WARNING. Abnormal entry count found on day 2016-12-17: -7134
WARNING. Abnormal entry count found on day 2016-12-17: -7134
WARNING. Abnormal entry count found on day 2016-12-24: -3980
WARNING. Abnormal entry count found on day 2016-12-24: -3980
Processing turnstile ('R243', 'R049', '00-03-02', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6708
WARNING. Abnormal entry count found on day 2016-12-03: -6708
WARNING. Abnormal entry count found on day 2016-12-10: -6754
WARNING. Abnormal entry count found on day 2016-12-10: -6754
WARNING. Abnormal entry count found on day 2016-12-17: -6408
WARNING. Abnormal entry count found on day 2016-12-17: -6408
WARNING. Abnormal entry count found on day 2016-12-24: -5522
WARNING. Abnormal entry count found on day 2016-12-24: -5522
Processing turnstile ('N531', 'R129', '01-06-01', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -255
WARNING. Abnormal entry count found on day 2016-12-03: -255
WARNING. Abnormal entry count found on day 2016-12-10: -241
WARNING. Abnormal entry count found on day 2016-12-10: -241
WARNING. Abnormal entry count found on day 2016-12-17: -318
WARNING. Abnormal entry count found on day 2016-12-17: -318
WARNING. Abnormal entry count found on day 2016-12-24: -212
WARNING. Abnormal entry count found on day 2016-12-24: -212
Processing turnstile ('PTH02', 'R544', '00-04-03', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -416
WARNING. Abnormal entry count found on day 2016-12-03: -416
WARNING. Abnormal entry count found on day 2016-12-10: -580
WARNING. Abnormal entry count found on day 2016-12-10: -580
WARNING. Abnormal entry count found on day 2016-12-17: -467
WARNING. Abnormal entry count found on day 2016-12-17: -467
WARNING. Abnormal entry count found on day 2016-12-24: -339
WARNING. Abnormal entry count found on day 2016-12-24: -339
Processing turnstile ('A050', 'R088', '00-06-04', 'CORTLANDT ST')
Processing turnstile ('R148', 'R033', '01-03-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6347
WARNING. Abnormal entry count found on day 2016-12-03: -6347
WARNING. Abnormal entry count found on day 2016-12-10: -6410
WARNING. Abnormal entry count found on day 2016-12-10: -6410
WARNING. Abnormal entry count found on day 2016-12-17: -6771
WARNING. Abnormal entry count found on day 2016-12-17: -6771
WARNING. Abnormal entry count found on day 2016-12-24: -6778
WARNING. Abnormal entry count found on day 2016-12-24: -6778
Processing turnstile ('B027', 'R136', '00-00-02', 'SHEEPSHEAD BAY')
WARNING. Abnormal entry count found on day 2016-12-03: -11800
WARNING. Abnormal entry count found on day 2016-12-03: -11800
WARNING. Abnormal entry count found on day 2016-12-10: -11010
WARNING. Abnormal entry count found on day 2016-12-10: -11010
WARNING. Abnormal entry count found on day 2016-12-17: -11203
WARNING. Abnormal entry count found on day 2016-12-17: -11203
WARNING. Abnormal entry count found on day 2016-12-24: -8307
WARNING. Abnormal entry count found on day 2016-12-24: -8307
Processing turnstile ('R177', 'R273', '01-00-02', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6333
WARNING. Abnormal entry count found on day 2016-12-03: -6333
WARNING. Abnormal entry count found on day 2016-12-10: -5904
WARNING. Abnormal entry count found on day 2016-12-10: -5904
WARNING. Abnormal entry count found on day 2016-12-17: -6447
WARNING. Abnormal entry count found on day 2016-12-17: -6447
WARNING. Abnormal entry count found on day 2016-12-24: -4932
WARNING. Abnormal entry count found on day 2016-12-24: -4932
Processing turnstile ('R412', 'R146', '00-03-03', 'HUNTS POINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4861
WARNING. Abnormal entry count found on day 2016-12-03: -4861
WARNING. Abnormal entry count found on day 2016-12-10: -4786
WARNING. Abnormal entry count found on day 2016-12-10: -4786
WARNING. Abnormal entry count found on day 2016-12-17: -4530
WARNING. Abnormal entry count found on day 2016-12-17: -4530
WARNING. Abnormal entry count found on day 2016-12-24: -3056
WARNING. Abnormal entry count found on day 2016-12-24: -3056
Processing turnstile ('A081', 'R028', '04-00-00', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -467
WARNING. Abnormal entry count found on day 2016-12-03: -467
WARNING. Abnormal entry count found on day 2016-12-10: -529
WARNING. Abnormal entry count found on day 2016-12-10: -529
WARNING. Abnormal entry count found on day 2016-12-17: -471
WARNING. Abnormal entry count found on day 2016-12-17: -471
WARNING. Abnormal entry count found on day 2016-12-24: -440
WARNING. Abnormal entry count found on day 2016-12-24: -440
Processing turnstile ('N600', 'R302', '00-00-03', '57 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7088
WARNING. Abnormal entry count found on day 2016-12-03: -7088
WARNING. Abnormal entry count found on day 2016-12-10: -6893
WARNING. Abnormal entry count found on day 2016-12-10: -6893
WARNING. Abnormal entry count found on day 2016-12-17: -6371
WARNING. Abnormal entry count found on day 2016-12-17: -6371
WARNING. Abnormal entry count found on day 2016-12-24: -5127
WARNING. Abnormal entry count found on day 2016-12-24: -5127
Processing turnstile ('R127', 'R105', '00-03-03', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19004
WARNING. Abnormal entry count found on day 2016-12-03: -19004
WARNING. Abnormal entry count found on day 2016-12-10: -18356
WARNING. Abnormal entry count found on day 2016-12-10: -18356
WARNING. Abnormal entry count found on day 2016-12-17: -17022
WARNING. Abnormal entry count found on day 2016-12-17: -17022
WARNING. Abnormal entry count found on day 2016-12-24: -12765
WARNING. Abnormal entry count found on day 2016-12-24: -12765
Processing turnstile ('N056', 'R188', '01-00-01', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13343
WARNING. Abnormal entry count found on day 2016-12-03: -13343
WARNING. Abnormal entry count found on day 2016-12-10: -12573
WARNING. Abnormal entry count found on day 2016-12-10: -12573
WARNING. Abnormal entry count found on day 2016-12-17: -13092
WARNING. Abnormal entry count found on day 2016-12-17: -13092
WARNING. Abnormal entry count found on day 2016-12-24: -11829
WARNING. Abnormal entry count found on day 2016-12-24: -11829
Processing turnstile ('R244', 'R050', '00-03-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7113
WARNING. Abnormal entry count found on day 2016-12-03: -7113
WARNING. Abnormal entry count found on day 2016-12-10: -7060
WARNING. Abnormal entry count found on day 2016-12-10: -7060
WARNING. Abnormal entry count found on day 2016-12-17: -6436
WARNING. Abnormal entry count found on day 2016-12-17: -6436
WARNING. Abnormal entry count found on day 2016-12-24: -4942
WARNING. Abnormal entry count found on day 2016-12-24: -4942
Processing turnstile ('R217A', 'R194', '00-03-01', 'BLEECKER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8402
WARNING. Abnormal entry count found on day 2016-12-03: -8402
WARNING. Abnormal entry count found on day 2016-12-10: -8417
WARNING. Abnormal entry count found on day 2016-12-10: -8417
WARNING. Abnormal entry count found on day 2016-12-17: -6984
WARNING. Abnormal entry count found on day 2016-12-17: -6984
WARNING. Abnormal entry count found on day 2016-12-24: -5964
WARNING. Abnormal entry count found on day 2016-12-24: -5964
Processing turnstile ('R147', 'R033', '04-00-06', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15445
WARNING. Abnormal entry count found on day 2016-12-03: -15445
WARNING. Abnormal entry count found on day 2016-12-10: -15203
WARNING. Abnormal entry count found on day 2016-12-10: -15203
WARNING. Abnormal entry count found on day 2016-12-17: -16251
WARNING. Abnormal entry count found on day 2016-12-17: -16251
WARNING. Abnormal entry count found on day 2016-12-24: -17386
WARNING. Abnormal entry count found on day 2016-12-24: -17386
Processing turnstile ('N083', 'R138', '01-06-01', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -38485
WARNING. Abnormal entry count found on day 2016-12-03: -38485
WARNING. Abnormal entry count found on day 2016-12-10: -34124
WARNING. Abnormal entry count found on day 2016-12-10: -34124
WARNING. Abnormal entry count found on day 2016-12-17: -29862
WARNING. Abnormal entry count found on day 2016-12-17: -29862
WARNING. Abnormal entry count found on day 2016-12-24: -22307
WARNING. Abnormal entry count found on day 2016-12-24: -22307
Processing turnstile ('D003', 'R391', '00-00-02', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -3100
WARNING. Abnormal entry count found on day 2016-12-03: -3100
WARNING. Abnormal entry count found on day 2016-12-10: -2930
WARNING. Abnormal entry count found on day 2016-12-10: -2930
WARNING. Abnormal entry count found on day 2016-12-17: -2981
WARNING. Abnormal entry count found on day 2016-12-17: -2981
WARNING. Abnormal entry count found on day 2016-12-24: -2255
WARNING. Abnormal entry count found on day 2016-12-24: -2255
Processing turnstile ('R534', 'R055', '01-00-00', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -1281
WARNING. Abnormal entry count found on day 2016-12-03: -1281
WARNING. Abnormal entry count found on day 2016-12-10: -1188
WARNING. Abnormal entry count found on day 2016-12-10: -1188
WARNING. Abnormal entry count found on day 2016-12-17: -1083
WARNING. Abnormal entry count found on day 2016-12-17: -1083
WARNING. Abnormal entry count found on day 2016-12-24: -561
WARNING. Abnormal entry count found on day 2016-12-24: -561
Processing turnstile ('N090', 'R139', '01-06-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -38
WARNING. Abnormal entry count found on day 2016-12-03: -38
WARNING. Abnormal entry count found on day 2016-12-10: -42
WARNING. Abnormal entry count found on day 2016-12-10: -42
WARNING. Abnormal entry count found on day 2016-12-17: -22
WARNING. Abnormal entry count found on day 2016-12-17: -22
WARNING. Abnormal entry count found on day 2016-12-24: -51
WARNING. Abnormal entry count found on day 2016-12-24: -51
Processing turnstile ('R517', 'R291', '01-06-01', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8955
WARNING. Abnormal entry count found on day 2016-12-03: -8955
WARNING. Abnormal entry count found on day 2016-12-10: -8485
WARNING. Abnormal entry count found on day 2016-12-10: -8485
WARNING. Abnormal entry count found on day 2016-12-17: -7873
WARNING. Abnormal entry count found on day 2016-12-17: -7873
WARNING. Abnormal entry count found on day 2016-12-24: -3036
WARNING. Abnormal entry count found on day 2016-12-24: -3036
Processing turnstile ('N077', 'R111', '02-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9623
WARNING. Abnormal entry count found on day 2016-12-03: -9623
WARNING. Abnormal entry count found on day 2016-12-10: -9215
WARNING. Abnormal entry count found on day 2016-12-10: -9215
WARNING. Abnormal entry count found on day 2016-12-17: -7916
WARNING. Abnormal entry count found on day 2016-12-17: -7916
WARNING. Abnormal entry count found on day 2016-12-24: -5881
WARNING. Abnormal entry count found on day 2016-12-24: -5881
Processing turnstile ('R158', 'R084', '00-00-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -4125
WARNING. Abnormal entry count found on day 2016-12-03: -4125
WARNING. Abnormal entry count found on day 2016-12-10: -3712
WARNING. Abnormal entry count found on day 2016-12-10: -3712
WARNING. Abnormal entry count found on day 2016-12-17: -3439
WARNING. Abnormal entry count found on day 2016-12-17: -3439
WARNING. Abnormal entry count found on day 2016-12-24: -2739
WARNING. Abnormal entry count found on day 2016-12-24: -2739
Processing turnstile ('R318', 'R408', '00-05-00', 'SIMPSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -7
WARNING. Abnormal entry count found on day 2016-12-24: -7
Processing turnstile ('N526', 'R142', '02-06-01', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -2418
WARNING. Abnormal entry count found on day 2016-12-03: -2418
WARNING. Abnormal entry count found on day 2016-12-10: -2389
WARNING. Abnormal entry count found on day 2016-12-10: -2389
WARNING. Abnormal entry count found on day 2016-12-17: -2221
WARNING. Abnormal entry count found on day 2016-12-17: -2221
WARNING. Abnormal entry count found on day 2016-12-24: -1608
WARNING. Abnormal entry count found on day 2016-12-24: -1608
Processing turnstile ('PTH19', 'R549', '02-01-01', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -2383
WARNING. Abnormal entry count found on day 2016-12-03: -2383
WARNING. Abnormal entry count found on day 2016-12-10: -2391
WARNING. Abnormal entry count found on day 2016-12-10: -2391
WARNING. Abnormal entry count found on day 2016-12-17: -2116
WARNING. Abnormal entry count found on day 2016-12-17: -2116
WARNING. Abnormal entry count found on day 2016-12-24: -1510
WARNING. Abnormal entry count found on day 2016-12-24: -1510
Processing turnstile ('R164', 'R167', '00-03-01', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7175
WARNING. Abnormal entry count found on day 2016-12-03: -7175
WARNING. Abnormal entry count found on day 2016-12-10: -7623
WARNING. Abnormal entry count found on day 2016-12-10: -7623
WARNING. Abnormal entry count found on day 2016-12-17: -6931
WARNING. Abnormal entry count found on day 2016-12-17: -6931
WARNING. Abnormal entry count found on day 2016-12-24: -5203
WARNING. Abnormal entry count found on day 2016-12-24: -5203
Processing turnstile ('R519', 'R223', '00-00-00', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5269
WARNING. Abnormal entry count found on day 2016-12-03: -5269
WARNING. Abnormal entry count found on day 2016-12-10: -4605
WARNING. Abnormal entry count found on day 2016-12-10: -4605
WARNING. Abnormal entry count found on day 2016-12-17: -4903
WARNING. Abnormal entry count found on day 2016-12-17: -4903
WARNING. Abnormal entry count found on day 2016-12-24: -3792
WARNING. Abnormal entry count found on day 2016-12-24: -3792
Processing turnstile ('N202', 'R315', '00-00-00', '155 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7480
WARNING. Abnormal entry count found on day 2016-12-03: -7480
WARNING. Abnormal entry count found on day 2016-12-10: -7254
WARNING. Abnormal entry count found on day 2016-12-10: -7254
WARNING. Abnormal entry count found on day 2016-12-17: -7120
WARNING. Abnormal entry count found on day 2016-12-17: -7120
WARNING. Abnormal entry count found on day 2016-12-24: -5894
WARNING. Abnormal entry count found on day 2016-12-24: -5894
Processing turnstile ('H012', 'R268', '01-06-01', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4002
WARNING. Abnormal entry count found on day 2016-12-03: -4002
WARNING. Abnormal entry count found on day 2016-12-10: -3492
WARNING. Abnormal entry count found on day 2016-12-10: -3492
WARNING. Abnormal entry count found on day 2016-12-17: -3446
WARNING. Abnormal entry count found on day 2016-12-17: -3446
WARNING. Abnormal entry count found on day 2016-12-24: -2371
WARNING. Abnormal entry count found on day 2016-12-24: -2371
Processing turnstile ('N412', 'R299', '00-00-02', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -13061
WARNING. Abnormal entry count found on day 2016-12-03: -13061
WARNING. Abnormal entry count found on day 2016-12-10: -11955
WARNING. Abnormal entry count found on day 2016-12-10: -11955
WARNING. Abnormal entry count found on day 2016-12-17: -11642
WARNING. Abnormal entry count found on day 2016-12-17: -11642
WARNING. Abnormal entry count found on day 2016-12-24: -8444
WARNING. Abnormal entry count found on day 2016-12-24: -8444
Processing turnstile ('N343', 'R019', '00-00-03', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3972
WARNING. Abnormal entry count found on day 2016-12-03: -3972
WARNING. Abnormal entry count found on day 2016-12-10: -3910
WARNING. Abnormal entry count found on day 2016-12-10: -3910
WARNING. Abnormal entry count found on day 2016-12-17: -3790
WARNING. Abnormal entry count found on day 2016-12-17: -3790
WARNING. Abnormal entry count found on day 2016-12-24: -3024
WARNING. Abnormal entry count found on day 2016-12-24: -3024
Processing turnstile ('D005', 'R398', '00-06-01', 'NEW UTRECHT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5301
WARNING. Abnormal entry count found on day 2016-12-03: -5301
WARNING. Abnormal entry count found on day 2016-12-10: -4993
WARNING. Abnormal entry count found on day 2016-12-10: -4993
WARNING. Abnormal entry count found on day 2016-12-17: -282
WARNING. Abnormal entry count found on day 2016-12-17: -282
WARNING. Abnormal entry count found on day 2016-12-24: -132
WARNING. Abnormal entry count found on day 2016-12-24: -132
Processing turnstile ('J002', 'R460', '00-06-01', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4382
WARNING. Abnormal entry count found on day 2016-12-03: -4382
WARNING. Abnormal entry count found on day 2016-12-10: -3977
WARNING. Abnormal entry count found on day 2016-12-10: -3977
WARNING. Abnormal entry count found on day 2016-12-17: -3561
WARNING. Abnormal entry count found on day 2016-12-17: -3561
WARNING. Abnormal entry count found on day 2016-12-24: -3244
WARNING. Abnormal entry count found on day 2016-12-24: -3244
Processing turnstile ('N062A', 'R010', '00-00-04', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -8889
WARNING. Abnormal entry count found on day 2016-12-03: -8889
WARNING. Abnormal entry count found on day 2016-12-10: -8741
WARNING. Abnormal entry count found on day 2016-12-10: -8741
WARNING. Abnormal entry count found on day 2016-12-17: -9621
WARNING. Abnormal entry count found on day 2016-12-17: -9621
WARNING. Abnormal entry count found on day 2016-12-24: -12933
WARNING. Abnormal entry count found on day 2016-12-24: -12933
Processing turnstile ('N125', 'R440', '00-00-01', 'LIBERTY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4276
WARNING. Abnormal entry count found on day 2016-12-03: -4276
WARNING. Abnormal entry count found on day 2016-12-10: -4147
WARNING. Abnormal entry count found on day 2016-12-10: -4147
WARNING. Abnormal entry count found on day 2016-12-17: -4077
WARNING. Abnormal entry count found on day 2016-12-17: -4077
WARNING. Abnormal entry count found on day 2016-12-24: -2775
WARNING. Abnormal entry count found on day 2016-12-24: -2775
Processing turnstile ('R532H', 'R328', '02-03-03', 'METS-WILLETS PT')
Processing turnstile ('N343', 'R019', '00-00-00', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4004
WARNING. Abnormal entry count found on day 2016-12-03: -4004
WARNING. Abnormal entry count found on day 2016-12-10: -3666
WARNING. Abnormal entry count found on day 2016-12-10: -3666
WARNING. Abnormal entry count found on day 2016-12-17: -3782
WARNING. Abnormal entry count found on day 2016-12-17: -3782
WARNING. Abnormal entry count found on day 2016-12-24: -3143
WARNING. Abnormal entry count found on day 2016-12-24: -3143
Processing turnstile ('R245A', 'R051', '01-06-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3572
WARNING. Abnormal entry count found on day 2016-12-03: -3572
WARNING. Abnormal entry count found on day 2016-12-10: -4225
WARNING. Abnormal entry count found on day 2016-12-10: -4225
WARNING. Abnormal entry count found on day 2016-12-17: -3629
WARNING. Abnormal entry count found on day 2016-12-17: -3629
WARNING. Abnormal entry count found on day 2016-12-24: -2422
WARNING. Abnormal entry count found on day 2016-12-24: -2422
Processing turnstile ('A007', 'R079', '01-06-00', '5 AV/59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3604
WARNING. Abnormal entry count found on day 2016-12-03: -3604
WARNING. Abnormal entry count found on day 2016-12-10: -3614
WARNING. Abnormal entry count found on day 2016-12-10: -3614
WARNING. Abnormal entry count found on day 2016-12-17: -4299
WARNING. Abnormal entry count found on day 2016-12-17: -4299
WARNING. Abnormal entry count found on day 2016-12-24: -5631
WARNING. Abnormal entry count found on day 2016-12-24: -5631
Processing turnstile ('R143', 'R032', '02-03-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8731
WARNING. Abnormal entry count found on day 2016-12-03: -8731
WARNING. Abnormal entry count found on day 2016-12-10: -8796
WARNING. Abnormal entry count found on day 2016-12-10: -8796
WARNING. Abnormal entry count found on day 2016-12-17: -7242
WARNING. Abnormal entry count found on day 2016-12-17: -7242
WARNING. Abnormal entry count found on day 2016-12-24: -5104
WARNING. Abnormal entry count found on day 2016-12-24: -5104
Processing turnstile ('R639', 'R109', '00-00-02', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12099
WARNING. Abnormal entry count found on day 2016-12-03: -12099
WARNING. Abnormal entry count found on day 2016-12-10: -11971
WARNING. Abnormal entry count found on day 2016-12-10: -11971
WARNING. Abnormal entry count found on day 2016-12-17: -11946
WARNING. Abnormal entry count found on day 2016-12-17: -11946
WARNING. Abnormal entry count found on day 2016-12-24: -8929
WARNING. Abnormal entry count found on day 2016-12-24: -8929
Processing turnstile ('H041', 'R152', '00-00-04', 'CANARSIE-ROCKAW')
WARNING. Abnormal entry count found on day 2016-12-03: -6441
WARNING. Abnormal entry count found on day 2016-12-03: -6441
WARNING. Abnormal entry count found on day 2016-12-10: -5954
WARNING. Abnormal entry count found on day 2016-12-10: -5954
WARNING. Abnormal entry count found on day 2016-12-17: -5822
WARNING. Abnormal entry count found on day 2016-12-17: -5822
WARNING. Abnormal entry count found on day 2016-12-24: -4546
WARNING. Abnormal entry count found on day 2016-12-24: -4546
Processing turnstile ('A046', 'R463', '00-06-03', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2227
WARNING. Abnormal entry count found on day 2016-12-03: -2227
WARNING. Abnormal entry count found on day 2016-12-10: -2216
WARNING. Abnormal entry count found on day 2016-12-10: -2216
WARNING. Abnormal entry count found on day 2016-12-17: -2422
WARNING. Abnormal entry count found on day 2016-12-17: -2422
WARNING. Abnormal entry count found on day 2016-12-24: -2493
WARNING. Abnormal entry count found on day 2016-12-24: -2493
Processing turnstile ('K025', 'R404', '00-00-01', 'FRESH POND RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3525
WARNING. Abnormal entry count found on day 2016-12-03: -3525
WARNING. Abnormal entry count found on day 2016-12-10: -3697
WARNING. Abnormal entry count found on day 2016-12-10: -3697
WARNING. Abnormal entry count found on day 2016-12-17: -3440
WARNING. Abnormal entry count found on day 2016-12-17: -3440
WARNING. Abnormal entry count found on day 2016-12-24: -2573
WARNING. Abnormal entry count found on day 2016-12-24: -2573
Processing turnstile ('N102', 'R127', '01-00-04', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-09: -10119556
WARNING. Abnormal entry count found on day 2016-12-03: 10112247
WARNING. Abnormal entry count found on day 2016-12-09: -10119556
WARNING. Abnormal entry count found on day 2016-12-03: 10112247
WARNING. Abnormal entry count found on day 2016-12-09: -10119556
WARNING. Abnormal entry count found on day 2016-12-10: -11429
WARNING. Abnormal entry count found on day 2016-12-10: -11429
WARNING. Abnormal entry count found on day 2016-12-17: -9224
WARNING. Abnormal entry count found on day 2016-12-17: -9224
WARNING. Abnormal entry count found on day 2016-12-24: -5383
WARNING. Abnormal entry count found on day 2016-12-24: -5383
Processing turnstile ('R417', 'R222', '00-00-03', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -13226
WARNING. Abnormal entry count found on day 2016-12-03: -13226
WARNING. Abnormal entry count found on day 2016-12-10: -12426
WARNING. Abnormal entry count found on day 2016-12-10: -12426
WARNING. Abnormal entry count found on day 2016-12-17: -12514
WARNING. Abnormal entry count found on day 2016-12-17: -12514
WARNING. Abnormal entry count found on day 2016-12-24: -9387
WARNING. Abnormal entry count found on day 2016-12-24: -9387
Processing turnstile ('N193', 'R337', '00-05-01', 'BEACH 44 ST')
Processing turnstile ('R116', 'R030', '00-06-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10846
WARNING. Abnormal entry count found on day 2016-12-03: -10846
WARNING. Abnormal entry count found on day 2016-12-10: -10292
WARNING. Abnormal entry count found on day 2016-12-10: -10292
WARNING. Abnormal entry count found on day 2016-12-17: -8231
WARNING. Abnormal entry count found on day 2016-12-17: -8231
WARNING. Abnormal entry count found on day 2016-12-24: -4254
WARNING. Abnormal entry count found on day 2016-12-24: -4254
Processing turnstile ('N506', 'R022', '00-03-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12424
WARNING. Abnormal entry count found on day 2016-12-03: -12424
WARNING. Abnormal entry count found on day 2016-12-10: -12978
WARNING. Abnormal entry count found on day 2016-12-10: -12978
WARNING. Abnormal entry count found on day 2016-12-17: -15476
WARNING. Abnormal entry count found on day 2016-12-17: -15476
WARNING. Abnormal entry count found on day 2016-12-24: -12730
WARNING. Abnormal entry count found on day 2016-12-24: -12730
Processing turnstile ('N333A', 'R141', '00-00-01', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -984
WARNING. Abnormal entry count found on day 2016-12-03: -984
WARNING. Abnormal entry count found on day 2016-12-10: -980
WARNING. Abnormal entry count found on day 2016-12-10: -980
WARNING. Abnormal entry count found on day 2016-12-17: -965
WARNING. Abnormal entry count found on day 2016-12-17: -965
WARNING. Abnormal entry count found on day 2016-12-24: -924
WARNING. Abnormal entry count found on day 2016-12-24: -924
Processing turnstile ('R605', 'R456', '00-00-02', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2251
WARNING. Abnormal entry count found on day 2016-12-03: -2251
WARNING. Abnormal entry count found on day 2016-12-10: -2286
WARNING. Abnormal entry count found on day 2016-12-10: -2286
WARNING. Abnormal entry count found on day 2016-12-17: -2184
WARNING. Abnormal entry count found on day 2016-12-17: -2184
WARNING. Abnormal entry count found on day 2016-12-24: -1661
WARNING. Abnormal entry count found on day 2016-12-24: -1661
Processing turnstile ('R111', 'R027', '00-00-02', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5539
WARNING. Abnormal entry count found on day 2016-12-03: -5539
WARNING. Abnormal entry count found on day 2016-12-10: -5503
WARNING. Abnormal entry count found on day 2016-12-10: -5503
WARNING. Abnormal entry count found on day 2016-12-17: -5324
WARNING. Abnormal entry count found on day 2016-12-17: -5324
WARNING. Abnormal entry count found on day 2016-12-24: -3720
WARNING. Abnormal entry count found on day 2016-12-24: -3720
Processing turnstile ('N310', 'R140', '01-06-01', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -1364
WARNING. Abnormal entry count found on day 2016-12-03: -1364
WARNING. Abnormal entry count found on day 2016-12-10: -968
WARNING. Abnormal entry count found on day 2016-12-10: -968
WARNING. Abnormal entry count found on day 2016-12-17: -1054
WARNING. Abnormal entry count found on day 2016-12-17: -1054
WARNING. Abnormal entry count found on day 2016-12-24: -810
WARNING. Abnormal entry count found on day 2016-12-24: -810
Processing turnstile ('R417', 'R222', '00-03-01', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -1415
WARNING. Abnormal entry count found on day 2016-12-03: -1415
WARNING. Abnormal entry count found on day 2016-12-10: -1499
WARNING. Abnormal entry count found on day 2016-12-10: -1499
WARNING. Abnormal entry count found on day 2016-12-17: -1484
WARNING. Abnormal entry count found on day 2016-12-17: -1484
WARNING. Abnormal entry count found on day 2016-12-24: -1110
WARNING. Abnormal entry count found on day 2016-12-24: -1110
Processing turnstile ('N325A', 'R218', '00-03-01', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -485
WARNING. Abnormal entry count found on day 2016-12-03: -485
WARNING. Abnormal entry count found on day 2016-12-10: -457
WARNING. Abnormal entry count found on day 2016-12-10: -457
WARNING. Abnormal entry count found on day 2016-12-17: -476
WARNING. Abnormal entry count found on day 2016-12-17: -476
WARNING. Abnormal entry count found on day 2016-12-24: -452
WARNING. Abnormal entry count found on day 2016-12-24: -452
Processing turnstile ('N420B', 'R317', '00-03-01', 'CLINTON-WASH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -171
WARNING. Abnormal entry count found on day 2016-12-03: -171
WARNING. Abnormal entry count found on day 2016-12-10: -253
WARNING. Abnormal entry count found on day 2016-12-10: -253
WARNING. Abnormal entry count found on day 2016-12-17: -256
WARNING. Abnormal entry count found on day 2016-12-17: -256
WARNING. Abnormal entry count found on day 2016-12-24: -166
WARNING. Abnormal entry count found on day 2016-12-24: -166
Processing turnstile ('PTH03', 'R552', '00-01-03', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -7158
WARNING. Abnormal entry count found on day 2016-12-03: -7158
WARNING. Abnormal entry count found on day 2016-12-10: -7138
WARNING. Abnormal entry count found on day 2016-12-10: -7138
WARNING. Abnormal entry count found on day 2016-12-17: -6526
WARNING. Abnormal entry count found on day 2016-12-17: -6526
WARNING. Abnormal entry count found on day 2016-12-24: -3240
WARNING. Abnormal entry count found on day 2016-12-24: -3240
Processing turnstile ('E005', 'R247', '00-00-02', '55 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4429
WARNING. Abnormal entry count found on day 2016-12-03: -4429
WARNING. Abnormal entry count found on day 2016-12-10: -4057
WARNING. Abnormal entry count found on day 2016-12-10: -4057
WARNING. Abnormal entry count found on day 2016-12-17: -4306
WARNING. Abnormal entry count found on day 2016-12-17: -4306
WARNING. Abnormal entry count found on day 2016-12-24: -3344
WARNING. Abnormal entry count found on day 2016-12-24: -3344
Processing turnstile ('PTH05', 'R543', '00-04-03', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -10962
WARNING. Abnormal entry count found on day 2016-12-03: -10962
WARNING. Abnormal entry count found on day 2016-12-10: -10816
WARNING. Abnormal entry count found on day 2016-12-10: -10816
WARNING. Abnormal entry count found on day 2016-12-17: -9266
WARNING. Abnormal entry count found on day 2016-12-17: -9266
WARNING. Abnormal entry count found on day 2016-12-24: -5765
WARNING. Abnormal entry count found on day 2016-12-24: -5765
Processing turnstile ('R226A', 'R131', '03-06-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7582
WARNING. Abnormal entry count found on day 2016-12-03: -7582
WARNING. Abnormal entry count found on day 2016-12-10: -7893
WARNING. Abnormal entry count found on day 2016-12-10: -7893
WARNING. Abnormal entry count found on day 2016-12-17: -7035
WARNING. Abnormal entry count found on day 2016-12-17: -7035
WARNING. Abnormal entry count found on day 2016-12-24: -3392
WARNING. Abnormal entry count found on day 2016-12-24: -3392
Processing turnstile ('N217', 'R112', '00-03-01', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -3668
WARNING. Abnormal entry count found on day 2016-12-03: -3668
WARNING. Abnormal entry count found on day 2016-12-10: -2293
WARNING. Abnormal entry count found on day 2016-12-10: -2293
WARNING. Abnormal entry count found on day 2016-12-17: -2271
WARNING. Abnormal entry count found on day 2016-12-17: -2271
WARNING. Abnormal entry count found on day 2016-12-24: -1774
WARNING. Abnormal entry count found on day 2016-12-24: -1774
Processing turnstile ('N510', 'R163', '02-00-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6773
WARNING. Abnormal entry count found on day 2016-12-03: -6773
WARNING. Abnormal entry count found on day 2016-12-10: -6661
WARNING. Abnormal entry count found on day 2016-12-10: -6661
WARNING. Abnormal entry count found on day 2016-12-17: -5981
WARNING. Abnormal entry count found on day 2016-12-17: -5981
WARNING. Abnormal entry count found on day 2016-12-24: -3485
WARNING. Abnormal entry count found on day 2016-12-24: -3485
Processing turnstile ('B015', 'R098', '01-00-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3922
WARNING. Abnormal entry count found on day 2016-12-03: -3922
WARNING. Abnormal entry count found on day 2016-12-10: -3942
WARNING. Abnormal entry count found on day 2016-12-10: -3942
WARNING. Abnormal entry count found on day 2016-12-17: -3520
WARNING. Abnormal entry count found on day 2016-12-17: -3520
WARNING. Abnormal entry count found on day 2016-12-24: -2155
WARNING. Abnormal entry count found on day 2016-12-24: -2155
Processing turnstile ('R610', 'R057', '00-03-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -3107
WARNING. Abnormal entry count found on day 2016-12-03: -3107
WARNING. Abnormal entry count found on day 2016-12-10: -3486
WARNING. Abnormal entry count found on day 2016-12-10: -3486
WARNING. Abnormal entry count found on day 2016-12-17: -3129
WARNING. Abnormal entry count found on day 2016-12-17: -3129
WARNING. Abnormal entry count found on day 2016-12-24: -2456
WARNING. Abnormal entry count found on day 2016-12-24: -2456
Processing turnstile ('N305A', 'R016', '00-03-03', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -7753
WARNING. Abnormal entry count found on day 2016-12-03: -7753
WARNING. Abnormal entry count found on day 2016-12-10: -7673
WARNING. Abnormal entry count found on day 2016-12-10: -7673
WARNING. Abnormal entry count found on day 2016-12-17: -6793
WARNING. Abnormal entry count found on day 2016-12-17: -6793
WARNING. Abnormal entry count found on day 2016-12-24: -4906
WARNING. Abnormal entry count found on day 2016-12-24: -4906
Processing turnstile ('N339', 'R114', '01-05-01', 'PARSONS BLVD')
Processing turnstile ('R310', 'R053', '01-05-00', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-24: -13
WARNING. Abnormal entry count found on day 2016-12-24: -13
Processing turnstile ('R550', 'R072', '00-03-07', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -3809
WARNING. Abnormal entry count found on day 2016-12-03: -3809
WARNING. Abnormal entry count found on day 2016-12-10: -3362
WARNING. Abnormal entry count found on day 2016-12-10: -3362
WARNING. Abnormal entry count found on day 2016-12-17: -2850
WARNING. Abnormal entry count found on day 2016-12-17: -2850
WARNING. Abnormal entry count found on day 2016-12-24: -2088
WARNING. Abnormal entry count found on day 2016-12-24: -2088
Processing turnstile ('R194', 'R040', '00-00-00', '231 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16046
WARNING. Abnormal entry count found on day 2016-12-03: -16046
WARNING. Abnormal entry count found on day 2016-12-10: -15516
WARNING. Abnormal entry count found on day 2016-12-10: -15516
WARNING. Abnormal entry count found on day 2016-12-17: -15520
WARNING. Abnormal entry count found on day 2016-12-17: -15520
WARNING. Abnormal entry count found on day 2016-12-24: -12320
WARNING. Abnormal entry count found on day 2016-12-24: -12320
Processing turnstile ('H028', 'R266', '00-00-02', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9611
WARNING. Abnormal entry count found on day 2016-12-03: -9611
WARNING. Abnormal entry count found on day 2016-12-10: -9470
WARNING. Abnormal entry count found on day 2016-12-10: -9470
WARNING. Abnormal entry count found on day 2016-12-17: -8893
WARNING. Abnormal entry count found on day 2016-12-17: -8893
WARNING. Abnormal entry count found on day 2016-12-24: -6578
WARNING. Abnormal entry count found on day 2016-12-24: -6578
Processing turnstile ('R247', 'R178', '01-00-02', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5751
WARNING. Abnormal entry count found on day 2016-12-03: -5751
WARNING. Abnormal entry count found on day 2016-12-10: -5700
WARNING. Abnormal entry count found on day 2016-12-10: -5700
WARNING. Abnormal entry count found on day 2016-12-17: -5251
WARNING. Abnormal entry count found on day 2016-12-17: -5251
WARNING. Abnormal entry count found on day 2016-12-24: -3760
WARNING. Abnormal entry count found on day 2016-12-24: -3760
Processing turnstile ('N500', 'R020', '00-00-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -20711
WARNING. Abnormal entry count found on day 2016-12-03: -20711
WARNING. Abnormal entry count found on day 2016-12-10: -20439
WARNING. Abnormal entry count found on day 2016-12-10: -20439
WARNING. Abnormal entry count found on day 2016-12-17: -21442
WARNING. Abnormal entry count found on day 2016-12-17: -21442
WARNING. Abnormal entry count found on day 2016-12-24: -21304
WARNING. Abnormal entry count found on day 2016-12-24: -21304
Processing turnstile ('N072', 'R012', '05-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -9961
WARNING. Abnormal entry count found on day 2016-12-03: -9961
WARNING. Abnormal entry count found on day 2016-12-10: -10288
WARNING. Abnormal entry count found on day 2016-12-10: -10288
WARNING. Abnormal entry count found on day 2016-12-17: -9275
WARNING. Abnormal entry count found on day 2016-12-17: -9275
WARNING. Abnormal entry count found on day 2016-12-24: -8687
WARNING. Abnormal entry count found on day 2016-12-24: -8687
Processing turnstile ('R151', 'R033', '00-00-06', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13857
WARNING. Abnormal entry count found on day 2016-12-03: -13857
WARNING. Abnormal entry count found on day 2016-12-10: -12377
WARNING. Abnormal entry count found on day 2016-12-10: -12377
WARNING. Abnormal entry count found on day 2016-12-17: -18526
WARNING. Abnormal entry count found on day 2016-12-17: -18526
WARNING. Abnormal entry count found on day 2016-12-24: -16526
WARNING. Abnormal entry count found on day 2016-12-24: -16526
Processing turnstile ('N408A', 'R256', '00-06-00', 'NASSAU ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7090
WARNING. Abnormal entry count found on day 2016-12-03: -7090
WARNING. Abnormal entry count found on day 2016-12-10: -7114
WARNING. Abnormal entry count found on day 2016-12-10: -7114
WARNING. Abnormal entry count found on day 2016-12-17: -7319
WARNING. Abnormal entry count found on day 2016-12-17: -7319
WARNING. Abnormal entry count found on day 2016-12-24: -4272
WARNING. Abnormal entry count found on day 2016-12-24: -4272
Processing turnstile ('N601', 'R319', '00-05-00', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R512', 'R092', '00-00-01', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -1234
WARNING. Abnormal entry count found on day 2016-12-03: -1234
WARNING. Abnormal entry count found on day 2016-12-10: -1317
WARNING. Abnormal entry count found on day 2016-12-10: -1317
WARNING. Abnormal entry count found on day 2016-12-17: -2741
WARNING. Abnormal entry count found on day 2016-12-17: -2741
WARNING. Abnormal entry count found on day 2016-12-24: -850
WARNING. Abnormal entry count found on day 2016-12-24: -850
Processing turnstile ('R160', 'R164', '02-03-01', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -17394
WARNING. Abnormal entry count found on day 2016-12-03: -17394
WARNING. Abnormal entry count found on day 2016-12-10: -17868
WARNING. Abnormal entry count found on day 2016-12-10: -17868
WARNING. Abnormal entry count found on day 2016-12-17: -8790
WARNING. Abnormal entry count found on day 2016-12-17: -8790
WARNING. Abnormal entry count found on day 2016-12-24: -9849
WARNING. Abnormal entry count found on day 2016-12-24: -9849
Processing turnstile ('R334', 'R367', '00-05-00', '233 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-03: -11
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-17: -12
WARNING. Abnormal entry count found on day 2016-12-17: -12
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('B015', 'R098', '01-03-00', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5087
WARNING. Abnormal entry count found on day 2016-12-03: -5087
WARNING. Abnormal entry count found on day 2016-12-10: -4841
WARNING. Abnormal entry count found on day 2016-12-10: -4841
WARNING. Abnormal entry count found on day 2016-12-17: -4652
WARNING. Abnormal entry count found on day 2016-12-17: -4652
WARNING. Abnormal entry count found on day 2016-12-24: -3326
WARNING. Abnormal entry count found on day 2016-12-24: -3326
Processing turnstile ('N329', 'R201', '00-03-02', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -9460
WARNING. Abnormal entry count found on day 2016-12-03: -9460
WARNING. Abnormal entry count found on day 2016-12-10: -13004
WARNING. Abnormal entry count found on day 2016-12-10: -13004
WARNING. Abnormal entry count found on day 2016-12-17: -17443
WARNING. Abnormal entry count found on day 2016-12-17: -17443
WARNING. Abnormal entry count found on day 2016-12-24: -11248
WARNING. Abnormal entry count found on day 2016-12-24: -11248
Processing turnstile ('N529', 'R257', '00-00-01', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -13106
WARNING. Abnormal entry count found on day 2016-12-03: -13106
WARNING. Abnormal entry count found on day 2016-12-10: -13056
WARNING. Abnormal entry count found on day 2016-12-10: -13056
WARNING. Abnormal entry count found on day 2016-12-17: -13255
WARNING. Abnormal entry count found on day 2016-12-17: -13255
WARNING. Abnormal entry count found on day 2016-12-24: -10128
WARNING. Abnormal entry count found on day 2016-12-24: -10128
Processing turnstile ('R306', 'R207', '00-00-02', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10958
WARNING. Abnormal entry count found on day 2016-12-03: -10958
WARNING. Abnormal entry count found on day 2016-12-10: -10725
WARNING. Abnormal entry count found on day 2016-12-10: -10725
WARNING. Abnormal entry count found on day 2016-12-17: -10104
WARNING. Abnormal entry count found on day 2016-12-17: -10104
WARNING. Abnormal entry count found on day 2016-12-24: -7670
WARNING. Abnormal entry count found on day 2016-12-24: -7670
Processing turnstile ('R534', 'R055', '01-03-03', 'FLUSHING-MAIN')
WARNING. Abnormal entry count found on day 2016-12-03: -17453
WARNING. Abnormal entry count found on day 2016-12-03: -17453
WARNING. Abnormal entry count found on day 2016-12-10: -17070
WARNING. Abnormal entry count found on day 2016-12-10: -17070
WARNING. Abnormal entry count found on day 2016-12-17: -17520
WARNING. Abnormal entry count found on day 2016-12-17: -17520
WARNING. Abnormal entry count found on day 2016-12-24: -14054
WARNING. Abnormal entry count found on day 2016-12-24: -14054
Processing turnstile ('R519', 'R223', '00-00-02', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3578
WARNING. Abnormal entry count found on day 2016-12-03: -3578
WARNING. Abnormal entry count found on day 2016-12-10: -2949
WARNING. Abnormal entry count found on day 2016-12-10: -2949
WARNING. Abnormal entry count found on day 2016-12-17: -3193
WARNING. Abnormal entry count found on day 2016-12-17: -3193
WARNING. Abnormal entry count found on day 2016-12-24: -2873
WARNING. Abnormal entry count found on day 2016-12-24: -2873
Processing turnstile ('R227', 'R131', '00-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14648
WARNING. Abnormal entry count found on day 2016-12-03: -14648
WARNING. Abnormal entry count found on day 2016-12-10: -12970
WARNING. Abnormal entry count found on day 2016-12-10: -12970
WARNING. Abnormal entry count found on day 2016-12-17: -10034
WARNING. Abnormal entry count found on day 2016-12-17: -10034
WARNING. Abnormal entry count found on day 2016-12-24: -6115
WARNING. Abnormal entry count found on day 2016-12-24: -6115
Processing turnstile ('R116', 'R030', '00-06-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7598
WARNING. Abnormal entry count found on day 2016-12-03: -7598
WARNING. Abnormal entry count found on day 2016-12-10: -7187
WARNING. Abnormal entry count found on day 2016-12-10: -7187
WARNING. Abnormal entry count found on day 2016-12-17: -5576
WARNING. Abnormal entry count found on day 2016-12-17: -5576
WARNING. Abnormal entry count found on day 2016-12-24: -3017
WARNING. Abnormal entry count found on day 2016-12-24: -3017
Processing turnstile ('R142', 'R293', '01-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -12582
WARNING. Abnormal entry count found on day 2016-12-03: -12582
WARNING. Abnormal entry count found on day 2016-12-10: -12787
WARNING. Abnormal entry count found on day 2016-12-10: -12787
WARNING. Abnormal entry count found on day 2016-12-17: -11989
WARNING. Abnormal entry count found on day 2016-12-17: -11989
WARNING. Abnormal entry count found on day 2016-12-24: -9277
WARNING. Abnormal entry count found on day 2016-12-24: -9277
Processing turnstile ('R161A', 'R452', '01-06-02', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17410
WARNING. Abnormal entry count found on day 2016-12-03: -17410
WARNING. Abnormal entry count found on day 2016-12-10: -17251
WARNING. Abnormal entry count found on day 2016-12-10: -17251
WARNING. Abnormal entry count found on day 2016-12-17: -14887
WARNING. Abnormal entry count found on day 2016-12-17: -14887
WARNING. Abnormal entry count found on day 2016-12-24: -11038
WARNING. Abnormal entry count found on day 2016-12-24: -11038
Processing turnstile ('R602', 'R108', '00-03-00', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -6918
WARNING. Abnormal entry count found on day 2016-12-03: -6918
WARNING. Abnormal entry count found on day 2016-12-10: -6783
WARNING. Abnormal entry count found on day 2016-12-10: -6783
WARNING. Abnormal entry count found on day 2016-12-17: -6097
WARNING. Abnormal entry count found on day 2016-12-17: -6097
WARNING. Abnormal entry count found on day 2016-12-24: -3959
WARNING. Abnormal entry count found on day 2016-12-24: -3959
Processing turnstile ('R529', 'R208', '00-00-03', '103 ST-CORONA')
WARNING. Abnormal entry count found on day 2016-12-03: -14213
WARNING. Abnormal entry count found on day 2016-12-03: -14213
WARNING. Abnormal entry count found on day 2016-12-10: -13974
WARNING. Abnormal entry count found on day 2016-12-10: -13974
WARNING. Abnormal entry count found on day 2016-12-17: -14084
WARNING. Abnormal entry count found on day 2016-12-17: -14084
WARNING. Abnormal entry count found on day 2016-12-24: -11869
WARNING. Abnormal entry count found on day 2016-12-24: -11869
Processing turnstile ('A034', 'R170', '03-06-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -15008
WARNING. Abnormal entry count found on day 2016-12-03: -15008
WARNING. Abnormal entry count found on day 2016-12-10: -14612
WARNING. Abnormal entry count found on day 2016-12-10: -14612
WARNING. Abnormal entry count found on day 2016-12-17: -16831
WARNING. Abnormal entry count found on day 2016-12-17: -16831
WARNING. Abnormal entry count found on day 2016-12-24: -9404
WARNING. Abnormal entry count found on day 2016-12-24: -9404
Processing turnstile ('PTH02', 'R544', '00-04-04', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -767
WARNING. Abnormal entry count found on day 2016-12-03: -767
WARNING. Abnormal entry count found on day 2016-12-10: -1000
WARNING. Abnormal entry count found on day 2016-12-10: -1000
WARNING. Abnormal entry count found on day 2016-12-17: -1094
WARNING. Abnormal entry count found on day 2016-12-17: -1094
WARNING. Abnormal entry count found on day 2016-12-24: -661
WARNING. Abnormal entry count found on day 2016-12-24: -661
Processing turnstile ('R148', 'R033', '01-03-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5503
WARNING. Abnormal entry count found on day 2016-12-03: -5503
WARNING. Abnormal entry count found on day 2016-12-10: -5552
WARNING. Abnormal entry count found on day 2016-12-10: -5552
WARNING. Abnormal entry count found on day 2016-12-17: -5951
WARNING. Abnormal entry count found on day 2016-12-17: -5951
WARNING. Abnormal entry count found on day 2016-12-24: -6098
WARNING. Abnormal entry count found on day 2016-12-24: -6098
Processing turnstile ('N182', 'R414', '00-00-02', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -2567
WARNING. Abnormal entry count found on day 2016-12-03: -2567
WARNING. Abnormal entry count found on day 2016-12-10: -2370
WARNING. Abnormal entry count found on day 2016-12-10: -2370
WARNING. Abnormal entry count found on day 2016-12-17: -2592
WARNING. Abnormal entry count found on day 2016-12-17: -2592
WARNING. Abnormal entry count found on day 2016-12-24: -2738
WARNING. Abnormal entry count found on day 2016-12-24: -2738
Processing turnstile ('A046', 'R463', '00-06-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15451
WARNING. Abnormal entry count found on day 2016-12-03: -15451
WARNING. Abnormal entry count found on day 2016-12-10: -14346
WARNING. Abnormal entry count found on day 2016-12-10: -14346
WARNING. Abnormal entry count found on day 2016-12-17: -14501
WARNING. Abnormal entry count found on day 2016-12-17: -14501
WARNING. Abnormal entry count found on day 2016-12-24: -15634
WARNING. Abnormal entry count found on day 2016-12-24: -15634
Processing turnstile ('R179', 'R193', '01-00-00', '157 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7384
WARNING. Abnormal entry count found on day 2016-12-03: -7384
WARNING. Abnormal entry count found on day 2016-12-10: -7192
WARNING. Abnormal entry count found on day 2016-12-10: -7192
WARNING. Abnormal entry count found on day 2016-12-17: -7264
WARNING. Abnormal entry count found on day 2016-12-17: -7264
WARNING. Abnormal entry count found on day 2016-12-24: -6074
WARNING. Abnormal entry count found on day 2016-12-24: -6074
Processing turnstile ('R610', 'R057', '00-06-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -1088
WARNING. Abnormal entry count found on day 2016-12-03: -1088
WARNING. Abnormal entry count found on day 2016-12-10: -992
WARNING. Abnormal entry count found on day 2016-12-10: -992
WARNING. Abnormal entry count found on day 2016-12-17: -821
WARNING. Abnormal entry count found on day 2016-12-17: -821
WARNING. Abnormal entry count found on day 2016-12-24: -422
WARNING. Abnormal entry count found on day 2016-12-24: -422
Processing turnstile ('B034', 'R264', '01-06-01', 'OCEAN PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -4831
WARNING. Abnormal entry count found on day 2016-12-03: -4831
WARNING. Abnormal entry count found on day 2016-12-10: -4508
WARNING. Abnormal entry count found on day 2016-12-10: -4508
WARNING. Abnormal entry count found on day 2016-12-17: -4337
WARNING. Abnormal entry count found on day 2016-12-17: -4337
WARNING. Abnormal entry count found on day 2016-12-24: -2795
WARNING. Abnormal entry count found on day 2016-12-24: -2795
Processing turnstile ('R331', 'R364', '00-00-01', 'GUN HILL RD')
WARNING. Abnormal entry count found on day 2016-12-03: -11576
WARNING. Abnormal entry count found on day 2016-12-03: -11576
WARNING. Abnormal entry count found on day 2016-12-10: -11243
WARNING. Abnormal entry count found on day 2016-12-10: -11243
WARNING. Abnormal entry count found on day 2016-12-17: -11450
WARNING. Abnormal entry count found on day 2016-12-17: -11450
WARNING. Abnormal entry count found on day 2016-12-24: -8206
WARNING. Abnormal entry count found on day 2016-12-24: -8206
Processing turnstile ('R610', 'R057', '00-03-03', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -11001
WARNING. Abnormal entry count found on day 2016-12-03: -11001
WARNING. Abnormal entry count found on day 2016-12-10: -11707
WARNING. Abnormal entry count found on day 2016-12-10: -11707
WARNING. Abnormal entry count found on day 2016-12-17: -11774
WARNING. Abnormal entry count found on day 2016-12-17: -11774
WARNING. Abnormal entry count found on day 2016-12-24: -8112
WARNING. Abnormal entry count found on day 2016-12-24: -8112
Processing turnstile ('N323', 'R018', '01-00-01', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -16106
WARNING. Abnormal entry count found on day 2016-12-03: -16106
WARNING. Abnormal entry count found on day 2016-12-10: -15469
WARNING. Abnormal entry count found on day 2016-12-10: -15469
WARNING. Abnormal entry count found on day 2016-12-17: -15600
WARNING. Abnormal entry count found on day 2016-12-17: -15600
WARNING. Abnormal entry count found on day 2016-12-24: -13906
WARNING. Abnormal entry count found on day 2016-12-24: -13906
Processing turnstile ('R518', 'R261', '00-00-02', '40 ST LOWERY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8083
WARNING. Abnormal entry count found on day 2016-12-03: -8083
WARNING. Abnormal entry count found on day 2016-12-10: -6965
WARNING. Abnormal entry count found on day 2016-12-10: -6965
WARNING. Abnormal entry count found on day 2016-12-17: -6867
WARNING. Abnormal entry count found on day 2016-12-17: -6867
WARNING. Abnormal entry count found on day 2016-12-24: -4415
WARNING. Abnormal entry count found on day 2016-12-24: -4415
Processing turnstile ('N103', 'R127', '00-03-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -38
WARNING. Abnormal entry count found on day 2016-12-03: -38
WARNING. Abnormal entry count found on day 2016-12-10: -35
WARNING. Abnormal entry count found on day 2016-12-10: -35
WARNING. Abnormal entry count found on day 2016-12-17: -34
WARNING. Abnormal entry count found on day 2016-12-17: -34
WARNING. Abnormal entry count found on day 2016-12-24: -18
WARNING. Abnormal entry count found on day 2016-12-24: -18
Processing turnstile ('N001', 'R173', '01-06-03', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4606
WARNING. Abnormal entry count found on day 2016-12-03: -4606
WARNING. Abnormal entry count found on day 2016-12-10: -4890
WARNING. Abnormal entry count found on day 2016-12-10: -4890
WARNING. Abnormal entry count found on day 2016-12-17: -4240
WARNING. Abnormal entry count found on day 2016-12-17: -4240
WARNING. Abnormal entry count found on day 2016-12-24: -2869
WARNING. Abnormal entry count found on day 2016-12-24: -2869
Processing turnstile ('R526', 'R096', '00-03-03', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -13815
WARNING. Abnormal entry count found on day 2016-12-03: -13815
WARNING. Abnormal entry count found on day 2016-12-10: -11396
WARNING. Abnormal entry count found on day 2016-12-10: -11396
WARNING. Abnormal entry count found on day 2016-12-17: -11437
WARNING. Abnormal entry count found on day 2016-12-17: -11437
WARNING. Abnormal entry count found on day 2016-12-24: -9539
WARNING. Abnormal entry count found on day 2016-12-24: -9539
Processing turnstile ('R103', 'R304', '00-06-00', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -946
WARNING. Abnormal entry count found on day 2016-12-03: -946
WARNING. Abnormal entry count found on day 2016-12-10: -1066
WARNING. Abnormal entry count found on day 2016-12-10: -1066
WARNING. Abnormal entry count found on day 2016-12-17: -1100
WARNING. Abnormal entry count found on day 2016-12-17: -1100
WARNING. Abnormal entry count found on day 2016-12-24: -1460
WARNING. Abnormal entry count found on day 2016-12-24: -1460
Processing turnstile ('R633', 'R068', '00-00-00', 'VAN SICLEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9911
WARNING. Abnormal entry count found on day 2016-12-03: -9911
WARNING. Abnormal entry count found on day 2016-12-10: -9225
WARNING. Abnormal entry count found on day 2016-12-10: -9225
WARNING. Abnormal entry count found on day 2016-12-17: -8912
WARNING. Abnormal entry count found on day 2016-12-17: -8912
WARNING. Abnormal entry count found on day 2016-12-24: -7187
WARNING. Abnormal entry count found on day 2016-12-24: -7187
Processing turnstile ('H027', 'R137', '01-06-01', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -6277
WARNING. Abnormal entry count found on day 2016-12-03: -6277
WARNING. Abnormal entry count found on day 2016-12-10: -7382
WARNING. Abnormal entry count found on day 2016-12-10: -7382
WARNING. Abnormal entry count found on day 2016-12-17: -6151
WARNING. Abnormal entry count found on day 2016-12-17: -6151
WARNING. Abnormal entry count found on day 2016-12-24: -4193
WARNING. Abnormal entry count found on day 2016-12-24: -4193
Processing turnstile ('N507', 'R023', '00-00-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -326
WARNING. Abnormal entry count found on day 2016-12-03: -326
WARNING. Abnormal entry count found on day 2016-12-10: -316
WARNING. Abnormal entry count found on day 2016-12-10: -316
WARNING. Abnormal entry count found on day 2016-12-17: -421
WARNING. Abnormal entry count found on day 2016-12-17: -421
WARNING. Abnormal entry count found on day 2016-12-24: -331
WARNING. Abnormal entry count found on day 2016-12-24: -331
Processing turnstile ('R519', 'R223', '00-03-03', '46 ST BLISS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9321
WARNING. Abnormal entry count found on day 2016-12-03: -9321
WARNING. Abnormal entry count found on day 2016-12-10: -9925
WARNING. Abnormal entry count found on day 2016-12-10: -9925
WARNING. Abnormal entry count found on day 2016-12-17: -9466
WARNING. Abnormal entry count found on day 2016-12-17: -9466
WARNING. Abnormal entry count found on day 2016-12-24: -7786
WARNING. Abnormal entry count found on day 2016-12-24: -7786
Processing turnstile ('J031', 'R006', '00-00-00', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -4671
WARNING. Abnormal entry count found on day 2016-12-03: -4671
WARNING. Abnormal entry count found on day 2016-12-10: -4575
WARNING. Abnormal entry count found on day 2016-12-10: -4575
WARNING. Abnormal entry count found on day 2016-12-17: -4539
WARNING. Abnormal entry count found on day 2016-12-17: -4539
WARNING. Abnormal entry count found on day 2016-12-24: -3630
WARNING. Abnormal entry count found on day 2016-12-24: -3630
Processing turnstile ('R639', 'R109', '00-05-02', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
Processing turnstile ('N544', 'R289', '01-05-01', 'FT HAMILTON PKY')
Processing turnstile ('R178', 'R273', '00-00-02', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12707
WARNING. Abnormal entry count found on day 2016-12-03: -12707
WARNING. Abnormal entry count found on day 2016-12-10: -12437
WARNING. Abnormal entry count found on day 2016-12-10: -12437
WARNING. Abnormal entry count found on day 2016-12-17: -12269
WARNING. Abnormal entry count found on day 2016-12-17: -12269
WARNING. Abnormal entry count found on day 2016-12-24: -9239
WARNING. Abnormal entry count found on day 2016-12-24: -9239
Processing turnstile ('R148', 'R033', '01-03-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3436
WARNING. Abnormal entry count found on day 2016-12-03: -3436
WARNING. Abnormal entry count found on day 2016-12-10: -3441
WARNING. Abnormal entry count found on day 2016-12-10: -3441
WARNING. Abnormal entry count found on day 2016-12-17: -3675
WARNING. Abnormal entry count found on day 2016-12-17: -3675
WARNING. Abnormal entry count found on day 2016-12-24: -4160
WARNING. Abnormal entry count found on day 2016-12-24: -4160
Processing turnstile ('J023', 'R436', '00-00-02', 'NORWOOD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4669
WARNING. Abnormal entry count found on day 2016-12-03: -4669
WARNING. Abnormal entry count found on day 2016-12-10: -4484
WARNING. Abnormal entry count found on day 2016-12-10: -4484
WARNING. Abnormal entry count found on day 2016-12-17: -4415
WARNING. Abnormal entry count found on day 2016-12-17: -4415
WARNING. Abnormal entry count found on day 2016-12-24: -3594
WARNING. Abnormal entry count found on day 2016-12-24: -3594
Processing turnstile ('A064', 'R311', '00-00-00', 'BOWERY')
WARNING. Abnormal entry count found on day 2016-12-03: -6470
WARNING. Abnormal entry count found on day 2016-12-03: -6470
WARNING. Abnormal entry count found on day 2016-12-10: -6515
WARNING. Abnormal entry count found on day 2016-12-10: -6515
WARNING. Abnormal entry count found on day 2016-12-17: -6274
WARNING. Abnormal entry count found on day 2016-12-17: -6274
WARNING. Abnormal entry count found on day 2016-12-24: -5419
WARNING. Abnormal entry count found on day 2016-12-24: -5419
Processing turnstile ('J024', 'R437', '00-00-00', 'CRESCENT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6767
WARNING. Abnormal entry count found on day 2016-12-03: -6767
WARNING. Abnormal entry count found on day 2016-12-10: -6669
WARNING. Abnormal entry count found on day 2016-12-10: -6669
WARNING. Abnormal entry count found on day 2016-12-17: -6593
WARNING. Abnormal entry count found on day 2016-12-17: -6593
WARNING. Abnormal entry count found on day 2016-12-24: -4699
WARNING. Abnormal entry count found on day 2016-12-24: -4699
Processing turnstile ('R159', 'R164', '01-00-01', '66 ST-LINCOLN')
WARNING. Abnormal entry count found on day 2016-12-03: -6852
WARNING. Abnormal entry count found on day 2016-12-03: -6852
WARNING. Abnormal entry count found on day 2016-12-10: -7510
WARNING. Abnormal entry count found on day 2016-12-10: -7510
WARNING. Abnormal entry count found on day 2016-12-17: -6401
WARNING. Abnormal entry count found on day 2016-12-17: -6401
WARNING. Abnormal entry count found on day 2016-12-24: -4670
WARNING. Abnormal entry count found on day 2016-12-24: -4670
Processing turnstile ('N023', 'R332', '01-00-00', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2549
WARNING. Abnormal entry count found on day 2016-12-03: -2549
WARNING. Abnormal entry count found on day 2016-12-10: -2501
WARNING. Abnormal entry count found on day 2016-12-10: -2501
WARNING. Abnormal entry count found on day 2016-12-17: -2299
WARNING. Abnormal entry count found on day 2016-12-17: -2299
WARNING. Abnormal entry count found on day 2016-12-24: -1325
WARNING. Abnormal entry count found on day 2016-12-24: -1325
Processing turnstile ('R148', 'R033', '01-06-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -25099
WARNING. Abnormal entry count found on day 2016-12-03: -25099
WARNING. Abnormal entry count found on day 2016-12-10: -13413
WARNING. Abnormal entry count found on day 2016-12-10: -13413
WARNING. Abnormal entry count found on day 2016-12-20: 50180310
WARNING. Abnormal entry count found on day 2016-12-17: -50195907
WARNING. Abnormal entry count found on day 2016-12-20: 50180310
WARNING. Abnormal entry count found on day 2016-12-17: -50195907
WARNING. Abnormal entry count found on day 2016-12-20: 50180310
WARNING. Abnormal entry count found on day 2016-12-24: -20153
WARNING. Abnormal entry count found on day 2016-12-24: -20153
Processing turnstile ('PTH07', 'R550', '00-00-08', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -8016
WARNING. Abnormal entry count found on day 2016-12-03: -8016
WARNING. Abnormal entry count found on day 2016-12-10: -7993
WARNING. Abnormal entry count found on day 2016-12-10: -7993
WARNING. Abnormal entry count found on day 2016-12-17: -7276
WARNING. Abnormal entry count found on day 2016-12-17: -7276
WARNING. Abnormal entry count found on day 2016-12-24: -5026
WARNING. Abnormal entry count found on day 2016-12-24: -5026
Processing turnstile ('R304', 'R206', '00-00-03', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10377
WARNING. Abnormal entry count found on day 2016-12-03: -10377
WARNING. Abnormal entry count found on day 2016-12-10: -10147
WARNING. Abnormal entry count found on day 2016-12-10: -10147
WARNING. Abnormal entry count found on day 2016-12-17: -10221
WARNING. Abnormal entry count found on day 2016-12-17: -10221
WARNING. Abnormal entry count found on day 2016-12-24: -7869
WARNING. Abnormal entry count found on day 2016-12-24: -7869
Processing turnstile ('B013', 'R196', '01-00-01', 'PROSPECT PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -12327
WARNING. Abnormal entry count found on day 2016-12-03: -12327
WARNING. Abnormal entry count found on day 2016-12-10: -12461
WARNING. Abnormal entry count found on day 2016-12-10: -12461
WARNING. Abnormal entry count found on day 2016-12-17: -12271
WARNING. Abnormal entry count found on day 2016-12-17: -12271
WARNING. Abnormal entry count found on day 2016-12-24: -9063
WARNING. Abnormal entry count found on day 2016-12-24: -9063
Processing turnstile ('PTH03', 'R552', '00-00-03', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -7246
WARNING. Abnormal entry count found on day 2016-12-03: -7246
WARNING. Abnormal entry count found on day 2016-12-10: -7302
WARNING. Abnormal entry count found on day 2016-12-10: -7302
WARNING. Abnormal entry count found on day 2016-12-17: -7990
WARNING. Abnormal entry count found on day 2016-12-17: -7990
WARNING. Abnormal entry count found on day 2016-12-24: -6742
WARNING. Abnormal entry count found on day 2016-12-24: -6742
Processing turnstile ('R417', 'R222', '00-00-01', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -20467
WARNING. Abnormal entry count found on day 2016-12-03: -20467
WARNING. Abnormal entry count found on day 2016-12-10: -19299
WARNING. Abnormal entry count found on day 2016-12-10: -19299
WARNING. Abnormal entry count found on day 2016-12-17: -18782
WARNING. Abnormal entry count found on day 2016-12-17: -18782
WARNING. Abnormal entry count found on day 2016-12-24: -14382
WARNING. Abnormal entry count found on day 2016-12-24: -14382
Processing turnstile ('N072', 'R012', '05-03-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -21720
WARNING. Abnormal entry count found on day 2016-12-03: -21720
WARNING. Abnormal entry count found on day 2016-12-10: -22316
WARNING. Abnormal entry count found on day 2016-12-10: -22316
WARNING. Abnormal entry count found on day 2016-12-17: -20676
WARNING. Abnormal entry count found on day 2016-12-17: -20676
WARNING. Abnormal entry count found on day 2016-12-24: -16648
WARNING. Abnormal entry count found on day 2016-12-24: -16648
Processing turnstile ('R304', 'R206', '00-00-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -1652
WARNING. Abnormal entry count found on day 2016-12-05: -1346
WARNING. Abnormal entry count found on day 2016-12-06: -2339
WARNING. Abnormal entry count found on day 2016-12-07: -2293
WARNING. Abnormal entry count found on day 2016-12-08: -2230
WARNING. Abnormal entry count found on day 2016-12-09: -2441
WARNING. Abnormal entry count found on day 2016-12-03: 12301
WARNING. Abnormal entry count found on day 2016-12-04: -1652
WARNING. Abnormal entry count found on day 2016-12-05: -1346
WARNING. Abnormal entry count found on day 2016-12-06: -2339
WARNING. Abnormal entry count found on day 2016-12-07: -2293
WARNING. Abnormal entry count found on day 2016-12-08: -2230
WARNING. Abnormal entry count found on day 2016-12-09: -2441
WARNING. Abnormal entry count found on day 2016-12-03: 12301
WARNING. Abnormal entry count found on day 2016-12-04: -1652
WARNING. Abnormal entry count found on day 2016-12-05: -1346
WARNING. Abnormal entry count found on day 2016-12-06: -2339
WARNING. Abnormal entry count found on day 2016-12-07: -2293
WARNING. Abnormal entry count found on day 2016-12-08: -2230
WARNING. Abnormal entry count found on day 2016-12-09: -2441
WARNING. Abnormal entry count found on day 2016-12-10: -2409
WARNING. Abnormal entry count found on day 2016-12-11: -1561
WARNING. Abnormal entry count found on day 2016-12-12: -1296
WARNING. Abnormal entry count found on day 2016-12-13: -2206
WARNING. Abnormal entry count found on day 2016-12-14: -2228
WARNING. Abnormal entry count found on day 2016-12-15: -2417
WARNING. Abnormal entry count found on day 2016-12-16: -2430
WARNING. Abnormal entry count found on day 2016-12-10: 12138
WARNING. Abnormal entry count found on day 2016-12-11: -1561
WARNING. Abnormal entry count found on day 2016-12-12: -1296
WARNING. Abnormal entry count found on day 2016-12-13: -2206
WARNING. Abnormal entry count found on day 2016-12-14: -2228
WARNING. Abnormal entry count found on day 2016-12-15: -2417
WARNING. Abnormal entry count found on day 2016-12-16: -2430
WARNING. Abnormal entry count found on day 2016-12-10: 12138
WARNING. Abnormal entry count found on day 2016-12-11: -1561
WARNING. Abnormal entry count found on day 2016-12-12: -1296
WARNING. Abnormal entry count found on day 2016-12-13: -2206
WARNING. Abnormal entry count found on day 2016-12-14: -2228
WARNING. Abnormal entry count found on day 2016-12-15: -2417
WARNING. Abnormal entry count found on day 2016-12-16: -2430
WARNING. Abnormal entry count found on day 2016-12-17: -2439
WARNING. Abnormal entry count found on day 2016-12-18: -1440
WARNING. Abnormal entry count found on day 2016-12-19: -1560
WARNING. Abnormal entry count found on day 2016-12-20: -2278
WARNING. Abnormal entry count found on day 2016-12-21: -1935
WARNING. Abnormal entry count found on day 2016-12-22: -2323
WARNING. Abnormal entry count found on day 2016-12-23: -2330
WARNING. Abnormal entry count found on day 2016-12-17: 11866
WARNING. Abnormal entry count found on day 2016-12-18: -1440
WARNING. Abnormal entry count found on day 2016-12-19: -1560
WARNING. Abnormal entry count found on day 2016-12-20: -2278
WARNING. Abnormal entry count found on day 2016-12-21: -1935
WARNING. Abnormal entry count found on day 2016-12-22: -2323
WARNING. Abnormal entry count found on day 2016-12-23: -2330
WARNING. Abnormal entry count found on day 2016-12-17: 11866
WARNING. Abnormal entry count found on day 2016-12-18: -1440
WARNING. Abnormal entry count found on day 2016-12-19: -1560
WARNING. Abnormal entry count found on day 2016-12-20: -2278
WARNING. Abnormal entry count found on day 2016-12-21: -1935
WARNING. Abnormal entry count found on day 2016-12-22: -2323
WARNING. Abnormal entry count found on day 2016-12-23: -2330
WARNING. Abnormal entry count found on day 2016-12-24: -2162
WARNING. Abnormal entry count found on day 2016-12-25: -1240
WARNING. Abnormal entry count found on day 2016-12-26: -860
WARNING. Abnormal entry count found on day 2016-12-27: -1106
WARNING. Abnormal entry count found on day 2016-12-28: -1852
WARNING. Abnormal entry count found on day 2016-12-29: -2033
WARNING. Abnormal entry count found on day 2016-12-30: -1952
WARNING. Abnormal entry count found on day 2016-12-25: -1240
WARNING. Abnormal entry count found on day 2016-12-26: -860
WARNING. Abnormal entry count found on day 2016-12-27: -1106
WARNING. Abnormal entry count found on day 2016-12-28: -1852
WARNING. Abnormal entry count found on day 2016-12-29: -2033
WARNING. Abnormal entry count found on day 2016-12-30: -1952
WARNING. Abnormal entry count found on day 2016-12-25: -1240
WARNING. Abnormal entry count found on day 2016-12-26: -860
WARNING. Abnormal entry count found on day 2016-12-27: -1106
WARNING. Abnormal entry count found on day 2016-12-28: -1852
WARNING. Abnormal entry count found on day 2016-12-29: -2033
WARNING. Abnormal entry count found on day 2016-12-30: -1952
Processing turnstile ('N108', 'R217', '00-00-01', 'HOYT-SCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -10667
WARNING. Abnormal entry count found on day 2016-12-03: -10667
WARNING. Abnormal entry count found on day 2016-12-10: -10418
WARNING. Abnormal entry count found on day 2016-12-10: -10418
WARNING. Abnormal entry count found on day 2016-12-17: -10028
WARNING. Abnormal entry count found on day 2016-12-17: -10028
WARNING. Abnormal entry count found on day 2016-12-24: -7325
WARNING. Abnormal entry count found on day 2016-12-24: -7325
Processing turnstile ('N556', 'R424', '00-00-02', 'AVENUE P')
WARNING. Abnormal entry count found on day 2016-12-03: -1222
WARNING. Abnormal entry count found on day 2016-12-03: -1222
WARNING. Abnormal entry count found on day 2016-12-10: -994
WARNING. Abnormal entry count found on day 2016-12-10: -994
WARNING. Abnormal entry count found on day 2016-12-18: -4421445
WARNING. Abnormal entry count found on day 2016-12-18: -887
WARNING. Abnormal entry count found on day 2016-12-18: -887
WARNING. Abnormal entry count found on day 2016-12-24: -853
WARNING. Abnormal entry count found on day 2016-12-24: -853
Processing turnstile ('N089', 'R139', '00-06-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3031
WARNING. Abnormal entry count found on day 2016-12-03: -3031
WARNING. Abnormal entry count found on day 2016-12-10: -2898
WARNING. Abnormal entry count found on day 2016-12-10: -2898
WARNING. Abnormal entry count found on day 2016-12-17: -2463
WARNING. Abnormal entry count found on day 2016-12-17: -2463
WARNING. Abnormal entry count found on day 2016-12-24: -1776
WARNING. Abnormal entry count found on day 2016-12-24: -1776
Processing turnstile ('C022', 'R212', '01-06-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7574
WARNING. Abnormal entry count found on day 2016-12-03: -7574
WARNING. Abnormal entry count found on day 2016-12-10: -7463
WARNING. Abnormal entry count found on day 2016-12-10: -7463
WARNING. Abnormal entry count found on day 2016-12-17: -7528
WARNING. Abnormal entry count found on day 2016-12-17: -7528
WARNING. Abnormal entry count found on day 2016-12-24: -5546
WARNING. Abnormal entry count found on day 2016-12-24: -5546
Processing turnstile ('PTH02', 'R544', '00-00-00', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -3726
WARNING. Abnormal entry count found on day 2016-12-03: -3726
WARNING. Abnormal entry count found on day 2016-12-10: -4240
WARNING. Abnormal entry count found on day 2016-12-10: -4240
WARNING. Abnormal entry count found on day 2016-12-17: -3921
WARNING. Abnormal entry count found on day 2016-12-17: -3921
WARNING. Abnormal entry count found on day 2016-12-24: -2689
WARNING. Abnormal entry count found on day 2016-12-24: -2689
Processing turnstile ('R203', 'R043', '00-00-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12957
WARNING. Abnormal entry count found on day 2016-12-03: -12957
WARNING. Abnormal entry count found on day 2016-12-10: -12496
WARNING. Abnormal entry count found on day 2016-12-10: -12496
WARNING. Abnormal entry count found on day 2016-12-17: -10989
WARNING. Abnormal entry count found on day 2016-12-17: -10989
WARNING. Abnormal entry count found on day 2016-12-24: -7520
WARNING. Abnormal entry count found on day 2016-12-24: -7520
Processing turnstile ('A030', 'R083', '01-06-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9285
WARNING. Abnormal entry count found on day 2016-12-03: -9285
WARNING. Abnormal entry count found on day 2016-12-10: -9475
WARNING. Abnormal entry count found on day 2016-12-10: -9475
WARNING. Abnormal entry count found on day 2016-12-17: -8034
WARNING. Abnormal entry count found on day 2016-12-17: -8034
WARNING. Abnormal entry count found on day 2016-12-24: -4254
WARNING. Abnormal entry count found on day 2016-12-24: -4254
Processing turnstile ('N530', 'R301', '00-00-01', 'YORK ST')
WARNING. Abnormal entry count found on day 2016-12-03: -21027
WARNING. Abnormal entry count found on day 2016-12-03: -21027
WARNING. Abnormal entry count found on day 2016-12-10: -20217
WARNING. Abnormal entry count found on day 2016-12-10: -20217
WARNING. Abnormal entry count found on day 2016-12-17: -17864
WARNING. Abnormal entry count found on day 2016-12-17: -17864
WARNING. Abnormal entry count found on day 2016-12-24: -13411
WARNING. Abnormal entry count found on day 2016-12-24: -13411
Processing turnstile ('N306', 'R017', '00-06-01', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -9548
WARNING. Abnormal entry count found on day 2016-12-03: -9548
WARNING. Abnormal entry count found on day 2016-12-10: -9863
WARNING. Abnormal entry count found on day 2016-12-10: -9863
WARNING. Abnormal entry count found on day 2016-12-17: -9220
WARNING. Abnormal entry count found on day 2016-12-17: -9220
WARNING. Abnormal entry count found on day 2016-12-24: -6378
WARNING. Abnormal entry count found on day 2016-12-24: -6378
Processing turnstile ('R525', 'R018', '02-00-00', '74 ST-BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -2677
WARNING. Abnormal entry count found on day 2016-12-03: -2677
WARNING. Abnormal entry count found on day 2016-12-10: -2671
WARNING. Abnormal entry count found on day 2016-12-10: -2671
WARNING. Abnormal entry count found on day 2016-12-17: -2893
WARNING. Abnormal entry count found on day 2016-12-17: -2893
WARNING. Abnormal entry count found on day 2016-12-24: -2651
WARNING. Abnormal entry count found on day 2016-12-24: -2651
Processing turnstile ('R422', 'R428', '00-05-00', 'BUHRE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('N184', 'R416', '00-05-01', 'BEACH 90 ST')
Processing turnstile ('R305', 'R206', '01-00-02', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -1647
WARNING. Abnormal entry count found on day 2016-12-05: -1117
WARNING. Abnormal entry count found on day 2016-12-06: -2209
WARNING. Abnormal entry count found on day 2016-12-07: -2265
WARNING. Abnormal entry count found on day 2016-12-08: -2078
WARNING. Abnormal entry count found on day 2016-12-09: -2363
WARNING. Abnormal entry count found on day 2016-12-03: 11679
WARNING. Abnormal entry count found on day 2016-12-04: -1647
WARNING. Abnormal entry count found on day 2016-12-05: -1117
WARNING. Abnormal entry count found on day 2016-12-06: -2209
WARNING. Abnormal entry count found on day 2016-12-07: -2265
WARNING. Abnormal entry count found on day 2016-12-08: -2078
WARNING. Abnormal entry count found on day 2016-12-09: -2363
WARNING. Abnormal entry count found on day 2016-12-03: 11679
WARNING. Abnormal entry count found on day 2016-12-04: -1647
WARNING. Abnormal entry count found on day 2016-12-05: -1117
WARNING. Abnormal entry count found on day 2016-12-06: -2209
WARNING. Abnormal entry count found on day 2016-12-07: -2265
WARNING. Abnormal entry count found on day 2016-12-08: -2078
WARNING. Abnormal entry count found on day 2016-12-09: -2363
WARNING. Abnormal entry count found on day 2016-12-10: -2272
WARNING. Abnormal entry count found on day 2016-12-11: -1261
WARNING. Abnormal entry count found on day 2016-12-12: -1208
WARNING. Abnormal entry count found on day 2016-12-13: -625
WARNING. Abnormal entry count found on day 2016-12-14: -1839
WARNING. Abnormal entry count found on day 2016-12-15: -2262
WARNING. Abnormal entry count found on day 2016-12-16: -2117
WARNING. Abnormal entry count found on day 2016-12-11: -1261
WARNING. Abnormal entry count found on day 2016-12-12: -1208
WARNING. Abnormal entry count found on day 2016-12-13: -625
WARNING. Abnormal entry count found on day 2016-12-14: -1839
WARNING. Abnormal entry count found on day 2016-12-15: -2262
WARNING. Abnormal entry count found on day 2016-12-16: -2117
WARNING. Abnormal entry count found on day 2016-12-11: -1261
WARNING. Abnormal entry count found on day 2016-12-12: -1208
WARNING. Abnormal entry count found on day 2016-12-13: -625
WARNING. Abnormal entry count found on day 2016-12-14: -1839
WARNING. Abnormal entry count found on day 2016-12-15: -2262
WARNING. Abnormal entry count found on day 2016-12-16: -2117
WARNING. Abnormal entry count found on day 2016-12-17: -2272
WARNING. Abnormal entry count found on day 2016-12-18: -816
WARNING. Abnormal entry count found on day 2016-12-19: -1274
WARNING. Abnormal entry count found on day 2016-12-20: -2267
WARNING. Abnormal entry count found on day 2016-12-21: -2282
WARNING. Abnormal entry count found on day 2016-12-22: -2313
WARNING. Abnormal entry count found on day 2016-12-23: -2285
WARNING. Abnormal entry count found on day 2016-12-17: 11237
WARNING. Abnormal entry count found on day 2016-12-18: -816
WARNING. Abnormal entry count found on day 2016-12-19: -1274
WARNING. Abnormal entry count found on day 2016-12-20: -2267
WARNING. Abnormal entry count found on day 2016-12-21: -2282
WARNING. Abnormal entry count found on day 2016-12-22: -2313
WARNING. Abnormal entry count found on day 2016-12-23: -2285
WARNING. Abnormal entry count found on day 2016-12-17: 11237
WARNING. Abnormal entry count found on day 2016-12-18: -816
WARNING. Abnormal entry count found on day 2016-12-19: -1274
WARNING. Abnormal entry count found on day 2016-12-20: -2267
WARNING. Abnormal entry count found on day 2016-12-21: -2282
WARNING. Abnormal entry count found on day 2016-12-22: -2313
WARNING. Abnormal entry count found on day 2016-12-23: -2285
WARNING. Abnormal entry count found on day 2016-12-24: -2414
WARNING. Abnormal entry count found on day 2016-12-25: -1421
WARNING. Abnormal entry count found on day 2016-12-26: -823
WARNING. Abnormal entry count found on day 2016-12-27: -1240
WARNING. Abnormal entry count found on day 2016-12-28: -1748
WARNING. Abnormal entry count found on day 2016-12-29: -1849
WARNING. Abnormal entry count found on day 2016-12-30: -1765
WARNING. Abnormal entry count found on day 2016-12-25: -1421
WARNING. Abnormal entry count found on day 2016-12-26: -823
WARNING. Abnormal entry count found on day 2016-12-27: -1240
WARNING. Abnormal entry count found on day 2016-12-28: -1748
WARNING. Abnormal entry count found on day 2016-12-29: -1849
WARNING. Abnormal entry count found on day 2016-12-30: -1765
WARNING. Abnormal entry count found on day 2016-12-25: -1421
WARNING. Abnormal entry count found on day 2016-12-26: -823
WARNING. Abnormal entry count found on day 2016-12-27: -1240
WARNING. Abnormal entry count found on day 2016-12-28: -1748
WARNING. Abnormal entry count found on day 2016-12-29: -1849
WARNING. Abnormal entry count found on day 2016-12-30: -1765
Processing turnstile ('N083', 'R138', '01-03-02', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -14357
WARNING. Abnormal entry count found on day 2016-12-03: -14357
WARNING. Abnormal entry count found on day 2016-12-10: -14901
WARNING. Abnormal entry count found on day 2016-12-10: -14901
WARNING. Abnormal entry count found on day 2016-12-17: -12391
WARNING. Abnormal entry count found on day 2016-12-17: -12391
WARNING. Abnormal entry count found on day 2016-12-24: -8970
WARNING. Abnormal entry count found on day 2016-12-24: -8970
Processing turnstile ('R336', 'R145', '00-03-01', 'WAKEFIELD/241')
WARNING. Abnormal entry count found on day 2016-12-03: -7574
WARNING. Abnormal entry count found on day 2016-12-03: -7574
WARNING. Abnormal entry count found on day 2016-12-10: -7103
WARNING. Abnormal entry count found on day 2016-12-10: -7103
WARNING. Abnormal entry count found on day 2016-12-17: -6908
WARNING. Abnormal entry count found on day 2016-12-17: -6908
WARNING. Abnormal entry count found on day 2016-12-24: -5725
WARNING. Abnormal entry count found on day 2016-12-24: -5725
Processing turnstile ('A049', 'R088', '02-00-02', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3417
WARNING. Abnormal entry count found on day 2016-12-03: -3417
WARNING. Abnormal entry count found on day 2016-12-10: -3314
WARNING. Abnormal entry count found on day 2016-12-10: -3314
Processing turnstile ('PTH16', 'R550', '01-00-02', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -1655
WARNING. Abnormal entry count found on day 2016-12-03: -1655
WARNING. Abnormal entry count found on day 2016-12-10: -1598
WARNING. Abnormal entry count found on day 2016-12-10: -1598
WARNING. Abnormal entry count found on day 2016-12-17: -1536
WARNING. Abnormal entry count found on day 2016-12-17: -1536
WARNING. Abnormal entry count found on day 2016-12-24: -815
WARNING. Abnormal entry count found on day 2016-12-24: -815
Processing turnstile ('R250', 'R179', '00-00-0A', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -26172
WARNING. Abnormal entry count found on day 2016-12-03: -26172
WARNING. Abnormal entry count found on day 2016-12-10: -26693
WARNING. Abnormal entry count found on day 2016-12-10: -26693
WARNING. Abnormal entry count found on day 2016-12-17: -25941
WARNING. Abnormal entry count found on day 2016-12-17: -25941
WARNING. Abnormal entry count found on day 2016-12-24: -21299
WARNING. Abnormal entry count found on day 2016-12-24: -21299
Processing turnstile ('N548', 'R420', '00-00-01', 'DITMAS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4359
WARNING. Abnormal entry count found on day 2016-12-03: -4359
WARNING. Abnormal entry count found on day 2016-12-10: -3902
WARNING. Abnormal entry count found on day 2016-12-10: -3902
WARNING. Abnormal entry count found on day 2016-12-17: -4269
WARNING. Abnormal entry count found on day 2016-12-17: -4269
WARNING. Abnormal entry count found on day 2016-12-24: -3277
WARNING. Abnormal entry count found on day 2016-12-24: -3277
Processing turnstile ('PTH16', 'R550', '01-02-00', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -877
WARNING. Abnormal entry count found on day 2016-12-03: -877
WARNING. Abnormal entry count found on day 2016-12-10: -994
WARNING. Abnormal entry count found on day 2016-12-10: -994
WARNING. Abnormal entry count found on day 2016-12-17: -864
WARNING. Abnormal entry count found on day 2016-12-17: -864
WARNING. Abnormal entry count found on day 2016-12-24: -282
WARNING. Abnormal entry count found on day 2016-12-24: -282
Processing turnstile ('R550', 'R072', '00-03-02', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -5556
WARNING. Abnormal entry count found on day 2016-12-03: -5556
WARNING. Abnormal entry count found on day 2016-12-10: -5449
WARNING. Abnormal entry count found on day 2016-12-10: -5449
WARNING. Abnormal entry count found on day 2016-12-17: -4695
WARNING. Abnormal entry count found on day 2016-12-17: -4695
WARNING. Abnormal entry count found on day 2016-12-24: -3660
WARNING. Abnormal entry count found on day 2016-12-24: -3660
Processing turnstile ('N063', 'R011', '02-06-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -10160
WARNING. Abnormal entry count found on day 2016-12-03: -10160
WARNING. Abnormal entry count found on day 2016-12-10: -9528
WARNING. Abnormal entry count found on day 2016-12-10: -9528
WARNING. Abnormal entry count found on day 2016-12-17: -8705
WARNING. Abnormal entry count found on day 2016-12-17: -8705
WARNING. Abnormal entry count found on day 2016-12-24: -6918
WARNING. Abnormal entry count found on day 2016-12-24: -6918
Processing turnstile ('N091', 'R029', '02-00-04', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6664
WARNING. Abnormal entry count found on day 2016-12-03: -6664
WARNING. Abnormal entry count found on day 2016-12-10: -6263
WARNING. Abnormal entry count found on day 2016-12-10: -6263
WARNING. Abnormal entry count found on day 2016-12-17: -5146
WARNING. Abnormal entry count found on day 2016-12-17: -5146
WARNING. Abnormal entry count found on day 2016-12-24: -3065
WARNING. Abnormal entry count found on day 2016-12-24: -3065
Processing turnstile ('N067', 'R012', '00-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -3853
WARNING. Abnormal entry count found on day 2016-12-03: -3853
WARNING. Abnormal entry count found on day 2016-12-10: -3710
WARNING. Abnormal entry count found on day 2016-12-10: -3710
WARNING. Abnormal entry count found on day 2016-12-17: -3690
WARNING. Abnormal entry count found on day 2016-12-17: -3690
WARNING. Abnormal entry count found on day 2016-12-24: -3185
WARNING. Abnormal entry count found on day 2016-12-24: -3185
Processing turnstile ('A034', 'R170', '03-00-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -7353
WARNING. Abnormal entry count found on day 2016-12-03: -7353
WARNING. Abnormal entry count found on day 2016-12-10: -7699
WARNING. Abnormal entry count found on day 2016-12-10: -7699
WARNING. Abnormal entry count found on day 2016-12-17: -8641
WARNING. Abnormal entry count found on day 2016-12-17: -8641
WARNING. Abnormal entry count found on day 2016-12-24: -6626
WARNING. Abnormal entry count found on day 2016-12-24: -6626
Processing turnstile ('N037', 'R314', '00-00-01', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9198
WARNING. Abnormal entry count found on day 2016-12-03: -9198
WARNING. Abnormal entry count found on day 2016-12-10: -8812
WARNING. Abnormal entry count found on day 2016-12-10: -8812
WARNING. Abnormal entry count found on day 2016-12-17: -8262
WARNING. Abnormal entry count found on day 2016-12-17: -8262
WARNING. Abnormal entry count found on day 2016-12-24: -6588
WARNING. Abnormal entry count found on day 2016-12-24: -6588
Processing turnstile ('R227', 'R131', '00-05-01', '23 ST')
Processing turnstile ('H039', 'R375', '00-00-00', 'NEW LOTS')
WARNING. Abnormal entry count found on day 2016-12-03: -15067
WARNING. Abnormal entry count found on day 2016-12-03: -15067
WARNING. Abnormal entry count found on day 2016-12-10: -14305
WARNING. Abnormal entry count found on day 2016-12-10: -14305
WARNING. Abnormal entry count found on day 2016-12-17: -14080
WARNING. Abnormal entry count found on day 2016-12-17: -14080
WARNING. Abnormal entry count found on day 2016-12-24: -11272
WARNING. Abnormal entry count found on day 2016-12-24: -11272
Processing turnstile ('A071', 'R044', '02-00-02', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -831
WARNING. Abnormal entry count found on day 2016-12-03: -831
WARNING. Abnormal entry count found on day 2016-12-10: -858
WARNING. Abnormal entry count found on day 2016-12-10: -858
WARNING. Abnormal entry count found on day 2016-12-17: -757
WARNING. Abnormal entry count found on day 2016-12-17: -757
WARNING. Abnormal entry count found on day 2016-12-24: -576
WARNING. Abnormal entry count found on day 2016-12-24: -576
Processing turnstile ('N605', 'R024', '00-00-01', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -13513
WARNING. Abnormal entry count found on day 2016-12-03: -13513
WARNING. Abnormal entry count found on day 2016-12-10: -13201
WARNING. Abnormal entry count found on day 2016-12-10: -13201
WARNING. Abnormal entry count found on day 2016-12-17: -13024
WARNING. Abnormal entry count found on day 2016-12-17: -13024
WARNING. Abnormal entry count found on day 2016-12-24: -12282
WARNING. Abnormal entry count found on day 2016-12-24: -12282
Processing turnstile ('R217A', 'R194', '00-00-01', 'BLEECKER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15103
WARNING. Abnormal entry count found on day 2016-12-03: -15103
WARNING. Abnormal entry count found on day 2016-12-10: -15378
WARNING. Abnormal entry count found on day 2016-12-10: -15378
WARNING. Abnormal entry count found on day 2016-12-17: -14131
WARNING. Abnormal entry count found on day 2016-12-17: -14131
WARNING. Abnormal entry count found on day 2016-12-24: -16780
WARNING. Abnormal entry count found on day 2016-12-24: -16780
Processing turnstile ('R509', 'R121', '00-00-00', 'QUEENSBORO PLZ')
WARNING. Abnormal entry count found on day 2016-12-03: -22922
WARNING. Abnormal entry count found on day 2016-12-03: -22922
WARNING. Abnormal entry count found on day 2016-12-10: -21989
WARNING. Abnormal entry count found on day 2016-12-10: -21989
WARNING. Abnormal entry count found on day 2016-12-17: -20913
WARNING. Abnormal entry count found on day 2016-12-17: -20913
WARNING. Abnormal entry count found on day 2016-12-24: -15456
WARNING. Abnormal entry count found on day 2016-12-24: -15456
Processing turnstile ('R231A', 'R176', '01-00-01', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11684
WARNING. Abnormal entry count found on day 2016-12-03: -11684
WARNING. Abnormal entry count found on day 2016-12-10: -11299
WARNING. Abnormal entry count found on day 2016-12-10: -11299
WARNING. Abnormal entry count found on day 2016-12-17: -9435
WARNING. Abnormal entry count found on day 2016-12-17: -9435
WARNING. Abnormal entry count found on day 2016-12-24: -8027
WARNING. Abnormal entry count found on day 2016-12-24: -8027
Processing turnstile ('N094', 'R029', '01-00-00', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -5890
WARNING. Abnormal entry count found on day 2016-12-03: -5890
WARNING. Abnormal entry count found on day 2016-12-10: -6099
WARNING. Abnormal entry count found on day 2016-12-10: -6099
WARNING. Abnormal entry count found on day 2016-12-17: -6903
WARNING. Abnormal entry count found on day 2016-12-17: -6903
WARNING. Abnormal entry count found on day 2016-12-24: -7568
WARNING. Abnormal entry count found on day 2016-12-24: -7568
Processing turnstile ('N408A', 'R256', '00-06-01', 'NASSAU ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8758
WARNING. Abnormal entry count found on day 2016-12-03: -8758
WARNING. Abnormal entry count found on day 2016-12-10: -8882
WARNING. Abnormal entry count found on day 2016-12-10: -8882
WARNING. Abnormal entry count found on day 2016-12-17: -7771
WARNING. Abnormal entry count found on day 2016-12-17: -7771
WARNING. Abnormal entry count found on day 2016-12-24: -5249
WARNING. Abnormal entry count found on day 2016-12-24: -5249
Processing turnstile ('N072', 'R012', '05-03-05', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -15716
WARNING. Abnormal entry count found on day 2016-12-03: -15716
WARNING. Abnormal entry count found on day 2016-12-10: -16483
WARNING. Abnormal entry count found on day 2016-12-10: -16483
WARNING. Abnormal entry count found on day 2016-12-17: -14748
WARNING. Abnormal entry count found on day 2016-12-17: -14748
WARNING. Abnormal entry count found on day 2016-12-24: -11332
WARNING. Abnormal entry count found on day 2016-12-24: -11332
Processing turnstile ('N057', 'R188', '00-03-01', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5368
WARNING. Abnormal entry count found on day 2016-12-03: -5368
WARNING. Abnormal entry count found on day 2016-12-10: -5412
WARNING. Abnormal entry count found on day 2016-12-10: -5412
WARNING. Abnormal entry count found on day 2016-12-17: -4635
WARNING. Abnormal entry count found on day 2016-12-17: -4635
WARNING. Abnormal entry count found on day 2016-12-24: -4073
WARNING. Abnormal entry count found on day 2016-12-24: -4073
Processing turnstile ('R188', 'R037', '00-06-02', '207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2205
WARNING. Abnormal entry count found on day 2016-12-03: -2205
WARNING. Abnormal entry count found on day 2016-12-10: -2051
WARNING. Abnormal entry count found on day 2016-12-10: -2051
WARNING. Abnormal entry count found on day 2016-12-17: -2113
WARNING. Abnormal entry count found on day 2016-12-17: -2113
WARNING. Abnormal entry count found on day 2016-12-24: -1414
WARNING. Abnormal entry count found on day 2016-12-24: -1414
Processing turnstile ('R154', 'R116', '00-03-01', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10785
WARNING. Abnormal entry count found on day 2016-12-03: -10785
WARNING. Abnormal entry count found on day 2016-12-10: -10675
WARNING. Abnormal entry count found on day 2016-12-10: -10675
WARNING. Abnormal entry count found on day 2016-12-17: -9645
WARNING. Abnormal entry count found on day 2016-12-17: -9645
WARNING. Abnormal entry count found on day 2016-12-24: -8209
WARNING. Abnormal entry count found on day 2016-12-24: -8209
Processing turnstile ('J017', 'R432', '00-00-00', 'CHAUNCEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8357
WARNING. Abnormal entry count found on day 2016-12-03: -8357
WARNING. Abnormal entry count found on day 2016-12-10: -6803
WARNING. Abnormal entry count found on day 2016-12-10: -6803
WARNING. Abnormal entry count found on day 2016-12-17: -7681
WARNING. Abnormal entry count found on day 2016-12-17: -7681
WARNING. Abnormal entry count found on day 2016-12-24: -6060
WARNING. Abnormal entry count found on day 2016-12-24: -6060
Processing turnstile ('R220', 'R160', '01-00-00', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -2852
WARNING. Abnormal entry count found on day 2016-12-03: -2852
WARNING. Abnormal entry count found on day 2016-12-10: -2984
WARNING. Abnormal entry count found on day 2016-12-10: -2984
WARNING. Abnormal entry count found on day 2016-12-17: -2976
WARNING. Abnormal entry count found on day 2016-12-17: -2976
WARNING. Abnormal entry count found on day 2016-12-24: -2019
WARNING. Abnormal entry count found on day 2016-12-24: -2019
Processing turnstile ('A011', 'R080', '01-00-00', '57 ST-7 AV')
WARNING. Abnormal entry count found on day 2016-12-04: -2049
WARNING. Abnormal entry count found on day 2016-12-05: -1673
WARNING. Abnormal entry count found on day 2016-12-06: -3046
WARNING. Abnormal entry count found on day 2016-12-07: -3393
WARNING. Abnormal entry count found on day 2016-12-08: -3493
WARNING. Abnormal entry count found on day 2016-12-09: -3342
WARNING. Abnormal entry count found on day 2016-12-03: 16996
WARNING. Abnormal entry count found on day 2016-12-04: -2049
WARNING. Abnormal entry count found on day 2016-12-05: -1673
WARNING. Abnormal entry count found on day 2016-12-06: -3046
WARNING. Abnormal entry count found on day 2016-12-07: -3393
WARNING. Abnormal entry count found on day 2016-12-08: -3493
WARNING. Abnormal entry count found on day 2016-12-09: -3342
WARNING. Abnormal entry count found on day 2016-12-03: 16996
WARNING. Abnormal entry count found on day 2016-12-04: -2049
WARNING. Abnormal entry count found on day 2016-12-05: -1673
WARNING. Abnormal entry count found on day 2016-12-06: -3046
WARNING. Abnormal entry count found on day 2016-12-07: -3393
WARNING. Abnormal entry count found on day 2016-12-08: -3493
WARNING. Abnormal entry count found on day 2016-12-09: -3342
WARNING. Abnormal entry count found on day 2016-12-10: -3257
WARNING. Abnormal entry count found on day 2016-12-11: -2019
WARNING. Abnormal entry count found on day 2016-12-12: -1669
WARNING. Abnormal entry count found on day 2016-12-13: -3120
WARNING. Abnormal entry count found on day 2016-12-14: -3220
WARNING. Abnormal entry count found on day 2016-12-15: -3225
WARNING. Abnormal entry count found on day 2016-12-16: -3270
WARNING. Abnormal entry count found on day 2016-12-10: 16523
WARNING. Abnormal entry count found on day 2016-12-11: -2019
WARNING. Abnormal entry count found on day 2016-12-12: -1669
WARNING. Abnormal entry count found on day 2016-12-13: -3120
WARNING. Abnormal entry count found on day 2016-12-14: -3220
WARNING. Abnormal entry count found on day 2016-12-15: -3225
WARNING. Abnormal entry count found on day 2016-12-16: -3270
WARNING. Abnormal entry count found on day 2016-12-10: 16523
WARNING. Abnormal entry count found on day 2016-12-11: -2019
WARNING. Abnormal entry count found on day 2016-12-12: -1669
WARNING. Abnormal entry count found on day 2016-12-13: -3120
WARNING. Abnormal entry count found on day 2016-12-14: -3220
WARNING. Abnormal entry count found on day 2016-12-15: -3225
WARNING. Abnormal entry count found on day 2016-12-16: -3270
WARNING. Abnormal entry count found on day 2016-12-17: -2993
WARNING. Abnormal entry count found on day 2016-12-18: -1899
WARNING. Abnormal entry count found on day 2016-12-19: -1672
WARNING. Abnormal entry count found on day 2016-12-20: -3050
WARNING. Abnormal entry count found on day 2016-12-21: -3170
WARNING. Abnormal entry count found on day 2016-12-22: -3145
WARNING. Abnormal entry count found on day 2016-12-23: -2808
WARNING. Abnormal entry count found on day 2016-12-17: 15744
WARNING. Abnormal entry count found on day 2016-12-18: -1899
WARNING. Abnormal entry count found on day 2016-12-19: -1672
WARNING. Abnormal entry count found on day 2016-12-20: -3050
WARNING. Abnormal entry count found on day 2016-12-21: -3170
WARNING. Abnormal entry count found on day 2016-12-22: -3145
WARNING. Abnormal entry count found on day 2016-12-23: -2808
WARNING. Abnormal entry count found on day 2016-12-17: 15744
WARNING. Abnormal entry count found on day 2016-12-18: -1899
WARNING. Abnormal entry count found on day 2016-12-19: -1672
WARNING. Abnormal entry count found on day 2016-12-20: -3050
WARNING. Abnormal entry count found on day 2016-12-21: -3170
WARNING. Abnormal entry count found on day 2016-12-22: -3145
WARNING. Abnormal entry count found on day 2016-12-23: -2808
WARNING. Abnormal entry count found on day 2016-12-24: -2220
WARNING. Abnormal entry count found on day 2016-12-25: -1247
WARNING. Abnormal entry count found on day 2016-12-26: -944
WARNING. Abnormal entry count found on day 2016-12-27: -1491
WARNING. Abnormal entry count found on day 2016-12-28: -2395
WARNING. Abnormal entry count found on day 2016-12-29: -2509
WARNING. Abnormal entry count found on day 2016-12-30: -2392
WARNING. Abnormal entry count found on day 2016-12-24: 10978
WARNING. Abnormal entry count found on day 2016-12-25: -1247
WARNING. Abnormal entry count found on day 2016-12-26: -944
WARNING. Abnormal entry count found on day 2016-12-27: -1491
WARNING. Abnormal entry count found on day 2016-12-28: -2395
WARNING. Abnormal entry count found on day 2016-12-29: -2509
WARNING. Abnormal entry count found on day 2016-12-30: -2392
WARNING. Abnormal entry count found on day 2016-12-24: 10978
WARNING. Abnormal entry count found on day 2016-12-25: -1247
WARNING. Abnormal entry count found on day 2016-12-26: -944
WARNING. Abnormal entry count found on day 2016-12-27: -1491
WARNING. Abnormal entry count found on day 2016-12-28: -2395
WARNING. Abnormal entry count found on day 2016-12-29: -2509
WARNING. Abnormal entry count found on day 2016-12-30: -2392
Processing turnstile ('R532H', 'R328', '02-03-00', 'METS-WILLETS PT')
Processing turnstile ('PTH07', 'R550', '00-00-03', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -12261
WARNING. Abnormal entry count found on day 2016-12-03: -12261
WARNING. Abnormal entry count found on day 2016-12-10: -11937
WARNING. Abnormal entry count found on day 2016-12-10: -11937
WARNING. Abnormal entry count found on day 2016-12-17: -11193
WARNING. Abnormal entry count found on day 2016-12-17: -11193
WARNING. Abnormal entry count found on day 2016-12-24: -8094
WARNING. Abnormal entry count found on day 2016-12-24: -8094
Processing turnstile ('N002A', 'R173', '00-00-02', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10967
WARNING. Abnormal entry count found on day 2016-12-03: -10967
WARNING. Abnormal entry count found on day 2016-12-10: -11103
WARNING. Abnormal entry count found on day 2016-12-10: -11103
WARNING. Abnormal entry count found on day 2016-12-17: -10935
WARNING. Abnormal entry count found on day 2016-12-17: -10935
WARNING. Abnormal entry count found on day 2016-12-24: -8223
WARNING. Abnormal entry count found on day 2016-12-24: -8223
Processing turnstile ('R501', 'R054', '00-00-02', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -13088
WARNING. Abnormal entry count found on day 2016-12-03: -13088
WARNING. Abnormal entry count found on day 2016-12-10: -12020
WARNING. Abnormal entry count found on day 2016-12-10: -12020
WARNING. Abnormal entry count found on day 2016-12-17: -11454
WARNING. Abnormal entry count found on day 2016-12-17: -11454
WARNING. Abnormal entry count found on day 2016-12-27: 985983142
WARNING. Abnormal entry count found on day 2016-12-24: -985990048
WARNING. Abnormal entry count found on day 2016-12-27: 985983142
WARNING. Abnormal entry count found on day 2016-12-24: -985990048
WARNING. Abnormal entry count found on day 2016-12-27: 985983142
Processing turnstile ('C022', 'R212', '01-03-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10523
WARNING. Abnormal entry count found on day 2016-12-03: -10523
WARNING. Abnormal entry count found on day 2016-12-10: -10121
WARNING. Abnormal entry count found on day 2016-12-10: -10121
WARNING. Abnormal entry count found on day 2016-12-17: -9947
WARNING. Abnormal entry count found on day 2016-12-17: -9947
WARNING. Abnormal entry count found on day 2016-12-24: -7583
WARNING. Abnormal entry count found on day 2016-12-24: -7583
Processing turnstile ('R612', 'R057', '01-00-05', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -3945
WARNING. Abnormal entry count found on day 2016-12-03: -3945
WARNING. Abnormal entry count found on day 2016-12-10: -3529
WARNING. Abnormal entry count found on day 2016-12-10: -3529
WARNING. Abnormal entry count found on day 2016-12-17: -3725
WARNING. Abnormal entry count found on day 2016-12-17: -3725
WARNING. Abnormal entry count found on day 2016-12-24: -2985
WARNING. Abnormal entry count found on day 2016-12-24: -2985
Processing turnstile ('N601', 'R319', '00-00-03', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-03: -22709
WARNING. Abnormal entry count found on day 2016-12-03: -22709
WARNING. Abnormal entry count found on day 2016-12-10: -20407
WARNING. Abnormal entry count found on day 2016-12-10: -20407
WARNING. Abnormal entry count found on day 2016-12-17: -18600
WARNING. Abnormal entry count found on day 2016-12-17: -18600
WARNING. Abnormal entry count found on day 2016-12-24: -12849
WARNING. Abnormal entry count found on day 2016-12-24: -12849
Processing turnstile ('N506', 'R022', '00-05-01', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12447
WARNING. Abnormal entry count found on day 2016-12-03: -12447
WARNING. Abnormal entry count found on day 2016-12-10: -13330
WARNING. Abnormal entry count found on day 2016-12-10: -13330
WARNING. Abnormal entry count found on day 2016-12-17: -17234
WARNING. Abnormal entry count found on day 2016-12-17: -17234
WARNING. Abnormal entry count found on day 2016-12-24: -16657
WARNING. Abnormal entry count found on day 2016-12-24: -16657
Processing turnstile ('N192', 'R336', '00-00-02', 'BEACH 60 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4809
WARNING. Abnormal entry count found on day 2016-12-03: -4809
WARNING. Abnormal entry count found on day 2016-12-10: -4465
WARNING. Abnormal entry count found on day 2016-12-10: -4465
WARNING. Abnormal entry count found on day 2016-12-17: -4412
WARNING. Abnormal entry count found on day 2016-12-17: -4412
WARNING. Abnormal entry count found on day 2016-12-24: -3629
WARNING. Abnormal entry count found on day 2016-12-24: -3629
Processing turnstile ('R609', 'R056', '01-00-02', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9937
WARNING. Abnormal entry count found on day 2016-12-03: -9937
WARNING. Abnormal entry count found on day 2016-12-10: -6567
WARNING. Abnormal entry count found on day 2016-12-10: -6567
WARNING. Abnormal entry count found on day 2016-12-17: -7454
WARNING. Abnormal entry count found on day 2016-12-17: -7454
WARNING. Abnormal entry count found on day 2016-12-24: -5391
WARNING. Abnormal entry count found on day 2016-12-24: -5391
Processing turnstile ('N555', 'R423', '00-00-00', 'AVENUE N')
WARNING. Abnormal entry count found on day 2016-12-03: -3352
WARNING. Abnormal entry count found on day 2016-12-03: -3352
WARNING. Abnormal entry count found on day 2016-12-10: -2973
WARNING. Abnormal entry count found on day 2016-12-10: -2973
WARNING. Abnormal entry count found on day 2016-12-17: -3021
WARNING. Abnormal entry count found on day 2016-12-17: -3021
WARNING. Abnormal entry count found on day 2016-12-24: -2175
WARNING. Abnormal entry count found on day 2016-12-24: -2175
Processing turnstile ('R503', 'R276', '01-06-00', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -1064
WARNING. Abnormal entry count found on day 2016-12-03: -1064
WARNING. Abnormal entry count found on day 2016-12-10: -1013
WARNING. Abnormal entry count found on day 2016-12-10: -1013
WARNING. Abnormal entry count found on day 2016-12-17: -961
WARNING. Abnormal entry count found on day 2016-12-17: -961
WARNING. Abnormal entry count found on day 2016-12-24: -832
WARNING. Abnormal entry count found on day 2016-12-24: -832
Processing turnstile ('R182', 'R035', '00-03-00', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7265
WARNING. Abnormal entry count found on day 2016-12-03: -7265
WARNING. Abnormal entry count found on day 2016-12-10: -6863
WARNING. Abnormal entry count found on day 2016-12-10: -6863
WARNING. Abnormal entry count found on day 2016-12-17: -6000
WARNING. Abnormal entry count found on day 2016-12-17: -6000
WARNING. Abnormal entry count found on day 2016-12-24: -3898
WARNING. Abnormal entry count found on day 2016-12-24: -3898
Processing turnstile ('N089', 'R139', '00-03-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15290
WARNING. Abnormal entry count found on day 2016-12-03: -15290
WARNING. Abnormal entry count found on day 2016-12-10: -15198
WARNING. Abnormal entry count found on day 2016-12-10: -15198
WARNING. Abnormal entry count found on day 2016-12-17: -13788
WARNING. Abnormal entry count found on day 2016-12-17: -13788
WARNING. Abnormal entry count found on day 2016-12-24: -10347
WARNING. Abnormal entry count found on day 2016-12-24: -10347
Processing turnstile ('R290', 'R161', '00-00-00', 'KINGSBRIDGE RD')
WARNING. Abnormal entry count found on day 2016-12-03: -8283
WARNING. Abnormal entry count found on day 2016-12-03: -8283
WARNING. Abnormal entry count found on day 2016-12-10: -7908
WARNING. Abnormal entry count found on day 2016-12-10: -7908
WARNING. Abnormal entry count found on day 2016-12-17: -7497
WARNING. Abnormal entry count found on day 2016-12-17: -7497
WARNING. Abnormal entry count found on day 2016-12-24: -6172
WARNING. Abnormal entry count found on day 2016-12-24: -6172
Processing turnstile ('R240', 'R047', '00-03-04', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8143
WARNING. Abnormal entry count found on day 2016-12-03: -8143
WARNING. Abnormal entry count found on day 2016-12-10: -9187
WARNING. Abnormal entry count found on day 2016-12-10: -9187
WARNING. Abnormal entry count found on day 2016-12-17: -7645
WARNING. Abnormal entry count found on day 2016-12-17: -7645
WARNING. Abnormal entry count found on day 2016-12-24: -4934
WARNING. Abnormal entry count found on day 2016-12-24: -4934
Processing turnstile ('PTH02', 'R544', '00-00-03', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -5735
WARNING. Abnormal entry count found on day 2016-12-03: -5735
WARNING. Abnormal entry count found on day 2016-12-10: -6305
WARNING. Abnormal entry count found on day 2016-12-10: -6305
WARNING. Abnormal entry count found on day 2016-12-17: -6053
WARNING. Abnormal entry count found on day 2016-12-17: -6053
WARNING. Abnormal entry count found on day 2016-12-24: -3003
WARNING. Abnormal entry count found on day 2016-12-24: -3003
Processing turnstile ('N545', 'R204', '01-06-01', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4983
WARNING. Abnormal entry count found on day 2016-12-03: -4983
WARNING. Abnormal entry count found on day 2016-12-10: -4762
WARNING. Abnormal entry count found on day 2016-12-10: -4762
WARNING. Abnormal entry count found on day 2016-12-17: -4709
WARNING. Abnormal entry count found on day 2016-12-17: -4709
WARNING. Abnormal entry count found on day 2016-12-24: -3149
WARNING. Abnormal entry count found on day 2016-12-24: -3149
Processing turnstile ('C012', 'R258', '01-03-03', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10344
WARNING. Abnormal entry count found on day 2016-12-03: -10344
WARNING. Abnormal entry count found on day 2016-12-10: -10146
WARNING. Abnormal entry count found on day 2016-12-10: -10146
WARNING. Abnormal entry count found on day 2016-12-17: -9112
WARNING. Abnormal entry count found on day 2016-12-17: -9112
WARNING. Abnormal entry count found on day 2016-12-24: -6213
WARNING. Abnormal entry count found on day 2016-12-24: -6213
Processing turnstile ('R170', 'R191', '00-00-02', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13765
WARNING. Abnormal entry count found on day 2016-12-03: -13765
WARNING. Abnormal entry count found on day 2016-12-10: -14094
WARNING. Abnormal entry count found on day 2016-12-10: -14094
WARNING. Abnormal entry count found on day 2016-12-17: -13212
WARNING. Abnormal entry count found on day 2016-12-17: -13212
WARNING. Abnormal entry count found on day 2016-12-24: -10180
WARNING. Abnormal entry count found on day 2016-12-24: -10180
Processing turnstile ('N182', 'R414', '00-00-00', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -5995
WARNING. Abnormal entry count found on day 2016-12-03: -5995
WARNING. Abnormal entry count found on day 2016-12-10: -5680
WARNING. Abnormal entry count found on day 2016-12-10: -5680
WARNING. Abnormal entry count found on day 2016-12-17: -5918
WARNING. Abnormal entry count found on day 2016-12-17: -5918
WARNING. Abnormal entry count found on day 2016-12-24: -6429
WARNING. Abnormal entry count found on day 2016-12-24: -6429
Processing turnstile ('B016', 'R098', '00-03-02', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -16097
WARNING. Abnormal entry count found on day 2016-12-03: -16097
WARNING. Abnormal entry count found on day 2016-12-10: -16111
WARNING. Abnormal entry count found on day 2016-12-10: -16111
WARNING. Abnormal entry count found on day 2016-12-17: -13354
WARNING. Abnormal entry count found on day 2016-12-17: -13354
WARNING. Abnormal entry count found on day 2016-12-24: -11298
WARNING. Abnormal entry count found on day 2016-12-24: -11298
Processing turnstile ('A021', 'R032', '01-00-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8167
WARNING. Abnormal entry count found on day 2016-12-03: -8167
WARNING. Abnormal entry count found on day 2016-12-10: -7781
WARNING. Abnormal entry count found on day 2016-12-10: -7781
WARNING. Abnormal entry count found on day 2016-12-17: -6619
WARNING. Abnormal entry count found on day 2016-12-17: -6619
WARNING. Abnormal entry count found on day 2016-12-24: -4580
WARNING. Abnormal entry count found on day 2016-12-24: -4580
Processing turnstile ('N305', 'R017', '01-00-02', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -4029
WARNING. Abnormal entry count found on day 2016-12-03: -4029
WARNING. Abnormal entry count found on day 2016-12-10: -3900
WARNING. Abnormal entry count found on day 2016-12-10: -3900
WARNING. Abnormal entry count found on day 2016-12-17: -3106
WARNING. Abnormal entry count found on day 2016-12-17: -3106
WARNING. Abnormal entry count found on day 2016-12-24: -1960
WARNING. Abnormal entry count found on day 2016-12-24: -1960
Processing turnstile ('N330', 'R202', '00-05-00', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -10561
WARNING. Abnormal entry count found on day 2016-12-03: -10561
WARNING. Abnormal entry count found on day 2016-12-10: -10772
WARNING. Abnormal entry count found on day 2016-12-10: -10772
WARNING. Abnormal entry count found on day 2016-12-17: -12048
WARNING. Abnormal entry count found on day 2016-12-17: -12048
WARNING. Abnormal entry count found on day 2016-12-24: -8874
WARNING. Abnormal entry count found on day 2016-12-24: -8874
Processing turnstile ('N089', 'R139', '00-03-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5679
WARNING. Abnormal entry count found on day 2016-12-03: -5679
WARNING. Abnormal entry count found on day 2016-12-10: -5690
WARNING. Abnormal entry count found on day 2016-12-10: -5690
WARNING. Abnormal entry count found on day 2016-12-17: -5462
WARNING. Abnormal entry count found on day 2016-12-17: -5462
WARNING. Abnormal entry count found on day 2016-12-24: -4337
WARNING. Abnormal entry count found on day 2016-12-24: -4337
Processing turnstile ('E011', 'R371', '00-06-01', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2472
WARNING. Abnormal entry count found on day 2016-12-03: -2472
WARNING. Abnormal entry count found on day 2016-12-10: -2101
WARNING. Abnormal entry count found on day 2016-12-10: -2101
WARNING. Abnormal entry count found on day 2016-12-17: -2041
WARNING. Abnormal entry count found on day 2016-12-17: -2041
WARNING. Abnormal entry count found on day 2016-12-24: -1844
WARNING. Abnormal entry count found on day 2016-12-24: -1844
Processing turnstile ('R515', 'R095', '00-03-03', 'ASTORIA DITMARS')
WARNING. Abnormal entry count found on day 2016-12-03: -19031
WARNING. Abnormal entry count found on day 2016-12-03: -19031
WARNING. Abnormal entry count found on day 2016-12-10: -18480
WARNING. Abnormal entry count found on day 2016-12-10: -18480
WARNING. Abnormal entry count found on day 2016-12-17: -17308
WARNING. Abnormal entry count found on day 2016-12-17: -17308
WARNING. Abnormal entry count found on day 2016-12-24: -13334
WARNING. Abnormal entry count found on day 2016-12-24: -13334
Processing turnstile ('R524', 'R347', '00-00-02', '69 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2244
WARNING. Abnormal entry count found on day 2016-12-03: -2244
WARNING. Abnormal entry count found on day 2016-12-10: -2302
WARNING. Abnormal entry count found on day 2016-12-10: -2302
WARNING. Abnormal entry count found on day 2016-12-17: -2191
WARNING. Abnormal entry count found on day 2016-12-17: -2191
WARNING. Abnormal entry count found on day 2016-12-24: -1844
WARNING. Abnormal entry count found on day 2016-12-24: -1844
Processing turnstile ('R110', 'R027', '01-03-02', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8809
WARNING. Abnormal entry count found on day 2016-12-03: -8809
WARNING. Abnormal entry count found on day 2016-12-10: -8397
WARNING. Abnormal entry count found on day 2016-12-10: -8397
WARNING. Abnormal entry count found on day 2016-12-17: -7389
WARNING. Abnormal entry count found on day 2016-12-17: -7389
WARNING. Abnormal entry count found on day 2016-12-24: -4372
WARNING. Abnormal entry count found on day 2016-12-24: -4372
Processing turnstile ('R504', 'R276', '00-00-00', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -10000
WARNING. Abnormal entry count found on day 2016-12-03: -10000
WARNING. Abnormal entry count found on day 2016-12-10: -10330
WARNING. Abnormal entry count found on day 2016-12-10: -10330
WARNING. Abnormal entry count found on day 2016-12-17: -9572
WARNING. Abnormal entry count found on day 2016-12-17: -9572
WARNING. Abnormal entry count found on day 2016-12-24: -6633
WARNING. Abnormal entry count found on day 2016-12-24: -6633
Processing turnstile ('A077', 'R028', '03-03-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3332
WARNING. Abnormal entry count found on day 2016-12-03: -3332
WARNING. Abnormal entry count found on day 2016-12-10: -3057
WARNING. Abnormal entry count found on day 2016-12-10: -3057
WARNING. Abnormal entry count found on day 2016-12-17: -3040
WARNING. Abnormal entry count found on day 2016-12-17: -3040
WARNING. Abnormal entry count found on day 2016-12-24: -2200
WARNING. Abnormal entry count found on day 2016-12-24: -2200
Processing turnstile ('N103', 'R127', '00-00-07', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -8765
WARNING. Abnormal entry count found on day 2016-12-03: -8765
WARNING. Abnormal entry count found on day 2016-12-10: -8028
WARNING. Abnormal entry count found on day 2016-12-10: -8028
WARNING. Abnormal entry count found on day 2016-12-17: -7081
WARNING. Abnormal entry count found on day 2016-12-17: -7081
WARNING. Abnormal entry count found on day 2016-12-24: -4952
WARNING. Abnormal entry count found on day 2016-12-24: -4952
Processing turnstile ('R201', 'R041', '00-03-02', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -7808
WARNING. Abnormal entry count found on day 2016-12-03: -7808
WARNING. Abnormal entry count found on day 2016-12-10: -7106
WARNING. Abnormal entry count found on day 2016-12-10: -7106
WARNING. Abnormal entry count found on day 2016-12-17: -6205
WARNING. Abnormal entry count found on day 2016-12-17: -6205
WARNING. Abnormal entry count found on day 2016-12-24: -3594
WARNING. Abnormal entry count found on day 2016-12-24: -3594
Processing turnstile ('E009', 'R370', '00-00-01', '71 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5884
WARNING. Abnormal entry count found on day 2016-12-03: -5884
WARNING. Abnormal entry count found on day 2016-12-10: -5655
WARNING. Abnormal entry count found on day 2016-12-10: -5655
WARNING. Abnormal entry count found on day 2016-12-17: -6285
WARNING. Abnormal entry count found on day 2016-12-17: -6285
WARNING. Abnormal entry count found on day 2016-12-24: -5019
WARNING. Abnormal entry count found on day 2016-12-24: -5019
Processing turnstile ('R516', 'R291', '00-03-01', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7373
WARNING. Abnormal entry count found on day 2016-12-03: -7373
WARNING. Abnormal entry count found on day 2016-12-10: -6757
WARNING. Abnormal entry count found on day 2016-12-10: -6757
WARNING. Abnormal entry count found on day 2016-12-17: -5334
WARNING. Abnormal entry count found on day 2016-12-17: -5334
WARNING. Abnormal entry count found on day 2016-12-24: -3701
WARNING. Abnormal entry count found on day 2016-12-24: -3701
Processing turnstile ('TRAM2', 'R469', '00-05-01', 'RIT-ROOSEVELT')
Processing turnstile ('C008', 'R099', '00-06-01', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11819
WARNING. Abnormal entry count found on day 2016-12-03: -11819
WARNING. Abnormal entry count found on day 2016-12-10: -11539
WARNING. Abnormal entry count found on day 2016-12-10: -11539
WARNING. Abnormal entry count found on day 2016-12-17: -10636
WARNING. Abnormal entry count found on day 2016-12-17: -10636
WARNING. Abnormal entry count found on day 2016-12-24: -6992
WARNING. Abnormal entry count found on day 2016-12-24: -6992
Processing turnstile ('N332', 'R219', '01-06-02', '67 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2966
WARNING. Abnormal entry count found on day 2016-12-03: -2966
WARNING. Abnormal entry count found on day 2016-12-10: -2912
WARNING. Abnormal entry count found on day 2016-12-10: -2912
WARNING. Abnormal entry count found on day 2016-12-17: -2976
WARNING. Abnormal entry count found on day 2016-12-17: -2976
WARNING. Abnormal entry count found on day 2016-12-24: -1634
WARNING. Abnormal entry count found on day 2016-12-24: -1634
Processing turnstile ('N062A', 'R010', '00-06-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -10354
WARNING. Abnormal entry count found on day 2016-12-03: -10354
WARNING. Abnormal entry count found on day 2016-12-10: -9131
WARNING. Abnormal entry count found on day 2016-12-10: -9131
WARNING. Abnormal entry count found on day 2016-12-17: -9486
WARNING. Abnormal entry count found on day 2016-12-17: -9486
WARNING. Abnormal entry count found on day 2016-12-24: -9476
WARNING. Abnormal entry count found on day 2016-12-24: -9476
Processing turnstile ('C021', 'R212', '00-00-00', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14886
WARNING. Abnormal entry count found on day 2016-12-03: -14886
WARNING. Abnormal entry count found on day 2016-12-10: -14142
WARNING. Abnormal entry count found on day 2016-12-10: -14142
WARNING. Abnormal entry count found on day 2016-12-17: -14711
WARNING. Abnormal entry count found on day 2016-12-17: -14711
WARNING. Abnormal entry count found on day 2016-12-24: -11325
WARNING. Abnormal entry count found on day 2016-12-24: -11325
Processing turnstile ('R309', 'R345', '00-00-00', 'HARLEM 148 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7410
WARNING. Abnormal entry count found on day 2016-12-03: -7410
WARNING. Abnormal entry count found on day 2016-12-10: -7392
WARNING. Abnormal entry count found on day 2016-12-10: -7392
WARNING. Abnormal entry count found on day 2016-12-17: -7102
WARNING. Abnormal entry count found on day 2016-12-17: -7102
WARNING. Abnormal entry count found on day 2016-12-24: -4939
WARNING. Abnormal entry count found on day 2016-12-24: -4939
Processing turnstile ('PTH04', 'R551', '00-01-03', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -6740
WARNING. Abnormal entry count found on day 2016-12-03: -6740
WARNING. Abnormal entry count found on day 2016-12-10: -4438
WARNING. Abnormal entry count found on day 2016-12-10: -4438
WARNING. Abnormal entry count found on day 2016-12-17: -4711
WARNING. Abnormal entry count found on day 2016-12-17: -4711
WARNING. Abnormal entry count found on day 2016-12-24: -3570
WARNING. Abnormal entry count found on day 2016-12-24: -3570
Processing turnstile ('R310', 'R053', '01-05-01', '3 AV-149 ST')
Processing turnstile ('N057', 'R188', '00-00-00', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22745
WARNING. Abnormal entry count found on day 2016-12-03: -22745
WARNING. Abnormal entry count found on day 2016-12-10: -22049
WARNING. Abnormal entry count found on day 2016-12-10: -22049
WARNING. Abnormal entry count found on day 2016-12-17: -20946
WARNING. Abnormal entry count found on day 2016-12-17: -20946
WARNING. Abnormal entry count found on day 2016-12-24: -17503
WARNING. Abnormal entry count found on day 2016-12-24: -17503
Processing turnstile ('R618', 'R058', '01-06-00', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -33
WARNING. Abnormal entry count found on day 2016-12-03: -33
WARNING. Abnormal entry count found on day 2016-12-10: -30
WARNING. Abnormal entry count found on day 2016-12-10: -30
WARNING. Abnormal entry count found on day 2016-12-17: -37
WARNING. Abnormal entry count found on day 2016-12-17: -37
WARNING. Abnormal entry count found on day 2016-12-24: -32
WARNING. Abnormal entry count found on day 2016-12-24: -32
Processing turnstile ('R626', 'R062', '00-05-00', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -13
WARNING. Abnormal entry count found on day 2016-12-03: -13
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-10: -6
WARNING. Abnormal entry count found on day 2016-12-17: -14
WARNING. Abnormal entry count found on day 2016-12-17: -14
WARNING. Abnormal entry count found on day 2016-12-24: -15
WARNING. Abnormal entry count found on day 2016-12-24: -15
Processing turnstile ('N181', 'R357', '00-00-01', 'AQUEDUCT N.COND')
WARNING. Abnormal entry count found on day 2016-12-03: -1425
WARNING. Abnormal entry count found on day 2016-12-03: -1425
WARNING. Abnormal entry count found on day 2016-12-10: -1444
WARNING. Abnormal entry count found on day 2016-12-10: -1444
WARNING. Abnormal entry count found on day 2016-12-17: -1319
WARNING. Abnormal entry count found on day 2016-12-17: -1319
WARNING. Abnormal entry count found on day 2016-12-24: -987
WARNING. Abnormal entry count found on day 2016-12-24: -987
Processing turnstile ('R102', 'R304', '01-03-02', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8716
WARNING. Abnormal entry count found on day 2016-12-03: -8716
WARNING. Abnormal entry count found on day 2016-12-10: -8119
WARNING. Abnormal entry count found on day 2016-12-10: -8119
WARNING. Abnormal entry count found on day 2016-12-17: -7377
WARNING. Abnormal entry count found on day 2016-12-17: -7377
WARNING. Abnormal entry count found on day 2016-12-24: -5184
WARNING. Abnormal entry count found on day 2016-12-24: -5184
Processing turnstile ('B013', 'R196', '01-05-01', 'PROSPECT PARK')
Processing turnstile ('C012', 'R258', '01-00-03', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1684
WARNING. Abnormal entry count found on day 2016-12-03: -1684
WARNING. Abnormal entry count found on day 2016-12-10: -1859
WARNING. Abnormal entry count found on day 2016-12-10: -1859
WARNING. Abnormal entry count found on day 2016-12-17: -1767
WARNING. Abnormal entry count found on day 2016-12-17: -1767
WARNING. Abnormal entry count found on day 2016-12-24: -1153
WARNING. Abnormal entry count found on day 2016-12-24: -1153
Processing turnstile ('N011', 'R126', '01-06-00', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9162
WARNING. Abnormal entry count found on day 2016-12-03: -9162
WARNING. Abnormal entry count found on day 2016-12-10: -10235
WARNING. Abnormal entry count found on day 2016-12-10: -10235
WARNING. Abnormal entry count found on day 2016-12-17: -8703
WARNING. Abnormal entry count found on day 2016-12-17: -8703
WARNING. Abnormal entry count found on day 2016-12-24: -6460
WARNING. Abnormal entry count found on day 2016-12-24: -6460
Processing turnstile ('N044', 'R187', '00-00-01', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -15604
WARNING. Abnormal entry count found on day 2016-12-03: -15604
WARNING. Abnormal entry count found on day 2016-12-10: -16320
WARNING. Abnormal entry count found on day 2016-12-10: -16320
WARNING. Abnormal entry count found on day 2016-12-17: -14890
WARNING. Abnormal entry count found on day 2016-12-17: -14890
WARNING. Abnormal entry count found on day 2016-12-24: -15046
WARNING. Abnormal entry count found on day 2016-12-24: -15046
Processing turnstile ('N022', 'R332', '02-05-00', '135 ST')
Processing turnstile ('R201', 'R041', '00-00-00', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -4270
WARNING. Abnormal entry count found on day 2016-12-03: -4270
WARNING. Abnormal entry count found on day 2016-12-10: -4043
WARNING. Abnormal entry count found on day 2016-12-10: -4043
WARNING. Abnormal entry count found on day 2016-12-17: -3560
WARNING. Abnormal entry count found on day 2016-12-17: -3560
WARNING. Abnormal entry count found on day 2016-12-24: -2603
WARNING. Abnormal entry count found on day 2016-12-24: -2603
Processing turnstile ('PTH01', 'R549', '00-00-02', 'NEWARK HW BMEBE')
WARNING. Abnormal entry count found on day 2016-12-03: -2540
WARNING. Abnormal entry count found on day 2016-12-03: -2540
WARNING. Abnormal entry count found on day 2016-12-10: -1741
WARNING. Abnormal entry count found on day 2016-12-10: -1741
WARNING. Abnormal entry count found on day 2016-12-17: -1882
WARNING. Abnormal entry count found on day 2016-12-17: -1882
WARNING. Abnormal entry count found on day 2016-12-24: -980
WARNING. Abnormal entry count found on day 2016-12-24: -980
Processing turnstile ('N330', 'R202', '00-03-01', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -2332
WARNING. Abnormal entry count found on day 2016-12-03: -2332
WARNING. Abnormal entry count found on day 2016-12-10: -2316
WARNING. Abnormal entry count found on day 2016-12-10: -2316
WARNING. Abnormal entry count found on day 2016-12-17: -2328
WARNING. Abnormal entry count found on day 2016-12-17: -2328
WARNING. Abnormal entry count found on day 2016-12-24: -1603
WARNING. Abnormal entry count found on day 2016-12-24: -1603
Processing turnstile ('R245A', 'R051', '01-00-02', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15172
WARNING. Abnormal entry count found on day 2016-12-03: -15172
WARNING. Abnormal entry count found on day 2016-12-10: -14308
WARNING. Abnormal entry count found on day 2016-12-10: -14308
WARNING. Abnormal entry count found on day 2016-12-17: -15822
WARNING. Abnormal entry count found on day 2016-12-17: -15822
WARNING. Abnormal entry count found on day 2016-12-24: -10153
WARNING. Abnormal entry count found on day 2016-12-24: -10153
Processing turnstile ('N329', 'R201', '00-03-03', 'WOODHAVEN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -9256
WARNING. Abnormal entry count found on day 2016-12-03: -9256
WARNING. Abnormal entry count found on day 2016-12-10: -10948
WARNING. Abnormal entry count found on day 2016-12-10: -10948
WARNING. Abnormal entry count found on day 2016-12-17: -14398
WARNING. Abnormal entry count found on day 2016-12-17: -14398
WARNING. Abnormal entry count found on day 2016-12-24: -9671
WARNING. Abnormal entry count found on day 2016-12-24: -9671
Processing turnstile ('R258', 'R132', '00-00-04', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -26249
WARNING. Abnormal entry count found on day 2016-12-03: -26249
WARNING. Abnormal entry count found on day 2016-12-10: -26250
WARNING. Abnormal entry count found on day 2016-12-10: -26250
WARNING. Abnormal entry count found on day 2016-12-17: -22786
WARNING. Abnormal entry count found on day 2016-12-17: -22786
WARNING. Abnormal entry count found on day 2016-12-24: -18251
WARNING. Abnormal entry count found on day 2016-12-24: -18251
Processing turnstile ('R141', 'R031', '00-03-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -8109
WARNING. Abnormal entry count found on day 2016-12-03: -8109
WARNING. Abnormal entry count found on day 2016-12-10: -8215
WARNING. Abnormal entry count found on day 2016-12-10: -8215
WARNING. Abnormal entry count found on day 2016-12-17: -9934
WARNING. Abnormal entry count found on day 2016-12-17: -9934
WARNING. Abnormal entry count found on day 2016-12-24: -8348
WARNING. Abnormal entry count found on day 2016-12-24: -8348
Processing turnstile ('R528', 'R097', '00-06-01', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-17: -11
WARNING. Abnormal entry count found on day 2016-12-24: -14
WARNING. Abnormal entry count found on day 2016-12-24: -14
Processing turnstile ('N192', 'R336', '00-00-00', 'BEACH 60 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5587
WARNING. Abnormal entry count found on day 2016-12-03: -5587
WARNING. Abnormal entry count found on day 2016-12-10: -5329
WARNING. Abnormal entry count found on day 2016-12-10: -5329
WARNING. Abnormal entry count found on day 2016-12-17: -5208
WARNING. Abnormal entry count found on day 2016-12-17: -5208
WARNING. Abnormal entry count found on day 2016-12-24: -4295
WARNING. Abnormal entry count found on day 2016-12-24: -4295
Processing turnstile ('R523', 'R147', '00-00-04', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -2902
WARNING. Abnormal entry count found on day 2016-12-03: -2902
WARNING. Abnormal entry count found on day 2016-12-10: -9449
WARNING. Abnormal entry count found on day 2016-12-10: -9449
WARNING. Abnormal entry count found on day 2016-12-17: -9253
WARNING. Abnormal entry count found on day 2016-12-17: -9253
WARNING. Abnormal entry count found on day 2016-12-24: -7385
WARNING. Abnormal entry count found on day 2016-12-24: -7385
Processing turnstile ('N400A', 'R359', '02-06-02', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -8019
WARNING. Abnormal entry count found on day 2016-12-03: -8019
WARNING. Abnormal entry count found on day 2016-12-10: -7810
WARNING. Abnormal entry count found on day 2016-12-10: -7810
WARNING. Abnormal entry count found on day 2016-12-17: -6426
WARNING. Abnormal entry count found on day 2016-12-17: -6426
WARNING. Abnormal entry count found on day 2016-12-24: -2830
WARNING. Abnormal entry count found on day 2016-12-24: -2830
Processing turnstile ('N121B', 'R438', '00-00-03', 'RALPH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11195
WARNING. Abnormal entry count found on day 2016-12-03: -11195
WARNING. Abnormal entry count found on day 2016-12-10: -10744
WARNING. Abnormal entry count found on day 2016-12-10: -10744
WARNING. Abnormal entry count found on day 2016-12-17: -10679
WARNING. Abnormal entry count found on day 2016-12-17: -10679
WARNING. Abnormal entry count found on day 2016-12-24: -8471
WARNING. Abnormal entry count found on day 2016-12-24: -8471
Processing turnstile ('C012', 'R258', '01-03-01', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5207
WARNING. Abnormal entry count found on day 2016-12-03: -5207
WARNING. Abnormal entry count found on day 2016-12-10: -5573
WARNING. Abnormal entry count found on day 2016-12-10: -5573
WARNING. Abnormal entry count found on day 2016-12-17: -4893
WARNING. Abnormal entry count found on day 2016-12-17: -4893
WARNING. Abnormal entry count found on day 2016-12-24: -3037
WARNING. Abnormal entry count found on day 2016-12-24: -3037
Processing turnstile ('R246', 'R177', '00-03-06', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -22855
WARNING. Abnormal entry count found on day 2016-12-03: -22855
WARNING. Abnormal entry count found on day 2016-12-10: -21347
WARNING. Abnormal entry count found on day 2016-12-10: -21347
WARNING. Abnormal entry count found on day 2016-12-17: -20293
WARNING. Abnormal entry count found on day 2016-12-17: -20293
WARNING. Abnormal entry count found on day 2016-12-24: -13800
WARNING. Abnormal entry count found on day 2016-12-24: -13800
Processing turnstile ('B021', 'R228', '00-03-00', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -475
WARNING. Abnormal entry count found on day 2016-12-03: -475
WARNING. Abnormal entry count found on day 2016-12-12: 16774105
WARNING. Abnormal entry count found on day 2016-12-10: -16774481
WARNING. Abnormal entry count found on day 2016-12-12: 16774105
WARNING. Abnormal entry count found on day 2016-12-10: -16774481
WARNING. Abnormal entry count found on day 2016-12-12: 16774105
WARNING. Abnormal entry count found on day 2016-12-17: -359
WARNING. Abnormal entry count found on day 2016-12-17: -359
WARNING. Abnormal entry count found on day 2016-12-24: -178
WARNING. Abnormal entry count found on day 2016-12-24: -178
Processing turnstile ('PTH02', 'R544', '00-04-05', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -582
WARNING. Abnormal entry count found on day 2016-12-03: -582
WARNING. Abnormal entry count found on day 2016-12-10: -747
WARNING. Abnormal entry count found on day 2016-12-10: -747
WARNING. Abnormal entry count found on day 2016-12-17: -758
WARNING. Abnormal entry count found on day 2016-12-17: -758
WARNING. Abnormal entry count found on day 2016-12-24: -597
WARNING. Abnormal entry count found on day 2016-12-24: -597
Processing turnstile ('A066', 'R118', '00-00-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24797
WARNING. Abnormal entry count found on day 2016-12-03: -24797
WARNING. Abnormal entry count found on day 2016-12-10: -23460
WARNING. Abnormal entry count found on day 2016-12-10: -23460
WARNING. Abnormal entry count found on day 2016-12-17: -24709
WARNING. Abnormal entry count found on day 2016-12-17: -24709
WARNING. Abnormal entry count found on day 2016-12-24: -21585
WARNING. Abnormal entry count found on day 2016-12-24: -21585
Processing turnstile ('R113', 'R028', '01-01-01', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6112
WARNING. Abnormal entry count found on day 2016-12-03: -6112
WARNING. Abnormal entry count found on day 2016-12-10: -6015
WARNING. Abnormal entry count found on day 2016-12-10: -6015
WARNING. Abnormal entry count found on day 2016-12-17: -5162
WARNING. Abnormal entry count found on day 2016-12-17: -5162
WARNING. Abnormal entry count found on day 2016-12-24: -3317
WARNING. Abnormal entry count found on day 2016-12-24: -3317
Processing turnstile ('R312', 'R405', '00-00-01', 'JACKSON AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7825
WARNING. Abnormal entry count found on day 2016-12-03: -7825
WARNING. Abnormal entry count found on day 2016-12-10: -9484
WARNING. Abnormal entry count found on day 2016-12-10: -9484
WARNING. Abnormal entry count found on day 2016-12-17: -9157
WARNING. Abnormal entry count found on day 2016-12-17: -9157
WARNING. Abnormal entry count found on day 2016-12-24: -7107
WARNING. Abnormal entry count found on day 2016-12-24: -7107
Processing turnstile ('N078', 'R175', '01-00-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7925
WARNING. Abnormal entry count found on day 2016-12-03: -7925
WARNING. Abnormal entry count found on day 2016-12-10: -8011
WARNING. Abnormal entry count found on day 2016-12-10: -8011
WARNING. Abnormal entry count found on day 2016-12-17: -7286
WARNING. Abnormal entry count found on day 2016-12-17: -7286
WARNING. Abnormal entry count found on day 2016-12-24: -4926
WARNING. Abnormal entry count found on day 2016-12-24: -4926
Processing turnstile ('R238', 'R046', '00-00-08', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -42092
WARNING. Abnormal entry count found on day 2016-12-03: -42092
WARNING. Abnormal entry count found on day 2016-12-10: -38792
WARNING. Abnormal entry count found on day 2016-12-10: -38792
WARNING. Abnormal entry count found on day 2016-12-17: -37114
WARNING. Abnormal entry count found on day 2016-12-17: -37114
WARNING. Abnormal entry count found on day 2016-12-24: -27567
WARNING. Abnormal entry count found on day 2016-12-24: -27567
Processing turnstile ('PTH13', 'R541', '00-00-01', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1151
WARNING. Abnormal entry count found on day 2016-12-03: -1151
WARNING. Abnormal entry count found on day 2016-12-10: -1116
WARNING. Abnormal entry count found on day 2016-12-10: -1116
WARNING. Abnormal entry count found on day 2016-12-17: -941
WARNING. Abnormal entry count found on day 2016-12-17: -941
WARNING. Abnormal entry count found on day 2016-12-24: -590
WARNING. Abnormal entry count found on day 2016-12-24: -590
Processing turnstile ('R414', 'R162', '00-05-01', 'ELDER AV')
Processing turnstile ('S101A', 'R070', '01-03-00', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -7037
WARNING. Abnormal entry count found on day 2016-12-03: -7037
WARNING. Abnormal entry count found on day 2016-12-10: -6539
WARNING. Abnormal entry count found on day 2016-12-10: -6539
WARNING. Abnormal entry count found on day 2016-12-17: -6160
WARNING. Abnormal entry count found on day 2016-12-17: -6160
WARNING. Abnormal entry count found on day 2016-12-24: -4838
WARNING. Abnormal entry count found on day 2016-12-24: -4838
Processing turnstile ('N542', 'R241', '00-00-01', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -1185
WARNING. Abnormal entry count found on day 2016-12-03: -1185
WARNING. Abnormal entry count found on day 2016-12-10: -1139
WARNING. Abnormal entry count found on day 2016-12-10: -1139
WARNING. Abnormal entry count found on day 2016-12-17: -960
WARNING. Abnormal entry count found on day 2016-12-17: -960
WARNING. Abnormal entry count found on day 2016-12-24: -829
WARNING. Abnormal entry count found on day 2016-12-24: -829
Processing turnstile ('H009', 'R235', '00-06-04', 'BEDFORD AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8379
WARNING. Abnormal entry count found on day 2016-12-03: -8379
WARNING. Abnormal entry count found on day 2016-12-10: -8637
WARNING. Abnormal entry count found on day 2016-12-10: -8637
WARNING. Abnormal entry count found on day 2016-12-17: -8891
WARNING. Abnormal entry count found on day 2016-12-17: -8891
WARNING. Abnormal entry count found on day 2016-12-24: -4453
WARNING. Abnormal entry count found on day 2016-12-24: -4453
Processing turnstile ('R119', 'R320', '00-00-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6019
WARNING. Abnormal entry count found on day 2016-12-03: -6019
WARNING. Abnormal entry count found on day 2016-12-10: -5764
WARNING. Abnormal entry count found on day 2016-12-10: -5764
WARNING. Abnormal entry count found on day 2016-12-17: -5284
WARNING. Abnormal entry count found on day 2016-12-17: -5284
WARNING. Abnormal entry count found on day 2016-12-24: -3492
WARNING. Abnormal entry count found on day 2016-12-24: -3492
Processing turnstile ('PTH20', 'R549', '03-01-05', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -154
WARNING. Abnormal entry count found on day 2016-12-03: -154
WARNING. Abnormal entry count found on day 2016-12-10: -76
WARNING. Abnormal entry count found on day 2016-12-10: -76
WARNING. Abnormal entry count found on day 2016-12-17: -37
WARNING. Abnormal entry count found on day 2016-12-17: -37
WARNING. Abnormal entry count found on day 2016-12-24: -106
WARNING. Abnormal entry count found on day 2016-12-24: -106
Processing turnstile ('N535', 'R220', '00-03-00', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1728
WARNING. Abnormal entry count found on day 2016-12-03: -1728
WARNING. Abnormal entry count found on day 2016-12-10: -1670
WARNING. Abnormal entry count found on day 2016-12-10: -1670
WARNING. Abnormal entry count found on day 2016-12-17: -1544
WARNING. Abnormal entry count found on day 2016-12-17: -1544
WARNING. Abnormal entry count found on day 2016-12-24: -819
WARNING. Abnormal entry count found on day 2016-12-24: -819
Processing turnstile ('N087', 'R282', '01-03-00', 'SPRING ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7491
WARNING. Abnormal entry count found on day 2016-12-03: -7491
WARNING. Abnormal entry count found on day 2016-12-10: -7735
WARNING. Abnormal entry count found on day 2016-12-10: -7735
WARNING. Abnormal entry count found on day 2016-12-17: -6018
WARNING. Abnormal entry count found on day 2016-12-17: -6018
WARNING. Abnormal entry count found on day 2016-12-24: -4260
WARNING. Abnormal entry count found on day 2016-12-24: -4260
Processing turnstile ('R251', 'R144', '00-00-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24643
WARNING. Abnormal entry count found on day 2016-12-03: -24643
WARNING. Abnormal entry count found on day 2016-12-10: -8819
WARNING. Abnormal entry count found on day 2016-12-10: -8819
WARNING. Abnormal entry count found on day 2016-12-17: -20419
WARNING. Abnormal entry count found on day 2016-12-17: -20419
WARNING. Abnormal entry count found on day 2016-12-24: -14776
WARNING. Abnormal entry count found on day 2016-12-24: -14776
Processing turnstile ('A046', 'R463', '00-03-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8690
WARNING. Abnormal entry count found on day 2016-12-03: -8690
WARNING. Abnormal entry count found on day 2016-12-10: -8302
WARNING. Abnormal entry count found on day 2016-12-10: -8302
WARNING. Abnormal entry count found on day 2016-12-17: -9164
WARNING. Abnormal entry count found on day 2016-12-17: -9164
WARNING. Abnormal entry count found on day 2016-12-24: -9864
WARNING. Abnormal entry count found on day 2016-12-24: -9864
Processing turnstile ('R250', 'R179', '00-00-04', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18716
WARNING. Abnormal entry count found on day 2016-12-03: -18716
WARNING. Abnormal entry count found on day 2016-12-10: -20187
WARNING. Abnormal entry count found on day 2016-12-10: -20187
WARNING. Abnormal entry count found on day 2016-12-17: -17106
WARNING. Abnormal entry count found on day 2016-12-17: -17106
WARNING. Abnormal entry count found on day 2016-12-24: -10872
WARNING. Abnormal entry count found on day 2016-12-24: -10872
Processing turnstile ('G015', 'R312', '01-06-00', 'W 8 ST-AQUARIUM')
WARNING. Abnormal entry count found on day 2016-12-03: -3054
WARNING. Abnormal entry count found on day 2016-12-03: -3054
WARNING. Abnormal entry count found on day 2016-12-10: -2932
WARNING. Abnormal entry count found on day 2016-12-10: -2932
WARNING. Abnormal entry count found on day 2016-12-17: -2973
WARNING. Abnormal entry count found on day 2016-12-17: -2973
WARNING. Abnormal entry count found on day 2016-12-24: -2289
WARNING. Abnormal entry count found on day 2016-12-24: -2289
Processing turnstile ('R413', 'R325', '00-00-01', 'WHITLOCK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -1924
WARNING. Abnormal entry count found on day 2016-12-03: -1924
WARNING. Abnormal entry count found on day 2016-12-10: -1841
WARNING. Abnormal entry count found on day 2016-12-10: -1841
WARNING. Abnormal entry count found on day 2016-12-17: -1943
WARNING. Abnormal entry count found on day 2016-12-17: -1943
WARNING. Abnormal entry count found on day 2016-12-24: -1298
WARNING. Abnormal entry count found on day 2016-12-24: -1298
Processing turnstile ('N315', 'R238', '00-00-02', 'STEINWAY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13869
WARNING. Abnormal entry count found on day 2016-12-03: -13869
WARNING. Abnormal entry count found on day 2016-12-10: -13471
WARNING. Abnormal entry count found on day 2016-12-10: -13471
WARNING. Abnormal entry count found on day 2016-12-17: -14314
WARNING. Abnormal entry count found on day 2016-12-17: -14314
WARNING. Abnormal entry count found on day 2016-12-24: -10744
WARNING. Abnormal entry count found on day 2016-12-24: -10744
Processing turnstile ('N337', 'R255', '00-03-00', 'BRIARWOOD')
WARNING. Abnormal entry count found on day 2016-12-03: -476
WARNING. Abnormal entry count found on day 2016-12-03: -476
WARNING. Abnormal entry count found on day 2016-12-10: -514
WARNING. Abnormal entry count found on day 2016-12-10: -514
WARNING. Abnormal entry count found on day 2016-12-17: -469
WARNING. Abnormal entry count found on day 2016-12-17: -469
WARNING. Abnormal entry count found on day 2016-12-24: -376
WARNING. Abnormal entry count found on day 2016-12-24: -376
Processing turnstile ('R517', 'R291', '01-05-01', '33 ST-RAWSON ST')
Processing turnstile ('R604', 'R108', '03-00-04', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -8451
WARNING. Abnormal entry count found on day 2016-12-03: -8451
WARNING. Abnormal entry count found on day 2016-12-10: -7687
WARNING. Abnormal entry count found on day 2016-12-10: -7687
WARNING. Abnormal entry count found on day 2016-12-17: -6623
WARNING. Abnormal entry count found on day 2016-12-17: -6623
WARNING. Abnormal entry count found on day 2016-12-24: -4697
WARNING. Abnormal entry count found on day 2016-12-24: -4697
Processing turnstile ('N339A', 'R114', '00-03-02', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3946
WARNING. Abnormal entry count found on day 2016-12-03: -3946
WARNING. Abnormal entry count found on day 2016-12-10: -3976
WARNING. Abnormal entry count found on day 2016-12-10: -3976
WARNING. Abnormal entry count found on day 2016-12-17: -3973
WARNING. Abnormal entry count found on day 2016-12-17: -3973
WARNING. Abnormal entry count found on day 2016-12-24: -2920
WARNING. Abnormal entry count found on day 2016-12-24: -2920
Processing turnstile ('R526', 'R096', '00-05-01', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -17397
WARNING. Abnormal entry count found on day 2016-12-03: -17397
WARNING. Abnormal entry count found on day 2016-12-10: -17168
WARNING. Abnormal entry count found on day 2016-12-10: -17168
WARNING. Abnormal entry count found on day 2016-12-17: -16390
WARNING. Abnormal entry count found on day 2016-12-17: -16390
WARNING. Abnormal entry count found on day 2016-12-24: -15636
WARNING. Abnormal entry count found on day 2016-12-24: -15636
Processing turnstile ('R288', 'R275', '00-00-01', '183 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6975
WARNING. Abnormal entry count found on day 2016-12-03: -6975
WARNING. Abnormal entry count found on day 2016-12-10: -7430
WARNING. Abnormal entry count found on day 2016-12-10: -7430
WARNING. Abnormal entry count found on day 2016-12-17: -7553
WARNING. Abnormal entry count found on day 2016-12-17: -7553
WARNING. Abnormal entry count found on day 2016-12-24: -5789
WARNING. Abnormal entry count found on day 2016-12-24: -5789
Processing turnstile ('A049', 'R088', '02-03-03', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5008
WARNING. Abnormal entry count found on day 2016-12-03: -5008
WARNING. Abnormal entry count found on day 2016-12-10: -5121
WARNING. Abnormal entry count found on day 2016-12-10: -5121
WARNING. Abnormal entry count found on day 2016-12-17: -6286
WARNING. Abnormal entry count found on day 2016-12-17: -6286
WARNING. Abnormal entry count found on day 2016-12-24: -7653
WARNING. Abnormal entry count found on day 2016-12-24: -7653
Processing turnstile ('N217', 'R112', '00-00-00', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -13005
WARNING. Abnormal entry count found on day 2016-12-03: -13005
WARNING. Abnormal entry count found on day 2016-12-10: -12330
WARNING. Abnormal entry count found on day 2016-12-10: -12330
WARNING. Abnormal entry count found on day 2016-12-17: -12570
WARNING. Abnormal entry count found on day 2016-12-17: -12570
WARNING. Abnormal entry count found on day 2016-12-24: -10876
WARNING. Abnormal entry count found on day 2016-12-24: -10876
Processing turnstile ('R135', 'R031', '01-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11518
WARNING. Abnormal entry count found on day 2016-12-03: -11518
WARNING. Abnormal entry count found on day 2016-12-10: -11931
WARNING. Abnormal entry count found on day 2016-12-10: -11931
WARNING. Abnormal entry count found on day 2016-12-17: -9905
WARNING. Abnormal entry count found on day 2016-12-17: -9905
WARNING. Abnormal entry count found on day 2016-12-24: -5826
WARNING. Abnormal entry count found on day 2016-12-24: -5826
Processing turnstile ('R626', 'R062', '00-00-01', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -18836
WARNING. Abnormal entry count found on day 2016-12-03: -18836
WARNING. Abnormal entry count found on day 2016-12-10: -17817
WARNING. Abnormal entry count found on day 2016-12-10: -17817
WARNING. Abnormal entry count found on day 2016-12-17: -17437
WARNING. Abnormal entry count found on day 2016-12-17: -17437
WARNING. Abnormal entry count found on day 2016-12-24: -13188
WARNING. Abnormal entry count found on day 2016-12-24: -13188
Processing turnstile ('R601A', 'R108', '02-00-02', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -6759
WARNING. Abnormal entry count found on day 2016-12-03: -6759
WARNING. Abnormal entry count found on day 2016-12-10: -6558
WARNING. Abnormal entry count found on day 2016-12-10: -6558
WARNING. Abnormal entry count found on day 2016-12-17: -5573
WARNING. Abnormal entry count found on day 2016-12-17: -5573
WARNING. Abnormal entry count found on day 2016-12-24: -3757
WARNING. Abnormal entry count found on day 2016-12-24: -3757
Processing turnstile ('R248', 'R178', '00-00-00', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -21062
WARNING. Abnormal entry count found on day 2016-12-03: -21062
WARNING. Abnormal entry count found on day 2016-12-10: -21546
WARNING. Abnormal entry count found on day 2016-12-10: -21546
WARNING. Abnormal entry count found on day 2016-12-17: -17838
WARNING. Abnormal entry count found on day 2016-12-17: -17838
WARNING. Abnormal entry count found on day 2016-12-24: -12683
WARNING. Abnormal entry count found on day 2016-12-24: -12683
Processing turnstile ('R408', 'R449', '00-00-02', 'E 149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8186
WARNING. Abnormal entry count found on day 2016-12-03: -8186
WARNING. Abnormal entry count found on day 2016-12-10: -7713
WARNING. Abnormal entry count found on day 2016-12-10: -7713
WARNING. Abnormal entry count found on day 2016-12-17: -7350
WARNING. Abnormal entry count found on day 2016-12-17: -7350
WARNING. Abnormal entry count found on day 2016-12-24: -5525
WARNING. Abnormal entry count found on day 2016-12-24: -5525
Processing turnstile ('B022', 'R229', '00-00-01', 'AVENUE M')
WARNING. Abnormal entry count found on day 2016-12-03: -4465
WARNING. Abnormal entry count found on day 2016-12-03: -4465
WARNING. Abnormal entry count found on day 2016-12-10: -4385
WARNING. Abnormal entry count found on day 2016-12-10: -4385
WARNING. Abnormal entry count found on day 2016-12-17: -4235
WARNING. Abnormal entry count found on day 2016-12-17: -4235
WARNING. Abnormal entry count found on day 2016-12-24: -2994
WARNING. Abnormal entry count found on day 2016-12-24: -2994
Processing turnstile ('R230', 'R143', '02-05-00', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-17: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R335', 'R444', '00-00-01', 'NEREID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5780
WARNING. Abnormal entry count found on day 2016-12-03: -5780
WARNING. Abnormal entry count found on day 2016-12-10: -5771
WARNING. Abnormal entry count found on day 2016-12-10: -5771
WARNING. Abnormal entry count found on day 2016-12-17: -5637
WARNING. Abnormal entry count found on day 2016-12-17: -5637
WARNING. Abnormal entry count found on day 2016-12-24: -4009
WARNING. Abnormal entry count found on day 2016-12-24: -4009
Processing turnstile ('B022', 'R229', '00-03-01', 'AVENUE M')
Processing turnstile ('C012', 'R258', '01-00-02', '4AV-9 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3157
WARNING. Abnormal entry count found on day 2016-12-03: -3157
WARNING. Abnormal entry count found on day 2016-12-10: -3166
WARNING. Abnormal entry count found on day 2016-12-10: -3166
WARNING. Abnormal entry count found on day 2016-12-17: -3006
WARNING. Abnormal entry count found on day 2016-12-17: -3006
WARNING. Abnormal entry count found on day 2016-12-24: -1865
WARNING. Abnormal entry count found on day 2016-12-24: -1865
Processing turnstile ('PTH05', 'R543', '00-01-01', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -2552
WARNING. Abnormal entry count found on day 2016-12-03: -2552
WARNING. Abnormal entry count found on day 2016-12-16: -167229
WARNING. Abnormal entry count found on day 2016-12-10: 165636
WARNING. Abnormal entry count found on day 2016-12-16: -167229
WARNING. Abnormal entry count found on day 2016-12-10: 165636
WARNING. Abnormal entry count found on day 2016-12-16: -167229
WARNING. Abnormal entry count found on day 2016-12-17: -2761
WARNING. Abnormal entry count found on day 2016-12-17: -2761
WARNING. Abnormal entry count found on day 2016-12-24: -1805
WARNING. Abnormal entry count found on day 2016-12-24: -1805
Processing turnstile ('R501', 'R054', '00-00-07', '5 AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -4659
WARNING. Abnormal entry count found on day 2016-12-03: -4659
WARNING. Abnormal entry count found on day 2016-12-10: -4913
WARNING. Abnormal entry count found on day 2016-12-10: -4913
WARNING. Abnormal entry count found on day 2016-12-17: -4889
WARNING. Abnormal entry count found on day 2016-12-17: -4889
WARNING. Abnormal entry count found on day 2016-12-24: -4571
WARNING. Abnormal entry count found on day 2016-12-24: -4571
Processing turnstile ('R238A', 'R046', '02-00-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7302
WARNING. Abnormal entry count found on day 2016-12-03: -7302
WARNING. Abnormal entry count found on day 2016-12-10: -7309
WARNING. Abnormal entry count found on day 2016-12-10: -7309
WARNING. Abnormal entry count found on day 2016-12-17: -8340
WARNING. Abnormal entry count found on day 2016-12-17: -8340
WARNING. Abnormal entry count found on day 2016-12-24: -8034
WARNING. Abnormal entry count found on day 2016-12-24: -8034
Processing turnstile ('R186', 'R036', '00-00-02', 'DYCKMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11996
WARNING. Abnormal entry count found on day 2016-12-03: -11996
WARNING. Abnormal entry count found on day 2016-12-10: -11364
WARNING. Abnormal entry count found on day 2016-12-10: -11364
WARNING. Abnormal entry count found on day 2016-12-17: -11132
WARNING. Abnormal entry count found on day 2016-12-17: -11132
WARNING. Abnormal entry count found on day 2016-12-24: -8775
WARNING. Abnormal entry count found on day 2016-12-24: -8775
Processing turnstile ('R608', 'R056', '00-03-02', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3986
WARNING. Abnormal entry count found on day 2016-12-03: -3986
WARNING. Abnormal entry count found on day 2016-12-10: -4143
WARNING. Abnormal entry count found on day 2016-12-10: -4143
WARNING. Abnormal entry count found on day 2016-12-17: -4286
WARNING. Abnormal entry count found on day 2016-12-17: -4286
WARNING. Abnormal entry count found on day 2016-12-24: -2886
WARNING. Abnormal entry count found on day 2016-12-24: -2886
Processing turnstile ('C027', 'R216', '00-00-01', 'BAY RIDGE-95 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4294
WARNING. Abnormal entry count found on day 2016-12-03: -4294
WARNING. Abnormal entry count found on day 2016-12-10: -4183
WARNING. Abnormal entry count found on day 2016-12-10: -4183
WARNING. Abnormal entry count found on day 2016-12-17: -4037
WARNING. Abnormal entry count found on day 2016-12-17: -4037
WARNING. Abnormal entry count found on day 2016-12-24: -2996
WARNING. Abnormal entry count found on day 2016-12-24: -2996
Processing turnstile ('R304', 'R206', '00-00-01', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13523
WARNING. Abnormal entry count found on day 2016-12-03: -13523
WARNING. Abnormal entry count found on day 2016-12-10: -13300
WARNING. Abnormal entry count found on day 2016-12-10: -13300
WARNING. Abnormal entry count found on day 2016-12-17: -11832
WARNING. Abnormal entry count found on day 2016-12-17: -11832
WARNING. Abnormal entry count found on day 2016-12-24: -10202
WARNING. Abnormal entry count found on day 2016-12-24: -10202
Processing turnstile ('A049', 'R088', '02-01-00', 'CORTLANDT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4709
WARNING. Abnormal entry count found on day 2016-12-03: -4709
WARNING. Abnormal entry count found on day 2016-12-10: -4629
WARNING. Abnormal entry count found on day 2016-12-10: -4629
WARNING. Abnormal entry count found on day 2016-12-17: -4964
WARNING. Abnormal entry count found on day 2016-12-17: -4964
WARNING. Abnormal entry count found on day 2016-12-24: -5032
WARNING. Abnormal entry count found on day 2016-12-24: -5032
Processing turnstile ('R323', 'R387', '00-00-02', 'WEST FARMS SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -7385
WARNING. Abnormal entry count found on day 2016-12-03: -7385
WARNING. Abnormal entry count found on day 2016-12-10: -6860
WARNING. Abnormal entry count found on day 2016-12-10: -6860
WARNING. Abnormal entry count found on day 2016-12-17: -6964
WARNING. Abnormal entry count found on day 2016-12-17: -6964
WARNING. Abnormal entry count found on day 2016-12-24: -5417
WARNING. Abnormal entry count found on day 2016-12-24: -5417
Processing turnstile ('R169', 'R168', '01-00-03', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5991
WARNING. Abnormal entry count found on day 2016-12-03: -5991
WARNING. Abnormal entry count found on day 2016-12-10: -5495
WARNING. Abnormal entry count found on day 2016-12-10: -5495
WARNING. Abnormal entry count found on day 2016-12-17: -5154
WARNING. Abnormal entry count found on day 2016-12-17: -5154
WARNING. Abnormal entry count found on day 2016-12-24: -4001
WARNING. Abnormal entry count found on day 2016-12-24: -4001
Processing turnstile ('R151', 'R033', '00-00-02', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17729
WARNING. Abnormal entry count found on day 2016-12-03: -17729
WARNING. Abnormal entry count found on day 2016-12-10: -19055
WARNING. Abnormal entry count found on day 2016-12-10: -19055
WARNING. Abnormal entry count found on day 2016-12-17: -19741
WARNING. Abnormal entry count found on day 2016-12-17: -19741
WARNING. Abnormal entry count found on day 2016-12-24: -20022
WARNING. Abnormal entry count found on day 2016-12-24: -20022
Processing turnstile ('B024A', 'R211', '02-00-03', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10461
WARNING. Abnormal entry count found on day 2016-12-03: -10461
WARNING. Abnormal entry count found on day 2016-12-10: -9775
WARNING. Abnormal entry count found on day 2016-12-10: -9775
WARNING. Abnormal entry count found on day 2016-12-17: -9786
WARNING. Abnormal entry count found on day 2016-12-17: -9786
WARNING. Abnormal entry count found on day 2016-12-24: -6928
WARNING. Abnormal entry count found on day 2016-12-24: -6928
Processing turnstile ('J002', 'R460', '00-00-00', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2320
WARNING. Abnormal entry count found on day 2016-12-03: -2320
WARNING. Abnormal entry count found on day 2016-12-10: -2204
WARNING. Abnormal entry count found on day 2016-12-10: -2204
WARNING. Abnormal entry count found on day 2016-12-17: -2280
WARNING. Abnormal entry count found on day 2016-12-17: -2280
WARNING. Abnormal entry count found on day 2016-12-24: -1867
WARNING. Abnormal entry count found on day 2016-12-24: -1867
Processing turnstile ('R132', 'R190', '01-00-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7325
WARNING. Abnormal entry count found on day 2016-12-03: -7325
WARNING. Abnormal entry count found on day 2016-12-10: -7100
WARNING. Abnormal entry count found on day 2016-12-10: -7100
WARNING. Abnormal entry count found on day 2016-12-17: -6321
WARNING. Abnormal entry count found on day 2016-12-17: -6321
WARNING. Abnormal entry count found on day 2016-12-24: -3896
WARNING. Abnormal entry count found on day 2016-12-24: -3896
Processing turnstile ('B009', 'R411', '00-05-00', 'PARK PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-10: -16
WARNING. Abnormal entry count found on day 2016-12-10: -16
WARNING. Abnormal entry count found on day 2016-12-17: -15
WARNING. Abnormal entry count found on day 2016-12-17: -15
WARNING. Abnormal entry count found on day 2016-12-24: -11
WARNING. Abnormal entry count found on day 2016-12-24: -11
Processing turnstile ('R527', 'R122', '00-03-04', '90 ST-ELMHURST')
WARNING. Abnormal entry count found on day 2016-12-03: -16883
WARNING. Abnormal entry count found on day 2016-12-03: -16883
WARNING. Abnormal entry count found on day 2016-12-10: -16327
WARNING. Abnormal entry count found on day 2016-12-10: -16327
WARNING. Abnormal entry count found on day 2016-12-17: -16093
WARNING. Abnormal entry count found on day 2016-12-17: -16093
WARNING. Abnormal entry count found on day 2016-12-24: -14097
WARNING. Abnormal entry count found on day 2016-12-24: -14097
Processing turnstile ('PTH02', 'R544', '00-00-01', 'HARRISON')
WARNING. Abnormal entry count found on day 2016-12-03: -8096
WARNING. Abnormal entry count found on day 2016-12-03: -8096
WARNING. Abnormal entry count found on day 2016-12-10: -8197
WARNING. Abnormal entry count found on day 2016-12-10: -8197
WARNING. Abnormal entry count found on day 2016-12-17: -7635
WARNING. Abnormal entry count found on day 2016-12-17: -7635
WARNING. Abnormal entry count found on day 2016-12-24: -5328
WARNING. Abnormal entry count found on day 2016-12-24: -5328
Processing turnstile ('N400A', 'R359', '02-03-02', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -5142
WARNING. Abnormal entry count found on day 2016-12-03: -5142
WARNING. Abnormal entry count found on day 2016-12-10: -5425
WARNING. Abnormal entry count found on day 2016-12-10: -5425
WARNING. Abnormal entry count found on day 2016-12-17: -4342
WARNING. Abnormal entry count found on day 2016-12-17: -4342
WARNING. Abnormal entry count found on day 2016-12-24: -2335
WARNING. Abnormal entry count found on day 2016-12-24: -2335
Processing turnstile ('R174', 'R034', '00-00-02', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7386
WARNING. Abnormal entry count found on day 2016-12-03: -7386
WARNING. Abnormal entry count found on day 2016-12-10: -6939
WARNING. Abnormal entry count found on day 2016-12-10: -6939
WARNING. Abnormal entry count found on day 2016-12-17: -6475
WARNING. Abnormal entry count found on day 2016-12-17: -6475
WARNING. Abnormal entry count found on day 2016-12-24: -5128
WARNING. Abnormal entry count found on day 2016-12-24: -5128
Processing turnstile ('R414', 'R162', '00-00-01', 'ELDER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7405
WARNING. Abnormal entry count found on day 2016-12-03: -7405
WARNING. Abnormal entry count found on day 2016-12-10: -7695
WARNING. Abnormal entry count found on day 2016-12-10: -7695
WARNING. Abnormal entry count found on day 2016-12-17: -7597
WARNING. Abnormal entry count found on day 2016-12-17: -7597
WARNING. Abnormal entry count found on day 2016-12-24: -5628
WARNING. Abnormal entry count found on day 2016-12-24: -5628
Processing turnstile ('B034', 'R264', '01-05-01', 'OCEAN PKWY')
Processing turnstile ('A061', 'R142', '00-00-02', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -12801
WARNING. Abnormal entry count found on day 2016-12-03: -12801
WARNING. Abnormal entry count found on day 2016-12-10: -12520
WARNING. Abnormal entry count found on day 2016-12-10: -12520
WARNING. Abnormal entry count found on day 2016-12-17: -12002
WARNING. Abnormal entry count found on day 2016-12-17: -12002
WARNING. Abnormal entry count found on day 2016-12-24: -8747
WARNING. Abnormal entry count found on day 2016-12-24: -8747
Processing turnstile ('N501A', 'R020', '02-06-03', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -251
WARNING. Abnormal entry count found on day 2016-12-03: -251
WARNING. Abnormal entry count found on day 2016-12-10: -294
WARNING. Abnormal entry count found on day 2016-12-10: -294
WARNING. Abnormal entry count found on day 2016-12-17: -278
WARNING. Abnormal entry count found on day 2016-12-17: -278
WARNING. Abnormal entry count found on day 2016-12-24: -262
WARNING. Abnormal entry count found on day 2016-12-24: -262
Processing turnstile ('B010', 'R412', '00-03-01', 'BOTANIC GARDEN')
WARNING. Abnormal entry count found on day 2016-12-03: -1010
WARNING. Abnormal entry count found on day 2016-12-03: -1010
WARNING. Abnormal entry count found on day 2016-12-10: -962
WARNING. Abnormal entry count found on day 2016-12-10: -962
WARNING. Abnormal entry count found on day 2016-12-17: -899
WARNING. Abnormal entry count found on day 2016-12-17: -899
WARNING. Abnormal entry count found on day 2016-12-24: -427
WARNING. Abnormal entry count found on day 2016-12-24: -427
Processing turnstile ('R421', 'R427', '00-03-00', 'MIDDLETOWN RD')
WARNING. Abnormal entry count found on day 2016-12-03: -2545
WARNING. Abnormal entry count found on day 2016-12-03: -2545
WARNING. Abnormal entry count found on day 2016-12-10: -2869
WARNING. Abnormal entry count found on day 2016-12-10: -2869
WARNING. Abnormal entry count found on day 2016-12-17: -2662
WARNING. Abnormal entry count found on day 2016-12-17: -2662
WARNING. Abnormal entry count found on day 2016-12-24: -1913
WARNING. Abnormal entry count found on day 2016-12-24: -1913
Processing turnstile ('N208', 'R443', '01-00-01', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5637
WARNING. Abnormal entry count found on day 2016-12-03: -5637
WARNING. Abnormal entry count found on day 2016-12-10: -5653
WARNING. Abnormal entry count found on day 2016-12-10: -5653
WARNING. Abnormal entry count found on day 2016-12-17: -5454
WARNING. Abnormal entry count found on day 2016-12-17: -5454
WARNING. Abnormal entry count found on day 2016-12-24: -4671
WARNING. Abnormal entry count found on day 2016-12-24: -4671
Processing turnstile ('R121', 'R290', '01-05-01', 'HOUSTON ST')
Processing turnstile ('R550', 'R072', '00-03-03', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -7582
WARNING. Abnormal entry count found on day 2016-12-03: -7582
WARNING. Abnormal entry count found on day 2016-12-10: -7052
WARNING. Abnormal entry count found on day 2016-12-10: -7052
WARNING. Abnormal entry count found on day 2016-12-17: -5919
WARNING. Abnormal entry count found on day 2016-12-17: -5919
WARNING. Abnormal entry count found on day 2016-12-24: -4477
WARNING. Abnormal entry count found on day 2016-12-24: -4477
Processing turnstile ('PTH16', 'R550', '01-00-00', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -509
WARNING. Abnormal entry count found on day 2016-12-03: -509
WARNING. Abnormal entry count found on day 2016-12-10: -570
WARNING. Abnormal entry count found on day 2016-12-10: -570
WARNING. Abnormal entry count found on day 2016-12-17: -532
WARNING. Abnormal entry count found on day 2016-12-17: -532
WARNING. Abnormal entry count found on day 2016-12-24: -540
WARNING. Abnormal entry count found on day 2016-12-24: -540
Processing turnstile ('R504', 'R276', '00-00-02', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -17001
WARNING. Abnormal entry count found on day 2016-12-03: -17001
WARNING. Abnormal entry count found on day 2016-12-10: -17059
WARNING. Abnormal entry count found on day 2016-12-10: -17059
WARNING. Abnormal entry count found on day 2016-12-17: -15287
WARNING. Abnormal entry count found on day 2016-12-17: -15287
WARNING. Abnormal entry count found on day 2016-12-24: -10936
WARNING. Abnormal entry count found on day 2016-12-24: -10936
Processing turnstile ('A046', 'R463', '00-06-07', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4542
WARNING. Abnormal entry count found on day 2016-12-03: -4542
WARNING. Abnormal entry count found on day 2016-12-10: -4531
WARNING. Abnormal entry count found on day 2016-12-10: -4531
WARNING. Abnormal entry count found on day 2016-12-17: -4543
WARNING. Abnormal entry count found on day 2016-12-17: -4543
WARNING. Abnormal entry count found on day 2016-12-24: -4286
WARNING. Abnormal entry count found on day 2016-12-24: -4286
Processing turnstile ('N330', 'R202', '00-00-00', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -12303
WARNING. Abnormal entry count found on day 2016-12-03: -12303
WARNING. Abnormal entry count found on day 2016-12-10: -12618
WARNING. Abnormal entry count found on day 2016-12-10: -12618
WARNING. Abnormal entry count found on day 2016-12-17: -12904
WARNING. Abnormal entry count found on day 2016-12-17: -12904
WARNING. Abnormal entry count found on day 2016-12-24: -9921
WARNING. Abnormal entry count found on day 2016-12-24: -9921
Processing turnstile ('N340', 'R115', '00-00-05', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2430
WARNING. Abnormal entry count found on day 2016-12-03: -2430
WARNING. Abnormal entry count found on day 2016-12-10: -2361
WARNING. Abnormal entry count found on day 2016-12-10: -2361
WARNING. Abnormal entry count found on day 2016-12-17: -2827
WARNING. Abnormal entry count found on day 2016-12-17: -2827
WARNING. Abnormal entry count found on day 2016-12-24: -1904
WARNING. Abnormal entry count found on day 2016-12-24: -1904
Processing turnstile ('R402', 'R446', '00-00-01', 'BROOK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6749
WARNING. Abnormal entry count found on day 2016-12-03: -6749
WARNING. Abnormal entry count found on day 2016-12-10: -6631
WARNING. Abnormal entry count found on day 2016-12-10: -6631
WARNING. Abnormal entry count found on day 2016-12-17: -6766
WARNING. Abnormal entry count found on day 2016-12-17: -6766
WARNING. Abnormal entry count found on day 2016-12-24: -5251
WARNING. Abnormal entry count found on day 2016-12-24: -5251
Processing turnstile ('PTH04', 'R551', '00-04-03', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -6564
WARNING. Abnormal entry count found on day 2016-12-03: -6564
WARNING. Abnormal entry count found on day 2016-12-10: -6193
WARNING. Abnormal entry count found on day 2016-12-10: -6193
WARNING. Abnormal entry count found on day 2016-12-17: -5347
WARNING. Abnormal entry count found on day 2016-12-17: -5347
WARNING. Abnormal entry count found on day 2016-12-24: -4181
WARNING. Abnormal entry count found on day 2016-12-24: -4181
Processing turnstile ('N130', 'R383', '01-04-00', '80 ST')
Processing turnstile ('R643', 'R135', '00-00-01', 'NEWKIRK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13103
WARNING. Abnormal entry count found on day 2016-12-03: -13103
WARNING. Abnormal entry count found on day 2016-12-10: -13156
WARNING. Abnormal entry count found on day 2016-12-10: -13156
WARNING. Abnormal entry count found on day 2016-12-17: -12664
WARNING. Abnormal entry count found on day 2016-12-17: -12664
WARNING. Abnormal entry count found on day 2016-12-24: -9362
WARNING. Abnormal entry count found on day 2016-12-24: -9362
Processing turnstile ('N333A', 'R141', '00-00-02', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -1482
WARNING. Abnormal entry count found on day 2016-12-03: -1482
WARNING. Abnormal entry count found on day 2016-12-10: -1371
WARNING. Abnormal entry count found on day 2016-12-10: -1371
WARNING. Abnormal entry count found on day 2016-12-17: -1481
WARNING. Abnormal entry count found on day 2016-12-17: -1481
WARNING. Abnormal entry count found on day 2016-12-24: -1137
WARNING. Abnormal entry count found on day 2016-12-24: -1137
Processing turnstile ('R134', 'R272', '01-00-02', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6773
WARNING. Abnormal entry count found on day 2016-12-03: -6773
WARNING. Abnormal entry count found on day 2016-12-10: -6326
WARNING. Abnormal entry count found on day 2016-12-10: -6326
WARNING. Abnormal entry count found on day 2016-12-17: -5419
WARNING. Abnormal entry count found on day 2016-12-17: -5419
WARNING. Abnormal entry count found on day 2016-12-24: -3563
WARNING. Abnormal entry count found on day 2016-12-24: -3563
Processing turnstile ('N327', 'R254', '00-05-04', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -14200
WARNING. Abnormal entry count found on day 2016-12-03: -14200
WARNING. Abnormal entry count found on day 2016-12-10: -13744
WARNING. Abnormal entry count found on day 2016-12-10: -13744
WARNING. Abnormal entry count found on day 2016-12-17: -13826
WARNING. Abnormal entry count found on day 2016-12-17: -13826
WARNING. Abnormal entry count found on day 2016-12-24: -11390
WARNING. Abnormal entry count found on day 2016-12-24: -11390
Processing turnstile ('R293', 'R133', '00-06-00', 'MOSHOLU PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -1921
WARNING. Abnormal entry count found on day 2016-12-03: -1921
WARNING. Abnormal entry count found on day 2016-12-10: -1896
WARNING. Abnormal entry count found on day 2016-12-10: -1896
WARNING. Abnormal entry count found on day 2016-12-17: -1737
WARNING. Abnormal entry count found on day 2016-12-17: -1737
WARNING. Abnormal entry count found on day 2016-12-24: -1183
WARNING. Abnormal entry count found on day 2016-12-24: -1183
Processing turnstile ('A055', 'R227', '00-00-03', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2229
WARNING. Abnormal entry count found on day 2016-12-03: -2229
WARNING. Abnormal entry count found on day 2016-12-10: -2186
WARNING. Abnormal entry count found on day 2016-12-10: -2186
WARNING. Abnormal entry count found on day 2016-12-17: -1855
WARNING. Abnormal entry count found on day 2016-12-17: -1855
WARNING. Abnormal entry count found on day 2016-12-24: -1361
WARNING. Abnormal entry count found on day 2016-12-24: -1361
Processing turnstile ('J002', 'R460', '00-06-02', 'MARCY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7510
WARNING. Abnormal entry count found on day 2016-12-03: -7510
WARNING. Abnormal entry count found on day 2016-12-10: -7158
WARNING. Abnormal entry count found on day 2016-12-10: -7158
WARNING. Abnormal entry count found on day 2016-12-17: -7135
WARNING. Abnormal entry count found on day 2016-12-17: -7135
WARNING. Abnormal entry count found on day 2016-12-24: -5300
WARNING. Abnormal entry count found on day 2016-12-24: -5300
Processing turnstile ('N181', 'R357', '00-00-02', 'AQUEDUCT N.COND')
WARNING. Abnormal entry count found on day 2016-12-03: -1926
WARNING. Abnormal entry count found on day 2016-12-03: -1926
WARNING. Abnormal entry count found on day 2016-12-10: -1754
WARNING. Abnormal entry count found on day 2016-12-10: -1754
WARNING. Abnormal entry count found on day 2016-12-17: -1683
WARNING. Abnormal entry count found on day 2016-12-17: -1683
WARNING. Abnormal entry count found on day 2016-12-24: -1338
WARNING. Abnormal entry count found on day 2016-12-24: -1338
Processing turnstile ('R330', 'R363', '00-00-00', 'BURKE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7881
WARNING. Abnormal entry count found on day 2016-12-03: -7881
WARNING. Abnormal entry count found on day 2016-12-10: -7544
WARNING. Abnormal entry count found on day 2016-12-10: -7544
WARNING. Abnormal entry count found on day 2016-12-17: -7441
WARNING. Abnormal entry count found on day 2016-12-17: -7441
WARNING. Abnormal entry count found on day 2016-12-24: -6223
WARNING. Abnormal entry count found on day 2016-12-24: -6223
Processing turnstile ('N072', 'R012', '05-00-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -6930
WARNING. Abnormal entry count found on day 2016-12-03: -6930
WARNING. Abnormal entry count found on day 2016-12-10: -6627
WARNING. Abnormal entry count found on day 2016-12-10: -6627
WARNING. Abnormal entry count found on day 2016-12-17: -6456
WARNING. Abnormal entry count found on day 2016-12-17: -6456
WARNING. Abnormal entry count found on day 2016-12-24: -5501
WARNING. Abnormal entry count found on day 2016-12-24: -5501
Processing turnstile ('R612', 'R057', '01-05-01', 'ATL AV-BARCLAY')
Processing turnstile ('PTH07', 'R550', '00-00-05', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -10045
WARNING. Abnormal entry count found on day 2016-12-03: -10045
WARNING. Abnormal entry count found on day 2016-12-10: -9820
WARNING. Abnormal entry count found on day 2016-12-10: -9820
WARNING. Abnormal entry count found on day 2016-12-17: -8914
WARNING. Abnormal entry count found on day 2016-12-17: -8914
WARNING. Abnormal entry count found on day 2016-12-24: -6191
WARNING. Abnormal entry count found on day 2016-12-24: -6191
Processing turnstile ('N108', 'R217', '00-00-03', 'HOYT-SCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -8321
WARNING. Abnormal entry count found on day 2016-12-03: -8321
WARNING. Abnormal entry count found on day 2016-12-10: -8194
WARNING. Abnormal entry count found on day 2016-12-10: -8194
WARNING. Abnormal entry count found on day 2016-12-17: -7944
WARNING. Abnormal entry count found on day 2016-12-17: -7944
WARNING. Abnormal entry count found on day 2016-12-24: -5736
WARNING. Abnormal entry count found on day 2016-12-24: -5736
Processing turnstile ('N119', 'R199', '00-00-00', 'KINGSTON-THROOP')
WARNING. Abnormal entry count found on day 2016-12-03: -12358
WARNING. Abnormal entry count found on day 2016-12-03: -12358
WARNING. Abnormal entry count found on day 2016-12-10: -12206
WARNING. Abnormal entry count found on day 2016-12-10: -12206
WARNING. Abnormal entry count found on day 2016-12-17: -11138
WARNING. Abnormal entry count found on day 2016-12-17: -11138
WARNING. Abnormal entry count found on day 2016-12-24: -8913
WARNING. Abnormal entry count found on day 2016-12-24: -8913
Processing turnstile ('N091', 'R029', '02-00-03', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4905
WARNING. Abnormal entry count found on day 2016-12-03: -4905
WARNING. Abnormal entry count found on day 2016-12-10: -4867
WARNING. Abnormal entry count found on day 2016-12-10: -4867
WARNING. Abnormal entry count found on day 2016-12-17: -4156
WARNING. Abnormal entry count found on day 2016-12-17: -4156
WARNING. Abnormal entry count found on day 2016-12-24: -2705
WARNING. Abnormal entry count found on day 2016-12-24: -2705
Processing turnstile ('R124', 'R290', '03-00-00', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3307
WARNING. Abnormal entry count found on day 2016-12-03: -3307
WARNING. Abnormal entry count found on day 2016-12-10: -3331
WARNING. Abnormal entry count found on day 2016-12-10: -3331
WARNING. Abnormal entry count found on day 2016-12-17: -2868
WARNING. Abnormal entry count found on day 2016-12-17: -2868
WARNING. Abnormal entry count found on day 2016-12-24: -1621
WARNING. Abnormal entry count found on day 2016-12-24: -1621
Processing turnstile ('R605', 'R456', '00-03-00', 'HOYT ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2297
WARNING. Abnormal entry count found on day 2016-12-03: -2297
WARNING. Abnormal entry count found on day 2016-12-10: -2173
WARNING. Abnormal entry count found on day 2016-12-10: -2173
WARNING. Abnormal entry count found on day 2016-12-17: -2110
WARNING. Abnormal entry count found on day 2016-12-17: -2110
WARNING. Abnormal entry count found on day 2016-12-24: -1335
WARNING. Abnormal entry count found on day 2016-12-24: -1335
Processing turnstile ('B017', 'R262', '00-00-02', 'BEVERLEY ROAD')
WARNING. Abnormal entry count found on day 2016-12-03: -4669
WARNING. Abnormal entry count found on day 2016-12-03: -4669
WARNING. Abnormal entry count found on day 2016-12-10: -5169
WARNING. Abnormal entry count found on day 2016-12-10: -5169
WARNING. Abnormal entry count found on day 2016-12-17: -4652
WARNING. Abnormal entry count found on day 2016-12-17: -4652
WARNING. Abnormal entry count found on day 2016-12-24: -3564
WARNING. Abnormal entry count found on day 2016-12-24: -3564
Processing turnstile ('R168A', 'R168', '00-03-00', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9463
WARNING. Abnormal entry count found on day 2016-12-03: -9463
WARNING. Abnormal entry count found on day 2016-12-10: -7862
WARNING. Abnormal entry count found on day 2016-12-10: -7862
WARNING. Abnormal entry count found on day 2016-12-17: -7030
WARNING. Abnormal entry count found on day 2016-12-17: -7030
WARNING. Abnormal entry count found on day 2016-12-24: -5052
WARNING. Abnormal entry count found on day 2016-12-24: -5052
Processing turnstile ('N067', 'R012', '00-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -3610
WARNING. Abnormal entry count found on day 2016-12-03: -3610
WARNING. Abnormal entry count found on day 2016-12-10: -3768
WARNING. Abnormal entry count found on day 2016-12-10: -3768
WARNING. Abnormal entry count found on day 2016-12-17: -3643
WARNING. Abnormal entry count found on day 2016-12-17: -3643
WARNING. Abnormal entry count found on day 2016-12-24: -3299
WARNING. Abnormal entry count found on day 2016-12-24: -3299
Processing turnstile ('C018', 'R197', '00-00-03', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9134
WARNING. Abnormal entry count found on day 2016-12-03: -9134
WARNING. Abnormal entry count found on day 2016-12-10: -10226
WARNING. Abnormal entry count found on day 2016-12-10: -10226
WARNING. Abnormal entry count found on day 2016-12-17: -9303
WARNING. Abnormal entry count found on day 2016-12-17: -9303
WARNING. Abnormal entry count found on day 2016-12-24: -5829
WARNING. Abnormal entry count found on day 2016-12-24: -5829
Processing turnstile ('R130', 'R321', '01-06-01', '18 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -543
WARNING. Abnormal entry count found on day 2016-12-03: -543
WARNING. Abnormal entry count found on day 2016-12-10: -591
WARNING. Abnormal entry count found on day 2016-12-10: -591
WARNING. Abnormal entry count found on day 2016-12-17: -434
WARNING. Abnormal entry count found on day 2016-12-17: -434
WARNING. Abnormal entry count found on day 2016-12-24: -285
WARNING. Abnormal entry count found on day 2016-12-24: -285
Processing turnstile ('R601A', 'R108', '02-00-06', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -3244
WARNING. Abnormal entry count found on day 2016-12-03: -3244
WARNING. Abnormal entry count found on day 2016-12-10: -3144
WARNING. Abnormal entry count found on day 2016-12-10: -3144
WARNING. Abnormal entry count found on day 2016-12-17: -2518
WARNING. Abnormal entry count found on day 2016-12-17: -2518
WARNING. Abnormal entry count found on day 2016-12-24: -1643
WARNING. Abnormal entry count found on day 2016-12-24: -1643
Processing turnstile ('R523', 'R147', '00-05-01', '61 ST WOODSIDE')
Processing turnstile ('R219', 'R160', '00-00-05', 'ASTOR PL')
WARNING. Abnormal entry count found on day 2016-12-03: -15606
WARNING. Abnormal entry count found on day 2016-12-03: -15606
WARNING. Abnormal entry count found on day 2016-12-10: -15570
WARNING. Abnormal entry count found on day 2016-12-10: -15570
WARNING. Abnormal entry count found on day 2016-12-17: -12903
WARNING. Abnormal entry count found on day 2016-12-17: -12903
WARNING. Abnormal entry count found on day 2016-12-24: -8080
WARNING. Abnormal entry count found on day 2016-12-24: -8080
Processing turnstile ('R602', 'R108', '00-00-00', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -7617
WARNING. Abnormal entry count found on day 2016-12-03: -7617
WARNING. Abnormal entry count found on day 2016-12-10: -7254
WARNING. Abnormal entry count found on day 2016-12-10: -7254
WARNING. Abnormal entry count found on day 2016-12-17: -7165
WARNING. Abnormal entry count found on day 2016-12-17: -7165
WARNING. Abnormal entry count found on day 2016-12-24: -4955
WARNING. Abnormal entry count found on day 2016-12-24: -4955
Processing turnstile ('C014', 'R246', '00-00-02', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8530
WARNING. Abnormal entry count found on day 2016-12-03: -8530
WARNING. Abnormal entry count found on day 2016-12-10: -8259
WARNING. Abnormal entry count found on day 2016-12-10: -8259
WARNING. Abnormal entry count found on day 2016-12-17: -7436
WARNING. Abnormal entry count found on day 2016-12-17: -7436
WARNING. Abnormal entry count found on day 2016-12-24: -4623
WARNING. Abnormal entry count found on day 2016-12-24: -4623
Processing turnstile ('C024', 'R214', '00-00-02', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5287
WARNING. Abnormal entry count found on day 2016-12-03: -5287
WARNING. Abnormal entry count found on day 2016-12-10: -5505
WARNING. Abnormal entry count found on day 2016-12-10: -5505
WARNING. Abnormal entry count found on day 2016-12-17: -5055
WARNING. Abnormal entry count found on day 2016-12-17: -5055
WARNING. Abnormal entry count found on day 2016-12-24: -3830
WARNING. Abnormal entry count found on day 2016-12-24: -3830
Processing turnstile ('R610', 'R057', '00-04-01', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -3196
WARNING. Abnormal entry count found on day 2016-12-03: -3196
WARNING. Abnormal entry count found on day 2016-12-10: -3279
WARNING. Abnormal entry count found on day 2016-12-10: -3279
WARNING. Abnormal entry count found on day 2016-12-17: -3091
WARNING. Abnormal entry count found on day 2016-12-17: -3091
WARNING. Abnormal entry count found on day 2016-12-24: -2320
WARNING. Abnormal entry count found on day 2016-12-24: -2320
Processing turnstile ('R201', 'R041', '00-03-01', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -6609
WARNING. Abnormal entry count found on day 2016-12-03: -6609
WARNING. Abnormal entry count found on day 2016-12-10: -6555
WARNING. Abnormal entry count found on day 2016-12-10: -6555
WARNING. Abnormal entry count found on day 2016-12-17: -5572
WARNING. Abnormal entry count found on day 2016-12-17: -5572
WARNING. Abnormal entry count found on day 2016-12-24: -3896
WARNING. Abnormal entry count found on day 2016-12-24: -3896
Processing turnstile ('R231', 'R176', '00-00-02', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9602
WARNING. Abnormal entry count found on day 2016-12-03: -9602
WARNING. Abnormal entry count found on day 2016-12-10: -9578
WARNING. Abnormal entry count found on day 2016-12-10: -9578
WARNING. Abnormal entry count found on day 2016-12-17: -8860
WARNING. Abnormal entry count found on day 2016-12-17: -8860
WARNING. Abnormal entry count found on day 2016-12-24: -6708
WARNING. Abnormal entry count found on day 2016-12-24: -6708
Processing turnstile ('N511', 'R163', '03-00-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10284
WARNING. Abnormal entry count found on day 2016-12-03: -10284
WARNING. Abnormal entry count found on day 2016-12-10: -10247
WARNING. Abnormal entry count found on day 2016-12-10: -10247
WARNING. Abnormal entry count found on day 2016-12-17: -9241
WARNING. Abnormal entry count found on day 2016-12-17: -9241
WARNING. Abnormal entry count found on day 2016-12-24: -5190
WARNING. Abnormal entry count found on day 2016-12-24: -5190
Processing turnstile ('R158', 'R084', '00-05-00', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -11706
WARNING. Abnormal entry count found on day 2016-12-03: -11706
WARNING. Abnormal entry count found on day 2016-12-10: -11127
WARNING. Abnormal entry count found on day 2016-12-10: -11127
WARNING. Abnormal entry count found on day 2016-12-17: -5919
WARNING. Abnormal entry count found on day 2016-12-17: -5919
WARNING. Abnormal entry count found on day 2016-12-24: -5913
WARNING. Abnormal entry count found on day 2016-12-24: -5913
Processing turnstile ('N336', 'R158', '00-05-00', 'KEW GARDENS')
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R238', 'R046', '00-03-04', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -32029
WARNING. Abnormal entry count found on day 2016-12-03: -32029
WARNING. Abnormal entry count found on day 2016-12-10: -28265
WARNING. Abnormal entry count found on day 2016-12-10: -28265
WARNING. Abnormal entry count found on day 2016-12-17: -26058
WARNING. Abnormal entry count found on day 2016-12-17: -26058
WARNING. Abnormal entry count found on day 2016-12-24: -22827
WARNING. Abnormal entry count found on day 2016-12-24: -22827
Processing turnstile ('N062', 'R011', '01-03-03', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -11964
WARNING. Abnormal entry count found on day 2016-12-03: -11964
WARNING. Abnormal entry count found on day 2016-12-10: -12549
WARNING. Abnormal entry count found on day 2016-12-10: -12549
WARNING. Abnormal entry count found on day 2016-12-17: -11762
WARNING. Abnormal entry count found on day 2016-12-17: -11762
WARNING. Abnormal entry count found on day 2016-12-24: -10515
WARNING. Abnormal entry count found on day 2016-12-24: -10515
Processing turnstile ('R203', 'R043', '00-03-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6723
WARNING. Abnormal entry count found on day 2016-12-03: -6723
WARNING. Abnormal entry count found on day 2016-12-10: -6727
WARNING. Abnormal entry count found on day 2016-12-10: -6727
WARNING. Abnormal entry count found on day 2016-12-17: -6112
WARNING. Abnormal entry count found on day 2016-12-17: -6112
WARNING. Abnormal entry count found on day 2016-12-24: -4314
WARNING. Abnormal entry count found on day 2016-12-24: -4314
Processing turnstile ('R513', 'R093', '00-03-00', '30 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -37142
WARNING. Abnormal entry count found on day 2016-12-03: -37142
WARNING. Abnormal entry count found on day 2016-12-10: -35917
WARNING. Abnormal entry count found on day 2016-12-10: -35917
WARNING. Abnormal entry count found on day 2016-12-17: -29986
WARNING. Abnormal entry count found on day 2016-12-17: -29986
WARNING. Abnormal entry count found on day 2016-12-24: -26598
WARNING. Abnormal entry count found on day 2016-12-24: -26598
Processing turnstile ('N306', 'R017', '00-00-04', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -11929
WARNING. Abnormal entry count found on day 2016-12-03: -11929
WARNING. Abnormal entry count found on day 2016-12-10: -11642
WARNING. Abnormal entry count found on day 2016-12-10: -11642
WARNING. Abnormal entry count found on day 2016-12-17: -10661
WARNING. Abnormal entry count found on day 2016-12-17: -10661
WARNING. Abnormal entry count found on day 2016-12-24: -6487
WARNING. Abnormal entry count found on day 2016-12-24: -6487
Processing turnstile ('N500', 'R020', '00-03-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -23480
WARNING. Abnormal entry count found on day 2016-12-03: -23480
WARNING. Abnormal entry count found on day 2016-12-10: -23218
WARNING. Abnormal entry count found on day 2016-12-10: -23218
WARNING. Abnormal entry count found on day 2016-12-17: -22693
WARNING. Abnormal entry count found on day 2016-12-17: -22693
WARNING. Abnormal entry count found on day 2016-12-24: -20983
WARNING. Abnormal entry count found on day 2016-12-24: -20983
Processing turnstile ('N092', 'R029', '03-03-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18132
WARNING. Abnormal entry count found on day 2016-12-03: -18132
WARNING. Abnormal entry count found on day 2016-12-10: -21813
WARNING. Abnormal entry count found on day 2016-12-10: -21813
WARNING. Abnormal entry count found on day 2016-12-17: -14923
WARNING. Abnormal entry count found on day 2016-12-17: -14923
WARNING. Abnormal entry count found on day 2016-12-24: -9913
WARNING. Abnormal entry count found on day 2016-12-24: -9913
Processing turnstile ('TRAM2', 'R469', '00-03-00', 'RIT-ROOSEVELT')
WARNING. Abnormal entry count found on day 2016-12-03: -1296
WARNING. Abnormal entry count found on day 2016-12-03: -1296
WARNING. Abnormal entry count found on day 2016-12-10: -1017
WARNING. Abnormal entry count found on day 2016-12-10: -1017
WARNING. Abnormal entry count found on day 2016-12-17: -1055
WARNING. Abnormal entry count found on day 2016-12-17: -1055
WARNING. Abnormal entry count found on day 2016-12-24: -1954
WARNING. Abnormal entry count found on day 2016-12-24: -1954
Processing turnstile ('K025', 'R404', '00-03-02', 'FRESH POND RD')
WARNING. Abnormal entry count found on day 2016-12-03: -5569
WARNING. Abnormal entry count found on day 2016-12-03: -5569
WARNING. Abnormal entry count found on day 2016-12-10: -5286
WARNING. Abnormal entry count found on day 2016-12-10: -5286
WARNING. Abnormal entry count found on day 2016-12-17: -5315
WARNING. Abnormal entry count found on day 2016-12-17: -5315
WARNING. Abnormal entry count found on day 2016-12-24: -4197
WARNING. Abnormal entry count found on day 2016-12-24: -4197
Processing turnstile ('A016', 'R081', '03-06-00', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -867
WARNING. Abnormal entry count found on day 2016-12-03: -867
WARNING. Abnormal entry count found on day 2016-12-10: -956
WARNING. Abnormal entry count found on day 2016-12-10: -956
WARNING. Abnormal entry count found on day 2016-12-17: -2059
WARNING. Abnormal entry count found on day 2016-12-17: -2059
WARNING. Abnormal entry count found on day 2016-12-24: -1638
WARNING. Abnormal entry count found on day 2016-12-24: -1638
Processing turnstile ('PTH20', 'R549', '03-01-04', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -70
WARNING. Abnormal entry count found on day 2016-12-03: -70
WARNING. Abnormal entry count found on day 2016-12-10: -37
WARNING. Abnormal entry count found on day 2016-12-10: -37
WARNING. Abnormal entry count found on day 2016-12-17: -82
WARNING. Abnormal entry count found on day 2016-12-17: -82
WARNING. Abnormal entry count found on day 2016-12-24: -237
WARNING. Abnormal entry count found on day 2016-12-24: -237
Processing turnstile ('N607', 'R025', '01-06-01', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -4670
WARNING. Abnormal entry count found on day 2016-12-03: -4670
WARNING. Abnormal entry count found on day 2016-12-10: -4707
WARNING. Abnormal entry count found on day 2016-12-10: -4707
WARNING. Abnormal entry count found on day 2016-12-17: -5380
WARNING. Abnormal entry count found on day 2016-12-17: -5380
WARNING. Abnormal entry count found on day 2016-12-24: -2925
WARNING. Abnormal entry count found on day 2016-12-24: -2925
Processing turnstile ('R158', 'R084', '00-06-03', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -11830
WARNING. Abnormal entry count found on day 2016-12-03: -11830
WARNING. Abnormal entry count found on day 2016-12-10: -11775
WARNING. Abnormal entry count found on day 2016-12-10: -11775
WARNING. Abnormal entry count found on day 2016-12-17: -10827
WARNING. Abnormal entry count found on day 2016-12-17: -10827
WARNING. Abnormal entry count found on day 2016-12-24: -8777
WARNING. Abnormal entry count found on day 2016-12-24: -8777
Processing turnstile ('R221', 'R170', '01-03-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -22264
WARNING. Abnormal entry count found on day 2016-12-03: -22264
WARNING. Abnormal entry count found on day 2016-12-10: -21671
WARNING. Abnormal entry count found on day 2016-12-10: -21671
WARNING. Abnormal entry count found on day 2016-12-17: -21189
WARNING. Abnormal entry count found on day 2016-12-17: -21189
WARNING. Abnormal entry count found on day 2016-12-24: -14186
WARNING. Abnormal entry count found on day 2016-12-24: -14186
Processing turnstile ('E003', 'R369', '00-00-02', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -5405
WARNING. Abnormal entry count found on day 2016-12-03: -5405
WARNING. Abnormal entry count found on day 2016-12-10: -5544
WARNING. Abnormal entry count found on day 2016-12-10: -5544
WARNING. Abnormal entry count found on day 2016-12-17: -5444
WARNING. Abnormal entry count found on day 2016-12-17: -5444
WARNING. Abnormal entry count found on day 2016-12-24: -4542
WARNING. Abnormal entry count found on day 2016-12-24: -4542
Processing turnstile ('J007', 'R377', '00-05-01', 'FLUSHING AV')
Processing turnstile ('N196', 'R285', '00-05-01', 'FAR ROCKAWAY')
Processing turnstile ('R517', 'R291', '01-06-00', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9050
WARNING. Abnormal entry count found on day 2016-12-03: -9050
WARNING. Abnormal entry count found on day 2016-12-10: -8630
WARNING. Abnormal entry count found on day 2016-12-10: -8630
WARNING. Abnormal entry count found on day 2016-12-17: -7972
WARNING. Abnormal entry count found on day 2016-12-17: -7972
WARNING. Abnormal entry count found on day 2016-12-24: -4935
WARNING. Abnormal entry count found on day 2016-12-24: -4935
Processing turnstile ('N196', 'R285', '00-03-00', 'FAR ROCKAWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -6577
WARNING. Abnormal entry count found on day 2016-12-03: -6577
WARNING. Abnormal entry count found on day 2016-12-10: -6444
WARNING. Abnormal entry count found on day 2016-12-10: -6444
WARNING. Abnormal entry count found on day 2016-12-17: -6617
WARNING. Abnormal entry count found on day 2016-12-17: -6617
WARNING. Abnormal entry count found on day 2016-12-24: -5371
WARNING. Abnormal entry count found on day 2016-12-24: -5371
Processing turnstile ('B032', 'R264', '00-00-00', 'OCEAN PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -2830
WARNING. Abnormal entry count found on day 2016-12-03: -2830
WARNING. Abnormal entry count found on day 2016-12-10: -2860
WARNING. Abnormal entry count found on day 2016-12-10: -2860
WARNING. Abnormal entry count found on day 2016-12-17: -2457
WARNING. Abnormal entry count found on day 2016-12-17: -2457
WARNING. Abnormal entry count found on day 2016-12-24: -2388
WARNING. Abnormal entry count found on day 2016-12-24: -2388
Processing turnstile ('N092', 'R029', '03-06-00', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4336
WARNING. Abnormal entry count found on day 2016-12-03: -4336
WARNING. Abnormal entry count found on day 2016-12-10: -4328
WARNING. Abnormal entry count found on day 2016-12-10: -4328
WARNING. Abnormal entry count found on day 2016-12-17: -3330
WARNING. Abnormal entry count found on day 2016-12-17: -3330
WARNING. Abnormal entry count found on day 2016-12-24: -2377
WARNING. Abnormal entry count found on day 2016-12-24: -2377
Processing turnstile ('R600', 'R224', '00-00-02', 'CLARK ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11942
WARNING. Abnormal entry count found on day 2016-12-03: -11942
WARNING. Abnormal entry count found on day 2016-12-10: -11561
WARNING. Abnormal entry count found on day 2016-12-10: -11561
WARNING. Abnormal entry count found on day 2016-12-17: -10158
WARNING. Abnormal entry count found on day 2016-12-17: -10158
WARNING. Abnormal entry count found on day 2016-12-24: -7756
WARNING. Abnormal entry count found on day 2016-12-24: -7756
Processing turnstile ('N071', 'R013', '00-00-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -11023
WARNING. Abnormal entry count found on day 2016-12-03: -11023
WARNING. Abnormal entry count found on day 2016-12-10: -10937
WARNING. Abnormal entry count found on day 2016-12-10: -10937
WARNING. Abnormal entry count found on day 2016-12-17: -10643
WARNING. Abnormal entry count found on day 2016-12-17: -10643
WARNING. Abnormal entry count found on day 2016-12-24: -9060
WARNING. Abnormal entry count found on day 2016-12-24: -9060
Processing turnstile ('N559', 'R425', '00-00-01', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -2861
WARNING. Abnormal entry count found on day 2016-12-03: -2861
WARNING. Abnormal entry count found on day 2016-12-10: -2405
WARNING. Abnormal entry count found on day 2016-12-10: -2405
WARNING. Abnormal entry count found on day 2016-12-17: -2704
WARNING. Abnormal entry count found on day 2016-12-17: -2704
WARNING. Abnormal entry count found on day 2016-12-24: -2006
WARNING. Abnormal entry count found on day 2016-12-24: -2006
Processing turnstile ('R639', 'R109', '00-05-03', 'CHURCH AV')
Processing turnstile ('R314', 'R406', '00-00-01', 'PROSPECT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10394
WARNING. Abnormal entry count found on day 2016-12-03: -10394
WARNING. Abnormal entry count found on day 2016-12-10: -12667
WARNING. Abnormal entry count found on day 2016-12-10: -12667
WARNING. Abnormal entry count found on day 2016-12-17: -14165
WARNING. Abnormal entry count found on day 2016-12-17: -14165
WARNING. Abnormal entry count found on day 2016-12-24: -9316
WARNING. Abnormal entry count found on day 2016-12-24: -9316
Processing turnstile ('N089', 'R139', '00-06-00', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1583
WARNING. Abnormal entry count found on day 2016-12-03: -1583
WARNING. Abnormal entry count found on day 2016-12-10: -1559
WARNING. Abnormal entry count found on day 2016-12-10: -1559
WARNING. Abnormal entry count found on day 2016-12-17: -1317
WARNING. Abnormal entry count found on day 2016-12-17: -1317
WARNING. Abnormal entry count found on day 2016-12-24: -931
WARNING. Abnormal entry count found on day 2016-12-24: -931
Processing turnstile ('R242', 'R049', '01-00-00', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1796
WARNING. Abnormal entry count found on day 2016-12-03: -1796
WARNING. Abnormal entry count found on day 2016-12-10: -1967
WARNING. Abnormal entry count found on day 2016-12-10: -1967
WARNING. Abnormal entry count found on day 2016-12-17: -1768
WARNING. Abnormal entry count found on day 2016-12-17: -1768
WARNING. Abnormal entry count found on day 2016-12-24: -1397
WARNING. Abnormal entry count found on day 2016-12-24: -1397
Processing turnstile ('N069', 'R013', '01-00-02', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -12867
WARNING. Abnormal entry count found on day 2016-12-03: -12867
WARNING. Abnormal entry count found on day 2016-12-10: -12749
WARNING. Abnormal entry count found on day 2016-12-10: -12749
WARNING. Abnormal entry count found on day 2016-12-17: -10135
WARNING. Abnormal entry count found on day 2016-12-17: -10135
WARNING. Abnormal entry count found on day 2016-12-24: -8046
WARNING. Abnormal entry count found on day 2016-12-24: -8046
Processing turnstile ('D003', 'R391', '00-00-01', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -2557
WARNING. Abnormal entry count found on day 2016-12-03: -2557
WARNING. Abnormal entry count found on day 2016-12-10: -2446
WARNING. Abnormal entry count found on day 2016-12-10: -2446
WARNING. Abnormal entry count found on day 2016-12-17: -2440
WARNING. Abnormal entry count found on day 2016-12-17: -2440
WARNING. Abnormal entry count found on day 2016-12-24: -1887
WARNING. Abnormal entry count found on day 2016-12-24: -1887
Processing turnstile ('N102', 'R127', '01-00-02', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -15628
WARNING. Abnormal entry count found on day 2016-12-03: -15628
WARNING. Abnormal entry count found on day 2016-12-10: -14733
WARNING. Abnormal entry count found on day 2016-12-10: -14733
WARNING. Abnormal entry count found on day 2016-12-17: -12903
WARNING. Abnormal entry count found on day 2016-12-17: -12903
WARNING. Abnormal entry count found on day 2016-12-24: -7457
WARNING. Abnormal entry count found on day 2016-12-24: -7457
Processing turnstile ('N184', 'R416', '00-00-01', 'BEACH 90 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1130
WARNING. Abnormal entry count found on day 2016-12-03: -1130
WARNING. Abnormal entry count found on day 2016-12-10: -1136
WARNING. Abnormal entry count found on day 2016-12-10: -1136
WARNING. Abnormal entry count found on day 2016-12-17: -1114
WARNING. Abnormal entry count found on day 2016-12-17: -1114
WARNING. Abnormal entry count found on day 2016-12-24: -871
WARNING. Abnormal entry count found on day 2016-12-24: -871
Processing turnstile ('R168A', 'R168', '00-00-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15373
WARNING. Abnormal entry count found on day 2016-12-03: -15373
WARNING. Abnormal entry count found on day 2016-12-10: -15054
WARNING. Abnormal entry count found on day 2016-12-10: -15054
WARNING. Abnormal entry count found on day 2016-12-17: -13149
WARNING. Abnormal entry count found on day 2016-12-17: -13149
WARNING. Abnormal entry count found on day 2016-12-24: -9033
WARNING. Abnormal entry count found on day 2016-12-24: -9033
Processing turnstile ('N012', 'R035', '01-06-00', '168 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -327
WARNING. Abnormal entry count found on day 2016-12-03: -327
WARNING. Abnormal entry count found on day 2016-12-10: -279
WARNING. Abnormal entry count found on day 2016-12-10: -279
WARNING. Abnormal entry count found on day 2016-12-17: -364
WARNING. Abnormal entry count found on day 2016-12-17: -364
WARNING. Abnormal entry count found on day 2016-12-24: -373
WARNING. Abnormal entry count found on day 2016-12-24: -373
Processing turnstile ('PTH20', 'R549', '03-01-03', 'NEWARK HM HE')
WARNING. Abnormal entry count found on day 2016-12-03: -127
WARNING. Abnormal entry count found on day 2016-12-03: -127
WARNING. Abnormal entry count found on day 2016-12-10: -365
WARNING. Abnormal entry count found on day 2016-12-10: -365
WARNING. Abnormal entry count found on day 2016-12-17: -368
WARNING. Abnormal entry count found on day 2016-12-17: -368
WARNING. Abnormal entry count found on day 2016-12-24: -74
WARNING. Abnormal entry count found on day 2016-12-24: -74
Processing turnstile ('N141', 'R356', '00-00-00', 'OZONE PK LEFFRT')
WARNING. Abnormal entry count found on day 2016-12-03: -1050
WARNING. Abnormal entry count found on day 2016-12-03: -1050
WARNING. Abnormal entry count found on day 2016-12-10: -1248
WARNING. Abnormal entry count found on day 2016-12-10: -1248
WARNING. Abnormal entry count found on day 2016-12-17: -1372
WARNING. Abnormal entry count found on day 2016-12-17: -1372
WARNING. Abnormal entry count found on day 2016-12-24: -655
WARNING. Abnormal entry count found on day 2016-12-24: -655
Processing turnstile ('N530', 'R301', '00-00-02', 'YORK ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17355
WARNING. Abnormal entry count found on day 2016-12-03: -17355
WARNING. Abnormal entry count found on day 2016-12-10: -16573
WARNING. Abnormal entry count found on day 2016-12-10: -16573
WARNING. Abnormal entry count found on day 2016-12-17: -14831
WARNING. Abnormal entry count found on day 2016-12-17: -14831
WARNING. Abnormal entry count found on day 2016-12-24: -10952
WARNING. Abnormal entry count found on day 2016-12-24: -10952
Processing turnstile ('H023', 'R236', '00-00-01', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8547
WARNING. Abnormal entry count found on day 2016-12-03: -8547
WARNING. Abnormal entry count found on day 2016-12-10: -8524
WARNING. Abnormal entry count found on day 2016-12-10: -8524
WARNING. Abnormal entry count found on day 2016-12-17: -8083
WARNING. Abnormal entry count found on day 2016-12-17: -8083
WARNING. Abnormal entry count found on day 2016-12-24: -5944
WARNING. Abnormal entry count found on day 2016-12-24: -5944
Processing turnstile ('R285', 'R308', '00-00-03', 'MT EDEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9545
WARNING. Abnormal entry count found on day 2016-12-03: -9545
WARNING. Abnormal entry count found on day 2016-12-10: -8679
WARNING. Abnormal entry count found on day 2016-12-10: -8679
WARNING. Abnormal entry count found on day 2016-12-17: -8524
WARNING. Abnormal entry count found on day 2016-12-17: -8524
WARNING. Abnormal entry count found on day 2016-12-24: -7171
WARNING. Abnormal entry count found on day 2016-12-24: -7171
Processing turnstile ('R639', 'R109', '00-00-03', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -19353
WARNING. Abnormal entry count found on day 2016-12-03: -19353
WARNING. Abnormal entry count found on day 2016-12-10: -18592
WARNING. Abnormal entry count found on day 2016-12-10: -18592
WARNING. Abnormal entry count found on day 2016-12-17: -17945
WARNING. Abnormal entry count found on day 2016-12-17: -17945
WARNING. Abnormal entry count found on day 2016-12-24: -14454
WARNING. Abnormal entry count found on day 2016-12-24: -14454
Processing turnstile ('N405', 'R239', '00-00-02', 'GREENPOINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8613
WARNING. Abnormal entry count found on day 2016-12-03: -8613
WARNING. Abnormal entry count found on day 2016-12-10: -8443
WARNING. Abnormal entry count found on day 2016-12-10: -8443
WARNING. Abnormal entry count found on day 2016-12-17: -7691
WARNING. Abnormal entry count found on day 2016-12-17: -7691
WARNING. Abnormal entry count found on day 2016-12-24: -5101
WARNING. Abnormal entry count found on day 2016-12-24: -5101
Processing turnstile ('J028', 'R004', '00-00-00', '75 ST-ELDERTS')
WARNING. Abnormal entry count found on day 2016-12-03: -6584
WARNING. Abnormal entry count found on day 2016-12-03: -6584
WARNING. Abnormal entry count found on day 2016-12-10: -6303
WARNING. Abnormal entry count found on day 2016-12-10: -6303
WARNING. Abnormal entry count found on day 2016-12-17: -6236
WARNING. Abnormal entry count found on day 2016-12-17: -6236
WARNING. Abnormal entry count found on day 2016-12-24: -5140
WARNING. Abnormal entry count found on day 2016-12-24: -5140
Processing turnstile ('N301', 'R113', '00-00-03', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13085
WARNING. Abnormal entry count found on day 2016-12-03: -13085
WARNING. Abnormal entry count found on day 2016-12-10: -12995
WARNING. Abnormal entry count found on day 2016-12-10: -12995
WARNING. Abnormal entry count found on day 2016-12-17: -11966
WARNING. Abnormal entry count found on day 2016-12-17: -11966
WARNING. Abnormal entry count found on day 2016-12-24: -10344
WARNING. Abnormal entry count found on day 2016-12-24: -10344
Processing turnstile ('H012', 'R268', '01-06-02', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1035
WARNING. Abnormal entry count found on day 2016-12-03: -1035
WARNING. Abnormal entry count found on day 2016-12-10: -1007
WARNING. Abnormal entry count found on day 2016-12-10: -1007
WARNING. Abnormal entry count found on day 2016-12-17: -1643
WARNING. Abnormal entry count found on day 2016-12-17: -1643
WARNING. Abnormal entry count found on day 2016-12-24: -546
WARNING. Abnormal entry count found on day 2016-12-24: -546
Processing turnstile ('N083', 'R138', '01-02-03', 'W 4 ST-WASH SQ')
Processing turnstile ('R158', 'R084', '00-05-02', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -4582
WARNING. Abnormal entry count found on day 2016-12-03: -4582
WARNING. Abnormal entry count found on day 2016-12-10: -3742
WARNING. Abnormal entry count found on day 2016-12-10: -3742
WARNING. Abnormal entry count found on day 2016-12-17: -3761
WARNING. Abnormal entry count found on day 2016-12-17: -3761
WARNING. Abnormal entry count found on day 2016-12-24: -1519
WARNING. Abnormal entry count found on day 2016-12-24: -1519
Processing turnstile ('R166', 'R167', '02-00-00', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14299
WARNING. Abnormal entry count found on day 2016-12-03: -14299
WARNING. Abnormal entry count found on day 2016-12-10: -14206
WARNING. Abnormal entry count found on day 2016-12-10: -14206
WARNING. Abnormal entry count found on day 2016-12-17: -12768
WARNING. Abnormal entry count found on day 2016-12-17: -12768
WARNING. Abnormal entry count found on day 2016-12-24: -9227
WARNING. Abnormal entry count found on day 2016-12-24: -9227
Processing turnstile ('N063A', 'R011', '00-00-06', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -27777
WARNING. Abnormal entry count found on day 2016-12-03: -27777
WARNING. Abnormal entry count found on day 2016-12-10: -27403
WARNING. Abnormal entry count found on day 2016-12-10: -27403
WARNING. Abnormal entry count found on day 2016-12-17: -26938
WARNING. Abnormal entry count found on day 2016-12-17: -26938
WARNING. Abnormal entry count found on day 2016-12-24: -20587
WARNING. Abnormal entry count found on day 2016-12-24: -20587
Processing turnstile ('R645', 'R110', '00-03-00', 'FLATBUSH AV-B.C')
WARNING. Abnormal entry count found on day 2016-12-03: -2126
WARNING. Abnormal entry count found on day 2016-12-03: -2126
WARNING. Abnormal entry count found on day 2016-12-10: -2124
WARNING. Abnormal entry count found on day 2016-12-10: -2124
WARNING. Abnormal entry count found on day 2016-12-17: -2086
WARNING. Abnormal entry count found on day 2016-12-17: -2086
WARNING. Abnormal entry count found on day 2016-12-24: -1734
WARNING. Abnormal entry count found on day 2016-12-24: -1734
Processing turnstile ('N606', 'R025', '00-00-01', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-04: -778
WARNING. Abnormal entry count found on day 2016-12-05: -542
WARNING. Abnormal entry count found on day 2016-12-06: -1749
WARNING. Abnormal entry count found on day 2016-12-07: -1585
WARNING. Abnormal entry count found on day 2016-12-08: -1604
WARNING. Abnormal entry count found on day 2016-12-09: -1140
WARNING. Abnormal entry count found on day 2016-12-04: -778
WARNING. Abnormal entry count found on day 2016-12-05: -542
WARNING. Abnormal entry count found on day 2016-12-06: -1749
WARNING. Abnormal entry count found on day 2016-12-07: -1585
WARNING. Abnormal entry count found on day 2016-12-08: -1604
WARNING. Abnormal entry count found on day 2016-12-09: -1140
WARNING. Abnormal entry count found on day 2016-12-04: -778
WARNING. Abnormal entry count found on day 2016-12-05: -542
WARNING. Abnormal entry count found on day 2016-12-06: -1749
WARNING. Abnormal entry count found on day 2016-12-07: -1585
WARNING. Abnormal entry count found on day 2016-12-08: -1604
WARNING. Abnormal entry count found on day 2016-12-09: -1140
WARNING. Abnormal entry count found on day 2016-12-10: -1109
WARNING. Abnormal entry count found on day 2016-12-11: -635
WARNING. Abnormal entry count found on day 2016-12-12: -411
WARNING. Abnormal entry count found on day 2016-12-13: -1081
WARNING. Abnormal entry count found on day 2016-12-14: -975
WARNING. Abnormal entry count found on day 2016-12-15: -1146
WARNING. Abnormal entry count found on day 2016-12-16: -970
WARNING. Abnormal entry count found on day 2016-12-11: -635
WARNING. Abnormal entry count found on day 2016-12-12: -411
WARNING. Abnormal entry count found on day 2016-12-13: -1081
WARNING. Abnormal entry count found on day 2016-12-14: -975
WARNING. Abnormal entry count found on day 2016-12-15: -1146
WARNING. Abnormal entry count found on day 2016-12-16: -970
WARNING. Abnormal entry count found on day 2016-12-11: -635
WARNING. Abnormal entry count found on day 2016-12-12: -411
WARNING. Abnormal entry count found on day 2016-12-13: -1081
WARNING. Abnormal entry count found on day 2016-12-14: -975
WARNING. Abnormal entry count found on day 2016-12-15: -1146
WARNING. Abnormal entry count found on day 2016-12-16: -970
WARNING. Abnormal entry count found on day 2016-12-17: -980
WARNING. Abnormal entry count found on day 2016-12-18: -492
WARNING. Abnormal entry count found on day 2016-12-19: -436
WARNING. Abnormal entry count found on day 2016-12-20: -1133
WARNING. Abnormal entry count found on day 2016-12-21: -1104
WARNING. Abnormal entry count found on day 2016-12-22: -957
WARNING. Abnormal entry count found on day 2016-12-23: -1055
WARNING. Abnormal entry count found on day 2016-12-18: -492
WARNING. Abnormal entry count found on day 2016-12-19: -436
WARNING. Abnormal entry count found on day 2016-12-20: -1133
WARNING. Abnormal entry count found on day 2016-12-21: -1104
WARNING. Abnormal entry count found on day 2016-12-22: -957
WARNING. Abnormal entry count found on day 2016-12-23: -1055
WARNING. Abnormal entry count found on day 2016-12-18: -492
WARNING. Abnormal entry count found on day 2016-12-19: -436
WARNING. Abnormal entry count found on day 2016-12-20: -1133
WARNING. Abnormal entry count found on day 2016-12-21: -1104
WARNING. Abnormal entry count found on day 2016-12-22: -957
WARNING. Abnormal entry count found on day 2016-12-23: -1055
WARNING. Abnormal entry count found on day 2016-12-24: -984
WARNING. Abnormal entry count found on day 2016-12-25: -561
WARNING. Abnormal entry count found on day 2016-12-26: -352
WARNING. Abnormal entry count found on day 2016-12-27: -610
WARNING. Abnormal entry count found on day 2016-12-28: -1057
WARNING. Abnormal entry count found on day 2016-12-29: -950
WARNING. Abnormal entry count found on day 2016-12-30: -800
WARNING. Abnormal entry count found on day 2016-12-25: -561
WARNING. Abnormal entry count found on day 2016-12-26: -352
WARNING. Abnormal entry count found on day 2016-12-27: -610
WARNING. Abnormal entry count found on day 2016-12-28: -1057
WARNING. Abnormal entry count found on day 2016-12-29: -950
WARNING. Abnormal entry count found on day 2016-12-30: -800
WARNING. Abnormal entry count found on day 2016-12-25: -561
WARNING. Abnormal entry count found on day 2016-12-26: -352
WARNING. Abnormal entry count found on day 2016-12-27: -610
WARNING. Abnormal entry count found on day 2016-12-28: -1057
WARNING. Abnormal entry count found on day 2016-12-29: -950
WARNING. Abnormal entry count found on day 2016-12-30: -800
Processing turnstile ('R418', 'R106', '00-03-01', 'CASTLE HILL AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11204
WARNING. Abnormal entry count found on day 2016-12-03: -11204
WARNING. Abnormal entry count found on day 2016-12-10: -11329
WARNING. Abnormal entry count found on day 2016-12-10: -11329
WARNING. Abnormal entry count found on day 2016-12-17: -10279
WARNING. Abnormal entry count found on day 2016-12-17: -10279
WARNING. Abnormal entry count found on day 2016-12-24: -8771
WARNING. Abnormal entry count found on day 2016-12-24: -8771
Processing turnstile ('N525', 'R142', '01-00-03', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -11814
WARNING. Abnormal entry count found on day 2016-12-03: -11814
WARNING. Abnormal entry count found on day 2016-12-10: -12395
WARNING. Abnormal entry count found on day 2016-12-10: -12395
WARNING. Abnormal entry count found on day 2016-12-17: -11465
WARNING. Abnormal entry count found on day 2016-12-17: -11465
WARNING. Abnormal entry count found on day 2016-12-24: -8685
WARNING. Abnormal entry count found on day 2016-12-24: -8685
Processing turnstile ('PTH03', 'R552', '00-00-05', 'JOURNAL SQUARE')
WARNING. Abnormal entry count found on day 2016-12-03: -12252
WARNING. Abnormal entry count found on day 2016-12-03: -12252
WARNING. Abnormal entry count found on day 2016-12-10: -10216
WARNING. Abnormal entry count found on day 2016-12-10: -10216
WARNING. Abnormal entry count found on day 2016-12-17: -7563
WARNING. Abnormal entry count found on day 2016-12-17: -7563
WARNING. Abnormal entry count found on day 2016-12-24: -5267
WARNING. Abnormal entry count found on day 2016-12-24: -5267
Processing turnstile ('R633', 'R068', '00-00-02', 'VAN SICLEN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8813
WARNING. Abnormal entry count found on day 2016-12-03: -8813
WARNING. Abnormal entry count found on day 2016-12-10: -8235
WARNING. Abnormal entry count found on day 2016-12-10: -8235
WARNING. Abnormal entry count found on day 2016-12-17: -8275
WARNING. Abnormal entry count found on day 2016-12-17: -8275
WARNING. Abnormal entry count found on day 2016-12-24: -6099
WARNING. Abnormal entry count found on day 2016-12-24: -6099
Processing turnstile ('R101', 'R001', '02-00-08', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -5507
WARNING. Abnormal entry count found on day 2016-12-03: -5507
WARNING. Abnormal entry count found on day 2016-12-10: -5706
WARNING. Abnormal entry count found on day 2016-12-10: -5706
WARNING. Abnormal entry count found on day 2016-12-17: -5847
WARNING. Abnormal entry count found on day 2016-12-17: -5847
WARNING. Abnormal entry count found on day 2016-12-24: -5028
WARNING. Abnormal entry count found on day 2016-12-24: -5028
Processing turnstile ('N130', 'R383', '01-06-00', '80 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6718
WARNING. Abnormal entry count found on day 2016-12-03: -6718
WARNING. Abnormal entry count found on day 2016-12-10: -6438
WARNING. Abnormal entry count found on day 2016-12-10: -6438
WARNING. Abnormal entry count found on day 2016-12-17: -6122
WARNING. Abnormal entry count found on day 2016-12-17: -6122
WARNING. Abnormal entry count found on day 2016-12-24: -4910
WARNING. Abnormal entry count found on day 2016-12-24: -4910
Processing turnstile ('R532', 'R328', '00-05-05', 'METS-WILLETS PT')
Processing turnstile ('R644', 'R135', '01-00-01', 'NEWKIRK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -153
WARNING. Abnormal entry count found on day 2016-12-03: -153
WARNING. Abnormal entry count found on day 2016-12-10: -155
WARNING. Abnormal entry count found on day 2016-12-10: -155
WARNING. Abnormal entry count found on day 2016-12-17: -175
WARNING. Abnormal entry count found on day 2016-12-17: -175
WARNING. Abnormal entry count found on day 2016-12-24: -119
WARNING. Abnormal entry count found on day 2016-12-24: -119
Processing turnstile ('N343', 'R019', '00-05-00', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12
WARNING. Abnormal entry count found on day 2016-12-03: -12
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('D002', 'R390', '00-03-00', '8 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13704
WARNING. Abnormal entry count found on day 2016-12-03: -13704
WARNING. Abnormal entry count found on day 2016-12-10: -13516
WARNING. Abnormal entry count found on day 2016-12-10: -13516
WARNING. Abnormal entry count found on day 2016-12-17: -14004
WARNING. Abnormal entry count found on day 2016-12-17: -14004
WARNING. Abnormal entry count found on day 2016-12-24: -12939
WARNING. Abnormal entry count found on day 2016-12-24: -12939
Processing turnstile ('N325A', 'R218', '00-06-01', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -26063
WARNING. Abnormal entry count found on day 2016-12-03: -26063
WARNING. Abnormal entry count found on day 2016-12-10: -25547
WARNING. Abnormal entry count found on day 2016-12-10: -25547
WARNING. Abnormal entry count found on day 2016-12-17: -25081
WARNING. Abnormal entry count found on day 2016-12-17: -25081
WARNING. Abnormal entry count found on day 2016-12-24: -22255
WARNING. Abnormal entry count found on day 2016-12-24: -22255
Processing turnstile ('N128', 'R200', '00-05-01', 'EUCLID AV')
Processing turnstile ('R169', 'R168', '01-00-05', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7174
WARNING. Abnormal entry count found on day 2016-12-03: -7174
WARNING. Abnormal entry count found on day 2016-12-10: -7245
WARNING. Abnormal entry count found on day 2016-12-10: -7245
WARNING. Abnormal entry count found on day 2016-12-17: -6942
WARNING. Abnormal entry count found on day 2016-12-17: -6942
WARNING. Abnormal entry count found on day 2016-12-24: -5055
WARNING. Abnormal entry count found on day 2016-12-24: -5055
Processing turnstile ('N120A', 'R153', '01-06-00', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13541
WARNING. Abnormal entry count found on day 2016-12-03: -13541
WARNING. Abnormal entry count found on day 2016-12-10: -13365
WARNING. Abnormal entry count found on day 2016-12-10: -13365
WARNING. Abnormal entry count found on day 2016-12-17: -11977
WARNING. Abnormal entry count found on day 2016-12-17: -11977
WARNING. Abnormal entry count found on day 2016-12-24: -8657
WARNING. Abnormal entry count found on day 2016-12-24: -8657
Processing turnstile ('A047', 'R087', '00-03-02', 'CITY HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -3451
WARNING. Abnormal entry count found on day 2016-12-03: -3451
WARNING. Abnormal entry count found on day 2016-12-10: -3287
WARNING. Abnormal entry count found on day 2016-12-10: -3287
WARNING. Abnormal entry count found on day 2016-12-17: -3347
WARNING. Abnormal entry count found on day 2016-12-17: -3347
WARNING. Abnormal entry count found on day 2016-12-24: -3226
WARNING. Abnormal entry count found on day 2016-12-24: -3226
Processing turnstile ('R138', 'R293', '00-03-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -20911
WARNING. Abnormal entry count found on day 2016-12-03: -20911
WARNING. Abnormal entry count found on day 2016-12-10: -19747
WARNING. Abnormal entry count found on day 2016-12-10: -19747
WARNING. Abnormal entry count found on day 2016-12-17: -18306
WARNING. Abnormal entry count found on day 2016-12-17: -18306
WARNING. Abnormal entry count found on day 2016-12-24: -12373
WARNING. Abnormal entry count found on day 2016-12-24: -12373
Processing turnstile ('N601A', 'R319', '01-03-02', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-24: -250
WARNING. Abnormal entry count found on day 2016-12-24: -250
Processing turnstile ('N324', 'R018', '00-02-00', 'JKSN HT-ROOSVLT')
WARNING. Abnormal entry count found on day 2016-12-03: -14
WARNING. Abnormal entry count found on day 2016-12-03: -14
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-10: -19
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
Processing turnstile ('N605', 'R024', '00-00-02', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -14038
WARNING. Abnormal entry count found on day 2016-12-03: -14038
WARNING. Abnormal entry count found on day 2016-12-10: -13387
WARNING. Abnormal entry count found on day 2016-12-10: -13387
WARNING. Abnormal entry count found on day 2016-12-17: -13213
WARNING. Abnormal entry count found on day 2016-12-17: -13213
WARNING. Abnormal entry count found on day 2016-12-24: -12720
WARNING. Abnormal entry count found on day 2016-12-24: -12720
Processing turnstile ('E011', 'R371', '00-00-00', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11613
WARNING. Abnormal entry count found on day 2016-12-03: -11613
WARNING. Abnormal entry count found on day 2016-12-10: -11060
WARNING. Abnormal entry count found on day 2016-12-10: -11060
WARNING. Abnormal entry count found on day 2016-12-17: -11406
WARNING. Abnormal entry count found on day 2016-12-17: -11406
WARNING. Abnormal entry count found on day 2016-12-24: -8795
WARNING. Abnormal entry count found on day 2016-12-24: -8795
Processing turnstile ('R418', 'R106', '00-06-01', 'CASTLE HILL AV')
Processing turnstile ('R527', 'R122', '00-00-01', '90 ST-ELMHURST')
WARNING. Abnormal entry count found on day 2016-12-03: -7789
WARNING. Abnormal entry count found on day 2016-12-03: -7789
WARNING. Abnormal entry count found on day 2016-12-10: -7805
WARNING. Abnormal entry count found on day 2016-12-10: -7805
WARNING. Abnormal entry count found on day 2016-12-17: -8597
WARNING. Abnormal entry count found on day 2016-12-17: -8597
WARNING. Abnormal entry count found on day 2016-12-24: -6378
WARNING. Abnormal entry count found on day 2016-12-24: -6378
Processing turnstile ('R170', 'R191', '00-03-02', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13533
WARNING. Abnormal entry count found on day 2016-12-03: -13533
WARNING. Abnormal entry count found on day 2016-12-10: -12989
WARNING. Abnormal entry count found on day 2016-12-10: -12989
WARNING. Abnormal entry count found on day 2016-12-17: -11915
WARNING. Abnormal entry count found on day 2016-12-17: -11915
WARNING. Abnormal entry count found on day 2016-12-24: -9644
WARNING. Abnormal entry count found on day 2016-12-24: -9644
Processing turnstile ('R506', 'R276', '02-05-01', 'VERNON-JACKSON')
Processing turnstile ('R509', 'R121', '00-00-05', 'QUEENSBORO PLZ')
WARNING. Abnormal entry count found on day 2016-12-03: -3492
WARNING. Abnormal entry count found on day 2016-12-03: -3492
WARNING. Abnormal entry count found on day 2016-12-10: -2812
WARNING. Abnormal entry count found on day 2016-12-10: -2812
WARNING. Abnormal entry count found on day 2016-12-17: -2307
WARNING. Abnormal entry count found on day 2016-12-17: -2307
WARNING. Abnormal entry count found on day 2016-12-24: -1145
WARNING. Abnormal entry count found on day 2016-12-24: -1145
Processing turnstile ('A025', 'R023', '01-00-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -14682
WARNING. Abnormal entry count found on day 2016-12-03: -14682
WARNING. Abnormal entry count found on day 2016-12-10: -15383
WARNING. Abnormal entry count found on day 2016-12-10: -15383
WARNING. Abnormal entry count found on day 2016-12-17: -15303
WARNING. Abnormal entry count found on day 2016-12-17: -15303
WARNING. Abnormal entry count found on day 2016-12-24: -12505
WARNING. Abnormal entry count found on day 2016-12-24: -12505
Processing turnstile ('N060', 'R010', '01-00-05', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -11150
WARNING. Abnormal entry count found on day 2016-12-03: -11150
WARNING. Abnormal entry count found on day 2016-12-10: -11888
WARNING. Abnormal entry count found on day 2016-12-10: -11888
WARNING. Abnormal entry count found on day 2016-12-17: -10479
WARNING. Abnormal entry count found on day 2016-12-17: -10479
WARNING. Abnormal entry count found on day 2016-12-24: -8160
WARNING. Abnormal entry count found on day 2016-12-24: -8160
Processing turnstile ('N113', 'R297', '00-00-00', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6969
WARNING. Abnormal entry count found on day 2016-12-03: -6969
WARNING. Abnormal entry count found on day 2016-12-10: -6274
WARNING. Abnormal entry count found on day 2016-12-10: -6274
WARNING. Abnormal entry count found on day 2016-12-17: -5037
WARNING. Abnormal entry count found on day 2016-12-17: -5037
WARNING. Abnormal entry count found on day 2016-12-24: -3872
WARNING. Abnormal entry count found on day 2016-12-24: -3872
Processing turnstile ('N306', 'R017', '00-00-02', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -10703
WARNING. Abnormal entry count found on day 2016-12-03: -10703
WARNING. Abnormal entry count found on day 2016-12-10: -10768
WARNING. Abnormal entry count found on day 2016-12-10: -10768
WARNING. Abnormal entry count found on day 2016-12-17: -10442
WARNING. Abnormal entry count found on day 2016-12-17: -10442
WARNING. Abnormal entry count found on day 2016-12-24: -7244
WARNING. Abnormal entry count found on day 2016-12-24: -7244
Processing turnstile ('R409', 'R449', '01-00-02', 'E 149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2340
WARNING. Abnormal entry count found on day 2016-12-03: -2340
WARNING. Abnormal entry count found on day 2016-12-10: -2036
WARNING. Abnormal entry count found on day 2016-12-10: -2036
WARNING. Abnormal entry count found on day 2016-12-17: -2092
WARNING. Abnormal entry count found on day 2016-12-17: -2092
WARNING. Abnormal entry count found on day 2016-12-24: -1499
WARNING. Abnormal entry count found on day 2016-12-24: -1499
Processing turnstile ('R528', 'R097', '00-03-01', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -12742
WARNING. Abnormal entry count found on day 2016-12-03: -12742
WARNING. Abnormal entry count found on day 2016-12-10: -12929
WARNING. Abnormal entry count found on day 2016-12-10: -12929
WARNING. Abnormal entry count found on day 2016-12-17: -13600
WARNING. Abnormal entry count found on day 2016-12-17: -13600
WARNING. Abnormal entry count found on day 2016-12-24: -10440
WARNING. Abnormal entry count found on day 2016-12-24: -10440
Processing turnstile ('R291', 'R183', '00-00-03', 'BEDFORD PK BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -15164
WARNING. Abnormal entry count found on day 2016-12-03: -15164
WARNING. Abnormal entry count found on day 2016-12-10: -14322
WARNING. Abnormal entry count found on day 2016-12-10: -14322
WARNING. Abnormal entry count found on day 2016-12-17: -13043
WARNING. Abnormal entry count found on day 2016-12-17: -13043
WARNING. Abnormal entry count found on day 2016-12-24: -8799
WARNING. Abnormal entry count found on day 2016-12-24: -8799
Processing turnstile ('R161B', 'R452', '00-00-03', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11302
WARNING. Abnormal entry count found on day 2016-12-03: -11302
WARNING. Abnormal entry count found on day 2016-12-10: -8901
WARNING. Abnormal entry count found on day 2016-12-10: -8901
WARNING. Abnormal entry count found on day 2016-12-24: -2387
WARNING. Abnormal entry count found on day 2016-12-24: -2387
Processing turnstile ('R523', 'R147', '00-00-06', '61 ST WOODSIDE')
WARNING. Abnormal entry count found on day 2016-12-03: -3076
WARNING. Abnormal entry count found on day 2016-12-03: -3076
WARNING. Abnormal entry count found on day 2016-12-10: -10693
WARNING. Abnormal entry count found on day 2016-12-10: -10693
WARNING. Abnormal entry count found on day 2016-12-17: -10649
WARNING. Abnormal entry count found on day 2016-12-17: -10649
WARNING. Abnormal entry count found on day 2016-12-24: -8615
WARNING. Abnormal entry count found on day 2016-12-24: -8615
Processing turnstile ('R208', 'R014', '03-01-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2454
WARNING. Abnormal entry count found on day 2016-12-03: -2454
WARNING. Abnormal entry count found on day 2016-12-10: -2169
WARNING. Abnormal entry count found on day 2016-12-10: -2169
WARNING. Abnormal entry count found on day 2016-12-17: -2233
WARNING. Abnormal entry count found on day 2016-12-17: -2233
WARNING. Abnormal entry count found on day 2016-12-24: -1918
WARNING. Abnormal entry count found on day 2016-12-24: -1918
Processing turnstile ('N505', 'R022', '02-00-03', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -10233
WARNING. Abnormal entry count found on day 2016-12-03: -10233
WARNING. Abnormal entry count found on day 2016-12-10: -11054
WARNING. Abnormal entry count found on day 2016-12-10: -11054
WARNING. Abnormal entry count found on day 2016-12-17: -11539
WARNING. Abnormal entry count found on day 2016-12-17: -11539
WARNING. Abnormal entry count found on day 2016-12-24: -9118
WARNING. Abnormal entry count found on day 2016-12-24: -9118
Processing turnstile ('S101A', 'R070', '01-00-02', 'ST. GEORGE')
WARNING. Abnormal entry count found on day 2016-12-03: -2323
WARNING. Abnormal entry count found on day 2016-12-03: -2323
WARNING. Abnormal entry count found on day 2016-12-10: -2201
WARNING. Abnormal entry count found on day 2016-12-10: -2201
WARNING. Abnormal entry count found on day 2016-12-17: -2033
WARNING. Abnormal entry count found on day 2016-12-17: -2033
WARNING. Abnormal entry count found on day 2016-12-24: -1436
WARNING. Abnormal entry count found on day 2016-12-24: -1436
Processing turnstile ('N303', 'R015', '00-00-04', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8893
WARNING. Abnormal entry count found on day 2016-12-03: -8893
WARNING. Abnormal entry count found on day 2016-12-10: -8943
WARNING. Abnormal entry count found on day 2016-12-10: -8943
WARNING. Abnormal entry count found on day 2016-12-17: -9085
WARNING. Abnormal entry count found on day 2016-12-17: -9085
WARNING. Abnormal entry count found on day 2016-12-24: -8719
WARNING. Abnormal entry count found on day 2016-12-24: -8719
Processing turnstile ('N071', 'R013', '00-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -6606
WARNING. Abnormal entry count found on day 2016-12-03: -6606
WARNING. Abnormal entry count found on day 2016-12-10: -6572
WARNING. Abnormal entry count found on day 2016-12-10: -6572
WARNING. Abnormal entry count found on day 2016-12-17: -5567
WARNING. Abnormal entry count found on day 2016-12-17: -5567
WARNING. Abnormal entry count found on day 2016-12-24: -4915
WARNING. Abnormal entry count found on day 2016-12-24: -4915
Processing turnstile ('A071', 'R044', '02-00-01', 'CHAMBERS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -766
WARNING. Abnormal entry count found on day 2016-12-03: -766
WARNING. Abnormal entry count found on day 2016-12-10: -913
WARNING. Abnormal entry count found on day 2016-12-10: -913
WARNING. Abnormal entry count found on day 2016-12-17: -834
WARNING. Abnormal entry count found on day 2016-12-17: -834
WARNING. Abnormal entry count found on day 2016-12-24: -617
WARNING. Abnormal entry count found on day 2016-12-24: -617
Processing turnstile ('A002', 'R051', '02-00-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8231
WARNING. Abnormal entry count found on day 2016-12-03: -8231
WARNING. Abnormal entry count found on day 2016-12-10: -8351
WARNING. Abnormal entry count found on day 2016-12-10: -8351
WARNING. Abnormal entry count found on day 2016-12-17: -4971
WARNING. Abnormal entry count found on day 2016-12-17: -4971
WARNING. Abnormal entry count found on day 2016-12-24: -2262
WARNING. Abnormal entry count found on day 2016-12-24: -2262
Processing turnstile ('PTH13', 'R541', '00-00-05', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1074
WARNING. Abnormal entry count found on day 2016-12-03: -1074
WARNING. Abnormal entry count found on day 2016-12-10: -1163
WARNING. Abnormal entry count found on day 2016-12-10: -1163
WARNING. Abnormal entry count found on day 2016-12-17: -1395
WARNING. Abnormal entry count found on day 2016-12-17: -1395
WARNING. Abnormal entry count found on day 2016-12-24: -745
WARNING. Abnormal entry count found on day 2016-12-24: -745
Processing turnstile ('R516', 'R291', '00-03-00', '33 ST-RAWSON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11606
WARNING. Abnormal entry count found on day 2016-12-03: -11606
WARNING. Abnormal entry count found on day 2016-12-10: -10635
WARNING. Abnormal entry count found on day 2016-12-10: -10635
WARNING. Abnormal entry count found on day 2016-12-17: -8150
WARNING. Abnormal entry count found on day 2016-12-17: -8150
WARNING. Abnormal entry count found on day 2016-12-24: -4515
WARNING. Abnormal entry count found on day 2016-12-24: -4515
Processing turnstile ('N506', 'R022', '00-03-04', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -4794
WARNING. Abnormal entry count found on day 2016-12-03: -4794
WARNING. Abnormal entry count found on day 2016-12-10: -5063
WARNING. Abnormal entry count found on day 2016-12-10: -5063
WARNING. Abnormal entry count found on day 2016-12-17: -6648
WARNING. Abnormal entry count found on day 2016-12-17: -6648
WARNING. Abnormal entry count found on day 2016-12-24: -5990
WARNING. Abnormal entry count found on day 2016-12-24: -5990
Processing turnstile ('N010', 'R126', '00-03-03', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3778
WARNING. Abnormal entry count found on day 2016-12-03: -3778
WARNING. Abnormal entry count found on day 2016-12-10: -3581
WARNING. Abnormal entry count found on day 2016-12-10: -3581
WARNING. Abnormal entry count found on day 2016-12-17: -3365
WARNING. Abnormal entry count found on day 2016-12-17: -3365
WARNING. Abnormal entry count found on day 2016-12-24: -2490
WARNING. Abnormal entry count found on day 2016-12-24: -2490
Processing turnstile ('R293', 'R133', '00-00-04', 'MOSHOLU PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -6994
WARNING. Abnormal entry count found on day 2016-12-03: -6994
WARNING. Abnormal entry count found on day 2016-12-10: -6443
WARNING. Abnormal entry count found on day 2016-12-10: -6443
WARNING. Abnormal entry count found on day 2016-12-17: -6541
WARNING. Abnormal entry count found on day 2016-12-17: -6541
WARNING. Abnormal entry count found on day 2016-12-24: -5196
WARNING. Abnormal entry count found on day 2016-12-24: -5196
Processing turnstile ('N118', 'R199', '01-00-01', 'KINGSTON-THROOP')
WARNING. Abnormal entry count found on day 2016-12-03: -2749
WARNING. Abnormal entry count found on day 2016-12-03: -2749
WARNING. Abnormal entry count found on day 2016-12-10: -2664
WARNING. Abnormal entry count found on day 2016-12-10: -2664
WARNING. Abnormal entry count found on day 2016-12-17: -2277
WARNING. Abnormal entry count found on day 2016-12-17: -2277
WARNING. Abnormal entry count found on day 2016-12-24: -1794
WARNING. Abnormal entry count found on day 2016-12-24: -1794
Processing turnstile ('N506', 'R022', '00-06-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -30
WARNING. Abnormal entry count found on day 2016-12-03: -30
WARNING. Abnormal entry count found on day 2016-12-10: -29
WARNING. Abnormal entry count found on day 2016-12-10: -29
WARNING. Abnormal entry count found on day 2016-12-17: -55
WARNING. Abnormal entry count found on day 2016-12-17: -55
WARNING. Abnormal entry count found on day 2016-12-24: -33
WARNING. Abnormal entry count found on day 2016-12-24: -33
Processing turnstile ('N509', 'R203', '00-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -22173
WARNING. Abnormal entry count found on day 2016-12-03: -22173
WARNING. Abnormal entry count found on day 2016-12-10: -19428
WARNING. Abnormal entry count found on day 2016-12-10: -19428
WARNING. Abnormal entry count found on day 2016-12-17: -20156
WARNING. Abnormal entry count found on day 2016-12-17: -20156
WARNING. Abnormal entry count found on day 2016-12-24: -12790
WARNING. Abnormal entry count found on day 2016-12-24: -12790
Processing turnstile ('R154', 'R116', '00-00-01', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12231
WARNING. Abnormal entry count found on day 2016-12-03: -12231
WARNING. Abnormal entry count found on day 2016-12-10: -12105
WARNING. Abnormal entry count found on day 2016-12-10: -12105
WARNING. Abnormal entry count found on day 2016-12-17: -10777
WARNING. Abnormal entry count found on day 2016-12-17: -10777
WARNING. Abnormal entry count found on day 2016-12-24: -8635
WARNING. Abnormal entry count found on day 2016-12-24: -8635
Processing turnstile ('R514', 'R094', '00-05-01', 'ASTORIA BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -6886
WARNING. Abnormal entry count found on day 2016-12-03: -6886
WARNING. Abnormal entry count found on day 2016-12-10: -6853
WARNING. Abnormal entry count found on day 2016-12-10: -6853
WARNING. Abnormal entry count found on day 2016-12-17: -6168
WARNING. Abnormal entry count found on day 2016-12-17: -6168
WARNING. Abnormal entry count found on day 2016-12-24: -4406
WARNING. Abnormal entry count found on day 2016-12-24: -4406
Processing turnstile ('R602', 'R108', '00-03-01', 'BOROUGH HALL')
WARNING. Abnormal entry count found on day 2016-12-03: -17379
WARNING. Abnormal entry count found on day 2016-12-03: -17379
WARNING. Abnormal entry count found on day 2016-12-10: -16811
WARNING. Abnormal entry count found on day 2016-12-10: -16811
WARNING. Abnormal entry count found on day 2016-12-17: -15497
WARNING. Abnormal entry count found on day 2016-12-17: -15497
WARNING. Abnormal entry count found on day 2016-12-24: -9606
WARNING. Abnormal entry count found on day 2016-12-24: -9606
Processing turnstile ('B021', 'R228', '00-00-02', 'AVENUE J')
WARNING. Abnormal entry count found on day 2016-12-03: -4730
WARNING. Abnormal entry count found on day 2016-12-03: -4730
WARNING. Abnormal entry count found on day 2016-12-10: -4572
WARNING. Abnormal entry count found on day 2016-12-10: -4572
WARNING. Abnormal entry count found on day 2016-12-17: -4873
WARNING. Abnormal entry count found on day 2016-12-17: -4873
WARNING. Abnormal entry count found on day 2016-12-24: -4071
WARNING. Abnormal entry count found on day 2016-12-24: -4071
Processing turnstile ('N218', 'R112', '01-06-01', 'FORDHAM RD')
WARNING. Abnormal entry count found on day 2016-12-03: -16969
WARNING. Abnormal entry count found on day 2016-12-03: -16969
WARNING. Abnormal entry count found on day 2016-12-10: -16321
WARNING. Abnormal entry count found on day 2016-12-10: -16321
WARNING. Abnormal entry count found on day 2016-12-17: -15449
WARNING. Abnormal entry count found on day 2016-12-17: -15449
WARNING. Abnormal entry count found on day 2016-12-24: -12532
WARNING. Abnormal entry count found on day 2016-12-24: -12532
Processing turnstile ('R308', 'R344', '00-00-01', '145 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6024
WARNING. Abnormal entry count found on day 2016-12-03: -6024
WARNING. Abnormal entry count found on day 2016-12-10: -6000
WARNING. Abnormal entry count found on day 2016-12-10: -6000
WARNING. Abnormal entry count found on day 2016-12-17: -5821
WARNING. Abnormal entry count found on day 2016-12-17: -5821
WARNING. Abnormal entry count found on day 2016-12-24: -4303
WARNING. Abnormal entry count found on day 2016-12-24: -4303
Processing turnstile ('N412', 'R299', '00-00-00', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -7667
WARNING. Abnormal entry count found on day 2016-12-03: -7667
WARNING. Abnormal entry count found on day 2016-12-10: -7463
WARNING. Abnormal entry count found on day 2016-12-10: -7463
WARNING. Abnormal entry count found on day 2016-12-17: -7297
WARNING. Abnormal entry count found on day 2016-12-17: -7297
WARNING. Abnormal entry count found on day 2016-12-24: -5360
WARNING. Abnormal entry count found on day 2016-12-24: -5360
Processing turnstile ('N212', 'R253', '01-06-01', '174-175 STS')
WARNING. Abnormal entry count found on day 2016-12-03: -147
WARNING. Abnormal entry count found on day 2016-12-03: -147
WARNING. Abnormal entry count found on day 2016-12-10: -128
WARNING. Abnormal entry count found on day 2016-12-10: -128
WARNING. Abnormal entry count found on day 2016-12-17: -134
WARNING. Abnormal entry count found on day 2016-12-17: -134
WARNING. Abnormal entry count found on day 2016-12-24: -155
WARNING. Abnormal entry count found on day 2016-12-24: -155
Processing turnstile ('N030', 'R333', '00-00-02', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10431
WARNING. Abnormal entry count found on day 2016-12-03: -10431
WARNING. Abnormal entry count found on day 2016-12-10: -10163
WARNING. Abnormal entry count found on day 2016-12-10: -10163
WARNING. Abnormal entry count found on day 2016-12-17: -9682
WARNING. Abnormal entry count found on day 2016-12-17: -9682
WARNING. Abnormal entry count found on day 2016-12-24: -6764
WARNING. Abnormal entry count found on day 2016-12-24: -6764
Processing turnstile ('G011', 'R312', '00-00-03', 'W 8 ST-AQUARIUM')
WARNING. Abnormal entry count found on day 2016-12-03: -2432
WARNING. Abnormal entry count found on day 2016-12-03: -2432
WARNING. Abnormal entry count found on day 2016-12-10: -2358
WARNING. Abnormal entry count found on day 2016-12-10: -2358
WARNING. Abnormal entry count found on day 2016-12-17: -2357
WARNING. Abnormal entry count found on day 2016-12-17: -2357
WARNING. Abnormal entry count found on day 2016-12-24: -2421
WARNING. Abnormal entry count found on day 2016-12-24: -2421
Processing turnstile ('N306', 'R017', '00-03-02', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -17117
WARNING. Abnormal entry count found on day 2016-12-03: -17117
WARNING. Abnormal entry count found on day 2016-12-10: -16991
WARNING. Abnormal entry count found on day 2016-12-10: -16991
WARNING. Abnormal entry count found on day 2016-12-17: -16236
WARNING. Abnormal entry count found on day 2016-12-17: -16236
WARNING. Abnormal entry count found on day 2016-12-24: -10326
WARNING. Abnormal entry count found on day 2016-12-24: -10326
Processing turnstile ('R508', 'R346', '00-00-02', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -5008
WARNING. Abnormal entry count found on day 2016-12-03: -5008
WARNING. Abnormal entry count found on day 2016-12-10: -4970
WARNING. Abnormal entry count found on day 2016-12-10: -4970
WARNING. Abnormal entry count found on day 2016-12-17: -4408
WARNING. Abnormal entry count found on day 2016-12-17: -4408
WARNING. Abnormal entry count found on day 2016-12-24: -3030
WARNING. Abnormal entry count found on day 2016-12-24: -3030
Processing turnstile ('R241A', 'R048', '00-00-00', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20672
WARNING. Abnormal entry count found on day 2016-12-03: -20672
WARNING. Abnormal entry count found on day 2016-12-10: -19299
WARNING. Abnormal entry count found on day 2016-12-10: -19299
WARNING. Abnormal entry count found on day 2016-12-17: -12718
WARNING. Abnormal entry count found on day 2016-12-17: -12718
WARNING. Abnormal entry count found on day 2016-12-24: -11674
WARNING. Abnormal entry count found on day 2016-12-24: -11674
Processing turnstile ('C004', 'R089', '01-06-00', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -1697
WARNING. Abnormal entry count found on day 2016-12-03: -1697
WARNING. Abnormal entry count found on day 2016-12-10: -1967
WARNING. Abnormal entry count found on day 2016-12-10: -1967
WARNING. Abnormal entry count found on day 2016-12-17: -1946
WARNING. Abnormal entry count found on day 2016-12-17: -1946
WARNING. Abnormal entry count found on day 2016-12-24: -1669
WARNING. Abnormal entry count found on day 2016-12-24: -1669
Processing turnstile ('N401', 'R360', '00-00-02', '21 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4833
WARNING. Abnormal entry count found on day 2016-12-03: -4833
WARNING. Abnormal entry count found on day 2016-12-10: -4661
WARNING. Abnormal entry count found on day 2016-12-10: -4661
WARNING. Abnormal entry count found on day 2016-12-17: -4234
WARNING. Abnormal entry count found on day 2016-12-17: -4234
WARNING. Abnormal entry count found on day 2016-12-24: -3045
WARNING. Abnormal entry count found on day 2016-12-24: -3045
Processing turnstile ('N016A', 'R296', '00-03-02', '163 ST-AMSTERDM')
WARNING. Abnormal entry count found on day 2016-12-03: -573
WARNING. Abnormal entry count found on day 2016-12-03: -573
WARNING. Abnormal entry count found on day 2016-12-10: -567
WARNING. Abnormal entry count found on day 2016-12-10: -567
WARNING. Abnormal entry count found on day 2016-12-17: -637
WARNING. Abnormal entry count found on day 2016-12-17: -637
WARNING. Abnormal entry count found on day 2016-12-24: -404
WARNING. Abnormal entry count found on day 2016-12-24: -404
Processing turnstile ('N187', 'R419', '00-00-02', 'ROCKAWAY PARK B')
WARNING. Abnormal entry count found on day 2016-12-03: -1060
WARNING. Abnormal entry count found on day 2016-12-03: -1060
WARNING. Abnormal entry count found on day 2016-12-10: -920
WARNING. Abnormal entry count found on day 2016-12-10: -920
WARNING. Abnormal entry count found on day 2016-12-17: -844
WARNING. Abnormal entry count found on day 2016-12-17: -844
WARNING. Abnormal entry count found on day 2016-12-24: -672
WARNING. Abnormal entry count found on day 2016-12-24: -672
Processing turnstile ('N010', 'R126', '00-00-00', '175 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7604
WARNING. Abnormal entry count found on day 2016-12-03: -7604
WARNING. Abnormal entry count found on day 2016-12-10: -7645
WARNING. Abnormal entry count found on day 2016-12-10: -7645
WARNING. Abnormal entry count found on day 2016-12-17: -7216
WARNING. Abnormal entry count found on day 2016-12-17: -7216
WARNING. Abnormal entry count found on day 2016-12-24: -6160
WARNING. Abnormal entry count found on day 2016-12-24: -6160
Processing turnstile ('PTH06', 'R546', '00-00-01', 'PAVONIA/NEWPORT')
WARNING. Abnormal entry count found on day 2016-12-03: -16314
WARNING. Abnormal entry count found on day 2016-12-03: -16314
WARNING. Abnormal entry count found on day 2016-12-10: -16718
WARNING. Abnormal entry count found on day 2016-12-10: -16718
WARNING. Abnormal entry count found on day 2016-12-17: -17471
WARNING. Abnormal entry count found on day 2016-12-17: -17471
WARNING. Abnormal entry count found on day 2016-12-24: -14669
WARNING. Abnormal entry count found on day 2016-12-24: -14669
Processing turnstile ('R512', 'R092', '00-00-02', 'BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -3535
WARNING. Abnormal entry count found on day 2016-12-03: -3535
WARNING. Abnormal entry count found on day 2016-12-10: -3164
WARNING. Abnormal entry count found on day 2016-12-10: -3164
WARNING. Abnormal entry count found on day 2016-12-17: -5664
WARNING. Abnormal entry count found on day 2016-12-17: -5664
WARNING. Abnormal entry count found on day 2016-12-24: -2575
WARNING. Abnormal entry count found on day 2016-12-24: -2575
Processing turnstile ('R506', 'R276', '02-05-00', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -10
WARNING. Abnormal entry count found on day 2016-12-03: -10
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-17: -2
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('R145', 'R032', '00-06-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12348
WARNING. Abnormal entry count found on day 2016-12-03: -12348
WARNING. Abnormal entry count found on day 2016-12-10: -10673
WARNING. Abnormal entry count found on day 2016-12-10: -10673
WARNING. Abnormal entry count found on day 2016-12-17: -9754
WARNING. Abnormal entry count found on day 2016-12-17: -9754
WARNING. Abnormal entry count found on day 2016-12-24: -6756
WARNING. Abnormal entry count found on day 2016-12-24: -6756
Processing turnstile ('N108', 'R217', '00-00-02', 'HOYT-SCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -7849
WARNING. Abnormal entry count found on day 2016-12-03: -7849
WARNING. Abnormal entry count found on day 2016-12-10: -7821
WARNING. Abnormal entry count found on day 2016-12-10: -7821
WARNING. Abnormal entry count found on day 2016-12-17: -7808
WARNING. Abnormal entry count found on day 2016-12-17: -7808
WARNING. Abnormal entry count found on day 2016-12-24: -5556
WARNING. Abnormal entry count found on day 2016-12-24: -5556
Processing turnstile ('A033', 'R170', '02-00-02', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -15446
WARNING. Abnormal entry count found on day 2016-12-03: -15446
WARNING. Abnormal entry count found on day 2016-12-10: -14390
WARNING. Abnormal entry count found on day 2016-12-10: -14390
WARNING. Abnormal entry count found on day 2016-12-17: -15804
WARNING. Abnormal entry count found on day 2016-12-17: -15804
WARNING. Abnormal entry count found on day 2016-12-24: -8703
WARNING. Abnormal entry count found on day 2016-12-24: -8703
Processing turnstile ('N025', 'R102', '01-00-04', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11644
WARNING. Abnormal entry count found on day 2016-12-03: -11644
WARNING. Abnormal entry count found on day 2016-12-10: -11372
WARNING. Abnormal entry count found on day 2016-12-10: -11372
WARNING. Abnormal entry count found on day 2016-12-17: -10469
WARNING. Abnormal entry count found on day 2016-12-17: -10469
WARNING. Abnormal entry count found on day 2016-12-24: -7022
WARNING. Abnormal entry count found on day 2016-12-24: -7022
Processing turnstile ('R161B', 'R452', '00-03-02', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -24320
WARNING. Abnormal entry count found on day 2016-12-03: -24320
WARNING. Abnormal entry count found on day 2016-12-10: -22809
WARNING. Abnormal entry count found on day 2016-12-10: -22809
WARNING. Abnormal entry count found on day 2016-12-17: -20961
WARNING. Abnormal entry count found on day 2016-12-17: -20961
WARNING. Abnormal entry count found on day 2016-12-24: -15263
WARNING. Abnormal entry count found on day 2016-12-24: -15263
Processing turnstile ('A085', 'R125', '02-05-00', 'BROAD ST')
Processing turnstile ('J028', 'R004', '00-00-02', '75 ST-ELDERTS')
WARNING. Abnormal entry count found on day 2016-12-03: -2900
WARNING. Abnormal entry count found on day 2016-12-03: -2900
WARNING. Abnormal entry count found on day 2016-12-10: -2848
WARNING. Abnormal entry count found on day 2016-12-10: -2848
WARNING. Abnormal entry count found on day 2016-12-17: -2892
WARNING. Abnormal entry count found on day 2016-12-17: -2892
WARNING. Abnormal entry count found on day 2016-12-24: -1931
WARNING. Abnormal entry count found on day 2016-12-24: -1931
Processing turnstile ('R210', 'R044', '00-03-01', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -11646
WARNING. Abnormal entry count found on day 2016-12-03: -11646
WARNING. Abnormal entry count found on day 2016-12-10: -13902
WARNING. Abnormal entry count found on day 2016-12-10: -13902
WARNING. Abnormal entry count found on day 2016-12-17: -12874
WARNING. Abnormal entry count found on day 2016-12-17: -12874
WARNING. Abnormal entry count found on day 2016-12-24: -10309
WARNING. Abnormal entry count found on day 2016-12-24: -10309
Processing turnstile ('N301', 'R113', '00-00-01', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -11970
WARNING. Abnormal entry count found on day 2016-12-03: -11970
WARNING. Abnormal entry count found on day 2016-12-10: -12168
WARNING. Abnormal entry count found on day 2016-12-10: -12168
WARNING. Abnormal entry count found on day 2016-12-17: -11243
WARNING. Abnormal entry count found on day 2016-12-17: -11243
WARNING. Abnormal entry count found on day 2016-12-24: -9907
WARNING. Abnormal entry count found on day 2016-12-24: -9907
Processing turnstile ('C008', 'R099', '00-03-02', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7497
WARNING. Abnormal entry count found on day 2016-12-03: -7497
WARNING. Abnormal entry count found on day 2016-12-10: -7479
WARNING. Abnormal entry count found on day 2016-12-10: -7479
WARNING. Abnormal entry count found on day 2016-12-17: -6718
WARNING. Abnormal entry count found on day 2016-12-17: -6718
WARNING. Abnormal entry count found on day 2016-12-24: -3468
WARNING. Abnormal entry count found on day 2016-12-24: -3468
Processing turnstile ('H038', 'R350', '00-06-00', 'LIVONIA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -745
WARNING. Abnormal entry count found on day 2016-12-03: -745
WARNING. Abnormal entry count found on day 2016-12-10: -651
WARNING. Abnormal entry count found on day 2016-12-10: -651
WARNING. Abnormal entry count found on day 2016-12-17: -647
WARNING. Abnormal entry count found on day 2016-12-17: -647
WARNING. Abnormal entry count found on day 2016-12-24: -423
WARNING. Abnormal entry count found on day 2016-12-24: -423
Processing turnstile ('R155', 'R116', '01-00-01', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12304
WARNING. Abnormal entry count found on day 2016-12-03: -12304
WARNING. Abnormal entry count found on day 2016-12-10: -12320
WARNING. Abnormal entry count found on day 2016-12-10: -12320
WARNING. Abnormal entry count found on day 2016-12-17: -11940
WARNING. Abnormal entry count found on day 2016-12-17: -11940
WARNING. Abnormal entry count found on day 2016-12-24: -10660
WARNING. Abnormal entry count found on day 2016-12-24: -10660
Processing turnstile ('PTH13', 'R541', '00-04-09', 'THIRTY ST')
Processing turnstile ('N319', 'R298', '01-00-00', 'NORTHERN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -4892
WARNING. Abnormal entry count found on day 2016-12-03: -4892
WARNING. Abnormal entry count found on day 2016-12-10: -4663
WARNING. Abnormal entry count found on day 2016-12-10: -4663
WARNING. Abnormal entry count found on day 2016-12-17: -5020
WARNING. Abnormal entry count found on day 2016-12-17: -5020
WARNING. Abnormal entry count found on day 2016-12-24: -3914
WARNING. Abnormal entry count found on day 2016-12-24: -3914
Processing turnstile ('N101', 'R252', '01-00-00', 'HIGH ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3504
WARNING. Abnormal entry count found on day 2016-12-03: -3504
WARNING. Abnormal entry count found on day 2016-12-10: -3438
WARNING. Abnormal entry count found on day 2016-12-10: -3438
WARNING. Abnormal entry count found on day 2016-12-17: -2984
WARNING. Abnormal entry count found on day 2016-12-17: -2984
WARNING. Abnormal entry count found on day 2016-12-24: -2487
WARNING. Abnormal entry count found on day 2016-12-24: -2487
Processing turnstile ('N063', 'R011', '02-06-02', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -5206
WARNING. Abnormal entry count found on day 2016-12-03: -5206
WARNING. Abnormal entry count found on day 2016-12-10: -5044
WARNING. Abnormal entry count found on day 2016-12-10: -5044
WARNING. Abnormal entry count found on day 2016-12-17: -4244
WARNING. Abnormal entry count found on day 2016-12-17: -4244
WARNING. Abnormal entry count found on day 2016-12-24: -3381
WARNING. Abnormal entry count found on day 2016-12-24: -3381
Processing turnstile ('R503', 'R276', '01-00-02', 'VERNON-JACKSON')
WARNING. Abnormal entry count found on day 2016-12-03: -1962
WARNING. Abnormal entry count found on day 2016-12-03: -1962
WARNING. Abnormal entry count found on day 2016-12-10: -1769
WARNING. Abnormal entry count found on day 2016-12-10: -1769
WARNING. Abnormal entry count found on day 2016-12-17: -1924
WARNING. Abnormal entry count found on day 2016-12-17: -1924
WARNING. Abnormal entry count found on day 2016-12-24: -1040
WARNING. Abnormal entry count found on day 2016-12-24: -1040
Processing turnstile ('R253', 'R181', '00-00-02', '110 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6752
WARNING. Abnormal entry count found on day 2016-12-03: -6752
WARNING. Abnormal entry count found on day 2016-12-10: -6534
WARNING. Abnormal entry count found on day 2016-12-10: -6534
WARNING. Abnormal entry count found on day 2016-12-17: -5189
WARNING. Abnormal entry count found on day 2016-12-17: -5189
WARNING. Abnormal entry count found on day 2016-12-24: -3947
WARNING. Abnormal entry count found on day 2016-12-24: -3947
Processing turnstile ('R123', 'R290', '00-00-01', 'HOUSTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9618
WARNING. Abnormal entry count found on day 2016-12-03: -9618
WARNING. Abnormal entry count found on day 2016-12-10: -10056
WARNING. Abnormal entry count found on day 2016-12-10: -10056
WARNING. Abnormal entry count found on day 2016-12-17: -8503
WARNING. Abnormal entry count found on day 2016-12-17: -8503
WARNING. Abnormal entry count found on day 2016-12-24: -4792
WARNING. Abnormal entry count found on day 2016-12-24: -4792
Processing turnstile ('R221', 'R170', '01-06-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -18331
WARNING. Abnormal entry count found on day 2016-12-03: -18331
WARNING. Abnormal entry count found on day 2016-12-10: -19428
WARNING. Abnormal entry count found on day 2016-12-10: -19428
WARNING. Abnormal entry count found on day 2016-12-17: -19533
WARNING. Abnormal entry count found on day 2016-12-17: -19533
WARNING. Abnormal entry count found on day 2016-12-24: -12850
WARNING. Abnormal entry count found on day 2016-12-24: -12850
Processing turnstile ('R526', 'R096', '00-03-02', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -7930
WARNING. Abnormal entry count found on day 2016-12-03: -7930
WARNING. Abnormal entry count found on day 2016-12-10: -6230
WARNING. Abnormal entry count found on day 2016-12-10: -6230
WARNING. Abnormal entry count found on day 2016-12-17: -6350
WARNING. Abnormal entry count found on day 2016-12-17: -6350
WARNING. Abnormal entry count found on day 2016-12-24: -5257
WARNING. Abnormal entry count found on day 2016-12-24: -5257
Processing turnstile ('N205', 'R195', '02-00-00', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -3018
WARNING. Abnormal entry count found on day 2016-12-03: -3018
WARNING. Abnormal entry count found on day 2016-12-10: -3067
WARNING. Abnormal entry count found on day 2016-12-10: -3067
WARNING. Abnormal entry count found on day 2016-12-17: -2955
WARNING. Abnormal entry count found on day 2016-12-17: -2955
WARNING. Abnormal entry count found on day 2016-12-24: -2125
WARNING. Abnormal entry count found on day 2016-12-24: -2125
Processing turnstile ('R525', 'R018', '02-00-01', '74 ST-BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -4902
WARNING. Abnormal entry count found on day 2016-12-03: -4902
WARNING. Abnormal entry count found on day 2016-12-10: -4466
WARNING. Abnormal entry count found on day 2016-12-10: -4466
WARNING. Abnormal entry count found on day 2016-12-17: -4725
WARNING. Abnormal entry count found on day 2016-12-17: -4725
WARNING. Abnormal entry count found on day 2016-12-24: -4382
WARNING. Abnormal entry count found on day 2016-12-24: -4382
Processing turnstile ('R163', 'R166', '01-00-02', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11345
WARNING. Abnormal entry count found on day 2016-12-03: -11345
WARNING. Abnormal entry count found on day 2016-12-10: -11496
WARNING. Abnormal entry count found on day 2016-12-10: -11496
WARNING. Abnormal entry count found on day 2016-12-17: -10299
WARNING. Abnormal entry count found on day 2016-12-17: -10299
WARNING. Abnormal entry count found on day 2016-12-24: -7843
WARNING. Abnormal entry count found on day 2016-12-24: -7843
Processing turnstile ('R132', 'R190', '01-00-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4523
WARNING. Abnormal entry count found on day 2016-12-03: -4523
WARNING. Abnormal entry count found on day 2016-12-10: -4670
WARNING. Abnormal entry count found on day 2016-12-10: -4670
WARNING. Abnormal entry count found on day 2016-12-17: -3811
WARNING. Abnormal entry count found on day 2016-12-17: -3811
WARNING. Abnormal entry count found on day 2016-12-24: -2362
WARNING. Abnormal entry count found on day 2016-12-24: -2362
Processing turnstile ('R260', 'R205', '01-05-00', '149/GRAND CONC')
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-03: -9
WARNING. Abnormal entry count found on day 2016-12-10: -14
WARNING. Abnormal entry count found on day 2016-12-10: -14
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -7
WARNING. Abnormal entry count found on day 2016-12-24: -7
Processing turnstile ('C017', 'R455', '00-00-00', '25 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2942
WARNING. Abnormal entry count found on day 2016-12-03: -2942
WARNING. Abnormal entry count found on day 2016-12-10: -2904
WARNING. Abnormal entry count found on day 2016-12-10: -2904
WARNING. Abnormal entry count found on day 2016-12-17: -2581
WARNING. Abnormal entry count found on day 2016-12-17: -2581
WARNING. Abnormal entry count found on day 2016-12-24: -2153
WARNING. Abnormal entry count found on day 2016-12-24: -2153
Processing turnstile ('N077', 'R111', '02-06-01', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2563
WARNING. Abnormal entry count found on day 2016-12-03: -2563
WARNING. Abnormal entry count found on day 2016-12-16: -2235063
WARNING. Abnormal entry count found on day 2016-12-10: 2233374
WARNING. Abnormal entry count found on day 2016-12-16: -2235063
WARNING. Abnormal entry count found on day 2016-12-10: 2233374
WARNING. Abnormal entry count found on day 2016-12-16: -2235063
WARNING. Abnormal entry count found on day 2016-12-17: -2203
WARNING. Abnormal entry count found on day 2016-12-17: -2203
WARNING. Abnormal entry count found on day 2016-12-24: -1491
WARNING. Abnormal entry count found on day 2016-12-24: -1491
Processing turnstile ('R128', 'R105', '01-00-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7216
WARNING. Abnormal entry count found on day 2016-12-03: -7216
WARNING. Abnormal entry count found on day 2016-12-10: -7651
WARNING. Abnormal entry count found on day 2016-12-10: -7651
WARNING. Abnormal entry count found on day 2016-12-17: -6157
WARNING. Abnormal entry count found on day 2016-12-17: -6157
WARNING. Abnormal entry count found on day 2016-12-24: -4443
WARNING. Abnormal entry count found on day 2016-12-24: -4443
Processing turnstile ('N333B', 'R141', '02-01-03', 'FOREST HILLS 71')
WARNING. Abnormal entry count found on day 2016-12-03: -6025
WARNING. Abnormal entry count found on day 2016-12-03: -6025
WARNING. Abnormal entry count found on day 2016-12-10: -6088
WARNING. Abnormal entry count found on day 2016-12-10: -6088
WARNING. Abnormal entry count found on day 2016-12-17: -5830
WARNING. Abnormal entry count found on day 2016-12-17: -5830
WARNING. Abnormal entry count found on day 2016-12-24: -4418
WARNING. Abnormal entry count found on day 2016-12-24: -4418
Processing turnstile ('R244', 'R050', '00-00-01', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5729
WARNING. Abnormal entry count found on day 2016-12-03: -5729
WARNING. Abnormal entry count found on day 2016-12-10: -5724
WARNING. Abnormal entry count found on day 2016-12-10: -5724
WARNING. Abnormal entry count found on day 2016-12-17: -6174
WARNING. Abnormal entry count found on day 2016-12-17: -6174
WARNING. Abnormal entry count found on day 2016-12-24: -4075
WARNING. Abnormal entry count found on day 2016-12-24: -4075
Processing turnstile ('N343', 'R019', '00-00-0A', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14981
WARNING. Abnormal entry count found on day 2016-12-03: -14981
WARNING. Abnormal entry count found on day 2016-12-10: -14174
WARNING. Abnormal entry count found on day 2016-12-10: -14174
WARNING. Abnormal entry count found on day 2016-12-17: -14783
WARNING. Abnormal entry count found on day 2016-12-17: -14783
WARNING. Abnormal entry count found on day 2016-12-24: -10201
WARNING. Abnormal entry count found on day 2016-12-24: -10201
Processing turnstile ('N213', 'R154', '00-00-04', 'TREMONT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5342
WARNING. Abnormal entry count found on day 2016-12-03: -5342
WARNING. Abnormal entry count found on day 2016-12-10: -5179
WARNING. Abnormal entry count found on day 2016-12-10: -5179
WARNING. Abnormal entry count found on day 2016-12-17: -5131
WARNING. Abnormal entry count found on day 2016-12-17: -5131
WARNING. Abnormal entry count found on day 2016-12-24: -3972
WARNING. Abnormal entry count found on day 2016-12-24: -3972
Processing turnstile ('A034', 'R170', '03-00-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -3823
WARNING. Abnormal entry count found on day 2016-12-03: -3823
WARNING. Abnormal entry count found on day 2016-12-10: -3747
WARNING. Abnormal entry count found on day 2016-12-10: -3747
WARNING. Abnormal entry count found on day 2016-12-17: -4157
WARNING. Abnormal entry count found on day 2016-12-17: -4157
WARNING. Abnormal entry count found on day 2016-12-24: -3505
WARNING. Abnormal entry count found on day 2016-12-24: -3505
Processing turnstile ('N083', 'R138', '01-03-00', 'W 4 ST-WASH SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -8860
WARNING. Abnormal entry count found on day 2016-12-03: -8860
WARNING. Abnormal entry count found on day 2016-12-10: -9274
WARNING. Abnormal entry count found on day 2016-12-10: -9274
WARNING. Abnormal entry count found on day 2016-12-17: -7993
WARNING. Abnormal entry count found on day 2016-12-17: -7993
WARNING. Abnormal entry count found on day 2016-12-24: -5041
WARNING. Abnormal entry count found on day 2016-12-24: -5041
Processing turnstile ('A081', 'R028', '04-00-04', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4884
WARNING. Abnormal entry count found on day 2016-12-03: -4884
WARNING. Abnormal entry count found on day 2016-12-10: -4509
WARNING. Abnormal entry count found on day 2016-12-10: -4509
WARNING. Abnormal entry count found on day 2016-12-17: -4117
WARNING. Abnormal entry count found on day 2016-12-17: -4117
WARNING. Abnormal entry count found on day 2016-12-24: -3126
WARNING. Abnormal entry count found on day 2016-12-24: -3126
Processing turnstile ('PTH11', 'R545', '00-00-01', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -13687
WARNING. Abnormal entry count found on day 2016-12-03: -13687
WARNING. Abnormal entry count found on day 2016-12-10: -12897
WARNING. Abnormal entry count found on day 2016-12-10: -12897
WARNING. Abnormal entry count found on day 2016-12-17: -13001
WARNING. Abnormal entry count found on day 2016-12-17: -13001
WARNING. Abnormal entry count found on day 2016-12-24: -8251
WARNING. Abnormal entry count found on day 2016-12-24: -8251
Processing turnstile ('N182', 'R414', '00-06-00', 'HOWARD BCH JFK')
WARNING. Abnormal entry count found on day 2016-12-03: -900
WARNING. Abnormal entry count found on day 2016-12-03: -900
WARNING. Abnormal entry count found on day 2016-12-10: -799
WARNING. Abnormal entry count found on day 2016-12-10: -799
WARNING. Abnormal entry count found on day 2016-12-17: -701
WARNING. Abnormal entry count found on day 2016-12-17: -701
WARNING. Abnormal entry count found on day 2016-12-24: -479
WARNING. Abnormal entry count found on day 2016-12-24: -479
Processing turnstile ('N122', 'R439', '00-00-00', 'ROCKAWAY AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7779
WARNING. Abnormal entry count found on day 2016-12-03: -7779
WARNING. Abnormal entry count found on day 2016-12-10: -7675
WARNING. Abnormal entry count found on day 2016-12-10: -7675
WARNING. Abnormal entry count found on day 2016-12-17: -7178
WARNING. Abnormal entry count found on day 2016-12-17: -7178
WARNING. Abnormal entry count found on day 2016-12-24: -5383
WARNING. Abnormal entry count found on day 2016-12-24: -5383
Processing turnstile ('R141', 'R031', '00-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -14405
WARNING. Abnormal entry count found on day 2016-12-03: -14405
WARNING. Abnormal entry count found on day 2016-12-10: -13432
WARNING. Abnormal entry count found on day 2016-12-10: -13432
WARNING. Abnormal entry count found on day 2016-12-17: -16893
WARNING. Abnormal entry count found on day 2016-12-17: -16893
WARNING. Abnormal entry count found on day 2016-12-24: -13493
WARNING. Abnormal entry count found on day 2016-12-24: -13493
Processing turnstile ('R232', 'R176', '02-00-05', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7253
WARNING. Abnormal entry count found on day 2016-12-03: -7253
WARNING. Abnormal entry count found on day 2016-12-10: -7401
WARNING. Abnormal entry count found on day 2016-12-10: -7401
WARNING. Abnormal entry count found on day 2016-12-17: -6626
WARNING. Abnormal entry count found on day 2016-12-17: -6626
WARNING. Abnormal entry count found on day 2016-12-24: -4798
WARNING. Abnormal entry count found on day 2016-12-24: -4798
Processing turnstile ('R186', 'R036', '00-05-00', 'DYCKMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-10: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R158', 'R084', '00-05-04', '59 ST COLUMBUS')
Processing turnstile ('N528', 'R257', '01-00-02', 'EAST BROADWAY')
WARNING. Abnormal entry count found on day 2016-12-03: -8403
WARNING. Abnormal entry count found on day 2016-12-03: -8403
WARNING. Abnormal entry count found on day 2016-12-10: -8033
WARNING. Abnormal entry count found on day 2016-12-10: -8033
WARNING. Abnormal entry count found on day 2016-12-17: -8729
WARNING. Abnormal entry count found on day 2016-12-17: -8729
WARNING. Abnormal entry count found on day 2016-12-24: -7575
WARNING. Abnormal entry count found on day 2016-12-24: -7575
Processing turnstile ('N063A', 'R011', '00-00-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -20691
WARNING. Abnormal entry count found on day 2016-12-03: -20691
WARNING. Abnormal entry count found on day 2016-12-10: -21111
WARNING. Abnormal entry count found on day 2016-12-10: -21111
WARNING. Abnormal entry count found on day 2016-12-17: -19822
WARNING. Abnormal entry count found on day 2016-12-17: -19822
WARNING. Abnormal entry count found on day 2016-12-24: -18248
WARNING. Abnormal entry count found on day 2016-12-24: -18248
Processing turnstile ('R634', 'R069', '00-03-00', 'NEW LOTS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7192
WARNING. Abnormal entry count found on day 2016-12-03: -7192
WARNING. Abnormal entry count found on day 2016-12-10: -6124
WARNING. Abnormal entry count found on day 2016-12-10: -6124
WARNING. Abnormal entry count found on day 2016-12-17: -5807
WARNING. Abnormal entry count found on day 2016-12-17: -5807
WARNING. Abnormal entry count found on day 2016-12-24: -4133
WARNING. Abnormal entry count found on day 2016-12-24: -4133
Processing turnstile ('R138', 'R293', '00-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -29430
WARNING. Abnormal entry count found on day 2016-12-03: -29430
WARNING. Abnormal entry count found on day 2016-12-10: -29432
WARNING. Abnormal entry count found on day 2016-12-10: -29432
WARNING. Abnormal entry count found on day 2016-12-17: -27174
WARNING. Abnormal entry count found on day 2016-12-17: -27174
WARNING. Abnormal entry count found on day 2016-12-24: -22152
WARNING. Abnormal entry count found on day 2016-12-24: -22152
Processing turnstile ('N102', 'R127', '01-05-01', 'JAY ST-METROTEC')
Processing turnstile ('R327', 'R361', '01-05-00', 'PELHAM PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-17: -3
WARNING. Abnormal entry count found on day 2016-12-24: -4
WARNING. Abnormal entry count found on day 2016-12-24: -4
Processing turnstile ('H027', 'R137', '01-00-02', 'MYRTLE-WYCKOFF')
WARNING. Abnormal entry count found on day 2016-12-03: -9769
WARNING. Abnormal entry count found on day 2016-12-03: -9769
WARNING. Abnormal entry count found on day 2016-12-10: -9720
WARNING. Abnormal entry count found on day 2016-12-10: -9720
WARNING. Abnormal entry count found on day 2016-12-17: -9314
WARNING. Abnormal entry count found on day 2016-12-17: -9314
WARNING. Abnormal entry count found on day 2016-12-24: -7037
WARNING. Abnormal entry count found on day 2016-12-24: -7037
Processing turnstile ('N078', 'R175', '01-06-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6362
WARNING. Abnormal entry count found on day 2016-12-03: -6362
WARNING. Abnormal entry count found on day 2016-12-10: -7443
WARNING. Abnormal entry count found on day 2016-12-10: -7443
WARNING. Abnormal entry count found on day 2016-12-17: -6308
WARNING. Abnormal entry count found on day 2016-12-17: -6308
WARNING. Abnormal entry count found on day 2016-12-24: -4375
WARNING. Abnormal entry count found on day 2016-12-24: -4375
Processing turnstile ('N414A', 'R316', '01-00-00', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -661
WARNING. Abnormal entry count found on day 2016-12-03: -661
WARNING. Abnormal entry count found on day 2016-12-10: -624
WARNING. Abnormal entry count found on day 2016-12-10: -624
WARNING. Abnormal entry count found on day 2016-12-17: -653
WARNING. Abnormal entry count found on day 2016-12-17: -653
WARNING. Abnormal entry count found on day 2016-12-24: -474
WARNING. Abnormal entry count found on day 2016-12-24: -474
Processing turnstile ('N531', 'R129', '01-06-00', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -362
WARNING. Abnormal entry count found on day 2016-12-03: -362
WARNING. Abnormal entry count found on day 2016-12-10: -378
WARNING. Abnormal entry count found on day 2016-12-10: -378
WARNING. Abnormal entry count found on day 2016-12-17: -395
WARNING. Abnormal entry count found on day 2016-12-17: -395
WARNING. Abnormal entry count found on day 2016-12-24: -309
WARNING. Abnormal entry count found on day 2016-12-24: -309
Processing turnstile ('N338B', 'R128', '00-00-03', 'SUTPHIN BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -2180
WARNING. Abnormal entry count found on day 2016-12-03: -2180
WARNING. Abnormal entry count found on day 2016-12-10: -2093
WARNING. Abnormal entry count found on day 2016-12-10: -2093
WARNING. Abnormal entry count found on day 2016-12-17: -2167
WARNING. Abnormal entry count found on day 2016-12-17: -2167
WARNING. Abnormal entry count found on day 2016-12-24: -1863
WARNING. Abnormal entry count found on day 2016-12-24: -1863
Processing turnstile ('R323', 'R387', '00-00-00', 'WEST FARMS SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -6268
WARNING. Abnormal entry count found on day 2016-12-03: -6268
WARNING. Abnormal entry count found on day 2016-12-10: -5928
WARNING. Abnormal entry count found on day 2016-12-10: -5928
WARNING. Abnormal entry count found on day 2016-12-17: -6372
WARNING. Abnormal entry count found on day 2016-12-17: -6372
WARNING. Abnormal entry count found on day 2016-12-24: -5262
WARNING. Abnormal entry count found on day 2016-12-24: -5262
Processing turnstile ('R246', 'R177', '00-03-05', '68ST-HUNTER CO')
WARNING. Abnormal entry count found on day 2016-12-03: -17857
WARNING. Abnormal entry count found on day 2016-12-03: -17857
WARNING. Abnormal entry count found on day 2016-12-10: -17501
WARNING. Abnormal entry count found on day 2016-12-10: -17501
WARNING. Abnormal entry count found on day 2016-12-17: -15559
WARNING. Abnormal entry count found on day 2016-12-17: -15559
WARNING. Abnormal entry count found on day 2016-12-24: -9686
WARNING. Abnormal entry count found on day 2016-12-24: -9686
Processing turnstile ('A039', 'R085', '01-00-02', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -5326
WARNING. Abnormal entry count found on day 2016-12-03: -5326
WARNING. Abnormal entry count found on day 2016-12-10: -5007
WARNING. Abnormal entry count found on day 2016-12-10: -5007
WARNING. Abnormal entry count found on day 2016-12-17: -5018
WARNING. Abnormal entry count found on day 2016-12-17: -5018
WARNING. Abnormal entry count found on day 2016-12-24: -4067
WARNING. Abnormal entry count found on day 2016-12-24: -4067
Processing turnstile ('R628', 'R064', '00-00-04', 'SARATOGA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10292
WARNING. Abnormal entry count found on day 2016-12-03: -10292
WARNING. Abnormal entry count found on day 2016-12-10: -9762
WARNING. Abnormal entry count found on day 2016-12-10: -9762
WARNING. Abnormal entry count found on day 2016-12-17: -8888
WARNING. Abnormal entry count found on day 2016-12-17: -8888
WARNING. Abnormal entry count found on day 2016-12-24: -7147
WARNING. Abnormal entry count found on day 2016-12-24: -7147
Processing turnstile ('N414A', 'R316', '01-00-02', 'FLUSHING AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2672
WARNING. Abnormal entry count found on day 2016-12-03: -2672
WARNING. Abnormal entry count found on day 2016-12-10: -2523
WARNING. Abnormal entry count found on day 2016-12-10: -2523
WARNING. Abnormal entry count found on day 2016-12-17: -2430
WARNING. Abnormal entry count found on day 2016-12-17: -2430
WARNING. Abnormal entry count found on day 2016-12-24: -1916
WARNING. Abnormal entry count found on day 2016-12-24: -1916
Processing turnstile ('N548', 'R420', '00-00-00', 'DITMAS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2109
WARNING. Abnormal entry count found on day 2016-12-03: -2109
WARNING. Abnormal entry count found on day 2016-12-10: -2060
WARNING. Abnormal entry count found on day 2016-12-10: -2060
WARNING. Abnormal entry count found on day 2016-12-17: -3478
WARNING. Abnormal entry count found on day 2016-12-17: -3478
WARNING. Abnormal entry count found on day 2016-12-24: -2614
WARNING. Abnormal entry count found on day 2016-12-24: -2614
Processing turnstile ('H015', 'R250', '01-00-02', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14422
WARNING. Abnormal entry count found on day 2016-12-03: -14422
WARNING. Abnormal entry count found on day 2016-12-10: -14289
WARNING. Abnormal entry count found on day 2016-12-10: -14289
WARNING. Abnormal entry count found on day 2016-12-17: -12922
WARNING. Abnormal entry count found on day 2016-12-17: -12922
WARNING. Abnormal entry count found on day 2016-12-24: -9955
WARNING. Abnormal entry count found on day 2016-12-24: -9955
Processing turnstile ('R413', 'R325', '00-00-00', 'WHITLOCK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -757
WARNING. Abnormal entry count found on day 2016-12-03: -757
WARNING. Abnormal entry count found on day 2016-12-10: -692
WARNING. Abnormal entry count found on day 2016-12-10: -692
WARNING. Abnormal entry count found on day 2016-12-17: -736
WARNING. Abnormal entry count found on day 2016-12-17: -736
WARNING. Abnormal entry count found on day 2016-12-24: -508
WARNING. Abnormal entry count found on day 2016-12-24: -508
Processing turnstile ('A033', 'R170', '02-06-00', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -1230
WARNING. Abnormal entry count found on day 2016-12-03: -1230
WARNING. Abnormal entry count found on day 2016-12-10: -1116
WARNING. Abnormal entry count found on day 2016-12-10: -1116
WARNING. Abnormal entry count found on day 2016-12-17: -1256
WARNING. Abnormal entry count found on day 2016-12-17: -1256
WARNING. Abnormal entry count found on day 2016-12-24: -546
WARNING. Abnormal entry count found on day 2016-12-24: -546
Processing turnstile ('R625', 'R062', '01-06-00', 'CROWN HTS-UTICA')
WARNING. Abnormal entry count found on day 2016-12-03: -2375
WARNING. Abnormal entry count found on day 2016-12-03: -2375
WARNING. Abnormal entry count found on day 2016-12-10: -2401
WARNING. Abnormal entry count found on day 2016-12-10: -2401
WARNING. Abnormal entry count found on day 2016-12-17: -2127
WARNING. Abnormal entry count found on day 2016-12-17: -2127
WARNING. Abnormal entry count found on day 2016-12-24: -1397
WARNING. Abnormal entry count found on day 2016-12-24: -1397
Processing turnstile ('N340A', 'R115', '01-00-02', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1984
WARNING. Abnormal entry count found on day 2016-12-03: -1984
WARNING. Abnormal entry count found on day 2016-12-10: -1741
WARNING. Abnormal entry count found on day 2016-12-10: -1741
WARNING. Abnormal entry count found on day 2016-12-17: -1796
WARNING. Abnormal entry count found on day 2016-12-17: -1796
WARNING. Abnormal entry count found on day 2016-12-24: -1398
WARNING. Abnormal entry count found on day 2016-12-24: -1398
Processing turnstile ('TRAM2', 'R469', '00-05-00', 'RIT-ROOSEVELT')
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -9
WARNING. Abnormal entry count found on day 2016-12-17: -9
WARNING. Abnormal entry count found on day 2016-12-24: -8
WARNING. Abnormal entry count found on day 2016-12-24: -8
Processing turnstile ('R508', 'R346', '00-05-00', 'COURT SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12
WARNING. Abnormal entry count found on day 2016-12-03: -12
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-17: -5
WARNING. Abnormal entry count found on day 2016-12-17: -5
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('A061', 'R142', '00-03-00', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -3659
WARNING. Abnormal entry count found on day 2016-12-03: -3659
WARNING. Abnormal entry count found on day 2016-12-10: -3580
WARNING. Abnormal entry count found on day 2016-12-10: -3580
WARNING. Abnormal entry count found on day 2016-12-17: -3474
WARNING. Abnormal entry count found on day 2016-12-17: -3474
WARNING. Abnormal entry count found on day 2016-12-24: -2644
WARNING. Abnormal entry count found on day 2016-12-24: -2644
Processing turnstile ('N550', 'R242', '01-06-01', '18 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5931
WARNING. Abnormal entry count found on day 2016-12-03: -5931
WARNING. Abnormal entry count found on day 2016-12-10: -5272
WARNING. Abnormal entry count found on day 2016-12-10: -5272
WARNING. Abnormal entry count found on day 2016-12-17: -5582
WARNING. Abnormal entry count found on day 2016-12-17: -5582
WARNING. Abnormal entry count found on day 2016-12-24: -4259
WARNING. Abnormal entry count found on day 2016-12-24: -4259
Processing turnstile ('A031', 'R083', '00-03-00', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8908
WARNING. Abnormal entry count found on day 2016-12-03: -8908
WARNING. Abnormal entry count found on day 2016-12-10: -8948
WARNING. Abnormal entry count found on day 2016-12-10: -8948
WARNING. Abnormal entry count found on day 2016-12-17: -4270
WARNING. Abnormal entry count found on day 2016-12-17: -4270
WARNING. Abnormal entry count found on day 2016-12-24: -4444
WARNING. Abnormal entry count found on day 2016-12-24: -4444
Processing turnstile ('R415', 'R120', '00-03-00', 'MORISN AV/SNDVW')
WARNING. Abnormal entry count found on day 2016-12-03: -12079
WARNING. Abnormal entry count found on day 2016-12-03: -12079
WARNING. Abnormal entry count found on day 2016-12-10: -11922
WARNING. Abnormal entry count found on day 2016-12-10: -11922
WARNING. Abnormal entry count found on day 2016-12-17: -11626
WARNING. Abnormal entry count found on day 2016-12-17: -11626
WARNING. Abnormal entry count found on day 2016-12-24: -9739
WARNING. Abnormal entry count found on day 2016-12-24: -9739
Processing turnstile ('A046', 'R463', '00-00-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9381
WARNING. Abnormal entry count found on day 2016-12-03: -9381
WARNING. Abnormal entry count found on day 2016-12-10: -8959
WARNING. Abnormal entry count found on day 2016-12-10: -8959
WARNING. Abnormal entry count found on day 2016-12-17: -9190
WARNING. Abnormal entry count found on day 2016-12-17: -9190
WARNING. Abnormal entry count found on day 2016-12-24: -7550
WARNING. Abnormal entry count found on day 2016-12-24: -7550
Processing turnstile ('N542', 'R241', '00-06-00', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -14022
WARNING. Abnormal entry count found on day 2016-12-03: -14022
WARNING. Abnormal entry count found on day 2016-12-10: -14702
WARNING. Abnormal entry count found on day 2016-12-10: -14702
WARNING. Abnormal entry count found on day 2016-12-17: -12310
WARNING. Abnormal entry count found on day 2016-12-17: -12310
WARNING. Abnormal entry count found on day 2016-12-24: -6975
WARNING. Abnormal entry count found on day 2016-12-24: -6975
Processing turnstile ('N327', 'R254', '00-06-00', 'GRAND-NEWTOWN')
WARNING. Abnormal entry count found on day 2016-12-03: -19455
WARNING. Abnormal entry count found on day 2016-12-03: -19455
WARNING. Abnormal entry count found on day 2016-12-10: -18504
WARNING. Abnormal entry count found on day 2016-12-10: -18504
WARNING. Abnormal entry count found on day 2016-12-17: -20438
WARNING. Abnormal entry count found on day 2016-12-17: -20438
WARNING. Abnormal entry count found on day 2016-12-24: -14886
WARNING. Abnormal entry count found on day 2016-12-24: -14886
Processing turnstile ('PTH11', 'R545', '00-00-04', '14TH STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -4068
WARNING. Abnormal entry count found on day 2016-12-03: -4068
WARNING. Abnormal entry count found on day 2016-12-10: -6283
WARNING. Abnormal entry count found on day 2016-12-10: -6283
WARNING. Abnormal entry count found on day 2016-12-17: -6987
WARNING. Abnormal entry count found on day 2016-12-17: -6987
WARNING. Abnormal entry count found on day 2016-12-24: -5127
WARNING. Abnormal entry count found on day 2016-12-24: -5127
Processing turnstile ('R726', 'R329', '00-00-00', 'MORRIS PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -2314
WARNING. Abnormal entry count found on day 2016-12-03: -2314
WARNING. Abnormal entry count found on day 2016-12-10: -2479
WARNING. Abnormal entry count found on day 2016-12-10: -2479
WARNING. Abnormal entry count found on day 2016-12-17: -2464
WARNING. Abnormal entry count found on day 2016-12-17: -2464
WARNING. Abnormal entry count found on day 2016-12-24: -2072
WARNING. Abnormal entry count found on day 2016-12-24: -2072
Processing turnstile ('R262', 'R195', '03-03-01', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -6009
WARNING. Abnormal entry count found on day 2016-12-03: -6009
WARNING. Abnormal entry count found on day 2016-12-10: -5758
WARNING. Abnormal entry count found on day 2016-12-10: -5758
WARNING. Abnormal entry count found on day 2016-12-17: -6028
WARNING. Abnormal entry count found on day 2016-12-17: -6028
WARNING. Abnormal entry count found on day 2016-12-24: -4950
WARNING. Abnormal entry count found on day 2016-12-24: -4950
Processing turnstile ('N045', 'R187', '01-06-00', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -2545
WARNING. Abnormal entry count found on day 2016-12-03: -2545
WARNING. Abnormal entry count found on day 2016-12-10: -2341
WARNING. Abnormal entry count found on day 2016-12-10: -2341
WARNING. Abnormal entry count found on day 2016-12-17: -2828
WARNING. Abnormal entry count found on day 2016-12-17: -2828
WARNING. Abnormal entry count found on day 2016-12-24: -3451
WARNING. Abnormal entry count found on day 2016-12-24: -3451
Processing turnstile ('R513', 'R093', '00-03-02', '30 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -17388
WARNING. Abnormal entry count found on day 2016-12-03: -17388
WARNING. Abnormal entry count found on day 2016-12-10: -17683
WARNING. Abnormal entry count found on day 2016-12-10: -17683
WARNING. Abnormal entry count found on day 2016-12-17: -15015
WARNING. Abnormal entry count found on day 2016-12-17: -15015
WARNING. Abnormal entry count found on day 2016-12-24: -10100
WARNING. Abnormal entry count found on day 2016-12-24: -10100
Processing turnstile ('N512', 'R163', '00-00-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5618
WARNING. Abnormal entry count found on day 2016-12-03: -5618
WARNING. Abnormal entry count found on day 2016-12-10: -5535
WARNING. Abnormal entry count found on day 2016-12-10: -5535
WARNING. Abnormal entry count found on day 2016-12-17: -5075
WARNING. Abnormal entry count found on day 2016-12-17: -5075
WARNING. Abnormal entry count found on day 2016-12-24: -3801
WARNING. Abnormal entry count found on day 2016-12-24: -3801
Processing turnstile ('N505', 'R022', '02-00-07', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -6202
WARNING. Abnormal entry count found on day 2016-12-03: -6202
WARNING. Abnormal entry count found on day 2016-12-10: -8200
WARNING. Abnormal entry count found on day 2016-12-10: -8200
WARNING. Abnormal entry count found on day 2016-12-17: -8694
WARNING. Abnormal entry count found on day 2016-12-17: -8694
WARNING. Abnormal entry count found on day 2016-12-24: -6939
WARNING. Abnormal entry count found on day 2016-12-24: -6939
Processing turnstile ('R174', 'R034', '00-00-03', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9987
WARNING. Abnormal entry count found on day 2016-12-03: -9987
WARNING. Abnormal entry count found on day 2016-12-10: -9509
WARNING. Abnormal entry count found on day 2016-12-10: -9509
WARNING. Abnormal entry count found on day 2016-12-17: -8787
WARNING. Abnormal entry count found on day 2016-12-17: -8787
WARNING. Abnormal entry count found on day 2016-12-24: -7362
WARNING. Abnormal entry count found on day 2016-12-24: -7362
Processing turnstile ('R320', 'R409', '00-00-01', 'FREEMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6177
WARNING. Abnormal entry count found on day 2016-12-03: -6177
WARNING. Abnormal entry count found on day 2016-12-10: -7107
WARNING. Abnormal entry count found on day 2016-12-10: -7107
WARNING. Abnormal entry count found on day 2016-12-17: -7090
WARNING. Abnormal entry count found on day 2016-12-17: -7090
WARNING. Abnormal entry count found on day 2016-12-24: -5596
WARNING. Abnormal entry count found on day 2016-12-24: -5596
Processing turnstile ('N405', 'R239', '00-00-01', 'GREENPOINT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8446
WARNING. Abnormal entry count found on day 2016-12-03: -8446
WARNING. Abnormal entry count found on day 2016-12-10: -8475
WARNING. Abnormal entry count found on day 2016-12-10: -8475
WARNING. Abnormal entry count found on day 2016-12-17: -7462
WARNING. Abnormal entry count found on day 2016-12-17: -7462
WARNING. Abnormal entry count found on day 2016-12-24: -5133
WARNING. Abnormal entry count found on day 2016-12-24: -5133
Processing turnstile ('N207', 'R104', '00-00-02', '167 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9968
WARNING. Abnormal entry count found on day 2016-12-03: -9968
WARNING. Abnormal entry count found on day 2016-12-10: -9740
WARNING. Abnormal entry count found on day 2016-12-10: -9740
WARNING. Abnormal entry count found on day 2016-12-17: -10981
WARNING. Abnormal entry count found on day 2016-12-17: -10981
WARNING. Abnormal entry count found on day 2016-12-24: -8327
WARNING. Abnormal entry count found on day 2016-12-24: -8327
Processing turnstile ('R243', 'R049', '00-05-00', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8146
WARNING. Abnormal entry count found on day 2016-12-03: -8146
WARNING. Abnormal entry count found on day 2016-12-10: -8217
WARNING. Abnormal entry count found on day 2016-12-10: -8217
WARNING. Abnormal entry count found on day 2016-12-17: -7905
WARNING. Abnormal entry count found on day 2016-12-17: -7905
WARNING. Abnormal entry count found on day 2016-12-24: -6733
WARNING. Abnormal entry count found on day 2016-12-24: -6733
Processing turnstile ('R262B', 'R195', '05-00-04', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-24: -227
WARNING. Abnormal entry count found on day 2016-12-24: -227
Processing turnstile ('R644', 'R135', '01-00-00', 'NEWKIRK AV')
WARNING. Abnormal entry count found on day 2016-12-03: -30
WARNING. Abnormal entry count found on day 2016-12-03: -30
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-10: -13
WARNING. Abnormal entry count found on day 2016-12-17: -24
WARNING. Abnormal entry count found on day 2016-12-17: -24
WARNING. Abnormal entry count found on day 2016-12-24: -23
WARNING. Abnormal entry count found on day 2016-12-24: -23
Processing turnstile ('R409', 'R449', '01-00-00', 'E 149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2945
WARNING. Abnormal entry count found on day 2016-12-03: -2945
WARNING. Abnormal entry count found on day 2016-12-10: -2946
WARNING. Abnormal entry count found on day 2016-12-10: -2946
WARNING. Abnormal entry count found on day 2016-12-17: -2801
WARNING. Abnormal entry count found on day 2016-12-17: -2801
WARNING. Abnormal entry count found on day 2016-12-24: -2096
WARNING. Abnormal entry count found on day 2016-12-24: -2096
Processing turnstile ('R210', 'R044', '00-03-04', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-04: -1502
WARNING. Abnormal entry count found on day 2016-12-05: -1076
WARNING. Abnormal entry count found on day 2016-12-06: -2064
WARNING. Abnormal entry count found on day 2016-12-07: -1942
WARNING. Abnormal entry count found on day 2016-12-08: -2120
WARNING. Abnormal entry count found on day 2016-12-09: -2151
WARNING. Abnormal entry count found on day 2016-12-03: 10855
WARNING. Abnormal entry count found on day 2016-12-04: -1502
WARNING. Abnormal entry count found on day 2016-12-05: -1076
WARNING. Abnormal entry count found on day 2016-12-06: -2064
WARNING. Abnormal entry count found on day 2016-12-07: -1942
WARNING. Abnormal entry count found on day 2016-12-08: -2120
WARNING. Abnormal entry count found on day 2016-12-09: -2151
WARNING. Abnormal entry count found on day 2016-12-03: 10855
WARNING. Abnormal entry count found on day 2016-12-04: -1502
WARNING. Abnormal entry count found on day 2016-12-05: -1076
WARNING. Abnormal entry count found on day 2016-12-06: -2064
WARNING. Abnormal entry count found on day 2016-12-07: -1942
WARNING. Abnormal entry count found on day 2016-12-08: -2120
WARNING. Abnormal entry count found on day 2016-12-09: -2151
WARNING. Abnormal entry count found on day 2016-12-10: -2068
WARNING. Abnormal entry count found on day 2016-12-11: -1221
WARNING. Abnormal entry count found on day 2016-12-12: -926
WARNING. Abnormal entry count found on day 2016-12-13: -1798
WARNING. Abnormal entry count found on day 2016-12-14: -2004
WARNING. Abnormal entry count found on day 2016-12-15: -1937
WARNING. Abnormal entry count found on day 2016-12-16: -1734
WARNING. Abnormal entry count found on day 2016-12-11: -1221
WARNING. Abnormal entry count found on day 2016-12-12: -926
WARNING. Abnormal entry count found on day 2016-12-13: -1798
WARNING. Abnormal entry count found on day 2016-12-14: -2004
WARNING. Abnormal entry count found on day 2016-12-15: -1937
WARNING. Abnormal entry count found on day 2016-12-16: -1734
WARNING. Abnormal entry count found on day 2016-12-11: -1221
WARNING. Abnormal entry count found on day 2016-12-12: -926
WARNING. Abnormal entry count found on day 2016-12-13: -1798
WARNING. Abnormal entry count found on day 2016-12-14: -2004
WARNING. Abnormal entry count found on day 2016-12-15: -1937
WARNING. Abnormal entry count found on day 2016-12-16: -1734
WARNING. Abnormal entry count found on day 2016-12-17: -1714
WARNING. Abnormal entry count found on day 2016-12-18: -711
WARNING. Abnormal entry count found on day 2016-12-19: -699
WARNING. Abnormal entry count found on day 2016-12-20: -1811
WARNING. Abnormal entry count found on day 2016-12-21: -1881
WARNING. Abnormal entry count found on day 2016-12-22: -1741
WARNING. Abnormal entry count found on day 2016-12-23: -1905
WARNING. Abnormal entry count found on day 2016-12-18: -711
WARNING. Abnormal entry count found on day 2016-12-19: -699
WARNING. Abnormal entry count found on day 2016-12-20: -1811
WARNING. Abnormal entry count found on day 2016-12-21: -1881
WARNING. Abnormal entry count found on day 2016-12-22: -1741
WARNING. Abnormal entry count found on day 2016-12-23: -1905
WARNING. Abnormal entry count found on day 2016-12-18: -711
WARNING. Abnormal entry count found on day 2016-12-19: -699
WARNING. Abnormal entry count found on day 2016-12-20: -1811
WARNING. Abnormal entry count found on day 2016-12-21: -1881
WARNING. Abnormal entry count found on day 2016-12-22: -1741
WARNING. Abnormal entry count found on day 2016-12-23: -1905
WARNING. Abnormal entry count found on day 2016-12-24: -1453
WARNING. Abnormal entry count found on day 2016-12-25: -417
WARNING. Abnormal entry count found on day 2016-12-26: -947
WARNING. Abnormal entry count found on day 2016-12-27: -778
WARNING. Abnormal entry count found on day 2016-12-28: -1688
WARNING. Abnormal entry count found on day 2016-12-29: -1809
WARNING. Abnormal entry count found on day 2016-12-30: -1181
WARNING. Abnormal entry count found on day 2016-12-25: -417
WARNING. Abnormal entry count found on day 2016-12-26: -947
WARNING. Abnormal entry count found on day 2016-12-27: -778
WARNING. Abnormal entry count found on day 2016-12-28: -1688
WARNING. Abnormal entry count found on day 2016-12-29: -1809
WARNING. Abnormal entry count found on day 2016-12-30: -1181
WARNING. Abnormal entry count found on day 2016-12-25: -417
WARNING. Abnormal entry count found on day 2016-12-26: -947
WARNING. Abnormal entry count found on day 2016-12-27: -778
WARNING. Abnormal entry count found on day 2016-12-28: -1688
WARNING. Abnormal entry count found on day 2016-12-29: -1809
WARNING. Abnormal entry count found on day 2016-12-30: -1181
Processing turnstile ('N183', 'R415', '00-00-02', 'BROAD CHANNEL')
WARNING. Abnormal entry count found on day 2016-12-03: -260
WARNING. Abnormal entry count found on day 2016-12-03: -260
WARNING. Abnormal entry count found on day 2016-12-10: -254
WARNING. Abnormal entry count found on day 2016-12-10: -254
WARNING. Abnormal entry count found on day 2016-12-17: -206
WARNING. Abnormal entry count found on day 2016-12-17: -206
WARNING. Abnormal entry count found on day 2016-12-24: -174
WARNING. Abnormal entry count found on day 2016-12-24: -174
Processing turnstile ('R288', 'R275', '00-00-03', '183 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11729
WARNING. Abnormal entry count found on day 2016-12-03: -11729
WARNING. Abnormal entry count found on day 2016-12-10: -12122
WARNING. Abnormal entry count found on day 2016-12-10: -12122
WARNING. Abnormal entry count found on day 2016-12-17: -11550
WARNING. Abnormal entry count found on day 2016-12-17: -11550
WARNING. Abnormal entry count found on day 2016-12-24: -9950
WARNING. Abnormal entry count found on day 2016-12-24: -9950
Processing turnstile ('N309A', 'R140', '00-00-03', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -1987
WARNING. Abnormal entry count found on day 2016-12-03: -1987
WARNING. Abnormal entry count found on day 2016-12-10: -1920
WARNING. Abnormal entry count found on day 2016-12-10: -1920
WARNING. Abnormal entry count found on day 2016-12-17: -1739
WARNING. Abnormal entry count found on day 2016-12-17: -1739
WARNING. Abnormal entry count found on day 2016-12-24: -1214
WARNING. Abnormal entry count found on day 2016-12-24: -1214
Processing turnstile ('R194', 'R040', '00-03-01', '231 ST')
Processing turnstile ('N541', 'R241', '01-06-00', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -5786
WARNING. Abnormal entry count found on day 2016-12-03: -5786
WARNING. Abnormal entry count found on day 2016-12-10: -4534
WARNING. Abnormal entry count found on day 2016-12-10: -4534
WARNING. Abnormal entry count found on day 2016-12-17: -4206
WARNING. Abnormal entry count found on day 2016-12-17: -4206
WARNING. Abnormal entry count found on day 2016-12-24: -3501
WARNING. Abnormal entry count found on day 2016-12-24: -3501
Processing turnstile ('N343', 'R019', '00-05-01', 'JAMAICA 179 ST')
Processing turnstile ('C017', 'R455', '00-00-01', '25 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1343
WARNING. Abnormal entry count found on day 2016-12-03: -1343
WARNING. Abnormal entry count found on day 2016-12-10: -1289
WARNING. Abnormal entry count found on day 2016-12-10: -1289
WARNING. Abnormal entry count found on day 2016-12-17: -1137
WARNING. Abnormal entry count found on day 2016-12-17: -1137
WARNING. Abnormal entry count found on day 2016-12-24: -944
WARNING. Abnormal entry count found on day 2016-12-24: -944
Processing turnstile ('A083', 'R125', '00-00-04', 'BROAD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -562
WARNING. Abnormal entry count found on day 2016-12-03: -562
WARNING. Abnormal entry count found on day 2016-12-10: -579
WARNING. Abnormal entry count found on day 2016-12-10: -579
WARNING. Abnormal entry count found on day 2016-12-17: -578
WARNING. Abnormal entry count found on day 2016-12-17: -578
WARNING. Abnormal entry count found on day 2016-12-24: -472
WARNING. Abnormal entry count found on day 2016-12-24: -472
Processing turnstile ('N543', 'R289', '00-00-02', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -1649
WARNING. Abnormal entry count found on day 2016-12-03: -1649
WARNING. Abnormal entry count found on day 2016-12-10: -1582
WARNING. Abnormal entry count found on day 2016-12-10: -1582
WARNING. Abnormal entry count found on day 2016-12-17: -1448
WARNING. Abnormal entry count found on day 2016-12-17: -1448
WARNING. Abnormal entry count found on day 2016-12-24: -791
WARNING. Abnormal entry count found on day 2016-12-24: -791
Processing turnstile ('R729', 'R292', '00-00-01', 'BAYCHESTER AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9100
WARNING. Abnormal entry count found on day 2016-12-03: -9100
WARNING. Abnormal entry count found on day 2016-12-10: -8900
WARNING. Abnormal entry count found on day 2016-12-10: -8900
WARNING. Abnormal entry count found on day 2016-12-17: -8724
WARNING. Abnormal entry count found on day 2016-12-17: -8724
WARNING. Abnormal entry count found on day 2016-12-24: -5995
WARNING. Abnormal entry count found on day 2016-12-24: -5995
Processing turnstile ('R241A', 'R048', '00-00-04', 'GRD CNTRL-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8879
WARNING. Abnormal entry count found on day 2016-12-03: -8879
WARNING. Abnormal entry count found on day 2016-12-10: -7517
WARNING. Abnormal entry count found on day 2016-12-10: -7517
WARNING. Abnormal entry count found on day 2016-12-17: -9571
WARNING. Abnormal entry count found on day 2016-12-17: -9571
WARNING. Abnormal entry count found on day 2016-12-24: -3115
WARNING. Abnormal entry count found on day 2016-12-24: -3115
Processing turnstile ('R210', 'R044', '00-03-00', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -7910
WARNING. Abnormal entry count found on day 2016-12-03: -7910
WARNING. Abnormal entry count found on day 2016-12-10: -1084
WARNING. Abnormal entry count found on day 2016-12-10: -1084
WARNING. Abnormal entry count found on day 2016-12-24: -1324
WARNING. Abnormal entry count found on day 2016-12-24: -1324
Processing turnstile ('C027', 'R216', '00-03-01', 'BAY RIDGE-95 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6644
WARNING. Abnormal entry count found on day 2016-12-03: -6644
WARNING. Abnormal entry count found on day 2016-12-10: -6458
WARNING. Abnormal entry count found on day 2016-12-10: -6458
WARNING. Abnormal entry count found on day 2016-12-17: -6287
WARNING. Abnormal entry count found on day 2016-12-17: -6287
WARNING. Abnormal entry count found on day 2016-12-24: -4913
WARNING. Abnormal entry count found on day 2016-12-24: -4913
Processing turnstile ('N192', 'R336', '00-05-01', 'BEACH 60 ST')
Processing turnstile ('A043', 'R462', '00-03-01', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4192
WARNING. Abnormal entry count found on day 2016-12-03: -4192
WARNING. Abnormal entry count found on day 2016-12-10: -4351
WARNING. Abnormal entry count found on day 2016-12-10: -4351
WARNING. Abnormal entry count found on day 2016-12-17: -4254
WARNING. Abnormal entry count found on day 2016-12-17: -4254
WARNING. Abnormal entry count found on day 2016-12-24: -4787
WARNING. Abnormal entry count found on day 2016-12-24: -4787
Processing turnstile ('N601', 'R319', '00-03-00', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-03: -2439
WARNING. Abnormal entry count found on day 2016-12-03: -2439
WARNING. Abnormal entry count found on day 2016-12-10: -3032
WARNING. Abnormal entry count found on day 2016-12-10: -3032
WARNING. Abnormal entry count found on day 2016-12-17: -2657
WARNING. Abnormal entry count found on day 2016-12-17: -2657
WARNING. Abnormal entry count found on day 2016-12-24: -1985
WARNING. Abnormal entry count found on day 2016-12-24: -1985
Processing turnstile ('S102', 'R165', '00-03-01', 'TOMPKINSVILLE')
WARNING. Abnormal entry count found on day 2016-12-03: -650
WARNING. Abnormal entry count found on day 2016-12-03: -650
WARNING. Abnormal entry count found on day 2016-12-10: -986
WARNING. Abnormal entry count found on day 2016-12-10: -986
WARNING. Abnormal entry count found on day 2016-12-17: -973
WARNING. Abnormal entry count found on day 2016-12-17: -973
WARNING. Abnormal entry count found on day 2016-12-24: -468
WARNING. Abnormal entry count found on day 2016-12-24: -468
Processing turnstile ('N501', 'R020', '01-00-02', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -13781
WARNING. Abnormal entry count found on day 2016-12-03: -13781
WARNING. Abnormal entry count found on day 2016-12-10: -13507
WARNING. Abnormal entry count found on day 2016-12-10: -13507
WARNING. Abnormal entry count found on day 2016-12-17: -12745
WARNING. Abnormal entry count found on day 2016-12-17: -12745
WARNING. Abnormal entry count found on day 2016-12-24: -9608
WARNING. Abnormal entry count found on day 2016-12-24: -9608
Processing turnstile ('R610', 'R057', '00-06-05', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -2428
WARNING. Abnormal entry count found on day 2016-12-03: -2428
WARNING. Abnormal entry count found on day 2016-12-10: -2252
WARNING. Abnormal entry count found on day 2016-12-10: -2252
WARNING. Abnormal entry count found on day 2016-12-17: -2383
WARNING. Abnormal entry count found on day 2016-12-17: -2383
WARNING. Abnormal entry count found on day 2016-12-24: -1513
WARNING. Abnormal entry count found on day 2016-12-24: -1513
Processing turnstile ('G009', 'R151', '02-05-01', 'CONEY IS-STILLW')
Processing turnstile ('R334', 'R367', '00-00-02', '233 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12952
WARNING. Abnormal entry count found on day 2016-12-03: -12952
WARNING. Abnormal entry count found on day 2016-12-10: -12923
WARNING. Abnormal entry count found on day 2016-12-10: -12923
WARNING. Abnormal entry count found on day 2016-12-17: -11855
WARNING. Abnormal entry count found on day 2016-12-17: -11855
WARNING. Abnormal entry count found on day 2016-12-24: -9822
WARNING. Abnormal entry count found on day 2016-12-24: -9822
Processing turnstile ('D015', 'R396', '00-00-02', 'AVENUE U')
WARNING. Abnormal entry count found on day 2016-12-03: -2782
WARNING. Abnormal entry count found on day 2016-12-03: -2782
WARNING. Abnormal entry count found on day 2016-12-10: -2877
WARNING. Abnormal entry count found on day 2016-12-10: -2877
WARNING. Abnormal entry count found on day 2016-12-17: -2934
WARNING. Abnormal entry count found on day 2016-12-17: -2934
WARNING. Abnormal entry count found on day 2016-12-24: -2481
WARNING. Abnormal entry count found on day 2016-12-24: -2481
Processing turnstile ('N501', 'R020', '01-00-03', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -13445
WARNING. Abnormal entry count found on day 2016-12-03: -13445
WARNING. Abnormal entry count found on day 2016-12-10: -13605
WARNING. Abnormal entry count found on day 2016-12-10: -13605
WARNING. Abnormal entry count found on day 2016-12-17: -12897
WARNING. Abnormal entry count found on day 2016-12-17: -12897
WARNING. Abnormal entry count found on day 2016-12-24: -10127
WARNING. Abnormal entry count found on day 2016-12-24: -10127
Processing turnstile ('N508', 'R453', '00-00-04', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -18038
WARNING. Abnormal entry count found on day 2016-12-03: -18038
WARNING. Abnormal entry count found on day 2016-12-10: -16665
WARNING. Abnormal entry count found on day 2016-12-10: -16665
WARNING. Abnormal entry count found on day 2016-12-17: -15319
WARNING. Abnormal entry count found on day 2016-12-17: -15319
WARNING. Abnormal entry count found on day 2016-12-24: -10673
WARNING. Abnormal entry count found on day 2016-12-24: -10673
Processing turnstile ('R201', 'R041', '00-03-04', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -6359
WARNING. Abnormal entry count found on day 2016-12-03: -6359
WARNING. Abnormal entry count found on day 2016-12-10: -6082
WARNING. Abnormal entry count found on day 2016-12-10: -6082
WARNING. Abnormal entry count found on day 2016-12-17: -5337
WARNING. Abnormal entry count found on day 2016-12-17: -5337
WARNING. Abnormal entry count found on day 2016-12-24: -3507
WARNING. Abnormal entry count found on day 2016-12-24: -3507
Processing turnstile ('N541', 'R241', '01-06-01', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -1634
WARNING. Abnormal entry count found on day 2016-12-03: -1634
WARNING. Abnormal entry count found on day 2016-12-10: -2709
WARNING. Abnormal entry count found on day 2016-12-10: -2709
WARNING. Abnormal entry count found on day 2016-12-17: -2143
WARNING. Abnormal entry count found on day 2016-12-17: -2143
WARNING. Abnormal entry count found on day 2016-12-24: -1401
WARNING. Abnormal entry count found on day 2016-12-24: -1401
Processing turnstile ('R245', 'R051', '00-03-03', '59 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4477
WARNING. Abnormal entry count found on day 2016-12-03: -4477
WARNING. Abnormal entry count found on day 2016-12-10: -4837
WARNING. Abnormal entry count found on day 2016-12-10: -4837
WARNING. Abnormal entry count found on day 2016-12-17: -4731
WARNING. Abnormal entry count found on day 2016-12-17: -4731
WARNING. Abnormal entry count found on day 2016-12-24: -3644
WARNING. Abnormal entry count found on day 2016-12-24: -3644
Processing turnstile ('R302', 'R324', '01-00-02', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8783
WARNING. Abnormal entry count found on day 2016-12-03: -8783
WARNING. Abnormal entry count found on day 2016-12-10: -9977
WARNING. Abnormal entry count found on day 2016-12-10: -9977
WARNING. Abnormal entry count found on day 2016-12-17: -10230
WARNING. Abnormal entry count found on day 2016-12-17: -10230
WARNING. Abnormal entry count found on day 2016-12-24: -6169
WARNING. Abnormal entry count found on day 2016-12-24: -6169
Processing turnstile ('R217A', 'R194', '00-00-00', 'BLEECKER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11057
WARNING. Abnormal entry count found on day 2016-12-03: -11057
WARNING. Abnormal entry count found on day 2016-12-10: -10965
WARNING. Abnormal entry count found on day 2016-12-10: -10965
WARNING. Abnormal entry count found on day 2016-12-17: -10408
WARNING. Abnormal entry count found on day 2016-12-17: -10408
WARNING. Abnormal entry count found on day 2016-12-24: -9985
WARNING. Abnormal entry count found on day 2016-12-24: -9985
Processing turnstile ('R110', 'R027', '01-03-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5089
WARNING. Abnormal entry count found on day 2016-12-03: -5089
WARNING. Abnormal entry count found on day 2016-12-10: -5199
WARNING. Abnormal entry count found on day 2016-12-10: -5199
WARNING. Abnormal entry count found on day 2016-12-17: -4327
WARNING. Abnormal entry count found on day 2016-12-17: -4327
WARNING. Abnormal entry count found on day 2016-12-24: -2873
WARNING. Abnormal entry count found on day 2016-12-24: -2873
Processing turnstile ('A046', 'R463', '00-00-02', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11041
WARNING. Abnormal entry count found on day 2016-12-03: -11041
WARNING. Abnormal entry count found on day 2016-12-10: -10519
WARNING. Abnormal entry count found on day 2016-12-10: -10519
WARNING. Abnormal entry count found on day 2016-12-17: -10257
WARNING. Abnormal entry count found on day 2016-12-17: -10257
WARNING. Abnormal entry count found on day 2016-12-24: -8541
WARNING. Abnormal entry count found on day 2016-12-24: -8541
Processing turnstile ('R125', 'R189', '00-00-02', 'CHRISTOPHER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11759
WARNING. Abnormal entry count found on day 2016-12-03: -11759
WARNING. Abnormal entry count found on day 2016-12-10: -11656
WARNING. Abnormal entry count found on day 2016-12-10: -11656
WARNING. Abnormal entry count found on day 2016-12-17: -10386
WARNING. Abnormal entry count found on day 2016-12-17: -10386
WARNING. Abnormal entry count found on day 2016-12-24: -981
WARNING. Abnormal entry count found on day 2016-12-24: -981
Processing turnstile ('R134', 'R272', '01-06-02', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -142
WARNING. Abnormal entry count found on day 2016-12-03: -142
WARNING. Abnormal entry count found on day 2016-12-10: -231
WARNING. Abnormal entry count found on day 2016-12-10: -231
WARNING. Abnormal entry count found on day 2016-12-17: -170
WARNING. Abnormal entry count found on day 2016-12-17: -170
WARNING. Abnormal entry count found on day 2016-12-24: -130
WARNING. Abnormal entry count found on day 2016-12-24: -130
Processing turnstile ('R164', 'R167', '00-03-03', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17509
WARNING. Abnormal entry count found on day 2016-12-03: -17509
WARNING. Abnormal entry count found on day 2016-12-10: -17501
WARNING. Abnormal entry count found on day 2016-12-10: -17501
WARNING. Abnormal entry count found on day 2016-12-17: -15598
WARNING. Abnormal entry count found on day 2016-12-17: -15598
WARNING. Abnormal entry count found on day 2016-12-24: -12165
WARNING. Abnormal entry count found on day 2016-12-24: -12165
Processing turnstile ('N330C', 'R202', '01-06-02', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -6865
WARNING. Abnormal entry count found on day 2016-12-03: -6865
WARNING. Abnormal entry count found on day 2016-12-10: -6627
WARNING. Abnormal entry count found on day 2016-12-10: -6627
WARNING. Abnormal entry count found on day 2016-12-17: -6493
WARNING. Abnormal entry count found on day 2016-12-17: -6493
WARNING. Abnormal entry count found on day 2016-12-24: -5367
WARNING. Abnormal entry count found on day 2016-12-24: -5367
Processing turnstile ('N051', 'R084', '02-00-04', '59 ST COLUMBUS')
WARNING. Abnormal entry count found on day 2016-12-03: -21913
WARNING. Abnormal entry count found on day 2016-12-03: -21913
WARNING. Abnormal entry count found on day 2016-12-10: -20956
WARNING. Abnormal entry count found on day 2016-12-10: -20956
WARNING. Abnormal entry count found on day 2016-12-17: -20034
WARNING. Abnormal entry count found on day 2016-12-17: -20034
WARNING. Abnormal entry count found on day 2016-12-24: -12076
WARNING. Abnormal entry count found on day 2016-12-24: -12076
Processing turnstile ('N067', 'R012', '00-05-01', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -16565
WARNING. Abnormal entry count found on day 2016-12-03: -16565
WARNING. Abnormal entry count found on day 2016-12-10: -16720
WARNING. Abnormal entry count found on day 2016-12-10: -16720
WARNING. Abnormal entry count found on day 2016-12-17: -16147
WARNING. Abnormal entry count found on day 2016-12-17: -16147
WARNING. Abnormal entry count found on day 2016-12-24: -15253
WARNING. Abnormal entry count found on day 2016-12-24: -15253
Processing turnstile ('R257', 'R182', '01-03-01', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -11564
WARNING. Abnormal entry count found on day 2016-12-03: -11564
WARNING. Abnormal entry count found on day 2016-12-10: -10654
WARNING. Abnormal entry count found on day 2016-12-10: -10654
WARNING. Abnormal entry count found on day 2016-12-17: -11184
WARNING. Abnormal entry count found on day 2016-12-17: -11184
WARNING. Abnormal entry count found on day 2016-12-24: -8029
WARNING. Abnormal entry count found on day 2016-12-24: -8029
Processing turnstile ('N605', 'R024', '00-06-02', 'SUTPHIN-ARCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -7874
WARNING. Abnormal entry count found on day 2016-12-03: -7874
WARNING. Abnormal entry count found on day 2016-12-10: -7409
WARNING. Abnormal entry count found on day 2016-12-10: -7409
WARNING. Abnormal entry count found on day 2016-12-17: -7351
WARNING. Abnormal entry count found on day 2016-12-17: -7351
WARNING. Abnormal entry count found on day 2016-12-24: -5019
WARNING. Abnormal entry count found on day 2016-12-24: -5019
Processing turnstile ('R231A', 'R176', '01-00-00', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14423
WARNING. Abnormal entry count found on day 2016-12-03: -14423
WARNING. Abnormal entry count found on day 2016-12-10: -13669
WARNING. Abnormal entry count found on day 2016-12-10: -13669
WARNING. Abnormal entry count found on day 2016-12-17: -12030
WARNING. Abnormal entry count found on day 2016-12-17: -12030
WARNING. Abnormal entry count found on day 2016-12-24: -9170
WARNING. Abnormal entry count found on day 2016-12-24: -9170
Processing turnstile ('B022', 'R229', '00-00-04', 'AVENUE M')
WARNING. Abnormal entry count found on day 2016-12-03: -7508
WARNING. Abnormal entry count found on day 2016-12-03: -7508
WARNING. Abnormal entry count found on day 2016-12-10: -7065
WARNING. Abnormal entry count found on day 2016-12-10: -7065
WARNING. Abnormal entry count found on day 2016-12-17: -7369
WARNING. Abnormal entry count found on day 2016-12-17: -7369
WARNING. Abnormal entry count found on day 2016-12-24: -4751
WARNING. Abnormal entry count found on day 2016-12-24: -4751
Processing turnstile ('R623', 'R061', '00-00-02', 'NOSTRAND AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10227
WARNING. Abnormal entry count found on day 2016-12-03: -10227
WARNING. Abnormal entry count found on day 2016-12-10: -9880
WARNING. Abnormal entry count found on day 2016-12-10: -9880
WARNING. Abnormal entry count found on day 2016-12-17: -9093
WARNING. Abnormal entry count found on day 2016-12-17: -9093
WARNING. Abnormal entry count found on day 2016-12-24: -6662
WARNING. Abnormal entry count found on day 2016-12-24: -6662
Processing turnstile ('R161A', 'R452', '01-00-00', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6997
WARNING. Abnormal entry count found on day 2016-12-03: -6997
WARNING. Abnormal entry count found on day 2016-12-10: -6419
WARNING. Abnormal entry count found on day 2016-12-10: -6419
WARNING. Abnormal entry count found on day 2016-12-17: -6084
WARNING. Abnormal entry count found on day 2016-12-17: -6084
WARNING. Abnormal entry count found on day 2016-12-24: -4612
WARNING. Abnormal entry count found on day 2016-12-24: -4612
Processing turnstile ('R532', 'R328', '00-05-03', 'METS-WILLETS PT')
Processing turnstile ('R322', 'R386', '00-00-02', '174 ST')
WARNING. Abnormal entry count found on day 2016-12-04: -929
WARNING. Abnormal entry count found on day 2016-12-05: -646
WARNING. Abnormal entry count found on day 2016-12-06: -1370
WARNING. Abnormal entry count found on day 2016-12-07: -1285
WARNING. Abnormal entry count found on day 2016-12-08: -1586
WARNING. Abnormal entry count found on day 2016-12-09: -1310
WARNING. Abnormal entry count found on day 2016-12-04: -929
WARNING. Abnormal entry count found on day 2016-12-05: -646
WARNING. Abnormal entry count found on day 2016-12-06: -1370
WARNING. Abnormal entry count found on day 2016-12-07: -1285
WARNING. Abnormal entry count found on day 2016-12-08: -1586
WARNING. Abnormal entry count found on day 2016-12-09: -1310
WARNING. Abnormal entry count found on day 2016-12-04: -929
WARNING. Abnormal entry count found on day 2016-12-05: -646
WARNING. Abnormal entry count found on day 2016-12-06: -1370
WARNING. Abnormal entry count found on day 2016-12-07: -1285
WARNING. Abnormal entry count found on day 2016-12-08: -1586
WARNING. Abnormal entry count found on day 2016-12-09: -1310
WARNING. Abnormal entry count found on day 2016-12-10: -1173
WARNING. Abnormal entry count found on day 2016-12-11: -897
WARNING. Abnormal entry count found on day 2016-12-12: -562
WARNING. Abnormal entry count found on day 2016-12-13: -1478
WARNING. Abnormal entry count found on day 2016-12-14: -1522
WARNING. Abnormal entry count found on day 2016-12-15: -1727
WARNING. Abnormal entry count found on day 2016-12-16: -1478
WARNING. Abnormal entry count found on day 2016-12-11: -897
WARNING. Abnormal entry count found on day 2016-12-12: -562
WARNING. Abnormal entry count found on day 2016-12-13: -1478
WARNING. Abnormal entry count found on day 2016-12-14: -1522
WARNING. Abnormal entry count found on day 2016-12-15: -1727
WARNING. Abnormal entry count found on day 2016-12-16: -1478
WARNING. Abnormal entry count found on day 2016-12-11: -897
WARNING. Abnormal entry count found on day 2016-12-12: -562
WARNING. Abnormal entry count found on day 2016-12-13: -1478
WARNING. Abnormal entry count found on day 2016-12-14: -1522
WARNING. Abnormal entry count found on day 2016-12-15: -1727
WARNING. Abnormal entry count found on day 2016-12-16: -1478
WARNING. Abnormal entry count found on day 2016-12-17: -1611
WARNING. Abnormal entry count found on day 2016-12-18: -795
WARNING. Abnormal entry count found on day 2016-12-19: -641
WARNING. Abnormal entry count found on day 2016-12-20: -1501
WARNING. Abnormal entry count found on day 2016-12-21: -1610
WARNING. Abnormal entry count found on day 2016-12-22: -1623
WARNING. Abnormal entry count found on day 2016-12-23: -1582
WARNING. Abnormal entry count found on day 2016-12-18: -795
WARNING. Abnormal entry count found on day 2016-12-19: -641
WARNING. Abnormal entry count found on day 2016-12-20: -1501
WARNING. Abnormal entry count found on day 2016-12-21: -1610
WARNING. Abnormal entry count found on day 2016-12-22: -1623
WARNING. Abnormal entry count found on day 2016-12-23: -1582
WARNING. Abnormal entry count found on day 2016-12-18: -795
WARNING. Abnormal entry count found on day 2016-12-19: -641
WARNING. Abnormal entry count found on day 2016-12-20: -1501
WARNING. Abnormal entry count found on day 2016-12-21: -1610
WARNING. Abnormal entry count found on day 2016-12-22: -1623
WARNING. Abnormal entry count found on day 2016-12-23: -1582
WARNING. Abnormal entry count found on day 2016-12-24: -1518
WARNING. Abnormal entry count found on day 2016-12-25: -743
WARNING. Abnormal entry count found on day 2016-12-26: -530
WARNING. Abnormal entry count found on day 2016-12-27: -808
WARNING. Abnormal entry count found on day 2016-12-28: -1156
WARNING. Abnormal entry count found on day 2016-12-29: -1368
WARNING. Abnormal entry count found on day 2016-12-30: -1214
WARNING. Abnormal entry count found on day 2016-12-25: -743
WARNING. Abnormal entry count found on day 2016-12-26: -530
WARNING. Abnormal entry count found on day 2016-12-27: -808
WARNING. Abnormal entry count found on day 2016-12-28: -1156
WARNING. Abnormal entry count found on day 2016-12-29: -1368
WARNING. Abnormal entry count found on day 2016-12-30: -1214
WARNING. Abnormal entry count found on day 2016-12-25: -743
WARNING. Abnormal entry count found on day 2016-12-26: -530
WARNING. Abnormal entry count found on day 2016-12-27: -808
WARNING. Abnormal entry count found on day 2016-12-28: -1156
WARNING. Abnormal entry count found on day 2016-12-29: -1368
WARNING. Abnormal entry count found on day 2016-12-30: -1214
Processing turnstile ('R143', 'R032', '02-00-01', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8764
WARNING. Abnormal entry count found on day 2016-12-03: -8764
WARNING. Abnormal entry count found on day 2016-12-10: -8841
WARNING. Abnormal entry count found on day 2016-12-10: -8841
WARNING. Abnormal entry count found on day 2016-12-17: -7451
WARNING. Abnormal entry count found on day 2016-12-17: -7451
WARNING. Abnormal entry count found on day 2016-12-24: -5423
WARNING. Abnormal entry count found on day 2016-12-24: -5423
Processing turnstile ('H023', 'R236', '00-06-02', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5627
WARNING. Abnormal entry count found on day 2016-12-03: -5627
WARNING. Abnormal entry count found on day 2016-12-10: -5619
WARNING. Abnormal entry count found on day 2016-12-10: -5619
WARNING. Abnormal entry count found on day 2016-12-17: -5360
WARNING. Abnormal entry count found on day 2016-12-17: -5360
WARNING. Abnormal entry count found on day 2016-12-24: -4135
WARNING. Abnormal entry count found on day 2016-12-24: -4135
Processing turnstile ('N300', 'R113', '01-00-03', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -10702
WARNING. Abnormal entry count found on day 2016-12-03: -10702
WARNING. Abnormal entry count found on day 2016-12-10: -8730
WARNING. Abnormal entry count found on day 2016-12-10: -8730
WARNING. Abnormal entry count found on day 2016-12-17: -9394
WARNING. Abnormal entry count found on day 2016-12-17: -9394
WARNING. Abnormal entry count found on day 2016-12-24: -8007
WARNING. Abnormal entry count found on day 2016-12-24: -8007
Processing turnstile ('A021', 'R032', '01-00-00', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19659
WARNING. Abnormal entry count found on day 2016-12-03: -19659
WARNING. Abnormal entry count found on day 2016-12-10: -18135
WARNING. Abnormal entry count found on day 2016-12-10: -18135
WARNING. Abnormal entry count found on day 2016-12-17: -17079
WARNING. Abnormal entry count found on day 2016-12-17: -17079
WARNING. Abnormal entry count found on day 2016-12-24: -12417
WARNING. Abnormal entry count found on day 2016-12-24: -12417
Processing turnstile ('N304', 'R015', '01-01-00', '5 AV/53 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2803
WARNING. Abnormal entry count found on day 2016-12-03: -2803
WARNING. Abnormal entry count found on day 2016-12-10: -3468
WARNING. Abnormal entry count found on day 2016-12-10: -3468
WARNING. Abnormal entry count found on day 2016-12-17: -2914
WARNING. Abnormal entry count found on day 2016-12-17: -2914
WARNING. Abnormal entry count found on day 2016-12-24: -1568
WARNING. Abnormal entry count found on day 2016-12-24: -1568
Processing turnstile ('R293', 'R133', '00-00-05', 'MOSHOLU PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -10482
WARNING. Abnormal entry count found on day 2016-12-03: -10482
WARNING. Abnormal entry count found on day 2016-12-10: -9426
WARNING. Abnormal entry count found on day 2016-12-10: -9426
WARNING. Abnormal entry count found on day 2016-12-17: -9741
WARNING. Abnormal entry count found on day 2016-12-17: -9741
WARNING. Abnormal entry count found on day 2016-12-24: -7795
WARNING. Abnormal entry count found on day 2016-12-24: -7795
Processing turnstile ('N095', 'R014', '00-03-06', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14458
WARNING. Abnormal entry count found on day 2016-12-03: -14458
WARNING. Abnormal entry count found on day 2016-12-10: -14406
WARNING. Abnormal entry count found on day 2016-12-10: -14406
WARNING. Abnormal entry count found on day 2016-12-17: -13049
WARNING. Abnormal entry count found on day 2016-12-17: -13049
WARNING. Abnormal entry count found on day 2016-12-24: -9542
WARNING. Abnormal entry count found on day 2016-12-24: -9542
Processing turnstile ('R230', 'R143', '02-05-01', '28 ST')
Processing turnstile ('B023', 'R211', '01-06-02', 'KINGS HWY')
WARNING. Abnormal entry count found on day 2016-12-03: -9377
WARNING. Abnormal entry count found on day 2016-12-03: -9377
WARNING. Abnormal entry count found on day 2016-12-10: -9284
WARNING. Abnormal entry count found on day 2016-12-10: -9284
WARNING. Abnormal entry count found on day 2016-12-17: -8839
WARNING. Abnormal entry count found on day 2016-12-17: -8839
WARNING. Abnormal entry count found on day 2016-12-24: -6707
WARNING. Abnormal entry count found on day 2016-12-24: -6707
Processing turnstile ('N408A', 'R256', '00-00-02', 'NASSAU ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4867
WARNING. Abnormal entry count found on day 2016-12-03: -4867
WARNING. Abnormal entry count found on day 2016-12-10: -4809
WARNING. Abnormal entry count found on day 2016-12-10: -4809
WARNING. Abnormal entry count found on day 2016-12-17: -4318
WARNING. Abnormal entry count found on day 2016-12-17: -4318
WARNING. Abnormal entry count found on day 2016-12-24: -3048
WARNING. Abnormal entry count found on day 2016-12-24: -3048
Processing turnstile ('R138', 'R293', '00-03-05', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -16965
WARNING. Abnormal entry count found on day 2016-12-03: -16965
WARNING. Abnormal entry count found on day 2016-12-10: -17351
WARNING. Abnormal entry count found on day 2016-12-10: -17351
WARNING. Abnormal entry count found on day 2016-12-17: -15547
WARNING. Abnormal entry count found on day 2016-12-17: -15547
WARNING. Abnormal entry count found on day 2016-12-24: -14041
WARNING. Abnormal entry count found on day 2016-12-24: -14041
Processing turnstile ('R242', 'R049', '01-03-00', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6073
WARNING. Abnormal entry count found on day 2016-12-03: -6073
WARNING. Abnormal entry count found on day 2016-12-10: -5674
WARNING. Abnormal entry count found on day 2016-12-10: -5674
WARNING. Abnormal entry count found on day 2016-12-17: -5613
WARNING. Abnormal entry count found on day 2016-12-17: -5613
WARNING. Abnormal entry count found on day 2016-12-24: -4328
WARNING. Abnormal entry count found on day 2016-12-24: -4328
Processing turnstile ('A042', 'R086', '01-00-04', 'PRINCE ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3962
WARNING. Abnormal entry count found on day 2016-12-03: -3962
WARNING. Abnormal entry count found on day 2016-12-10: -4153
WARNING. Abnormal entry count found on day 2016-12-10: -4153
WARNING. Abnormal entry count found on day 2016-12-17: -4457
WARNING. Abnormal entry count found on day 2016-12-17: -4457
WARNING. Abnormal entry count found on day 2016-12-24: -4208
WARNING. Abnormal entry count found on day 2016-12-24: -4208
Processing turnstile ('B014', 'R148', '00-00-01', 'PARKSIDE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12287
WARNING. Abnormal entry count found on day 2016-12-03: -12287
WARNING. Abnormal entry count found on day 2016-12-10: -12009
WARNING. Abnormal entry count found on day 2016-12-10: -12009
WARNING. Abnormal entry count found on day 2016-12-17: -11557
WARNING. Abnormal entry count found on day 2016-12-17: -11557
WARNING. Abnormal entry count found on day 2016-12-24: -9816
WARNING. Abnormal entry count found on day 2016-12-24: -9816
Processing turnstile ('R227A', 'R131', '01-00-02', '23 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -12339
WARNING. Abnormal entry count found on day 2016-12-03: -12339
WARNING. Abnormal entry count found on day 2016-12-10: -12771
WARNING. Abnormal entry count found on day 2016-12-10: -12771
WARNING. Abnormal entry count found on day 2016-12-17: -11371
WARNING. Abnormal entry count found on day 2016-12-17: -11371
WARNING. Abnormal entry count found on day 2016-12-24: -6247
WARNING. Abnormal entry count found on day 2016-12-24: -6247
Processing turnstile ('PTH07', 'R550', '00-00-01', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -6811
WARNING. Abnormal entry count found on day 2016-12-03: -6811
WARNING. Abnormal entry count found on day 2016-12-10: -6596
WARNING. Abnormal entry count found on day 2016-12-10: -6596
WARNING. Abnormal entry count found on day 2016-12-17: -6219
WARNING. Abnormal entry count found on day 2016-12-17: -6219
WARNING. Abnormal entry count found on day 2016-12-24: -4129
WARNING. Abnormal entry count found on day 2016-12-24: -4129
Processing turnstile ('N519A', 'R461', '01-00-00', "B'WAY-LAFAYETTE")
WARNING. Abnormal entry count found on day 2016-12-03: -3861
WARNING. Abnormal entry count found on day 2016-12-03: -3861
WARNING. Abnormal entry count found on day 2016-12-10: -3741
WARNING. Abnormal entry count found on day 2016-12-10: -3741
WARNING. Abnormal entry count found on day 2016-12-17: -4119
WARNING. Abnormal entry count found on day 2016-12-17: -4119
WARNING. Abnormal entry count found on day 2016-12-24: -3453
WARNING. Abnormal entry count found on day 2016-12-24: -3453
Processing turnstile ('C008', 'R099', '00-00-00', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9478
WARNING. Abnormal entry count found on day 2016-12-03: -9478
WARNING. Abnormal entry count found on day 2016-12-10: -9298
WARNING. Abnormal entry count found on day 2016-12-10: -9298
WARNING. Abnormal entry count found on day 2016-12-17: -9654
WARNING. Abnormal entry count found on day 2016-12-17: -9654
WARNING. Abnormal entry count found on day 2016-12-24: -7143
WARNING. Abnormal entry count found on day 2016-12-24: -7143
Processing turnstile ('N501', 'R020', '01-06-01', '47-50 STS ROCK')
WARNING. Abnormal entry count found on day 2016-12-03: -4953
WARNING. Abnormal entry count found on day 2016-12-03: -4953
WARNING. Abnormal entry count found on day 2016-12-10: -4466
WARNING. Abnormal entry count found on day 2016-12-10: -4466
WARNING. Abnormal entry count found on day 2016-12-17: -4282
WARNING. Abnormal entry count found on day 2016-12-17: -4282
WARNING. Abnormal entry count found on day 2016-12-24: -2969
WARNING. Abnormal entry count found on day 2016-12-24: -2969
Processing turnstile ('K026', 'R100', '00-00-04', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7830
WARNING. Abnormal entry count found on day 2016-12-03: -7830
WARNING. Abnormal entry count found on day 2016-12-10: -7280
WARNING. Abnormal entry count found on day 2016-12-10: -7280
WARNING. Abnormal entry count found on day 2016-12-17: -8700
WARNING. Abnormal entry count found on day 2016-12-17: -8700
WARNING. Abnormal entry count found on day 2016-12-24: -5779
WARNING. Abnormal entry count found on day 2016-12-24: -5779
Processing turnstile ('G009', 'R151', '02-00-03', 'CONEY IS-STILLW')
WARNING. Abnormal entry count found on day 2016-12-03: -5239
WARNING. Abnormal entry count found on day 2016-12-03: -5239
WARNING. Abnormal entry count found on day 2016-12-10: -5032
WARNING. Abnormal entry count found on day 2016-12-10: -5032
WARNING. Abnormal entry count found on day 2016-12-17: -5098
WARNING. Abnormal entry count found on day 2016-12-17: -5098
WARNING. Abnormal entry count found on day 2016-12-24: -3981
WARNING. Abnormal entry count found on day 2016-12-24: -3981
Processing turnstile ('R186', 'R036', '00-00-03', 'DYCKMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9281
WARNING. Abnormal entry count found on day 2016-12-03: -9281
WARNING. Abnormal entry count found on day 2016-12-10: -8921
WARNING. Abnormal entry count found on day 2016-12-10: -8921
WARNING. Abnormal entry count found on day 2016-12-17: -8611
WARNING. Abnormal entry count found on day 2016-12-17: -8611
WARNING. Abnormal entry count found on day 2016-12-24: -6337
WARNING. Abnormal entry count found on day 2016-12-24: -6337
Processing turnstile ('N330', 'R202', '00-06-00', '63 DR-REGO PARK')
WARNING. Abnormal entry count found on day 2016-12-03: -5378
WARNING. Abnormal entry count found on day 2016-12-03: -5378
WARNING. Abnormal entry count found on day 2016-12-10: -3673
WARNING. Abnormal entry count found on day 2016-12-10: -3673
WARNING. Abnormal entry count found on day 2016-12-17: -6108
WARNING. Abnormal entry count found on day 2016-12-17: -6108
WARNING. Abnormal entry count found on day 2016-12-24: -4583
WARNING. Abnormal entry count found on day 2016-12-24: -4583
Processing turnstile ('N103', 'R127', '00-00-04', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -10154
WARNING. Abnormal entry count found on day 2016-12-03: -10154
WARNING. Abnormal entry count found on day 2016-12-10: -9737
WARNING. Abnormal entry count found on day 2016-12-10: -9737
WARNING. Abnormal entry count found on day 2016-12-17: -8399
WARNING. Abnormal entry count found on day 2016-12-17: -8399
WARNING. Abnormal entry count found on day 2016-12-24: -5772
WARNING. Abnormal entry count found on day 2016-12-24: -5772
Processing turnstile ('N553', 'R422', '00-00-01', 'BAY PKWY')
WARNING. Abnormal entry count found on day 2016-12-03: -1793
WARNING. Abnormal entry count found on day 2016-12-03: -1793
WARNING. Abnormal entry count found on day 2016-12-10: -1582
WARNING. Abnormal entry count found on day 2016-12-10: -1582
WARNING. Abnormal entry count found on day 2016-12-17: -1846
WARNING. Abnormal entry count found on day 2016-12-17: -1846
WARNING. Abnormal entry count found on day 2016-12-24: -1321
WARNING. Abnormal entry count found on day 2016-12-24: -1321
Processing turnstile ('N224', 'R157', '00-00-01', 'NORWOOD 205 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5432
WARNING. Abnormal entry count found on day 2016-12-03: -5432
WARNING. Abnormal entry count found on day 2016-12-10: -5670
WARNING. Abnormal entry count found on day 2016-12-10: -5670
WARNING. Abnormal entry count found on day 2016-12-17: -5194
WARNING. Abnormal entry count found on day 2016-12-17: -5194
WARNING. Abnormal entry count found on day 2016-12-24: -3934
WARNING. Abnormal entry count found on day 2016-12-24: -3934
Processing turnstile ('N300', 'R113', '01-00-04', '7 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -12515
WARNING. Abnormal entry count found on day 2016-12-03: -12515
WARNING. Abnormal entry count found on day 2016-12-10: -11745
WARNING. Abnormal entry count found on day 2016-12-10: -11745
WARNING. Abnormal entry count found on day 2016-12-17: -11086
WARNING. Abnormal entry count found on day 2016-12-17: -11086
WARNING. Abnormal entry count found on day 2016-12-24: -5320
WARNING. Abnormal entry count found on day 2016-12-24: -5320
Processing turnstile ('PTH19', 'R549', '02-02-02', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1336
WARNING. Abnormal entry count found on day 2016-12-03: -1336
WARNING. Abnormal entry count found on day 2016-12-10: -1608
WARNING. Abnormal entry count found on day 2016-12-10: -1608
WARNING. Abnormal entry count found on day 2016-12-17: -1137
WARNING. Abnormal entry count found on day 2016-12-17: -1137
WARNING. Abnormal entry count found on day 2016-12-24: -547
WARNING. Abnormal entry count found on day 2016-12-24: -547
Processing turnstile ('R252', 'R180', '00-03-02', '103 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13715
WARNING. Abnormal entry count found on day 2016-12-03: -13715
WARNING. Abnormal entry count found on day 2016-12-10: -7383
WARNING. Abnormal entry count found on day 2016-12-10: -7383
WARNING. Abnormal entry count found on day 2016-12-17: -10318
WARNING. Abnormal entry count found on day 2016-12-17: -10318
WARNING. Abnormal entry count found on day 2016-12-24: -7411
WARNING. Abnormal entry count found on day 2016-12-24: -7411
Processing turnstile ('N317', 'R267', '02-00-00', '46 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3043
WARNING. Abnormal entry count found on day 2016-12-03: -3043
WARNING. Abnormal entry count found on day 2016-12-10: -2958
WARNING. Abnormal entry count found on day 2016-12-10: -2958
WARNING. Abnormal entry count found on day 2016-12-17: -3095
WARNING. Abnormal entry count found on day 2016-12-17: -3095
WARNING. Abnormal entry count found on day 2016-12-24: -2360
WARNING. Abnormal entry count found on day 2016-12-24: -2360
Processing turnstile ('N110', 'R283', '00-00-02', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -606
WARNING. Abnormal entry count found on day 2016-12-03: -606
WARNING. Abnormal entry count found on day 2016-12-10: -625
WARNING. Abnormal entry count found on day 2016-12-10: -625
WARNING. Abnormal entry count found on day 2016-12-17: -691
WARNING. Abnormal entry count found on day 2016-12-17: -691
WARNING. Abnormal entry count found on day 2016-12-24: -540
WARNING. Abnormal entry count found on day 2016-12-24: -540
Processing turnstile ('PTH17', 'R541', '01-01-06', 'THIRTY THIRD ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7930
WARNING. Abnormal entry count found on day 2016-12-03: -7930
WARNING. Abnormal entry count found on day 2016-12-10: -7710
WARNING. Abnormal entry count found on day 2016-12-10: -7710
WARNING. Abnormal entry count found on day 2016-12-17: -7004
WARNING. Abnormal entry count found on day 2016-12-17: -7004
WARNING. Abnormal entry count found on day 2016-12-24: -7350
WARNING. Abnormal entry count found on day 2016-12-24: -7350
Processing turnstile ('E003', 'R369', '00-05-00', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -1017
WARNING. Abnormal entry count found on day 2016-12-03: -1017
WARNING. Abnormal entry count found on day 2016-12-10: -940
WARNING. Abnormal entry count found on day 2016-12-10: -940
WARNING. Abnormal entry count found on day 2016-12-17: -832
WARNING. Abnormal entry count found on day 2016-12-17: -832
WARNING. Abnormal entry count found on day 2016-12-24: -690
WARNING. Abnormal entry count found on day 2016-12-24: -690
Processing turnstile ('C008', 'R099', '00-00-01', 'DEKALB AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6984
WARNING. Abnormal entry count found on day 2016-12-03: -6984
WARNING. Abnormal entry count found on day 2016-12-10: -6923
WARNING. Abnormal entry count found on day 2016-12-10: -6923
WARNING. Abnormal entry count found on day 2016-12-17: -7447
WARNING. Abnormal entry count found on day 2016-12-17: -7447
WARNING. Abnormal entry count found on day 2016-12-24: -5199
WARNING. Abnormal entry count found on day 2016-12-24: -5199
Processing turnstile ('J005', 'R353', '00-06-01', 'LORIMER ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2528
WARNING. Abnormal entry count found on day 2016-12-03: -2528
WARNING. Abnormal entry count found on day 2016-12-10: -1905
WARNING. Abnormal entry count found on day 2016-12-10: -1905
WARNING. Abnormal entry count found on day 2016-12-17: -1740
WARNING. Abnormal entry count found on day 2016-12-17: -1740
WARNING. Abnormal entry count found on day 2016-12-24: -1851
WARNING. Abnormal entry count found on day 2016-12-24: -1851
Processing turnstile ('N520', 'R240', '00-00-02', 'GRAND ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17142
WARNING. Abnormal entry count found on day 2016-12-03: -17142
WARNING. Abnormal entry count found on day 2016-12-10: -16408
WARNING. Abnormal entry count found on day 2016-12-10: -16408
WARNING. Abnormal entry count found on day 2016-12-17: -17337
WARNING. Abnormal entry count found on day 2016-12-17: -17337
WARNING. Abnormal entry count found on day 2016-12-24: -15187
WARNING. Abnormal entry count found on day 2016-12-24: -15187
Processing turnstile ('N128', 'R200', '00-00-03', 'EUCLID AV')
WARNING. Abnormal entry count found on day 2016-12-03: -9070
WARNING. Abnormal entry count found on day 2016-12-03: -9070
WARNING. Abnormal entry count found on day 2016-12-10: -8913
WARNING. Abnormal entry count found on day 2016-12-10: -8913
WARNING. Abnormal entry count found on day 2016-12-17: -8418
WARNING. Abnormal entry count found on day 2016-12-17: -8418
WARNING. Abnormal entry count found on day 2016-12-24: -6454
WARNING. Abnormal entry count found on day 2016-12-24: -6454
Processing turnstile ('R336', 'R145', '00-03-00', 'WAKEFIELD/241')
WARNING. Abnormal entry count found on day 2016-12-03: -5327
WARNING. Abnormal entry count found on day 2016-12-03: -5327
WARNING. Abnormal entry count found on day 2016-12-10: -5029
WARNING. Abnormal entry count found on day 2016-12-10: -5029
WARNING. Abnormal entry count found on day 2016-12-17: -5103
WARNING. Abnormal entry count found on day 2016-12-17: -5103
WARNING. Abnormal entry count found on day 2016-12-24: -4080
WARNING. Abnormal entry count found on day 2016-12-24: -4080
Processing turnstile ('R103', 'R304', '00-00-01', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -19639
WARNING. Abnormal entry count found on day 2016-12-03: -19639
WARNING. Abnormal entry count found on day 2016-12-10: -19365
WARNING. Abnormal entry count found on day 2016-12-10: -19365
WARNING. Abnormal entry count found on day 2016-12-17: -17592
WARNING. Abnormal entry count found on day 2016-12-17: -17592
WARNING. Abnormal entry count found on day 2016-12-24: -14056
WARNING. Abnormal entry count found on day 2016-12-24: -14056
Processing turnstile ('N062', 'R011', '01-03-04', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -12470
WARNING. Abnormal entry count found on day 2016-12-03: -12470
WARNING. Abnormal entry count found on day 2016-12-10: -12028
WARNING. Abnormal entry count found on day 2016-12-10: -12028
WARNING. Abnormal entry count found on day 2016-12-17: -11738
WARNING. Abnormal entry count found on day 2016-12-17: -11738
WARNING. Abnormal entry count found on day 2016-12-24: -10724
WARNING. Abnormal entry count found on day 2016-12-24: -10724
Processing turnstile ('K022', 'R402', '00-00-01', 'SENECA AVE')
WARNING. Abnormal entry count found on day 2016-12-03: -2989
WARNING. Abnormal entry count found on day 2016-12-03: -2989
WARNING. Abnormal entry count found on day 2016-12-10: -3043
WARNING. Abnormal entry count found on day 2016-12-10: -3043
WARNING. Abnormal entry count found on day 2016-12-17: -3055
WARNING. Abnormal entry count found on day 2016-12-17: -3055
WARNING. Abnormal entry count found on day 2016-12-24: -2312
WARNING. Abnormal entry count found on day 2016-12-24: -2312
Processing turnstile ('N203', 'R195', '00-00-03', '161/YANKEE STAD')
WARNING. Abnormal entry count found on day 2016-12-03: -15076
WARNING. Abnormal entry count found on day 2016-12-03: -15076
WARNING. Abnormal entry count found on day 2016-12-10: -14051
WARNING. Abnormal entry count found on day 2016-12-10: -14051
WARNING. Abnormal entry count found on day 2016-12-17: -14822
WARNING. Abnormal entry count found on day 2016-12-17: -14822
WARNING. Abnormal entry count found on day 2016-12-24: -12792
WARNING. Abnormal entry count found on day 2016-12-24: -12792
Processing turnstile ('N060', 'R010', '01-03-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -18086
WARNING. Abnormal entry count found on day 2016-12-03: -18086
WARNING. Abnormal entry count found on day 2016-12-10: -18408
WARNING. Abnormal entry count found on day 2016-12-10: -18408
WARNING. Abnormal entry count found on day 2016-12-17: -16433
WARNING. Abnormal entry count found on day 2016-12-17: -16433
WARNING. Abnormal entry count found on day 2016-12-24: -12860
WARNING. Abnormal entry count found on day 2016-12-24: -12860
Processing turnstile ('N138', 'R355', '01-04-00', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-03: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
WARNING. Abnormal entry count found on day 2016-12-10: -1
Processing turnstile ('N546', 'R204', '00-00-03', 'CHURCH AV')
WARNING. Abnormal entry count found on day 2016-12-03: -3759
WARNING. Abnormal entry count found on day 2016-12-03: -3759
WARNING. Abnormal entry count found on day 2016-12-10: -4411
WARNING. Abnormal entry count found on day 2016-12-10: -4411
WARNING. Abnormal entry count found on day 2016-12-17: -3792
WARNING. Abnormal entry count found on day 2016-12-17: -3792
WARNING. Abnormal entry count found on day 2016-12-24: -2931
WARNING. Abnormal entry count found on day 2016-12-24: -2931
Processing turnstile ('N340A', 'R115', '01-03-01', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6468
WARNING. Abnormal entry count found on day 2016-12-03: -6468
WARNING. Abnormal entry count found on day 2016-12-10: -5751
WARNING. Abnormal entry count found on day 2016-12-10: -5751
WARNING. Abnormal entry count found on day 2016-12-17: -5833
WARNING. Abnormal entry count found on day 2016-12-17: -5833
WARNING. Abnormal entry count found on day 2016-12-24: -4733
WARNING. Abnormal entry count found on day 2016-12-24: -4733
Processing turnstile ('K026', 'R100', '00-00-00', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -5634
WARNING. Abnormal entry count found on day 2016-12-03: -5634
WARNING. Abnormal entry count found on day 2016-12-10: -5411
WARNING. Abnormal entry count found on day 2016-12-10: -5411
WARNING. Abnormal entry count found on day 2016-12-17: -5670
WARNING. Abnormal entry count found on day 2016-12-17: -5670
WARNING. Abnormal entry count found on day 2016-12-24: -3607
WARNING. Abnormal entry count found on day 2016-12-24: -3607
Processing turnstile ('N098', 'R028', '00-00-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8003
WARNING. Abnormal entry count found on day 2016-12-03: -8003
WARNING. Abnormal entry count found on day 2016-12-10: -7590
WARNING. Abnormal entry count found on day 2016-12-10: -7590
WARNING. Abnormal entry count found on day 2016-12-17: -7118
WARNING. Abnormal entry count found on day 2016-12-17: -7118
WARNING. Abnormal entry count found on day 2016-12-24: -5390
WARNING. Abnormal entry count found on day 2016-12-24: -5390
Processing turnstile ('PTH19', 'R549', '02-01-02', 'NEWARK C')
WARNING. Abnormal entry count found on day 2016-12-03: -1895
WARNING. Abnormal entry count found on day 2016-12-03: -1895
WARNING. Abnormal entry count found on day 2016-12-10: -1860
WARNING. Abnormal entry count found on day 2016-12-10: -1860
WARNING. Abnormal entry count found on day 2016-12-17: -1505
WARNING. Abnormal entry count found on day 2016-12-17: -1505
WARNING. Abnormal entry count found on day 2016-12-24: -1135
WARNING. Abnormal entry count found on day 2016-12-24: -1135
Processing turnstile ('C019', 'R232', '00-00-01', '45 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6832
WARNING. Abnormal entry count found on day 2016-12-03: -6832
WARNING. Abnormal entry count found on day 2016-12-10: -7030
WARNING. Abnormal entry count found on day 2016-12-10: -7030
WARNING. Abnormal entry count found on day 2016-12-17: -6577
WARNING. Abnormal entry count found on day 2016-12-17: -6577
WARNING. Abnormal entry count found on day 2016-12-24: -5476
WARNING. Abnormal entry count found on day 2016-12-24: -5476
Processing turnstile ('N339A', 'R114', '00-03-01', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -4169
WARNING. Abnormal entry count found on day 2016-12-03: -4169
WARNING. Abnormal entry count found on day 2016-12-10: -3931
WARNING. Abnormal entry count found on day 2016-12-10: -3931
WARNING. Abnormal entry count found on day 2016-12-17: -4066
WARNING. Abnormal entry count found on day 2016-12-17: -4066
WARNING. Abnormal entry count found on day 2016-12-24: -3163
WARNING. Abnormal entry count found on day 2016-12-24: -3163
Processing turnstile ('N526', 'R142', '02-00-04', 'DELANCEY/ESSEX')
WARNING. Abnormal entry count found on day 2016-12-03: -5477
WARNING. Abnormal entry count found on day 2016-12-03: -5477
WARNING. Abnormal entry count found on day 2016-12-10: -5063
WARNING. Abnormal entry count found on day 2016-12-10: -5063
WARNING. Abnormal entry count found on day 2016-12-17: -3261
WARNING. Abnormal entry count found on day 2016-12-17: -3261
WARNING. Abnormal entry count found on day 2016-12-24: -3736
WARNING. Abnormal entry count found on day 2016-12-24: -3736
Processing turnstile ('R524', 'R347', '00-00-03', '69 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3066
WARNING. Abnormal entry count found on day 2016-12-03: -3066
WARNING. Abnormal entry count found on day 2016-12-10: -3123
WARNING. Abnormal entry count found on day 2016-12-10: -3123
WARNING. Abnormal entry count found on day 2016-12-17: -3033
WARNING. Abnormal entry count found on day 2016-12-17: -3033
WARNING. Abnormal entry count found on day 2016-12-24: -2578
WARNING. Abnormal entry count found on day 2016-12-24: -2578
Processing turnstile ('N343', 'R019', '00-00-07', 'JAMAICA 179 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4673
WARNING. Abnormal entry count found on day 2016-12-03: -4673
WARNING. Abnormal entry count found on day 2016-12-10: -4803
WARNING. Abnormal entry count found on day 2016-12-10: -4803
WARNING. Abnormal entry count found on day 2016-12-17: -4620
WARNING. Abnormal entry count found on day 2016-12-17: -4620
WARNING. Abnormal entry count found on day 2016-12-24: -3042
WARNING. Abnormal entry count found on day 2016-12-24: -3042
Processing turnstile ('PTH01', 'R549', '00-00-00', 'NEWARK HW BMEBE')
Processing turnstile ('R127', 'R105', '00-00-02', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5021
WARNING. Abnormal entry count found on day 2016-12-03: -5021
WARNING. Abnormal entry count found on day 2016-12-10: -5375
WARNING. Abnormal entry count found on day 2016-12-10: -5375
WARNING. Abnormal entry count found on day 2016-12-17: -5301
WARNING. Abnormal entry count found on day 2016-12-17: -5301
WARNING. Abnormal entry count found on day 2016-12-24: -3405
WARNING. Abnormal entry count found on day 2016-12-24: -3405
Processing turnstile ('N206', 'R104', '01-05-01', '167 ST')
Processing turnstile ('N120', 'R153', '00-05-00', 'UTICA AV')
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-03: -7
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -3
WARNING. Abnormal entry count found on day 2016-12-24: -3
Processing turnstile ('R258', 'R132', '00-06-02', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9066
WARNING. Abnormal entry count found on day 2016-12-03: -9066
WARNING. Abnormal entry count found on day 2016-12-10: -9053
WARNING. Abnormal entry count found on day 2016-12-10: -9053
WARNING. Abnormal entry count found on day 2016-12-17: -8568
WARNING. Abnormal entry count found on day 2016-12-17: -8568
WARNING. Abnormal entry count found on day 2016-12-24: -5888
WARNING. Abnormal entry count found on day 2016-12-24: -5888
Processing turnstile ('N002A', 'R173', '00-05-00', 'INWOOD-207 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15
WARNING. Abnormal entry count found on day 2016-12-03: -15
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-10: -7
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -5
WARNING. Abnormal entry count found on day 2016-12-24: -5
Processing turnstile ('B010', 'R412', '00-03-00', 'BOTANIC GARDEN')
WARNING. Abnormal entry count found on day 2016-12-03: -2147
WARNING. Abnormal entry count found on day 2016-12-03: -2147
WARNING. Abnormal entry count found on day 2016-12-10: -1920
WARNING. Abnormal entry count found on day 2016-12-10: -1920
WARNING. Abnormal entry count found on day 2016-12-17: -1858
WARNING. Abnormal entry count found on day 2016-12-17: -1858
WARNING. Abnormal entry count found on day 2016-12-24: -866
WARNING. Abnormal entry count found on day 2016-12-24: -866
Processing turnstile ('PTH16', 'R550', '01-00-05', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -2107
WARNING. Abnormal entry count found on day 2016-12-03: -2107
WARNING. Abnormal entry count found on day 2016-12-10: -1815
WARNING. Abnormal entry count found on day 2016-12-10: -1815
WARNING. Abnormal entry count found on day 2016-12-21: -292477
WARNING. Abnormal entry count found on day 2016-12-17: 291766
WARNING. Abnormal entry count found on day 2016-12-21: -292477
WARNING. Abnormal entry count found on day 2016-12-17: 291766
WARNING. Abnormal entry count found on day 2016-12-21: -292477
WARNING. Abnormal entry count found on day 2016-12-24: -1091
WARNING. Abnormal entry count found on day 2016-12-24: -1091
Processing turnstile ('N334B', 'R341', '00-00-01', '75 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -198
WARNING. Abnormal entry count found on day 2016-12-03: -198
WARNING. Abnormal entry count found on day 2016-12-10: -168
WARNING. Abnormal entry count found on day 2016-12-10: -168
WARNING. Abnormal entry count found on day 2016-12-17: -195
WARNING. Abnormal entry count found on day 2016-12-17: -195
WARNING. Abnormal entry count found on day 2016-12-24: -157
WARNING. Abnormal entry count found on day 2016-12-24: -157
Processing turnstile ('A038', 'R085', '00-00-04', '8 ST-NYU')
WARNING. Abnormal entry count found on day 2016-12-03: -7999
WARNING. Abnormal entry count found on day 2016-12-03: -7999
WARNING. Abnormal entry count found on day 2016-12-10: -8356
WARNING. Abnormal entry count found on day 2016-12-10: -8356
WARNING. Abnormal entry count found on day 2016-12-17: -7561
WARNING. Abnormal entry count found on day 2016-12-17: -7561
WARNING. Abnormal entry count found on day 2016-12-24: -5533
WARNING. Abnormal entry count found on day 2016-12-24: -5533
Processing turnstile ('A013', 'R081', '01-03-02', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15821
WARNING. Abnormal entry count found on day 2016-12-03: -15821
WARNING. Abnormal entry count found on day 2016-12-10: -15353
WARNING. Abnormal entry count found on day 2016-12-10: -15353
WARNING. Abnormal entry count found on day 2016-12-17: -12481
WARNING. Abnormal entry count found on day 2016-12-17: -12481
WARNING. Abnormal entry count found on day 2016-12-24: -13520
WARNING. Abnormal entry count found on day 2016-12-24: -13520
Processing turnstile ('R311', 'R053', '00-05-00', '3 AV-149 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-03: -4
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-10: -2
WARNING. Abnormal entry count found on day 2016-12-17: -52
WARNING. Abnormal entry count found on day 2016-12-17: -52
Processing turnstile ('N094', 'R029', '01-06-04', 'WORLD TRADE CTR')
WARNING. Abnormal entry count found on day 2016-12-03: -2544
WARNING. Abnormal entry count found on day 2016-12-03: -2544
WARNING. Abnormal entry count found on day 2016-12-10: -2674
WARNING. Abnormal entry count found on day 2016-12-10: -2674
WARNING. Abnormal entry count found on day 2016-12-17: -3054
WARNING. Abnormal entry count found on day 2016-12-17: -3054
WARNING. Abnormal entry count found on day 2016-12-24: -3415
WARNING. Abnormal entry count found on day 2016-12-24: -3415
Processing turnstile ('E003', 'R369', '00-05-01', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -3328
WARNING. Abnormal entry count found on day 2016-12-03: -3328
WARNING. Abnormal entry count found on day 2016-12-10: -3258
WARNING. Abnormal entry count found on day 2016-12-10: -3258
WARNING. Abnormal entry count found on day 2016-12-17: -3348
WARNING. Abnormal entry count found on day 2016-12-17: -3348
WARNING. Abnormal entry count found on day 2016-12-24: -2493
WARNING. Abnormal entry count found on day 2016-12-24: -2493
Processing turnstile ('PTH04', 'R551', '00-00-06', 'GROVE STREET')
WARNING. Abnormal entry count found on day 2016-12-03: -1303
WARNING. Abnormal entry count found on day 2016-12-03: -1303
WARNING. Abnormal entry count found on day 2016-12-10: -1431
WARNING. Abnormal entry count found on day 2016-12-10: -1431
WARNING. Abnormal entry count found on day 2016-12-17: -1213
WARNING. Abnormal entry count found on day 2016-12-17: -1213
WARNING. Abnormal entry count found on day 2016-12-24: -759
WARNING. Abnormal entry count found on day 2016-12-24: -759
Processing turnstile ('R101', 'R001', '02-00-02', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -3487
WARNING. Abnormal entry count found on day 2016-12-03: -3487
WARNING. Abnormal entry count found on day 2016-12-10: -3435
WARNING. Abnormal entry count found on day 2016-12-10: -3435
WARNING. Abnormal entry count found on day 2016-12-17: -3616
WARNING. Abnormal entry count found on day 2016-12-17: -3616
WARNING. Abnormal entry count found on day 2016-12-24: -4564
WARNING. Abnormal entry count found on day 2016-12-24: -4564
Processing turnstile ('N506', 'R022', '00-03-03', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -6373
WARNING. Abnormal entry count found on day 2016-12-03: -6373
WARNING. Abnormal entry count found on day 2016-12-10: -6883
WARNING. Abnormal entry count found on day 2016-12-10: -6883
WARNING. Abnormal entry count found on day 2016-12-17: -8570
WARNING. Abnormal entry count found on day 2016-12-17: -8570
WARNING. Abnormal entry count found on day 2016-12-24: -7242
WARNING. Abnormal entry count found on day 2016-12-24: -7242
Processing turnstile ('R248', 'R178', '00-00-07', '77 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -28388
WARNING. Abnormal entry count found on day 2016-12-03: -28388
WARNING. Abnormal entry count found on day 2016-12-10: -27779
WARNING. Abnormal entry count found on day 2016-12-10: -27779
WARNING. Abnormal entry count found on day 2016-12-17: -20884
WARNING. Abnormal entry count found on day 2016-12-17: -20884
WARNING. Abnormal entry count found on day 2016-12-24: -17902
WARNING. Abnormal entry count found on day 2016-12-24: -17902
Processing turnstile ('C009', 'R057', '03-05-00', 'ATL AV-BARCLAY')
WARNING. Abnormal entry count found on day 2016-12-03: -17
WARNING. Abnormal entry count found on day 2016-12-03: -17
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-17: -7
WARNING. Abnormal entry count found on day 2016-12-24: -10
WARNING. Abnormal entry count found on day 2016-12-24: -10
Processing turnstile ('R303', 'R324', '00-00-01', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6324
WARNING. Abnormal entry count found on day 2016-12-03: -6324
WARNING. Abnormal entry count found on day 2016-12-10: -7002
WARNING. Abnormal entry count found on day 2016-12-10: -7002
WARNING. Abnormal entry count found on day 2016-12-17: -5906
WARNING. Abnormal entry count found on day 2016-12-17: -5906
WARNING. Abnormal entry count found on day 2016-12-24: -4734
WARNING. Abnormal entry count found on day 2016-12-24: -4734
Processing turnstile ('R204A', 'R043', '03-06-01', 'WALL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2354
WARNING. Abnormal entry count found on day 2016-12-03: -2354
WARNING. Abnormal entry count found on day 2016-12-10: -2180
WARNING. Abnormal entry count found on day 2016-12-10: -2180
WARNING. Abnormal entry count found on day 2016-12-17: -1989
WARNING. Abnormal entry count found on day 2016-12-17: -1989
WARNING. Abnormal entry count found on day 2016-12-24: -1332
WARNING. Abnormal entry count found on day 2016-12-24: -1332
Processing turnstile ('R194', 'R040', '00-06-01', '231 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -406
WARNING. Abnormal entry count found on day 2016-12-03: -406
WARNING. Abnormal entry count found on day 2016-12-10: -528
WARNING. Abnormal entry count found on day 2016-12-10: -528
WARNING. Abnormal entry count found on day 2016-12-17: -540
WARNING. Abnormal entry count found on day 2016-12-17: -540
WARNING. Abnormal entry count found on day 2016-12-24: -307
WARNING. Abnormal entry count found on day 2016-12-24: -307
Processing turnstile ('R243', 'R049', '00-03-03', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -6410
WARNING. Abnormal entry count found on day 2016-12-03: -6410
WARNING. Abnormal entry count found on day 2016-12-10: -6634
WARNING. Abnormal entry count found on day 2016-12-10: -6634
WARNING. Abnormal entry count found on day 2016-12-17: -6156
WARNING. Abnormal entry count found on day 2016-12-17: -6156
WARNING. Abnormal entry count found on day 2016-12-24: -5241
WARNING. Abnormal entry count found on day 2016-12-24: -5241
Processing turnstile ('R175', 'R169', '01-00-01', '137 ST CITY COL')
WARNING. Abnormal entry count found on day 2016-12-03: -3596
WARNING. Abnormal entry count found on day 2016-12-03: -3596
WARNING. Abnormal entry count found on day 2016-12-10: -3097
WARNING. Abnormal entry count found on day 2016-12-10: -3097
WARNING. Abnormal entry count found on day 2016-12-17: -2275
WARNING. Abnormal entry count found on day 2016-12-17: -2275
WARNING. Abnormal entry count found on day 2016-12-24: -2299
WARNING. Abnormal entry count found on day 2016-12-24: -2299
Processing turnstile ('R320', 'R409', '00-00-02', 'FREEMAN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4944
WARNING. Abnormal entry count found on day 2016-12-03: -4944
WARNING. Abnormal entry count found on day 2016-12-10: -5570
WARNING. Abnormal entry count found on day 2016-12-10: -5570
WARNING. Abnormal entry count found on day 2016-12-17: -5415
WARNING. Abnormal entry count found on day 2016-12-17: -5415
WARNING. Abnormal entry count found on day 2016-12-24: -3938
WARNING. Abnormal entry count found on day 2016-12-24: -3938
Processing turnstile ('R201', 'R041', '00-06-01', 'BOWLING GREEN')
WARNING. Abnormal entry count found on day 2016-12-03: -5005
WARNING. Abnormal entry count found on day 2016-12-03: -5005
WARNING. Abnormal entry count found on day 2016-12-10: -4825
WARNING. Abnormal entry count found on day 2016-12-10: -4825
WARNING. Abnormal entry count found on day 2016-12-17: -4444
WARNING. Abnormal entry count found on day 2016-12-17: -4444
WARNING. Abnormal entry count found on day 2016-12-24: -2771
WARNING. Abnormal entry count found on day 2016-12-24: -2771
Processing turnstile ('R161B', 'R452', '00-03-03', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -25611
WARNING. Abnormal entry count found on day 2016-12-03: -25611
WARNING. Abnormal entry count found on day 2016-12-10: -24245
WARNING. Abnormal entry count found on day 2016-12-10: -24245
WARNING. Abnormal entry count found on day 2016-12-17: -21366
WARNING. Abnormal entry count found on day 2016-12-17: -21366
WARNING. Abnormal entry count found on day 2016-12-24: -14569
WARNING. Abnormal entry count found on day 2016-12-24: -14569
Processing turnstile ('N130', 'R383', '01-04-01', '80 ST')
Processing turnstile ('R407', 'R448', '01-00-00', "E 143/ST MARY'S")
WARNING. Abnormal entry count found on day 2016-12-03: -317
WARNING. Abnormal entry count found on day 2016-12-03: -317
WARNING. Abnormal entry count found on day 2016-12-10: -324
WARNING. Abnormal entry count found on day 2016-12-10: -324
WARNING. Abnormal entry count found on day 2016-12-17: -325
WARNING. Abnormal entry count found on day 2016-12-17: -325
WARNING. Abnormal entry count found on day 2016-12-24: -226
WARNING. Abnormal entry count found on day 2016-12-24: -226
Processing turnstile ('N305A', 'R016', '00-03-01', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -7903
WARNING. Abnormal entry count found on day 2016-12-03: -7903
WARNING. Abnormal entry count found on day 2016-12-10: -6732
WARNING. Abnormal entry count found on day 2016-12-10: -6732
WARNING. Abnormal entry count found on day 2016-12-17: -6073
WARNING. Abnormal entry count found on day 2016-12-17: -6073
WARNING. Abnormal entry count found on day 2016-12-24: -3681
WARNING. Abnormal entry count found on day 2016-12-24: -3681
Processing turnstile ('JFK03', 'R536', '00-00-03', 'JFK JAMAICA CT1')
WARNING. Abnormal entry count found on day 2016-12-03: -4373
WARNING. Abnormal entry count found on day 2016-12-03: -4373
WARNING. Abnormal entry count found on day 2016-12-10: -4387
WARNING. Abnormal entry count found on day 2016-12-10: -4387
WARNING. Abnormal entry count found on day 2016-12-17: -6295
WARNING. Abnormal entry count found on day 2016-12-17: -6295
WARNING. Abnormal entry count found on day 2016-12-24: -4991
WARNING. Abnormal entry count found on day 2016-12-24: -4991
Processing turnstile ('R619', 'R059', '00-00-01', 'GRAND ARMY PLAZ')
WARNING. Abnormal entry count found on day 2016-12-03: -10522
WARNING. Abnormal entry count found on day 2016-12-03: -10522
WARNING. Abnormal entry count found on day 2016-12-10: -10345
WARNING. Abnormal entry count found on day 2016-12-10: -10345
WARNING. Abnormal entry count found on day 2016-12-17: -9184
WARNING. Abnormal entry count found on day 2016-12-17: -9184
WARNING. Abnormal entry count found on day 2016-12-24: -5741
WARNING. Abnormal entry count found on day 2016-12-24: -5741
Processing turnstile ('N606', 'R025', '00-00-05', 'JAMAICA CENTER')
WARNING. Abnormal entry count found on day 2016-12-03: -23741
WARNING. Abnormal entry count found on day 2016-12-03: -23741
WARNING. Abnormal entry count found on day 2016-12-10: -21614
WARNING. Abnormal entry count found on day 2016-12-10: -21614
WARNING. Abnormal entry count found on day 2016-12-17: -23842
WARNING. Abnormal entry count found on day 2016-12-17: -23842
WARNING. Abnormal entry count found on day 2016-12-24: -24184
WARNING. Abnormal entry count found on day 2016-12-24: -24184
Processing turnstile ('R534', 'R055', '01-05-01', 'FLUSHING-MAIN')
Processing turnstile ('N339A', 'R114', '00-00-00', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -4738
WARNING. Abnormal entry count found on day 2016-12-03: -4738
WARNING. Abnormal entry count found on day 2016-12-10: -4639
WARNING. Abnormal entry count found on day 2016-12-10: -4639
WARNING. Abnormal entry count found on day 2016-12-17: -4806
WARNING. Abnormal entry count found on day 2016-12-17: -4806
WARNING. Abnormal entry count found on day 2016-12-24: -3608
WARNING. Abnormal entry count found on day 2016-12-24: -3608
Processing turnstile ('R401', 'R445', '00-00-02', '3 AV 138 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15820
WARNING. Abnormal entry count found on day 2016-12-03: -15820
WARNING. Abnormal entry count found on day 2016-12-10: -14284
WARNING. Abnormal entry count found on day 2016-12-10: -14284
WARNING. Abnormal entry count found on day 2016-12-17: -15013
WARNING. Abnormal entry count found on day 2016-12-17: -15013
WARNING. Abnormal entry count found on day 2016-12-24: -11676
WARNING. Abnormal entry count found on day 2016-12-24: -11676
Processing turnstile ('N138', 'R355', '01-06-00', '111 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3370
WARNING. Abnormal entry count found on day 2016-12-03: -3370
WARNING. Abnormal entry count found on day 2016-12-10: -3050
WARNING. Abnormal entry count found on day 2016-12-10: -3050
WARNING. Abnormal entry count found on day 2016-12-17: -2667
WARNING. Abnormal entry count found on day 2016-12-17: -2667
WARNING. Abnormal entry count found on day 2016-12-24: -1944
WARNING. Abnormal entry count found on day 2016-12-24: -1944
Processing turnstile ('R421', 'R427', '00-00-01', 'MIDDLETOWN RD')
WARNING. Abnormal entry count found on day 2016-12-03: -2763
WARNING. Abnormal entry count found on day 2016-12-03: -2763
WARNING. Abnormal entry count found on day 2016-12-10: -3140
WARNING. Abnormal entry count found on day 2016-12-10: -3140
WARNING. Abnormal entry count found on day 2016-12-17: -3001
WARNING. Abnormal entry count found on day 2016-12-17: -3001
WARNING. Abnormal entry count found on day 2016-12-24: -2156
WARNING. Abnormal entry count found on day 2016-12-24: -2156
Processing turnstile ('A013', 'R081', '01-03-00', '49 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9439
WARNING. Abnormal entry count found on day 2016-12-03: -9439
WARNING. Abnormal entry count found on day 2016-12-10: -6559
WARNING. Abnormal entry count found on day 2016-12-10: -6559
WARNING. Abnormal entry count found on day 2016-12-17: -10202
WARNING. Abnormal entry count found on day 2016-12-17: -10202
WARNING. Abnormal entry count found on day 2016-12-24: -9098
WARNING. Abnormal entry count found on day 2016-12-24: -9098
Processing turnstile ('PTH13', 'R541', '00-00-04', 'THIRTY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -537
WARNING. Abnormal entry count found on day 2016-12-03: -537
WARNING. Abnormal entry count found on day 2016-12-10: -463
WARNING. Abnormal entry count found on day 2016-12-10: -463
WARNING. Abnormal entry count found on day 2016-12-17: -531
WARNING. Abnormal entry count found on day 2016-12-17: -531
WARNING. Abnormal entry count found on day 2016-12-24: -296
WARNING. Abnormal entry count found on day 2016-12-24: -296
Processing turnstile ('N418', 'R269', '01-05-01', 'BEDFORD-NOSTRAN')
Processing turnstile ('R334', 'R367', '00-05-01', '233 ST')
Processing turnstile ('N102', 'R127', '01-00-03', 'JAY ST-METROTEC')
WARNING. Abnormal entry count found on day 2016-12-03: -13496
WARNING. Abnormal entry count found on day 2016-12-03: -13496
WARNING. Abnormal entry count found on day 2016-12-10: -12648
WARNING. Abnormal entry count found on day 2016-12-10: -12648
WARNING. Abnormal entry count found on day 2016-12-17: -11066
WARNING. Abnormal entry count found on day 2016-12-17: -11066
WARNING. Abnormal entry count found on day 2016-12-24: -6418
WARNING. Abnormal entry count found on day 2016-12-24: -6418
Processing turnstile ('R242', 'R049', '01-00-01', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4658
WARNING. Abnormal entry count found on day 2016-12-03: -4658
WARNING. Abnormal entry count found on day 2016-12-10: -4979
WARNING. Abnormal entry count found on day 2016-12-10: -4979
WARNING. Abnormal entry count found on day 2016-12-17: -4276
WARNING. Abnormal entry count found on day 2016-12-17: -4276
WARNING. Abnormal entry count found on day 2016-12-24: -2983
WARNING. Abnormal entry count found on day 2016-12-24: -2983
Processing turnstile ('R601A', 'R108', '02-05-01', 'BOROUGH HALL')
Processing turnstile ('N416', 'R286', '01-06-01', 'MYRTLE-WILLOUGH')
WARNING. Abnormal entry count found on day 2016-12-03: -10311
WARNING. Abnormal entry count found on day 2016-12-03: -10311
WARNING. Abnormal entry count found on day 2016-12-10: -9939
WARNING. Abnormal entry count found on day 2016-12-10: -9939
WARNING. Abnormal entry count found on day 2016-12-17: -9081
WARNING. Abnormal entry count found on day 2016-12-17: -9081
WARNING. Abnormal entry count found on day 2016-12-24: -6135
WARNING. Abnormal entry count found on day 2016-12-24: -6135
Processing turnstile ('R251', 'R144', '00-00-02', '96 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -20824
WARNING. Abnormal entry count found on day 2016-12-03: -20824
WARNING. Abnormal entry count found on day 2016-12-10: -23825
WARNING. Abnormal entry count found on day 2016-12-10: -23825
WARNING. Abnormal entry count found on day 2016-12-17: -18189
WARNING. Abnormal entry count found on day 2016-12-17: -18189
WARNING. Abnormal entry count found on day 2016-12-24: -11907
WARNING. Abnormal entry count found on day 2016-12-24: -11907
Processing turnstile ('A046', 'R463', '00-06-05', 'CANAL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -3002
WARNING. Abnormal entry count found on day 2016-12-03: -3002
WARNING. Abnormal entry count found on day 2016-12-10: -2923
WARNING. Abnormal entry count found on day 2016-12-10: -2923
WARNING. Abnormal entry count found on day 2016-12-17: -3124
WARNING. Abnormal entry count found on day 2016-12-17: -3124
WARNING. Abnormal entry count found on day 2016-12-24: -2869
WARNING. Abnormal entry count found on day 2016-12-24: -2869
Processing turnstile ('N309A', 'R140', '00-06-01', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -6744
WARNING. Abnormal entry count found on day 2016-12-03: -6744
WARNING. Abnormal entry count found on day 2016-12-10: -6200
WARNING. Abnormal entry count found on day 2016-12-10: -6200
WARNING. Abnormal entry count found on day 2016-12-17: -5627
WARNING. Abnormal entry count found on day 2016-12-17: -5627
WARNING. Abnormal entry count found on day 2016-12-24: -3326
WARNING. Abnormal entry count found on day 2016-12-24: -3326
Processing turnstile ('N072', 'R012', '05-03-04', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -18803
WARNING. Abnormal entry count found on day 2016-12-03: -18803
WARNING. Abnormal entry count found on day 2016-12-10: -20044
WARNING. Abnormal entry count found on day 2016-12-10: -20044
WARNING. Abnormal entry count found on day 2016-12-17: -18423
WARNING. Abnormal entry count found on day 2016-12-17: -18423
WARNING. Abnormal entry count found on day 2016-12-24: -14217
WARNING. Abnormal entry count found on day 2016-12-24: -14217
Processing turnstile ('N095', 'R014', '00-03-03', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -16606
WARNING. Abnormal entry count found on day 2016-12-03: -16606
WARNING. Abnormal entry count found on day 2016-12-10: -17393
WARNING. Abnormal entry count found on day 2016-12-10: -17393
WARNING. Abnormal entry count found on day 2016-12-17: -15340
WARNING. Abnormal entry count found on day 2016-12-17: -15340
WARNING. Abnormal entry count found on day 2016-12-24: -11162
WARNING. Abnormal entry count found on day 2016-12-24: -11162
Processing turnstile ('N108', 'R217', '00-00-04', 'HOYT-SCHER')
WARNING. Abnormal entry count found on day 2016-12-03: -16010
WARNING. Abnormal entry count found on day 2016-12-03: -16010
WARNING. Abnormal entry count found on day 2016-12-10: -15618
WARNING. Abnormal entry count found on day 2016-12-10: -15618
WARNING. Abnormal entry count found on day 2016-12-17: -15116
WARNING. Abnormal entry count found on day 2016-12-17: -15116
WARNING. Abnormal entry count found on day 2016-12-24: -10774
WARNING. Abnormal entry count found on day 2016-12-24: -10774
Processing turnstile ('R284', 'R243', '00-00-02', '170 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13623
WARNING. Abnormal entry count found on day 2016-12-03: -13623
WARNING. Abnormal entry count found on day 2016-12-10: -13274
WARNING. Abnormal entry count found on day 2016-12-10: -13274
WARNING. Abnormal entry count found on day 2016-12-17: -13893
WARNING. Abnormal entry count found on day 2016-12-17: -13893
WARNING. Abnormal entry count found on day 2016-12-24: -10239
WARNING. Abnormal entry count found on day 2016-12-24: -10239
Processing turnstile ('C018', 'R197', '00-00-02', '36 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -9734
WARNING. Abnormal entry count found on day 2016-12-03: -9734
WARNING. Abnormal entry count found on day 2016-12-10: -9310
WARNING. Abnormal entry count found on day 2016-12-10: -9310
WARNING. Abnormal entry count found on day 2016-12-17: -9598
WARNING. Abnormal entry count found on day 2016-12-17: -9598
WARNING. Abnormal entry count found on day 2016-12-24: -6593
WARNING. Abnormal entry count found on day 2016-12-24: -6593
Processing turnstile ('N194', 'R338', '00-05-01', 'BEACH 36 ST')
Processing turnstile ('N510', 'R163', '02-06-01', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -643
WARNING. Abnormal entry count found on day 2016-12-03: -643
WARNING. Abnormal entry count found on day 2016-12-10: -709
WARNING. Abnormal entry count found on day 2016-12-10: -709
WARNING. Abnormal entry count found on day 2016-12-17: -686
WARNING. Abnormal entry count found on day 2016-12-17: -686
WARNING. Abnormal entry count found on day 2016-12-24: -416
WARNING. Abnormal entry count found on day 2016-12-24: -416
Processing turnstile ('N535', 'R220', '00-00-00', 'CARROLL ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4319
WARNING. Abnormal entry count found on day 2016-12-03: -4319
WARNING. Abnormal entry count found on day 2016-12-10: -4387
WARNING. Abnormal entry count found on day 2016-12-10: -4387
WARNING. Abnormal entry count found on day 2016-12-17: -3889
WARNING. Abnormal entry count found on day 2016-12-17: -3889
WARNING. Abnormal entry count found on day 2016-12-24: -1913
WARNING. Abnormal entry count found on day 2016-12-24: -1913
Processing turnstile ('N506', 'R022', '00-03-00', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -914
WARNING. Abnormal entry count found on day 2016-12-03: -914
WARNING. Abnormal entry count found on day 2016-12-10: -842
WARNING. Abnormal entry count found on day 2016-12-10: -842
WARNING. Abnormal entry count found on day 2016-12-17: -900
WARNING. Abnormal entry count found on day 2016-12-17: -900
WARNING. Abnormal entry count found on day 2016-12-24: -973
WARNING. Abnormal entry count found on day 2016-12-24: -973
Processing turnstile ('R116', 'R030', '00-05-01', 'CHAMBERS ST')
Processing turnstile ('E009', 'R370', '00-06-01', '71 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2129
WARNING. Abnormal entry count found on day 2016-12-03: -2129
WARNING. Abnormal entry count found on day 2016-12-10: -2380
WARNING. Abnormal entry count found on day 2016-12-10: -2380
WARNING. Abnormal entry count found on day 2016-12-17: -2497
WARNING. Abnormal entry count found on day 2016-12-17: -2497
WARNING. Abnormal entry count found on day 2016-12-24: -1957
WARNING. Abnormal entry count found on day 2016-12-24: -1957
Processing turnstile ('R526', 'R096', '00-00-01', '82 ST-JACKSON H')
WARNING. Abnormal entry count found on day 2016-12-03: -10672
WARNING. Abnormal entry count found on day 2016-12-03: -10672
WARNING. Abnormal entry count found on day 2016-12-10: -7365
WARNING. Abnormal entry count found on day 2016-12-10: -7365
WARNING. Abnormal entry count found on day 2016-12-17: -7265
WARNING. Abnormal entry count found on day 2016-12-17: -7265
WARNING. Abnormal entry count found on day 2016-12-24: -5954
WARNING. Abnormal entry count found on day 2016-12-24: -5954
Processing turnstile ('R101', 'R001', '02-07-02', 'SOUTH FERRY')
WARNING. Abnormal entry count found on day 2016-12-03: -11256
WARNING. Abnormal entry count found on day 2016-12-03: -11256
WARNING. Abnormal entry count found on day 2016-12-10: -9733
WARNING. Abnormal entry count found on day 2016-12-10: -9733
WARNING. Abnormal entry count found on day 2016-12-17: -9438
WARNING. Abnormal entry count found on day 2016-12-17: -9438
WARNING. Abnormal entry count found on day 2016-12-24: -8785
WARNING. Abnormal entry count found on day 2016-12-24: -8785
Processing turnstile ('G015', 'R312', '01-05-00', 'W 8 ST-AQUARIUM')
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-03: -5
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-10: -8
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-17: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
WARNING. Abnormal entry count found on day 2016-12-24: -6
Processing turnstile ('H028', 'R266', '00-00-00', 'HALSEY ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8684
WARNING. Abnormal entry count found on day 2016-12-03: -8684
WARNING. Abnormal entry count found on day 2016-12-10: -8679
WARNING. Abnormal entry count found on day 2016-12-10: -8679
WARNING. Abnormal entry count found on day 2016-12-17: -8268
WARNING. Abnormal entry count found on day 2016-12-17: -8268
WARNING. Abnormal entry count found on day 2016-12-24: -6374
WARNING. Abnormal entry count found on day 2016-12-24: -6374
Processing turnstile ('R325', 'R388', '00-00-01', 'E 180 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10637
WARNING. Abnormal entry count found on day 2016-12-03: -10637
WARNING. Abnormal entry count found on day 2016-12-10: -11637
WARNING. Abnormal entry count found on day 2016-12-10: -11637
WARNING. Abnormal entry count found on day 2016-12-17: -11585
WARNING. Abnormal entry count found on day 2016-12-17: -11585
WARNING. Abnormal entry count found on day 2016-12-24: -8055
WARNING. Abnormal entry count found on day 2016-12-24: -8055
Processing turnstile ('N110', 'R283', '00-03-01', 'LAFAYETTE AV')
WARNING. Abnormal entry count found on day 2016-12-03: -276
WARNING. Abnormal entry count found on day 2016-12-03: -276
WARNING. Abnormal entry count found on day 2016-12-10: -241
WARNING. Abnormal entry count found on day 2016-12-10: -241
WARNING. Abnormal entry count found on day 2016-12-17: -264
WARNING. Abnormal entry count found on day 2016-12-17: -264
WARNING. Abnormal entry count found on day 2016-12-24: -300
WARNING. Abnormal entry count found on day 2016-12-24: -300
Processing turnstile ('R138', 'R293', '00-05-01', '34 ST-PENN STA')
Processing turnstile ('N506', 'R022', '00-05-02', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -16472
WARNING. Abnormal entry count found on day 2016-12-03: -16472
WARNING. Abnormal entry count found on day 2016-12-10: -17749
WARNING. Abnormal entry count found on day 2016-12-10: -17749
WARNING. Abnormal entry count found on day 2016-12-17: -22429
WARNING. Abnormal entry count found on day 2016-12-17: -22429
WARNING. Abnormal entry count found on day 2016-12-24: -21539
WARNING. Abnormal entry count found on day 2016-12-24: -21539
Processing turnstile ('R550', 'R072', '00-03-00', '34 ST-HUDSON YD')
WARNING. Abnormal entry count found on day 2016-12-03: -1810
WARNING. Abnormal entry count found on day 2016-12-03: -1810
WARNING. Abnormal entry count found on day 2016-12-10: -1951
WARNING. Abnormal entry count found on day 2016-12-10: -1951
WARNING. Abnormal entry count found on day 2016-12-17: -1579
WARNING. Abnormal entry count found on day 2016-12-17: -1579
WARNING. Abnormal entry count found on day 2016-12-24: -1360
WARNING. Abnormal entry count found on day 2016-12-24: -1360
Processing turnstile ('R102', 'R304', '01-06-00', 'RECTOR ST')
WARNING. Abnormal entry count found on day 2016-12-03: -119
WARNING. Abnormal entry count found on day 2016-12-03: -119
WARNING. Abnormal entry count found on day 2016-12-10: -129
WARNING. Abnormal entry count found on day 2016-12-10: -129
WARNING. Abnormal entry count found on day 2016-12-17: -146
WARNING. Abnormal entry count found on day 2016-12-17: -146
WARNING. Abnormal entry count found on day 2016-12-24: -158
WARNING. Abnormal entry count found on day 2016-12-24: -158
Processing turnstile ('N542', 'R241', '00-00-00', '15 ST-PROSPECT')
WARNING. Abnormal entry count found on day 2016-12-03: -2472
WARNING. Abnormal entry count found on day 2016-12-03: -2472
WARNING. Abnormal entry count found on day 2016-12-10: -2127
WARNING. Abnormal entry count found on day 2016-12-10: -2127
WARNING. Abnormal entry count found on day 2016-12-17: -1820
WARNING. Abnormal entry count found on day 2016-12-17: -1820
WARNING. Abnormal entry count found on day 2016-12-24: -1212
WARNING. Abnormal entry count found on day 2016-12-24: -1212
Processing turnstile ('R242', 'R049', '01-03-03', '51 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8533
WARNING. Abnormal entry count found on day 2016-12-03: -8533
WARNING. Abnormal entry count found on day 2016-12-10: -8371
WARNING. Abnormal entry count found on day 2016-12-10: -8371
WARNING. Abnormal entry count found on day 2016-12-17: -8016
WARNING. Abnormal entry count found on day 2016-12-17: -8016
WARNING. Abnormal entry count found on day 2016-12-24: -6693
WARNING. Abnormal entry count found on day 2016-12-24: -6693
Processing turnstile ('R161B', 'R452', '00-05-02', '72 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-03: -8
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-10: -10
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-17: -4
WARNING. Abnormal entry count found on day 2016-12-24: -1
WARNING. Abnormal entry count found on day 2016-12-24: -1
Processing turnstile ('N511', 'R163', '03-06-00', '14 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -816
WARNING. Abnormal entry count found on day 2016-12-03: -816
WARNING. Abnormal entry count found on day 2016-12-10: -770
WARNING. Abnormal entry count found on day 2016-12-10: -770
WARNING. Abnormal entry count found on day 2016-12-17: -698
WARNING. Abnormal entry count found on day 2016-12-17: -698
WARNING. Abnormal entry count found on day 2016-12-24: -334
WARNING. Abnormal entry count found on day 2016-12-24: -334
Processing turnstile ('H013', 'R249', '01-00-02', 'GRAHAM AV')
WARNING. Abnormal entry count found on day 2016-12-03: -18666
WARNING. Abnormal entry count found on day 2016-12-03: -18666
WARNING. Abnormal entry count found on day 2016-12-10: -18699
WARNING. Abnormal entry count found on day 2016-12-10: -18699
WARNING. Abnormal entry count found on day 2016-12-17: -16427
WARNING. Abnormal entry count found on day 2016-12-17: -16427
WARNING. Abnormal entry count found on day 2016-12-24: -10542
WARNING. Abnormal entry count found on day 2016-12-24: -10542
Processing turnstile ('R254', 'R181', '01-00-02', '110 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15934
WARNING. Abnormal entry count found on day 2016-12-03: -15934
WARNING. Abnormal entry count found on day 2016-12-10: -15113
WARNING. Abnormal entry count found on day 2016-12-10: -15113
WARNING. Abnormal entry count found on day 2016-12-17: -14536
WARNING. Abnormal entry count found on day 2016-12-17: -14536
WARNING. Abnormal entry count found on day 2016-12-24: -10961
WARNING. Abnormal entry count found on day 2016-12-24: -10961
Processing turnstile ('D009', 'R393', '00-00-02', '20 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -4731
WARNING. Abnormal entry count found on day 2016-12-03: -4731
WARNING. Abnormal entry count found on day 2016-12-10: -4538
WARNING. Abnormal entry count found on day 2016-12-10: -4538
WARNING. Abnormal entry count found on day 2016-12-17: -4548
WARNING. Abnormal entry count found on day 2016-12-17: -4548
WARNING. Abnormal entry count found on day 2016-12-24: -3579
WARNING. Abnormal entry count found on day 2016-12-24: -3579
Processing turnstile ('N507', 'R023', '00-03-04', '34 ST-HERALD SQ')
WARNING. Abnormal entry count found on day 2016-12-08: -6419740
WARNING. Abnormal entry count found on day 2016-12-03: 6402978
WARNING. Abnormal entry count found on day 2016-12-08: -6419740
WARNING. Abnormal entry count found on day 2016-12-03: 6402978
WARNING. Abnormal entry count found on day 2016-12-08: -6419740
WARNING. Abnormal entry count found on day 2016-12-10: -24189
WARNING. Abnormal entry count found on day 2016-12-10: -24189
WARNING. Abnormal entry count found on day 2016-12-17: -23146
WARNING. Abnormal entry count found on day 2016-12-17: -23146
WARNING. Abnormal entry count found on day 2016-12-24: -15374
WARNING. Abnormal entry count found on day 2016-12-24: -15374
Processing turnstile ('N340', 'R115', '00-00-03', '169 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -1386
WARNING. Abnormal entry count found on day 2016-12-03: -1386
WARNING. Abnormal entry count found on day 2016-12-10: -1539
WARNING. Abnormal entry count found on day 2016-12-10: -1539
WARNING. Abnormal entry count found on day 2016-12-17: -2264
WARNING. Abnormal entry count found on day 2016-12-17: -2264
WARNING. Abnormal entry count found on day 2016-12-24: -990
WARNING. Abnormal entry count found on day 2016-12-24: -990
Processing turnstile ('N114', 'R297', '01-00-01', 'FRANKLIN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2912
WARNING. Abnormal entry count found on day 2016-12-03: -2912
WARNING. Abnormal entry count found on day 2016-12-10: -2864
WARNING. Abnormal entry count found on day 2016-12-10: -2864
WARNING. Abnormal entry count found on day 2016-12-17: -2689
WARNING. Abnormal entry count found on day 2016-12-17: -2689
WARNING. Abnormal entry count found on day 2016-12-24: -2219
WARNING. Abnormal entry count found on day 2016-12-24: -2219
Processing turnstile ('R417', 'R222', '00-03-02', 'PARKCHESTER')
WARNING. Abnormal entry count found on day 2016-12-03: -1287
WARNING. Abnormal entry count found on day 2016-12-03: -1287
WARNING. Abnormal entry count found on day 2016-12-10: -1247
WARNING. Abnormal entry count found on day 2016-12-10: -1247
WARNING. Abnormal entry count found on day 2016-12-17: -1290
WARNING. Abnormal entry count found on day 2016-12-17: -1290
WARNING. Abnormal entry count found on day 2016-12-24: -1035
WARNING. Abnormal entry count found on day 2016-12-24: -1035
Processing turnstile ('R231', 'R176', '00-00-00', '33 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17531
WARNING. Abnormal entry count found on day 2016-12-03: -17531
WARNING. Abnormal entry count found on day 2016-12-10: -17254
WARNING. Abnormal entry count found on day 2016-12-10: -17254
WARNING. Abnormal entry count found on day 2016-12-17: -15770
WARNING. Abnormal entry count found on day 2016-12-17: -15770
WARNING. Abnormal entry count found on day 2016-12-24: -12522
WARNING. Abnormal entry count found on day 2016-12-24: -12522
Processing turnstile ('N187', 'R419', '00-00-00', 'ROCKAWAY PARK B')
WARNING. Abnormal entry count found on day 2016-12-03: -1460
WARNING. Abnormal entry count found on day 2016-12-03: -1460
WARNING. Abnormal entry count found on day 2016-12-10: -1395
WARNING. Abnormal entry count found on day 2016-12-10: -1395
WARNING. Abnormal entry count found on day 2016-12-17: -1590
WARNING. Abnormal entry count found on day 2016-12-17: -1590
WARNING. Abnormal entry count found on day 2016-12-24: -1310
WARNING. Abnormal entry count found on day 2016-12-24: -1310
Processing turnstile ('R617', 'R058', '00-00-01', 'BERGEN ST')
WARNING. Abnormal entry count found on day 2016-12-03: -4370
WARNING. Abnormal entry count found on day 2016-12-03: -4370
WARNING. Abnormal entry count found on day 2016-12-10: -4487
WARNING. Abnormal entry count found on day 2016-12-10: -4487
WARNING. Abnormal entry count found on day 2016-12-17: -3784
WARNING. Abnormal entry count found on day 2016-12-17: -3784
WARNING. Abnormal entry count found on day 2016-12-24: -2331
WARNING. Abnormal entry count found on day 2016-12-24: -2331
Processing turnstile ('N029', 'R333', '01-00-02', '116 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7583
WARNING. Abnormal entry count found on day 2016-12-03: -7583
WARNING. Abnormal entry count found on day 2016-12-10: -6932
WARNING. Abnormal entry count found on day 2016-12-10: -6932
WARNING. Abnormal entry count found on day 2016-12-17: -6822
WARNING. Abnormal entry count found on day 2016-12-17: -6822
WARNING. Abnormal entry count found on day 2016-12-24: -4737
WARNING. Abnormal entry count found on day 2016-12-24: -4737
Processing turnstile ('R210', 'R044', '00-03-03', 'BROOKLYN BRIDGE')
WARNING. Abnormal entry count found on day 2016-12-03: -10393
WARNING. Abnormal entry count found on day 2016-12-03: -10393
WARNING. Abnormal entry count found on day 2016-12-10: -9618
WARNING. Abnormal entry count found on day 2016-12-10: -9618
WARNING. Abnormal entry count found on day 2016-12-17: -9310
WARNING. Abnormal entry count found on day 2016-12-17: -9310
WARNING. Abnormal entry count found on day 2016-12-24: -8177
WARNING. Abnormal entry count found on day 2016-12-24: -8177
Processing turnstile ('N063A', 'R011', '00-00-00', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -16638
WARNING. Abnormal entry count found on day 2016-12-03: -16638
WARNING. Abnormal entry count found on day 2016-12-10: -17034
WARNING. Abnormal entry count found on day 2016-12-10: -17034
WARNING. Abnormal entry count found on day 2016-12-17: -15685
WARNING. Abnormal entry count found on day 2016-12-17: -15685
WARNING. Abnormal entry count found on day 2016-12-24: -13659
WARNING. Abnormal entry count found on day 2016-12-24: -13659
Processing turnstile ('N045', 'R187', '01-00-02', '81 ST-MUSEUM')
WARNING. Abnormal entry count found on day 2016-12-03: -7794
WARNING. Abnormal entry count found on day 2016-12-03: -7794
WARNING. Abnormal entry count found on day 2016-12-10: -7732
WARNING. Abnormal entry count found on day 2016-12-10: -7732
WARNING. Abnormal entry count found on day 2016-12-17: -8571
WARNING. Abnormal entry count found on day 2016-12-17: -8571
WARNING. Abnormal entry count found on day 2016-12-24: -10968
WARNING. Abnormal entry count found on day 2016-12-24: -10968
Processing turnstile ('N310', 'R140', '01-06-00', 'QUEENS PLAZA')
WARNING. Abnormal entry count found on day 2016-12-03: -5133
WARNING. Abnormal entry count found on day 2016-12-03: -5133
WARNING. Abnormal entry count found on day 2016-12-10: -4978
WARNING. Abnormal entry count found on day 2016-12-10: -4978
WARNING. Abnormal entry count found on day 2016-12-17: -4428
WARNING. Abnormal entry count found on day 2016-12-17: -4428
WARNING. Abnormal entry count found on day 2016-12-24: -3101
WARNING. Abnormal entry count found on day 2016-12-24: -3101
Processing turnstile ('PTH16', 'R550', '01-01-06', 'LACKAWANNA')
WARNING. Abnormal entry count found on day 2016-12-03: -2579
WARNING. Abnormal entry count found on day 2016-12-03: -2579
WARNING. Abnormal entry count found on day 2016-12-10: -1885
WARNING. Abnormal entry count found on day 2016-12-10: -1885
WARNING. Abnormal entry count found on day 2016-12-17: -3722
WARNING. Abnormal entry count found on day 2016-12-17: -3722
WARNING. Abnormal entry count found on day 2016-12-24: -2583
WARNING. Abnormal entry count found on day 2016-12-24: -2583
Processing turnstile ('A033', 'R170', '02-00-01', '14 ST-UNION SQ')
WARNING. Abnormal entry count found on day 2016-12-03: -12455
WARNING. Abnormal entry count found on day 2016-12-03: -12455
WARNING. Abnormal entry count found on day 2016-12-10: -12157
WARNING. Abnormal entry count found on day 2016-12-10: -12157
WARNING. Abnormal entry count found on day 2016-12-17: -12523
WARNING. Abnormal entry count found on day 2016-12-17: -12523
WARNING. Abnormal entry count found on day 2016-12-24: -6617
WARNING. Abnormal entry count found on day 2016-12-24: -6617
Processing turnstile ('R162', 'R166', '00-00-00', '79 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -14460
WARNING. Abnormal entry count found on day 2016-12-03: -14460
WARNING. Abnormal entry count found on day 2016-12-10: -14477
WARNING. Abnormal entry count found on day 2016-12-10: -14477
WARNING. Abnormal entry count found on day 2016-12-17: -13694
WARNING. Abnormal entry count found on day 2016-12-17: -13694
WARNING. Abnormal entry count found on day 2016-12-24: -10549
WARNING. Abnormal entry count found on day 2016-12-24: -10549
Processing turnstile ('R528', 'R097', '00-00-02', 'JUNCTION BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -13648
WARNING. Abnormal entry count found on day 2016-12-03: -13648
WARNING. Abnormal entry count found on day 2016-12-10: -13334
WARNING. Abnormal entry count found on day 2016-12-10: -13334
WARNING. Abnormal entry count found on day 2016-12-17: -11957
WARNING. Abnormal entry count found on day 2016-12-17: -11957
WARNING. Abnormal entry count found on day 2016-12-24: -10939
WARNING. Abnormal entry count found on day 2016-12-24: -10939
Processing turnstile ('R258', 'R132', '00-06-00', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -13279
WARNING. Abnormal entry count found on day 2016-12-03: -13279
WARNING. Abnormal entry count found on day 2016-12-10: -11891
WARNING. Abnormal entry count found on day 2016-12-10: -11891
WARNING. Abnormal entry count found on day 2016-12-17: -11577
WARNING. Abnormal entry count found on day 2016-12-17: -11577
WARNING. Abnormal entry count found on day 2016-12-24: -8677
WARNING. Abnormal entry count found on day 2016-12-24: -8677
Processing turnstile ('R164', 'R167', '00-03-02', '86 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -10189
WARNING. Abnormal entry count found on day 2016-12-03: -10189
WARNING. Abnormal entry count found on day 2016-12-10: -10127
WARNING. Abnormal entry count found on day 2016-12-10: -10127
WARNING. Abnormal entry count found on day 2016-12-17: -10112
WARNING. Abnormal entry count found on day 2016-12-17: -10112
WARNING. Abnormal entry count found on day 2016-12-24: -7020
WARNING. Abnormal entry count found on day 2016-12-24: -7020
Processing turnstile ('N129', 'R382', '00-00-00', 'GRANT AV')
WARNING. Abnormal entry count found on day 2016-12-03: -8500
WARNING. Abnormal entry count found on day 2016-12-03: -8500
WARNING. Abnormal entry count found on day 2016-12-10: -8072
WARNING. Abnormal entry count found on day 2016-12-10: -8072
WARNING. Abnormal entry count found on day 2016-12-17: -8183
WARNING. Abnormal entry count found on day 2016-12-17: -8183
WARNING. Abnormal entry count found on day 2016-12-24: -6571
WARNING. Abnormal entry count found on day 2016-12-24: -6571
Processing turnstile ('R155', 'R116', '01-00-04', '50 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7583
WARNING. Abnormal entry count found on day 2016-12-03: -7583
WARNING. Abnormal entry count found on day 2016-12-10: -7815
WARNING. Abnormal entry count found on day 2016-12-10: -7815
WARNING. Abnormal entry count found on day 2016-12-17: -7496
WARNING. Abnormal entry count found on day 2016-12-17: -7496
WARNING. Abnormal entry count found on day 2016-12-24: -6520
WARNING. Abnormal entry count found on day 2016-12-24: -6520
Processing turnstile ('R148', 'R033', '01-03-03', 'TIMES SQ-42 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -5147
WARNING. Abnormal entry count found on day 2016-12-03: -5147
WARNING. Abnormal entry count found on day 2016-12-10: -4892
WARNING. Abnormal entry count found on day 2016-12-10: -4892
WARNING. Abnormal entry count found on day 2016-12-17: -5520
WARNING. Abnormal entry count found on day 2016-12-17: -5520
WARNING. Abnormal entry count found on day 2016-12-24: -5741
WARNING. Abnormal entry count found on day 2016-12-24: -5741
Processing turnstile ('PTH05', 'R543', '00-00-05', 'EXCHANGE PLACE')
WARNING. Abnormal entry count found on day 2016-12-03: -2552
WARNING. Abnormal entry count found on day 2016-12-03: -2552
WARNING. Abnormal entry count found on day 2016-12-10: -2049
WARNING. Abnormal entry count found on day 2016-12-10: -2049
WARNING. Abnormal entry count found on day 2016-12-17: -2381
WARNING. Abnormal entry count found on day 2016-12-17: -2381
WARNING. Abnormal entry count found on day 2016-12-24: -1905
WARNING. Abnormal entry count found on day 2016-12-24: -1905
Processing turnstile ('PTH07', 'R550', '00-01-02', 'CITY / BUS')
WARNING. Abnormal entry count found on day 2016-12-03: -1121
WARNING. Abnormal entry count found on day 2016-12-03: -1121
WARNING. Abnormal entry count found on day 2016-12-10: -1107
WARNING. Abnormal entry count found on day 2016-12-10: -1107
WARNING. Abnormal entry count found on day 2016-12-17: -1015
WARNING. Abnormal entry count found on day 2016-12-17: -1015
WARNING. Abnormal entry count found on day 2016-12-24: -572
WARNING. Abnormal entry count found on day 2016-12-24: -572
Processing turnstile ('R133', 'R272', '00-00-01', '28 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -15252
WARNING. Abnormal entry count found on day 2016-12-03: -15252
WARNING. Abnormal entry count found on day 2016-12-10: -15225
WARNING. Abnormal entry count found on day 2016-12-10: -15225
WARNING. Abnormal entry count found on day 2016-12-17: -12338
WARNING. Abnormal entry count found on day 2016-12-17: -12338
WARNING. Abnormal entry count found on day 2016-12-24: -8523
WARNING. Abnormal entry count found on day 2016-12-24: -8523
Processing turnstile ('E001', 'R368', '00-05-00', '9 AV')
WARNING. Abnormal entry count found on day 2016-12-10: -3
WARNING. Abnormal entry count found on day 2016-12-10: -3
Processing turnstile ('N306', 'R017', '00-03-01', 'LEXINGTON AV/53')
WARNING. Abnormal entry count found on day 2016-12-03: -14153
WARNING. Abnormal entry count found on day 2016-12-03: -14153
WARNING. Abnormal entry count found on day 2016-12-10: -14808
WARNING. Abnormal entry count found on day 2016-12-10: -14808
WARNING. Abnormal entry count found on day 2016-12-17: -13434
WARNING. Abnormal entry count found on day 2016-12-17: -13434
WARNING. Abnormal entry count found on day 2016-12-24: -8891
WARNING. Abnormal entry count found on day 2016-12-24: -8891
Processing turnstile ('R609', 'R056', '01-00-01', 'NEVINS ST')
WARNING. Abnormal entry count found on day 2016-12-03: -7254
WARNING. Abnormal entry count found on day 2016-12-03: -7254
WARNING. Abnormal entry count found on day 2016-12-10: -8984
WARNING. Abnormal entry count found on day 2016-12-10: -8984
WARNING. Abnormal entry count found on day 2016-12-17: -6772
WARNING. Abnormal entry count found on day 2016-12-17: -6772
WARNING. Abnormal entry count found on day 2016-12-24: -4226
WARNING. Abnormal entry count found on day 2016-12-24: -4226
Processing turnstile ('N095A', 'R014', '01-00-02', 'FULTON ST')
WARNING. Abnormal entry count found on day 2016-12-03: -17395
WARNING. Abnormal entry count found on day 2016-12-03: -17395
WARNING. Abnormal entry count found on day 2016-12-10: -17074
WARNING. Abnormal entry count found on day 2016-12-10: -17074
WARNING. Abnormal entry count found on day 2016-12-17: -16042
WARNING. Abnormal entry count found on day 2016-12-17: -16042
WARNING. Abnormal entry count found on day 2016-12-24: -14171
WARNING. Abnormal entry count found on day 2016-12-24: -14171
Processing turnstile ('R180', 'R193', '00-00-04', '157 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -2597
WARNING. Abnormal entry count found on day 2016-12-03: -2597
WARNING. Abnormal entry count found on day 2016-12-10: -2579
WARNING. Abnormal entry count found on day 2016-12-10: -2579
WARNING. Abnormal entry count found on day 2016-12-17: -2532
WARNING. Abnormal entry count found on day 2016-12-17: -2532
WARNING. Abnormal entry count found on day 2016-12-24: -1809
WARNING. Abnormal entry count found on day 2016-12-24: -1809
Processing turnstile ('N062', 'R011', '01-03-01', '42 ST-PORT AUTH')
WARNING. Abnormal entry count found on day 2016-12-03: -11562
WARNING. Abnormal entry count found on day 2016-12-03: -11562
WARNING. Abnormal entry count found on day 2016-12-10: -12088
WARNING. Abnormal entry count found on day 2016-12-10: -12088
WARNING. Abnormal entry count found on day 2016-12-17: -10757
WARNING. Abnormal entry count found on day 2016-12-17: -10757
WARNING. Abnormal entry count found on day 2016-12-24: -10259
WARNING. Abnormal entry count found on day 2016-12-24: -10259
Processing turnstile ('N026', 'R102', '00-00-04', '125 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8354
WARNING. Abnormal entry count found on day 2016-12-03: -8354
WARNING. Abnormal entry count found on day 2016-12-10: -7723
WARNING. Abnormal entry count found on day 2016-12-10: -7723
WARNING. Abnormal entry count found on day 2016-12-17: -8047
WARNING. Abnormal entry count found on day 2016-12-17: -8047
WARNING. Abnormal entry count found on day 2016-12-24: -7040
WARNING. Abnormal entry count found on day 2016-12-24: -7040
Processing turnstile ('N409', 'R268', '00-03-00', 'METROPOLITAN AV')
WARNING. Abnormal entry count found on day 2016-12-03: -2391
WARNING. Abnormal entry count found on day 2016-12-03: -2391
WARNING. Abnormal entry count found on day 2016-12-10: -2622
WARNING. Abnormal entry count found on day 2016-12-10: -2622
WARNING. Abnormal entry count found on day 2016-12-17: -2275
WARNING. Abnormal entry count found on day 2016-12-17: -2275
WARNING. Abnormal entry count found on day 2016-12-24: -1637
WARNING. Abnormal entry count found on day 2016-12-24: -1637
Processing turnstile ('R139', 'R031', '04-00-03', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -14069
WARNING. Abnormal entry count found on day 2016-12-03: -14069
WARNING. Abnormal entry count found on day 2016-12-10: -13705
WARNING. Abnormal entry count found on day 2016-12-10: -13705
WARNING. Abnormal entry count found on day 2016-12-17: -12798
WARNING. Abnormal entry count found on day 2016-12-17: -12798
WARNING. Abnormal entry count found on day 2016-12-24: -9919
WARNING. Abnormal entry count found on day 2016-12-24: -9919
Processing turnstile ('N601A', 'R319', '01-05-00', 'LEXINGTON AV/63')
WARNING. Abnormal entry count found on day 2016-12-24: -15
WARNING. Abnormal entry count found on day 2016-12-24: -15
Processing turnstile ('N325A', 'R218', '00-00-02', 'ELMHURST AV')
WARNING. Abnormal entry count found on day 2016-12-03: -469
WARNING. Abnormal entry count found on day 2016-12-03: -469
WARNING. Abnormal entry count found on day 2016-12-10: -420
WARNING. Abnormal entry count found on day 2016-12-10: -420
WARNING. Abnormal entry count found on day 2016-12-17: -691
WARNING. Abnormal entry count found on day 2016-12-17: -691
WARNING. Abnormal entry count found on day 2016-12-24: -384
WARNING. Abnormal entry count found on day 2016-12-24: -384
Processing turnstile ('N334B', 'R341', '00-06-00', '75 AV')
WARNING. Abnormal entry count found on day 2016-12-03: -13108
WARNING. Abnormal entry count found on day 2016-12-03: -13108
WARNING. Abnormal entry count found on day 2016-12-10: -12998
WARNING. Abnormal entry count found on day 2016-12-10: -12998
WARNING. Abnormal entry count found on day 2016-12-17: -12223
WARNING. Abnormal entry count found on day 2016-12-17: -12223
WARNING. Abnormal entry count found on day 2016-12-24: -9435
WARNING. Abnormal entry count found on day 2016-12-24: -9435
Processing turnstile ('N339A', 'R114', '00-03-00', 'PARSONS BLVD')
WARNING. Abnormal entry count found on day 2016-12-03: -3198
WARNING. Abnormal entry count found on day 2016-12-03: -3198
WARNING. Abnormal entry count found on day 2016-12-10: -3078
WARNING. Abnormal entry count found on day 2016-12-10: -3078
WARNING. Abnormal entry count found on day 2016-12-17: -3176
WARNING. Abnormal entry count found on day 2016-12-17: -3176
WARNING. Abnormal entry count found on day 2016-12-24: -2275
WARNING. Abnormal entry count found on day 2016-12-24: -2275
Processing turnstile ('R307', 'R207', '01-00-00', '135 ST')
WARNING. Abnormal entry count found on day 2016-12-03: -8403
WARNING. Abnormal entry count found on day 2016-12-03: -8403
WARNING. Abnormal entry count found on day 2016-12-10: -8040
WARNING. Abnormal entry count found on day 2016-12-10: -8040
WARNING. Abnormal entry count found on day 2016-12-17: -7249
WARNING. Abnormal entry count found on day 2016-12-17: -7249
WARNING. Abnormal entry count found on day 2016-12-24: -6108
WARNING. Abnormal entry count found on day 2016-12-24: -6108
Processing turnstile ('R139', 'R031', '04-00-00', '34 ST-PENN STA')
WARNING. Abnormal entry count found on day 2016-12-03: -3619
WARNING. Abnormal entry count found on day 2016-12-03: -3619
WARNING. Abnormal entry count found on day 2016-12-10: -3795
WARNING. Abnormal entry count found on day 2016-12-10: -3795
WARNING. Abnormal entry count found on day 2016-12-17: -3539
WARNING. Abnormal entry count found on day 2016-12-17: -3539
WARNING. Abnormal entry count found on day 2016-12-24: -2793
WARNING. Abnormal entry count found on day 2016-12-24: -2793
Processing turnstile ('R404', 'R447', '00-00-02', 'CYPRESS AV')
WARNING. Abnormal entry count found on day 2016-12-03: -6109
WARNING. Abnormal entry count found on day 2016-12-03: -6109
WARNING. Abnormal entry count found on day 2016-12-10: -6004
WARNING. Abnormal entry count found on day 2016-12-10: -6004
WARNING. Abnormal entry count found on day 2016-12-17: -5749
WARNING. Abnormal entry count found on day 2016-12-17: -5749
WARNING. Abnormal entry count found on day 2016-12-24: -4213
WARNING. Abnormal entry count found on day 2016-12-24: -4213
Processing turnstile ('N544', 'R289', '01-03-00', 'FT HAMILTON PKY')
WARNING. Abnormal entry count found on day 2016-12-03: -2025
WARNING. Abnormal entry count found on day 2016-12-03: -2025
WARNING. Abnormal entry count found on day 2016-12-10: -1588
WARNING. Abnormal entry count found on day 2016-12-10: -1588
WARNING. Abnormal entry count found on day 2016-12-17: -2145
WARNING. Abnormal entry count found on day 2016-12-17: -2145
WARNING. Abnormal entry count found on day 2016-12-24: -731
WARNING. Abnormal entry count found on day 2016-12-24: -731

In [9]:
turnstile_to_daily_time_series[('H001', 'R175', '00-06-01', '8 AV')]


Out[9]:
[(datetime.date(2016, 12, 3), None),
 (datetime.date(2016, 12, 4), 1586),
 (datetime.date(2016, 12, 5), 1715),
 (datetime.date(2016, 12, 6), 1882),
 (datetime.date(2016, 12, 7), 1862),
 (datetime.date(2016, 12, 8), 2111),
 (datetime.date(2016, 12, 9), 2184),
 (datetime.date(2016, 12, 3), None),
 (datetime.date(2016, 12, 4), 1586),
 (datetime.date(2016, 12, 5), 1715),
 (datetime.date(2016, 12, 6), 1882),
 (datetime.date(2016, 12, 7), 1862),
 (datetime.date(2016, 12, 8), 2111),
 (datetime.date(2016, 12, 9), 2184),
 (datetime.date(2016, 12, 3), None),
 (datetime.date(2016, 12, 4), 1586),
 (datetime.date(2016, 12, 5), 1715),
 (datetime.date(2016, 12, 6), 1882),
 (datetime.date(2016, 12, 7), 1862),
 (datetime.date(2016, 12, 8), 2111),
 (datetime.date(2016, 12, 9), 2184),
 (datetime.date(2016, 12, 10), 1874),
 (datetime.date(2016, 12, 11), 1455),
 (datetime.date(2016, 12, 12), 1858),
 (datetime.date(2016, 12, 13), 1907),
 (datetime.date(2016, 12, 14), 2103),
 (datetime.date(2016, 12, 15), 1773),
 (datetime.date(2016, 12, 16), 1802),
 (datetime.date(2016, 12, 10), None),
 (datetime.date(2016, 12, 11), 1455),
 (datetime.date(2016, 12, 12), 1858),
 (datetime.date(2016, 12, 13), 1907),
 (datetime.date(2016, 12, 14), 2103),
 (datetime.date(2016, 12, 15), 1773),
 (datetime.date(2016, 12, 16), 1802),
 (datetime.date(2016, 12, 10), None),
 (datetime.date(2016, 12, 11), 1455),
 (datetime.date(2016, 12, 12), 1858),
 (datetime.date(2016, 12, 13), 1907),
 (datetime.date(2016, 12, 14), 2103),
 (datetime.date(2016, 12, 15), 1773),
 (datetime.date(2016, 12, 16), 1802),
 (datetime.date(2016, 12, 17), 1575),
 (datetime.date(2016, 12, 18), 1387),
 (datetime.date(2016, 12, 19), 1535),
 (datetime.date(2016, 12, 20), 1639),
 (datetime.date(2016, 12, 21), 1904),
 (datetime.date(2016, 12, 22), 1851),
 (datetime.date(2016, 12, 23), 1602),
 (datetime.date(2016, 12, 17), None),
 (datetime.date(2016, 12, 18), 1387),
 (datetime.date(2016, 12, 19), 1535),
 (datetime.date(2016, 12, 20), 1639),
 (datetime.date(2016, 12, 21), 1904),
 (datetime.date(2016, 12, 22), 1851),
 (datetime.date(2016, 12, 23), 1602),
 (datetime.date(2016, 12, 17), None),
 (datetime.date(2016, 12, 18), 1387),
 (datetime.date(2016, 12, 19), 1535),
 (datetime.date(2016, 12, 20), 1639),
 (datetime.date(2016, 12, 21), 1904),
 (datetime.date(2016, 12, 22), 1851),
 (datetime.date(2016, 12, 23), 1602),
 (datetime.date(2016, 12, 24), 964),
 (datetime.date(2016, 12, 25), 584),
 (datetime.date(2016, 12, 26), 787),
 (datetime.date(2016, 12, 27), 1349),
 (datetime.date(2016, 12, 28), 1565),
 (datetime.date(2016, 12, 29), 1483),
 (datetime.date(2016, 12, 30), 1586),
 (datetime.date(2016, 12, 24), None),
 (datetime.date(2016, 12, 25), 584),
 (datetime.date(2016, 12, 26), 787),
 (datetime.date(2016, 12, 27), 1349),
 (datetime.date(2016, 12, 28), 1565),
 (datetime.date(2016, 12, 29), 1483),
 (datetime.date(2016, 12, 30), 1586),
 (datetime.date(2016, 12, 24), None),
 (datetime.date(2016, 12, 25), 584),
 (datetime.date(2016, 12, 26), 787),
 (datetime.date(2016, 12, 27), 1349),
 (datetime.date(2016, 12, 28), 1565),
 (datetime.date(2016, 12, 29), 1483),
 (datetime.date(2016, 12, 30), 1586)]

Exercise 4

  • We will plot the daily time series for a turnstile.

In ipython notebook, add this to the beginning of your next cell:

%matplotlib inline

This will make your matplotlib graphs integrate nicely with the notebook. To plot the time series, import matplotlib with

import matplotlib.pyplot as plt

Take the list of [(date1, count1), (date2, count2), ...], for the turnstile and turn it into two lists: dates and counts. This should plot it:

plt.figure(figsize=(10,3))
plt.plot(dates,counts)

In [10]:
%matplotlib inline
import matplotlib.pyplot as plt

time_series = turnstile_to_daily_time_series[('H001', 'R175', '00-06-01', '8 AV')]
days, counts = zip(*time_series)
plt.figure(figsize=(15,5))
plt.plot(days, counts)


Out[10]:
[<matplotlib.lines.Line2D at 0x17d00f3c8>]

Exercise 5

  • So far we've been operating on a single turnstile level, let's combine turnstiles in the same ControlArea/Unit/Station combo. There are some ControlArea/Unit/Station groups that have a single turnstile, but most have multiple turnstilea-- same value for the C/A, UNIT and STATION columns, different values for the SCP column.

We want to combine the numbers together -- for each ControlArea/UNIT/STATION combo, for each day, add the counts from each turnstile belonging to that combo.


In [11]:
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 [12]:
booth_to_daily_time_series[('H001', 'R175', '8 AV')]


Out[12]:
[(datetime.date(2016, 12, 3), 0),
 (datetime.date(2016, 12, 4), 57744),
 (datetime.date(2016, 12, 5), 62616),
 (datetime.date(2016, 12, 6), 69180),
 (datetime.date(2016, 12, 7), 71490),
 (datetime.date(2016, 12, 8), 76734),
 (datetime.date(2016, 12, 9), 85881),
 (datetime.date(2016, 12, 10), 25078),
 (datetime.date(2016, 12, 11), 62220),
 (datetime.date(2016, 12, 12), 70329),
 (datetime.date(2016, 12, 13), 69084),
 (datetime.date(2016, 12, 14), 73029),
 (datetime.date(2016, 12, 15), 73431),
 (datetime.date(2016, 12, 16), 77499),
 (datetime.date(2016, 12, 17), 20996),
 (datetime.date(2016, 12, 18), 53475),
 (datetime.date(2016, 12, 19), 63375),
 (datetime.date(2016, 12, 20), 68148),
 (datetime.date(2016, 12, 21), 70848),
 (datetime.date(2016, 12, 22), 70266),
 (datetime.date(2016, 12, 23), 62205),
 (datetime.date(2016, 12, 24), 13329),
 (datetime.date(2016, 12, 25), 23223),
 (datetime.date(2016, 12, 26), 34479),
 (datetime.date(2016, 12, 27), 56409),
 (datetime.date(2016, 12, 28), 66984),
 (datetime.date(2016, 12, 29), 61830),
 (datetime.date(2016, 12, 30), 71094)]

Exercise 6

  • Similarly, combine everything in each station, and come up with a time series of [(date1, count1),(date2,count2),...] type of time series for each STATION, by adding up all the turnstiles in a station.

In [37]:
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 [42]:
station_to_daily_time_series['8 AV']


Out[42]:
[(datetime.date(2016, 12, 3), 0),
 (datetime.date(2016, 12, 4), 57744),
 (datetime.date(2016, 12, 5), 62616),
 (datetime.date(2016, 12, 6), 69180),
 (datetime.date(2016, 12, 7), 71490),
 (datetime.date(2016, 12, 8), 76734),
 (datetime.date(2016, 12, 9), 85881),
 (datetime.date(2016, 12, 10), 25078),
 (datetime.date(2016, 12, 11), 62220),
 (datetime.date(2016, 12, 12), 70329),
 (datetime.date(2016, 12, 13), 69084),
 (datetime.date(2016, 12, 14), 73029),
 (datetime.date(2016, 12, 15), 73431),
 (datetime.date(2016, 12, 16), 77499),
 (datetime.date(2016, 12, 17), 20996),
 (datetime.date(2016, 12, 18), 53475),
 (datetime.date(2016, 12, 19), 63375),
 (datetime.date(2016, 12, 20), 68148),
 (datetime.date(2016, 12, 21), 70848),
 (datetime.date(2016, 12, 22), 70266),
 (datetime.date(2016, 12, 23), 62205),
 (datetime.date(2016, 12, 24), 13329),
 (datetime.date(2016, 12, 25), 23223),
 (datetime.date(2016, 12, 26), 34479),
 (datetime.date(2016, 12, 27), 56409),
 (datetime.date(2016, 12, 28), 66984),
 (datetime.date(2016, 12, 29), 61830),
 (datetime.date(2016, 12, 30), 71094)]

Exercise 7

  • Plot the time series for a station

In [36]:
def plot_station_time_series(station_name, station_to_daily_time_series):
    time_series = station_to_daily_time_series[station_name]
    days, counts = zip(*time_series)
    plt.figure(figsize=(15,5))
    plt.plot(days,counts)
    plt.xlabel('Date')
    plt.ylabel('Number of turnstile entries')
    plt.title('Daily entries for station %s' % station_name)
    
plot_station_time_series('14 ST-UNION SQ', station_to_daily_time_series)


Exercise 8

  • Make one list of counts for one week for one station. Monday's count, Tuesday's count, etc. so it's a list of 7 counts. Make the same list for another week, and another week, and another week. plt.plot(week_count_list) for every week_count_list you created this way. You should get a rainbow plot of weekly commute numbers on top of each other.

In [43]:
import numpy as np

def separate_weeks(time_series):
    time_series_for_each_week = []
    week = []
    for i, (day, count) in enumerate(time_series):
        week.append( (day,count) )
        # every 7 days, start a new week
        # (do this on the last day of the current week)
        if i%7 == 6:
            time_series_for_each_week.append(week)
            week = []
    # at the end of the for loop, if there are some left
    # over, put this partial week as the last (partial) week
    time_series_for_each_week.append(week)
    return time_series_for_each_week


def rainbow_plot_for_station(station_name, station_to_daily_time_series):
    time_series = station_to_daily_time_series[station_name]
    time_series_for_each_week = separate_weeks(time_series)
    plt.figure(figsize=(15,5))
    for week in time_series_for_each_week:
        days, counts = zip(*week)
        days = range(len(counts))
        plt.plot(days,counts)
    plt.xlabel('Day of the week')
    plt.ylabel('Number of turnstile entries')
    plt.xticks(np.arange(7),['St','Sn','Mo','Tu','We','Th','Fr'])
    plt.title('Ridership per day for station %s'%station_name)
    
    
rainbow_plot_for_station('14 ST-UNION SQ', station_to_daily_time_series)


---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-43-85d1ffbf2930> in <module>()
     31 
     32 
---> 33 rainbow_plot_for_station('14 ST-UNION SQ', station_to_daily_time_series)

<ipython-input-43-85d1ffbf2930> in rainbow_plot_for_station(station_name, station_to_daily_time_series)
     22     plt.figure(figsize=(15,5))
     23     for week in time_series_for_each_week:
---> 24         days, counts = zip(*week)
     25         days = range(len(counts))
     26         plt.plot(days,counts)

ValueError: not enough values to unpack (expected 2, got 0)

Exercise 9

  • Over multiple weeks, sum total ridership for each station and sort them, so you can find out the stations with the highest traffic during the time you investigate

In [55]:
def station_time_series_item_to_station_total_traffic(item):
    station, time_series = item
    total_traffic = sum([count for day, count in time_series])
    return total_traffic, station

traffic_report = list(map(station_time_series_item_to_station_total_traffic, station_to_daily_time_series.items()))

for total_traffic, station in sorted(traffic_report, reverse=True)[:30]:
    print('{:<18} {}'.format(station, total_traffic))


GRD CNTRL-42 ST    9836443
42 ST-PORT AUTH    6274281
34 ST-PENN STA     6201721
TIMES SQ-42 ST     5844009
34 ST-HERALD SQ    5589411
47-50 STS ROCK     4747369
86 ST              4221244
FLUSHING-MAIN      4032818
JKSN HT-ROOSVLT    3323076
59 ST              3196436
42 ST-BRYANT PK    2882275
W 4 ST-WASH SQ     2734071
LEXINGTON AV/53    2689996
72 ST              2672111
JAMAICA CENTER     2601201
JAY ST-METROTEC    2544756
77 ST              2349839
14 ST-UNION SQ     2317572
ATL AV-BARCLAY     2222506
BOROUGH HALL       2137715
68ST-HUNTER CO     2114712
CROWN HTS-UTICA    2081587
33 ST              1990210
49 ST              1984234
BOWLING GREEN      1943900
50 ST              1878959
57 ST-7 AV         1867774
FOREST HILLS 71    1830099
BEDFORD AV         1828622
5 AV/53 ST         1796906

Exercise 10

  • Make a single list of these total ridership values and plot it with plt.hist(total_ridership_counts) to get an idea about the distribution of total ridership among different stations.
    This should show you that most stations have a small traffic, and the histogram bins for large traffic volumes have small bars.

Additional Hint:
If you want to see which stations take the meat of the traffic, you can sort the total ridership counts and make a plt.bar graph. For this, you want to have two lists: the indices of each bar, and the values. The indices can just be 0,1,2,3,..., so you can do

indices = range(len(total_ridership_values))
plt.bar(indices, total_ridership_values)

In [57]:
total_ridership_counts = [ridership for ridership, station in traffic_report]
plt.figure(figsize=(15, 5))
hist = plt.hist(total_ridership_counts, bins=20)



In [68]:
import math

log_counts = []

for count in total_ridership_counts:
    try:
        log_result = math.log10(count)
    except:
        pass
    
    log_counts.append(log_result)
    
plt.figure(figsize=(15, 5))
n, bins, patches = hist = plt.hist(log_counts, bins=15)

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

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


Out[68]:
<matplotlib.text.Text at 0x18225e0b8>

In [58]:
top_stations = sorted(traffic_report, reverse=True)[:30]
counts, stations = zip(*top_stations)
indices = range(len(counts))
plt.figure(figsize=(15,5,))
plt.bar(indices, counts)
ticks = plt.xticks(indices, stations, rotation = 70)



In [ ]: